-
Notifications
You must be signed in to change notification settings - Fork 3
/
question.go
480 lines (380 loc) · 12.5 KB
/
question.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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
package handler
import (
"fmt"
"net/http"
"sort"
"strconv"
"time"
"github.com/labstack/echo"
"github.com/monkukui/procon-qa/lib"
"github.com/monkukui/procon-qa/model"
)
// 質問を全取得する
func GetAllQuestions(c echo.Context) error {
// todos := model.FindTodos(&model.Todo{UID: uid})
// &model.Question{} とすることで, 条件なしで取得する <=> 全取得 となる
questions := model.FindQuestions(&model.Question{})
return c.JSON(http.StatusOK, questions)
}
// questions のサイズを取得する
func GetQuestionSize(c echo.Context) error {
return c.JSON(http.StatusOK, len(model.FindQuestions(&model.Question{})))
}
// 解決済みの質問のサイズを取得
func GetCompletedQuestionSize(c echo.Context) error {
return c.JSON(http.StatusOK, len(model.FindQuestions(&model.Question{Completed: true})))
}
// 質問をページ取得する
func GetQuestionsWithPage(c echo.Context) error {
// 質問の取得にユーザの情報はいらない
// uid := userIDFromToken(c)
// if user := model.FindUser(&model.User{ID: uid}); user.ID == 0 {
// return echo.ErrNotFound
// }
PageID, err := strconv.Atoi(c.Param("page")) // ページ番号 (1-indexed)
if err != nil {
return echo.ErrNotFound
}
modeId, err := strconv.Atoi(c.Param("mode")) // ソートの設定
if err != nil {
return echo.ErrNotFound
}
PageLength := 10 // 1 ページあたりの長さ
mode := "id desc"
if modeId == 2 {
mode = "answer_count"
} else if modeId == 3 {
mode = "browse_count desc"
} else if modeId == 4 {
mode = "favorite_count desc"
} else if modeId == 5 {
mode = "completed"
}
questions := model.FindQuestionsWithPage(&model.Question{}, PageID, PageLength, mode)
return c.JSON(http.StatusOK, questions)
}
// 質問を編集距離順に k 件取得
func GetQuestionsWithEditDistance(c echo.Context) error {
allQuestions := model.FindQuestions(&model.Question{})
queryQuestion := new(model.Question)
if err := c.Bind(queryQuestion); err != nil {
return err
}
sortedQuestoins := lib.GetSortedQuestionsByEditDistance(allQuestions, queryQuestion.Title)
return c.JSON(http.StatusOK, sortedQuestoins)
}
// pageId で質問をページ取得する
func GetUserQuestionsWithPage(c echo.Context) error {
uid := userIDFromToken(c)
if user := model.FindUser(&model.User{ID: uid}); user.ID == 0 {
return echo.ErrNotFound
}
PageID, err := strconv.Atoi(c.Param("page")) // ページ番号 (1-indexed)
PageLength := 10 // 1 ページあたりの長さ
if err != nil {
return echo.ErrNotFound
}
questions := model.FindQuestionsWithPage(&model.Question{UID: uid}, PageID, PageLength, "id")
return c.JSON(http.StatusOK, questions)
}
// pageId, userId で質問をページ取得する
func GetUserQuestions(c echo.Context) error {
uid, err := strconv.Atoi(c.Param("uid"))
if err != nil {
return echo.ErrNotFound
}
if user := model.FindUser(&model.User{ID: uid}); user.ID == 0 {
return echo.ErrNotFound
}
PageID, err := strconv.Atoi(c.Param("page")) // ページ番号 (1-indexed)
PageLength := 10 // 1 ページあたりの長さ
if err != nil {
return echo.ErrNotFound
}
questions := model.FindQuestionsWithPage(&model.Question{UID: uid}, PageID, PageLength, "id desc")
return c.JSON(http.StatusOK, questions)
}
func GetUserQuestionSize(c echo.Context) error {
uid, err := strconv.Atoi(c.Param("uid"))
if err != nil {
return echo.ErrNotFound
}
if user := model.FindUser(&model.User{ID: uid}); user.ID == 0 {
return echo.ErrNotFound
}
fmt.Println(len(model.FindQuestions(&model.Question{UID: uid})))
return c.JSON(http.StatusOK, len(model.FindQuestions(&model.Question{UID: uid})))
}
// pageId, userId で質問をページ取得する
func GetUserAnswers(c echo.Context) error {
uid, err := strconv.Atoi(c.Param("uid"))
if err != nil {
return echo.ErrNotFound
}
if user := model.FindUser(&model.User{ID: uid}); user.ID == 0 {
return echo.ErrNotFound
}
PageID, err := strconv.Atoi(c.Param("page")) // ページ番号 (1-indexed)
PageLength := 10 // 1 ページあたりの長さ
if err != nil {
return echo.ErrNotFound
}
// ユーザーの回答を取得
// TODO 質問の新着順にするか,回答の新着順にするかは議論の余地がありそう(誰と議論するんですか?)
// 表示させるのは質問なのだから,質問の新着順にするで良さそう
// となると,qid の新着順にすると良さそう
answers := model.FindAnswers(&model.Answer{UID: uid}, "id")
// このユーザが関与した質問の qid リストを重複無しで構築
var qidList []int
for _, answer := range answers {
qidList = append(qidList, answer.QID)
}
// map を使って重複削除
mp := make(map[int]bool)
var uniqQidList []int
for _, id := range qidList {
if !mp[id] {
mp[id] = true
uniqQidList = append(uniqQidList, id)
}
}
// qid リストを降順ソートする(質問の新着順にするため)
sort.Sort(sort.Reverse(sort.IntSlice(uniqQidList)))
// PageLength と PageID を使ってよしなに範囲を決定する
lb := (PageID - 1) * PageLength
if lb >= len(uniqQidList) {
return echo.ErrNotFound
}
var questions model.Questions
for i := 0; i < PageLength && lb+i < len(uniqQidList); i++ {
q := model.FindQuestions(&model.Question{ID: uniqQidList[lb+i]})
if len(q) != 1 {
return echo.ErrNotFound
}
questions = append(questions, q[0])
}
return c.JSON(http.StatusOK, questions)
}
func GetUserAnswerSize(c echo.Context) error {
uid, err := strconv.Atoi(c.Param("uid"))
if err != nil {
return echo.ErrNotFound
}
// ユーザーの回答を取得
answers := model.FindAnswers(&model.Answer{UID: uid}, "id")
// このユーザが関与した質問の qid リストを重複無しで構築
var qidList []int
for _, answer := range answers {
qidList = append(qidList, answer.QID)
}
// map を使って重複削除
mp := make(map[int]bool)
userAnswerSize := 0
for _, id := range qidList {
if !mp[id] {
mp[id] = true
userAnswerSize++
}
}
return c.JSON(http.StatusOK, userAnswerSize)
}
// 質問を 1 つ 取得する
func GetQuestion(c echo.Context) error {
// 認証必要なし
// uid := userIDFromToken(c)
// if user := model.FindUser(&model.User{ID: uid}); user.ID == 0 {
// return echo.ErrNotFound
// }
QuestionID, err := strconv.Atoi(c.Param("id"))
if err != nil {
return echo.ErrNotFound
}
question := model.FindQuestions(&model.Question{ID: QuestionID})[0]
return c.JSON(http.StatusOK, question)
}
// いいねをする(or 取り消す)
func FavoriteQuestion(c echo.Context) error {
uid := userIDFromToken(c)
if user := model.FindUser(&model.User{ID: uid}); user.ID == 0 {
return echo.ErrNotFound
}
questionID, err := strconv.Atoi(c.Param("id"))
if err != nil {
return echo.ErrNotFound
}
questions := model.FindQuestions(&model.Question{ID: questionID})
if len(questions) == 0 {
return echo.ErrNotFound
}
question := questions[0]
if question.UID == uid {
// 自分の質問にいいねはできません
return echo.ErrNotFound
}
goods := model.FindQuestionGoods(&model.QuestionGood{UID: uid, QID: questionID})
if len(goods) == 0 { // いいねをする
model.CreateQuestionGood(&model.QuestionGood{UID: uid, QID: questionID})
} else { // いいねを取り消す
model.DeleteQuestionGood(&model.QuestionGood{UID: uid, QID: questionID})
}
return c.NoContent(http.StatusNoContent)
}
// ブックマークをする(or 取り消す)
func BookMarkQuestion(c echo.Context) error {
uid := userIDFromToken(c)
if user := model.FindUser(&model.User{ID: uid}); user.ID == 0 {
return echo.ErrNotFound
}
questionID, err := strconv.Atoi(c.Param("qid"))
if err != nil {
return echo.ErrNotFound
}
questions := model.FindQuestions(&model.Question{ID: questionID})
if len(questions) == 0 {
return echo.ErrNotFound
}
marks := model.FindBookMarks(&model.BookMark{UID: uid, QID: questionID})
if len(marks) == 0 { // ブックマークをする
model.CreateBookMark(&model.BookMark{UID: uid, QID: questionID})
} else { // いいねを取り消す
model.DeleteBookMark(&model.BookMark{UID: uid, QID: questionID})
}
return c.NoContent(http.StatusNoContent)
}
// ブックマークされた質問数を取得する
func GetBookMarkedQuestionSize(c echo.Context) error {
uid, err := strconv.Atoi(c.Param("uid")) // ページ番号 (1-indexed)
if err != nil {
return echo.ErrNotFound
}
books := model.FindBookMarks(&model.BookMark{UID: uid})
return c.JSON(http.StatusOK, len(books))
}
// ブックマークされた質問を取得する
func GetBookMarkedQuestions(c echo.Context) error {
uid, err := strconv.Atoi(c.Param("uid")) // ページ番号 (1-indexed)
if err != nil {
return echo.ErrNotFound
}
books := model.FindBookMarks(&model.BookMark{UID: uid})
PageID, err := strconv.Atoi(c.Param("page"))
PageLength := 10
if err != nil {
return echo.ErrNotFound
}
// PageLength と PageID を使ってよしなに範囲を決定する
lb := (PageID - 1) * PageLength
if lb >= len(books) {
return echo.ErrNotFound
}
var questions model.Questions
for i := 0; i < PageLength && lb+i < len(books); i++ {
q := model.FindQuestions(&model.Question{ID: books[lb+i].QID})
if len(q) != 1 {
return echo.ErrNotFound
}
questions = append(questions, q[0])
}
return c.JSON(http.StatusOK, questions)
}
// 閲覧数をインクリメント
func BrowseQuestion(c echo.Context) error {
questionID, err := strconv.Atoi(c.Param("id"))
if err != nil {
return echo.ErrNotFound
}
questions := model.FindQuestions(&model.Question{ID: questionID})
if len(questions) == 0 {
return echo.ErrNotFound
}
question := questions[0]
question.BrowseCount++
if err := model.UpdateQuestion(&question); err != nil {
return echo.ErrNotFound
}
return c.NoContent(http.StatusNoContent)
}
// 質問を投稿する
func PostQuestion(c echo.Context) error {
question := new(model.Question)
// question に 送信されてきたデータを bind している
if err := c.Bind(question); err != nil {
return err
}
// 妥当性判定
// Title, Body が空欄ではないことをチェックする
if question.Title == "" || question.Body == "" {
return &echo.HTTPError{
Code: http.StatusBadRequest,
Message: "invalid to or message fields",
}
}
// URL チェック
// javascript::alert(1) みたいなのを弾く
// https:// か http:// のみにする
// 文字列長による面倒な分岐を避けるために,ダミー文字を 10 こ付け加える
checkUrl := question.Url + "xxxxxxxxxx"
if checkUrl != "xxxxxxxxxx" && checkUrl[0:7] != "http://" && checkUrl[0:8] != "https://" {
return &echo.HTTPError{
Code: http.StatusBadRequest,
Message: "invalid url fields",
}
}
// if question.Url[]
uid := userIDFromToken(c)
if user := model.FindUser(&model.User{ID: uid}); user.ID == 0 {
return echo.ErrNotFound
}
question.UID = uid
question.Completed = false
question.AnswerCount = 0
question.FavoriteCount = 0
question.BrowseCount = 0
now := time.Now()
nowUTC := now.UTC()
jst := time.FixedZone("Asia/Tokyo", 9*60*60)
nowJST := nowUTC.In(jst)
question.Date = nowJST.Format("2006/01/02 15:04:05")
model.CreateQuestion(question)
return c.JSON(http.StatusCreated, question)
}
// 質問を削除する
func DeleteQuestion(c echo.Context) error {
uid := userIDFromToken(c)
if user := model.FindUser(&model.User{ID: uid}); user.ID == 0 {
return echo.ErrNotFound
}
questionID, err := strconv.Atoi(c.Param("id"))
if err != nil {
return echo.ErrNotFound
}
// uid が question の uid と一致していなければダメ
if uid != model.FindQuestions(&model.Question{ID: questionID})[0].UID {
return echo.ErrNotFound
}
// ID: questionID, UID: uid とすることで, 別のユーザが他人の投稿を削除できないようになってる
if err := model.DeleteQuestion(&model.Question{ID: questionID, UID: uid}); err != nil {
return echo.ErrNotFound
}
return c.NoContent(http.StatusNoContent)
}
func UpdateQuestionCompleted(c echo.Context) error {
uid := userIDFromToken(c)
if user := model.FindUser(&model.User{ID: uid}); user.ID == 0 {
return echo.ErrNotFound
}
questionID, err := strconv.Atoi(c.Param("id"))
if err != nil {
return echo.ErrNotFound
}
questions := model.FindQuestions(&model.Question{ID: questionID, UID: uid})
if len(questions) == 0 {
return echo.ErrNotFound
}
question := questions[0]
question.Completed = !questions[0].Completed
if err := model.UpdateQuestion(&question); err != nil {
return echo.ErrNotFound
}
return c.NoContent(http.StatusNoContent)
}