-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhandlers_standing.go
More file actions
249 lines (202 loc) · 4.67 KB
/
handlers_standing.go
File metadata and controls
249 lines (202 loc) · 4.67 KB
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
package main
import (
"net/http"
"time"
"github.com/gin-gonic/gin"
)
func setStandingAdmin(c *gin.Context) {
type Request struct {
Username string `json:"username"`
Level StandingLevel `json:"level"`
Reason string `json:"reason"`
}
var req Request
if err := c.ShouldBindJSON(&req); err != nil {
c.JSON(400, gin.H{"error": "Invalid request body"})
return
}
if req.Level == "" {
c.JSON(400, gin.H{"error": "standing level is required"})
return
}
if req.Reason == "" {
c.JSON(400, gin.H{"error": "reason is required"})
return
}
userId := getIdByUsername(Username(req.Username))
if userId == "" {
c.JSON(404, gin.H{"error": "user not found"})
return
}
usersMutex.RLock()
user := getUserById(userId)
usersMutex.RUnlock()
if len(user) == 0 {
c.JSON(404, gin.H{"error": "user not found"})
return
}
adminId := c.GetHeader("X-Admin-ID")
if adminId == "" {
adminId = "unknown"
}
user.SetStanding(req.Level, req.Reason, UserId(adminId))
usersMutex.Lock()
saveUsers()
usersMutex.Unlock()
c.JSON(200, gin.H{
"success": true,
"username": req.Username,
"standing": user.GetStanding(),
})
}
func getStandingHistoryAdmin(c *gin.Context) {
type Request struct {
Username string `json:"username"`
}
var req Request
if err := c.ShouldBindJSON(&req); err != nil {
c.JSON(400, gin.H{"error": "Invalid request body"})
return
}
if req.Username == "" {
c.JSON(400, gin.H{"error": "username is required"})
return
}
userId := getIdByUsername(Username(req.Username))
if userId == "" {
c.JSON(404, gin.H{"error": "user not found"})
return
}
usersMutex.RLock()
user := getUserById(userId)
usersMutex.RUnlock()
if len(user) == 0 {
c.JSON(404, gin.H{"error": "user not found"})
return
}
history := user.GetStandingHistory()
c.JSON(200, gin.H{
"username": req.Username,
"standing": user.GetStanding(),
"history": history,
})
}
func recoverStandingAdmin(c *gin.Context) {
type Request struct {
Username string `json:"username"`
Reason string `json:"reason"`
}
var req Request
if err := c.ShouldBindJSON(&req); err != nil {
c.JSON(400, gin.H{"error": "Invalid request body"})
return
}
if req.Username == "" {
c.JSON(400, gin.H{"error": "username is required"})
return
}
if req.Reason == "" {
c.JSON(400, gin.H{"error": "reason is required"})
return
}
userId := getIdByUsername(Username(req.Username))
if userId == "" {
c.JSON(404, gin.H{"error": "user not found"})
return
}
usersMutex.RLock()
user := getUserById(userId)
usersMutex.RUnlock()
if len(user) == 0 {
c.JSON(404, gin.H{"error": "user not found"})
return
}
current := user.GetStanding()
if current == StandingGood {
c.JSON(400, gin.H{"error": "user is already in good standing"})
return
}
adminId := c.GetHeader("X-Admin-ID")
if adminId == "" {
adminId = "unknown"
}
var newLevel StandingLevel
switch current {
case StandingSuspended:
newLevel = StandingWarning
case StandingWarning:
newLevel = StandingGood
case StandingBanned:
newLevel = StandingWarning
default:
newLevel = StandingGood
}
user.SetStanding(newLevel, req.Reason, UserId(adminId))
usersMutex.Lock()
saveUsers()
usersMutex.Unlock()
c.JSON(200, gin.H{
"success": true,
"username": req.Username,
"previous_standing": current,
"new_standing": newLevel,
})
}
func startStandingRecoveryChecker() {
go func() {
for {
time.Sleep(5 * time.Minute)
usersMutex.Lock()
updated := false
now := time.Now().Unix()
for i := range users {
user := &users[i]
recoverAt := user.GetStandingRecoverAt()
if recoverAt > 0 && recoverAt < now {
standing := user.GetStanding()
var newLevel StandingLevel
switch standing {
case StandingWarning:
newLevel = StandingGood
case StandingSuspended:
newLevel = StandingWarning
default:
continue
}
user.SetStanding(newLevel, "Automatic recovery", UserId("system"))
updated = true
}
}
if updated {
saveUsers()
}
usersMutex.Unlock()
}
}()
}
func GetUserStanding(c *gin.Context) {
username := c.Query("username")
if username == "" {
c.JSON(400, gin.H{"error": "username is required"})
return
}
userId := getIdByUsername(Username(username))
if userId == "" {
c.JSON(404, gin.H{"error": "user not found"})
return
}
usersMutex.RLock()
user := getUserById(userId)
usersMutex.RUnlock()
if len(user) == 0 {
c.JSON(404, gin.H{"error": "user not found"})
return
}
recoverAt := user.GetStandingRecoverAt()
c.JSON(http.StatusOK, gin.H{
"username": username,
"standing": user.GetStanding(),
"recover_at": recoverAt,
"history": user.GetStandingHistory(),
})
}