1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
|
package handlers
import (
"fmt"
"net/http"
"strconv"
"time"
"github.com/gin-gonic/gin"
"github.com/pektezol/leastportalshub/backend/database"
"github.com/pektezol/leastportalshub/backend/models"
)
type CreateMapSummaryRequest struct {
CategoryID int `json:"category_id" binding:"required"`
Description string `json:"description" binding:"required"`
Showcase string `json:"showcase"`
UserName string `json:"user_name" binding:"required"`
ScoreCount *int `json:"score_count" binding:"required"`
RecordDate time.Time `json:"record_date" binding:"required"`
}
type EditMapSummaryRequest struct {
RouteID int `json:"route_id" binding:"required"`
Description string `json:"description" binding:"required"`
Showcase string `json:"showcase"`
UserName string `json:"user_name" binding:"required"`
ScoreCount *int `json:"score_count" binding:"required"`
RecordDate time.Time `json:"record_date" binding:"required"`
}
type DeleteMapSummaryRequest struct {
RouteID int `json:"route_id" binding:"required"`
}
type EditMapImageRequest struct {
Image string `json:"image" binding:"required"`
}
// POST Map Summary
//
// @Description Create map summary with specified map id.
// @Tags maps / summary
// @Produce json
// @Param Authorization header string true "JWT Token"
// @Param mapid path int true "Map ID"
// @Param request body CreateMapSummaryRequest true "Body"
// @Success 200 {object} models.Response{data=CreateMapSummaryRequest}
// @Router /maps/{mapid}/summary [post]
func CreateMapSummary(c *gin.Context) {
// Check if user exists
user, exists := c.Get("user")
if !exists {
c.JSON(http.StatusOK, models.ErrorResponse("User not logged in."))
return
}
mod, exists := c.Get("mod")
if !exists || !mod.(bool) {
c.JSON(http.StatusOK, models.ErrorResponse("Insufficient permissions."))
return
}
// Bind parameter and body
id := c.Param("mapid")
mapID, err := strconv.Atoi(id)
if err != nil {
c.JSON(http.StatusOK, models.ErrorResponse(err.Error()))
return
}
var request CreateMapSummaryRequest
if err := c.BindJSON(&request); err != nil {
CreateLog(user.(models.User).SteamID, LogTypeMod, LogDescriptionMapSummaryCreateFail, fmt.Sprintf("BIND: %s", err.Error()))
c.JSON(http.StatusOK, models.ErrorResponse(err.Error()))
return
}
// Start database transaction
tx, err := database.DB.Begin()
if err != nil {
c.JSON(http.StatusOK, models.ErrorResponse(err.Error()))
return
}
defer tx.Rollback()
// Fetch route category and score count
var checkMapID int
sql := `SELECT m.id FROM maps m WHERE m.id = $1`
err = database.DB.QueryRow(sql, mapID).Scan(&checkMapID)
if err != nil {
CreateLog(user.(models.User).SteamID, LogTypeMod, LogDescriptionMapSummaryCreateFail, fmt.Sprintf("SELECT#maps: %s", err.Error()))
c.JSON(http.StatusOK, models.ErrorResponse(err.Error()))
return
}
if mapID != checkMapID {
c.JSON(http.StatusOK, models.ErrorResponse("Map ID does not exist."))
return
}
// Update database with new data
sql = `INSERT INTO map_history (map_id,category_id,user_name,score_count,description,showcase,record_date)
VALUES ($1,$2,$3,$4,$5)`
_, err = tx.Exec(sql, mapID, request.CategoryID, request.UserName, *request.ScoreCount, request.Description, request.Showcase, request.RecordDate)
if err != nil {
CreateLog(user.(models.User).SteamID, LogTypeMod, LogDescriptionMapSummaryCreateFail, fmt.Sprintf("INSERT#map_history: %s", err.Error()))
c.JSON(http.StatusOK, models.ErrorResponse(err.Error()))
return
}
if err = tx.Commit(); err != nil {
c.JSON(http.StatusOK, models.ErrorResponse(err.Error()))
return
}
CreateLog(user.(models.User).SteamID, LogTypeMod, LogDescriptionMapSummaryCreateSuccess, fmt.Sprintf("MapID: %d | CategoryID: %d | ScoreCount: %d", mapID, request.CategoryID, *request.ScoreCount))
c.JSON(http.StatusOK, models.Response{
Success: true,
Message: "Successfully created map summary.",
Data: request,
})
}
// PUT Map Summary
//
// @Description Edit map summary with specified map id.
// @Tags maps / summary
// @Produce json
// @Param Authorization header string true "JWT Token"
// @Param mapid path int true "Map ID"
// @Param request body EditMapSummaryRequest true "Body"
// @Success 200 {object} models.Response{data=EditMapSummaryRequest}
// @Router /maps/{mapid}/summary [put]
func EditMapSummary(c *gin.Context) {
// Check if user exists
user, exists := c.Get("user")
if !exists {
c.JSON(http.StatusOK, models.ErrorResponse("User not logged in."))
return
}
mod, exists := c.Get("mod")
if !exists || !mod.(bool) {
c.JSON(http.StatusOK, models.ErrorResponse("Insufficient permissions."))
return
}
// Bind parameter and body
id := c.Param("mapid")
// we get mapid in path parameters, but it's not really used anywhere here lol.
_, err := strconv.Atoi(id)
if err != nil {
c.JSON(http.StatusOK, models.ErrorResponse(err.Error()))
return
}
var request EditMapSummaryRequest
if err := c.BindJSON(&request); err != nil {
CreateLog(user.(models.User).SteamID, LogTypeMod, LogDescriptionMapSummaryEditFail, fmt.Sprintf("BIND: %s", err.Error()))
c.JSON(http.StatusOK, models.ErrorResponse(err.Error()))
return
}
// Start database transaction
tx, err := database.DB.Begin()
if err != nil {
c.JSON(http.StatusOK, models.ErrorResponse(err.Error()))
return
}
defer tx.Rollback()
// Update database with new data
sql := `UPDATE map_history SET user_name = $2, score_count = $3, record_date = $4, description = $5, showcase = $6 WHERE id = $1`
_, err = tx.Exec(sql, request.RouteID, request.UserName, *request.ScoreCount, request.RecordDate, request.Description, request.Showcase)
if err != nil {
CreateLog(user.(models.User).SteamID, LogTypeMod, LogDescriptionMapSummaryEditFail, fmt.Sprintf("(HistoryID: %d) UPDATE#map_history: %s", request.RouteID, err.Error()))
c.JSON(http.StatusOK, models.ErrorResponse(err.Error()))
return
}
if err = tx.Commit(); err != nil {
c.JSON(http.StatusOK, models.ErrorResponse(err.Error()))
return
}
c.JSON(http.StatusOK, models.Response{
Success: true,
Message: "Successfully updated map summary.",
Data: request,
})
}
// DELETE Map Summary
//
// @Description Delete map summary with specified map id.
// @Tags maps / summary
// @Produce json
// @Param Authorization header string true "JWT Token"
// @Param mapid path int true "Map ID"
// @Param request body DeleteMapSummaryRequest true "Body"
// @Success 200 {object} models.Response{data=DeleteMapSummaryRequest}
// @Router /maps/{mapid}/summary [delete]
func DeleteMapSummary(c *gin.Context) {
// Check if user exists
user, exists := c.Get("user")
if !exists {
c.JSON(http.StatusOK, models.ErrorResponse("User not logged in."))
return
}
mod, exists := c.Get("mod")
if !exists || !mod.(bool) {
c.JSON(http.StatusOK, models.ErrorResponse("Insufficient permissions."))
return
}
// Bind parameter and body
id := c.Param("mapid")
// we get mapid in path parameters, but it's not really used anywhere here lol.
_, err := strconv.Atoi(id)
if err != nil {
c.JSON(http.StatusOK, models.ErrorResponse(err.Error()))
return
}
var request DeleteMapSummaryRequest
if err := c.BindJSON(&request); err != nil {
CreateLog(user.(models.User).SteamID, LogTypeMod, LogDescriptionMapSummaryEditFail, fmt.Sprintf("(RouteID: %d) BIND: %s", request.RouteID, err.Error()))
c.JSON(http.StatusOK, models.ErrorResponse(err.Error()))
return
}
// Start database transaction
tx, err := database.DB.Begin()
if err != nil {
c.JSON(http.StatusOK, models.ErrorResponse(err.Error()))
return
}
defer tx.Rollback()
// Update database with new data
sql := `DELETE FROM map_history mh WHERE mh.id = $1`
_, err = tx.Exec(sql, request.RouteID)
if err != nil {
CreateLog(user.(models.User).SteamID, LogTypeMod, LogDescriptionMapSummaryDeleteFail, fmt.Sprintf("(HistoryID: %d) DELETE#map_history: %s", request.RouteID, err.Error()))
c.JSON(http.StatusOK, models.ErrorResponse(err.Error()))
return
}
if err = tx.Commit(); err != nil {
c.JSON(http.StatusOK, models.ErrorResponse(err.Error()))
return
}
c.JSON(http.StatusOK, models.Response{
Success: true,
Message: "Successfully delete map summary.",
Data: request,
})
}
// PUT Map Image
//
// @Description Edit map image with specified map id.
// @Tags maps / summary
// @Produce json
// @Param Authorization header string true "JWT Token"
// @Param mapid path int true "Map ID"
// @Param request body EditMapImageRequest true "Body"
// @Success 200 {object} models.Response{data=EditMapImageRequest}
// @Router /maps/{mapid}/image [put]
func EditMapImage(c *gin.Context) {
// Check if user exists
user, exists := c.Get("user")
if !exists {
c.JSON(http.StatusOK, models.ErrorResponse("User not logged in."))
return
}
mod, exists := c.Get("mod")
if !exists || !mod.(bool) {
c.JSON(http.StatusOK, models.ErrorResponse("Insufficient permissions."))
return
}
// Bind parameter and body
id := c.Param("mapid")
mapID, err := strconv.Atoi(id)
if err != nil {
c.JSON(http.StatusOK, models.ErrorResponse(err.Error()))
return
}
var request EditMapImageRequest
if err := c.BindJSON(&request); err != nil {
CreateLog(user.(models.User).SteamID, LogTypeMod, LogDescriptionMapSummaryEditImageFail, fmt.Sprintf("BIND: %s", err.Error()))
c.JSON(http.StatusOK, models.ErrorResponse(err.Error()))
return
}
// Update database with new data
sql := `UPDATE maps SET image = $2 WHERE id = $1`
_, err = database.DB.Exec(sql, mapID, request.Image)
if err != nil {
CreateLog(user.(models.User).SteamID, LogTypeMod, LogDescriptionMapSummaryEditImageFail, fmt.Sprintf("UPDATE#maps: %s", err.Error()))
c.JSON(http.StatusOK, models.ErrorResponse(err.Error()))
return
}
CreateLog(user.(models.User).SteamID, LogTypeMod, LogDescriptionMapSummaryEditImageSuccess)
c.JSON(http.StatusOK, models.Response{
Success: true,
Message: "Successfully updated map image.",
Data: request,
})
}
|