forked from Dri0m/flashpoint-submission-system
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsiteservice_comments.go
267 lines (231 loc) · 7.28 KB
/
siteservice_comments.go
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
package service
import (
"context"
"fmt"
"net/http"
"time"
"github.com/FlashpointProject/flashpoint-submission-system/constants"
"github.com/FlashpointProject/flashpoint-submission-system/types"
"github.com/FlashpointProject/flashpoint-submission-system/utils"
)
func (s *SiteService) ReceiveComments(ctx context.Context, uid int64, sids []int64, formAction, formMessage,
formIgnoreDupeActions, subDirFullPath, dataPacksDir, frozenPacksDir, imagesDir string, r *http.Request) error {
dbs, err := s.dal.NewSession(ctx)
if err != nil {
utils.LogCtx(ctx).Error(err)
return dberr(err)
}
defer dbs.Rollback()
pgdbs, err := s.pgdal.NewSession(ctx)
if err != nil {
utils.LogCtx(ctx).Error(err)
return dberr(err)
}
defer pgdbs.Rollback()
var message *string
if formMessage != "" {
message = &formMessage
}
actions := constants.GetAllowedActions()
isActionValid := false
for _, a := range actions {
if formAction == a {
isActionValid = true
break
}
}
if !isActionValid {
return perr("invalid comment action", http.StatusBadRequest)
}
actionsWithMandatoryMessage := constants.GetActionsWithMandatoryMessage()
isActionWithMandatoryMessage := false
for _, a := range actionsWithMandatoryMessage {
if formAction == a {
isActionWithMandatoryMessage = true
break
}
}
if isActionWithMandatoryMessage && (message == nil || *message == "") {
return perr(fmt.Sprintf("cannot post comment action '%s' without a message", formAction), http.StatusBadRequest)
}
ignoreDupeActions := false
if formIgnoreDupeActions == "true" {
ignoreDupeActions = true
}
// stop request changes on comment batches
if formAction == constants.ActionRequestChanges && len(sids) > 1 {
return perr("cannot request changes on multiple submissions at once", http.StatusBadRequest)
}
if formAction == constants.ActionReject && len(sids) > 1 {
return perr("cannot reject multiple submissions at once", http.StatusBadRequest)
}
utils.LogCtx(ctx).Debugf("searching submissions for comment batch")
foundSubmissions, _, err := s.dal.SearchSubmissions(dbs, &types.SubmissionsFilter{SubmissionIDs: sids})
if err != nil {
utils.LogCtx(ctx).Error(err)
return dberr(err)
}
for _, sid := range sids {
found := false
for _, s := range foundSubmissions {
if sid == s.SubmissionID {
found = true
}
}
if !found {
return perr(fmt.Sprintf("submission %d not found", sid), http.StatusNotFound)
}
}
commentCounter := 0
// TODO optimize batch operation even more
for _, submission := range foundSubmissions {
sid := submission.SubmissionID
err := isActionValidForSubmission(uid, formAction, submission)
if err != nil {
if ignoreDupeActions {
continue
}
return err
}
// If marking as added, make sure we update the live metadata before approving the comment
if formAction == constants.ActionMarkAdded {
gameId, err := s.AddSubmissionToFlashpoint(ctx, submission, subDirFullPath, dataPacksDir,
frozenPacksDir, imagesDir, r)
if err != nil {
utils.LogCtx(ctx).Error(err)
return err
}
addedMessage := fmt.Sprintf("Marked the submission as added to Flashpoint. Game ID: %s", *gameId)
message = &addedMessage
}
// actually store the comment
c := &types.Comment{
AuthorID: uid,
SubmissionID: sid,
Message: message,
Action: formAction,
CreatedAt: s.clock.Now(),
}
// clear messages for assigns and unassigns
if formAction == constants.ActionAssignTesting ||
formAction == constants.ActionUnassignTesting ||
formAction == constants.ActionAssignVerification ||
formAction == constants.ActionUnassignVerification {
c.Message = nil
}
// subscribe the commenter
if formAction == constants.ActionAssignTesting ||
formAction == constants.ActionUnassignTesting ||
formAction == constants.ActionAssignVerification ||
formAction == constants.ActionUnassignVerification ||
formAction == constants.ActionApprove ||
formAction == constants.ActionRequestChanges ||
formAction == constants.ActionVerify ||
formAction == constants.ActionReject {
subscribed, err := s.dal.IsUserSubscribedToSubmission(dbs, uid, sid)
if err != nil {
utils.LogCtx(ctx).Error(err)
return dberr(err)
}
if !subscribed {
if err := s.dal.SubscribeUserToSubmission(dbs, uid, sid); err != nil {
utils.LogCtx(ctx).Error(err)
return dberr(err)
}
}
}
cid, err := s.dal.StoreComment(dbs, c)
if err != nil {
utils.LogCtx(ctx).Error(err)
return dberr(err)
}
if err := s.EmitSubmissionCommentEvent(pgdbs, c.AuthorID, c.SubmissionID, cid, c.Action, nil); err != nil {
utils.LogCtx(ctx).Error(err)
return dberr(err)
}
// unassign if needed
if formAction == constants.ActionApprove {
c = &types.Comment{
AuthorID: uid,
SubmissionID: sid,
Message: nil,
Action: constants.ActionUnassignTesting,
CreatedAt: s.clock.Now().Add(time.Second),
}
cid, err := s.dal.StoreComment(dbs, c)
if err != nil {
utils.LogCtx(ctx).Error(err)
return dberr(err)
}
if err := s.EmitSubmissionCommentEvent(pgdbs, c.AuthorID, c.SubmissionID, cid, c.Action, nil); err != nil {
utils.LogCtx(ctx).Error(err)
return dberr(err)
}
} else if formAction == constants.ActionVerify {
c = &types.Comment{
AuthorID: uid,
SubmissionID: sid,
Message: nil,
Action: constants.ActionUnassignVerification,
CreatedAt: s.clock.Now().Add(time.Second),
}
cid, err := s.dal.StoreComment(dbs, c)
if err != nil {
utils.LogCtx(ctx).Error(err)
return dberr(err)
}
if err := s.EmitSubmissionCommentEvent(pgdbs, c.AuthorID, c.SubmissionID, cid, c.Action, nil); err != nil {
utils.LogCtx(ctx).Error(err)
return dberr(err)
}
}
if err := s.createNotification(dbs, uid, sid, formAction); err != nil {
utils.LogCtx(ctx).Error(err)
return dberr(err)
}
// freeze the curation if it autofreeze is true
if formAction == constants.ActionVerify && submission.ShouldAutofreeze {
if err := s.dal.FreezeSubmission(dbs, submission.SubmissionID); err != nil {
utils.LogCtx(ctx).Error(err)
return dberr(err)
}
if err := s.createFreezeNotification(dbs, submission.SubmitterID, uid, sid); err != nil {
utils.LogCtx(ctx).Error(err)
return dberr(err)
}
msg := "This submission has been automatically frozen."
c := &types.Comment{
AuthorID: constants.SystemID,
SubmissionID: sid,
Message: &msg,
Action: constants.ActionSystem,
CreatedAt: s.clock.Now().Add(time.Second * 2),
}
cid, err := s.dal.StoreComment(dbs, c)
if err != nil {
utils.LogCtx(ctx).Error(err)
return dberr(err)
}
if err := s.EmitSubmissionCommentEvent(pgdbs, c.AuthorID, c.SubmissionID, cid, c.Action, nil); err != nil {
utils.LogCtx(ctx).Error(err)
return dberr(err)
}
}
if err := s.dal.UpdateSubmissionCacheTable(dbs, sid); err != nil {
utils.LogCtx(ctx).Error(err)
return dberr(err)
}
commentCounter++
}
if err := pgdbs.Commit(); err != nil {
utils.LogCtx(ctx).Error(err)
return dberr(err)
}
if err := dbs.Commit(); err != nil {
utils.LogCtx(ctx).Error(err)
return dberr(err)
}
utils.LogCtx(ctx).WithField("amount", commentCounter).WithField("commentAction", formAction).Debug("comments received")
s.announceNotification()
return nil
}