@@ -3,6 +3,7 @@ package api
3
3
import (
4
4
"fmt"
5
5
"net/http"
6
+ "os"
6
7
"path/filepath"
7
8
8
9
"github.com/gin-gonic/gin"
@@ -36,7 +37,26 @@ func reloadBeastConfig(c *gin.Context) {
36
37
})
37
38
}
38
39
40
+ // This updates competition info in the beast global configuration
41
+ // @Summary Updates competition info in the beast global configuration, located at ~/.beast/config.toml.
42
+ // @Description Populates beast gobal config map by reparsing the config file $HOME/.beast/config.toml.
43
+ // @Tags config
44
+ // @Accept json
45
+ // @Produce json
46
+ // @Param name query string true "Competition Name"
47
+ // @Param about query string true "Some information about competition"
48
+ // @Param prizes query string false "Competitions Prizes for the winners"
49
+ // @Param starting_time query string true "Competition's starting time"
50
+ // @Param ending_time query string true "Competition's ending time"
51
+ // @Param timezone query string true "Competition's timezone"
52
+ // @Param logo query string false "Competition's logo"
53
+ // @Success 200 {object} api.HTTPPlainResp
54
+ // @Failure 400 {object} api.HTTPPlainResp
55
+ // @Failure 500 {object} api.HTTPErrorResp
56
+ // @Router /api/config/competition-info [post]
39
57
func updateCompetitionInfoHandler (c * gin.Context ) {
58
+ var logoFilePath string
59
+
40
60
name := c .PostForm ("name" )
41
61
about := c .PostForm ("about" )
42
62
prizes := c .PostForm ("prizes" )
@@ -45,17 +65,40 @@ func updateCompetitionInfoHandler(c *gin.Context) {
45
65
timezone := c .PostForm ("timezone" )
46
66
logo , err := c .FormFile ("logo" )
47
67
48
- logoFilePath := ""
49
-
50
68
// The file cannot be received.
51
69
if err != nil {
52
70
log .Info ("No file recieved from the user" )
53
71
} else {
54
- logoFilePath = filepath .Join (core .BEAST_GLOBAL_DIR , core .BEAST_ASSETS_DIR , logo .Filename )
72
+ logoFilePath = filepath .Join (
73
+ core .BEAST_GLOBAL_DIR ,
74
+ core .BEAST_ASSETS_DIR ,
75
+ core .BEAST_LOGO_DIR ,
76
+ logo .Filename ,
77
+ )
78
+
79
+ competitionInfo , err := config .GetCompetitionInfo ()
80
+ if err != nil {
81
+ log .Info ("Unable to load previous config" )
82
+ c .JSON (http .StatusInternalServerError , HTTPErrorResp {
83
+ Error : fmt .Sprintf ("Unable to load previous config: %s" , err ),
84
+ })
85
+ return
86
+ }
87
+
88
+ // Delete previously uploaded logo file
89
+ if competitionInfo .LogoURL != "" {
90
+ if err := os .Remove (competitionInfo .LogoURL ); err != nil {
91
+ log .Info ("Unable to delete previous logo file" )
92
+ c .JSON (http .StatusInternalServerError , HTTPErrorResp {
93
+ Error : fmt .Sprintf ("Unable to delete previous logo file: %s" , err ),
94
+ })
95
+ return
96
+ }
97
+ }
55
98
56
99
// The file is received, save it
57
100
if err := c .SaveUploadedFile (logo , logoFilePath ); err != nil {
58
- c .AbortWithStatusJSON (http .StatusInternalServerError , HTTPErrorResp {
101
+ c .JSON (http .StatusInternalServerError , HTTPErrorResp {
59
102
Error : fmt .Sprintf ("Unable to save file: %s" , err ),
60
103
})
61
104
return
0 commit comments