-
Notifications
You must be signed in to change notification settings - Fork 3
/
router.go
111 lines (95 loc) · 6.73 KB
/
router.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
package main
import (
"os"
"github.com/labstack/echo"
"github.com/labstack/echo/middleware"
"github.com/monkukui/procon-qa/handler"
)
func newRouter() *echo.Echo {
e := echo.New()
e.Use(middleware.Logger())
e.Use(middleware.Recover())
// ローカルでテストする時にhttpsにリダイレクトされるのを防ぐ
if os.Getenv("STAGE") != "TEST" {
e.Use(middleware.HTTPSRedirect())
}
e.Static("/js", "client/dist/js")
e.Static("/css", "client/dist/css")
e.Static("/fonts", "client/dist/fonts")
e.Static("/img", "client/dist/img")
e.Static("/", "client/dist/favicon.ico")
e.File("/", "client/dist/index.html")
e.File("/signup", "public/signup.html")
e.POST("/signup", handler.Signup)
e.File("/login", "public/login.html")
e.POST("/login", handler.Login)
api := e.Group("/api")
api.Use(middleware.JWTWithConfig(handler.Config))
// 認証なしで呼べる api たち
noAuth := e.Group("/api/no-auth")
noAuth.GET("/questions", handler.GetAllQuestions) // 質問の全取得
noAuth.POST("/questions/editdistance", handler.GetQuestionsWithEditDistance)
noAuth.GET("/questions/count", handler.GetQuestionSize) // 質問の個数を取得
noAuth.GET("/completed-questions/count", handler.GetCompletedQuestionSize) // 解決済みの質問の個数を取得
noAuth.GET("/answers/count", handler.GetAnswerSize) // 回答の個数を取得
noAuth.GET("/users/count", handler.GetUserSize) // ユーザの個数を取得
noAuth.GET("/questions/:page/:mode", handler.GetQuestionsWithPage) // 質問をページ取得(mode あり)
noAuth.GET("/users/:page/:mode", handler.GetUsersWithPage) // ユーザをページ取得(mode あり)
noAuth.GET("/question/:id", handler.GetQuestion) // 質問を 1 つ取得
noAuth.GET("/answers/:qid/:mode", handler.GetAnswersForQuestion) // 質問に紐づいた 回答を全取得
noAuth.GET("/answer/:id", handler.GetAnswer) // 回答を 1 つ取得
noAuth.GET("/user/:uid", handler.GetUser) // user_id から ユーザー名を取得
noAuth.PUT("/question/:id/browse", handler.BrowseQuestion) // 閲覧
noAuth.GET("/user-questions/:uid/:page", handler.GetUserQuestions) // ユーザが投稿した質問を取得
noAuth.GET("/book-marked-questions/:uid/:page", handler.GetBookMarkedQuestions) // ユーザが投稿した質問を取得
noAuth.GET("/user-answers/:uid/:page", handler.GetUserAnswers) // ユーザが回答した質問を取得
noAuth.GET("/user-questions/count/:uid", handler.GetUserQuestionSize) // ユーザが投稿した質問の個数を取得
noAuth.GET("/book-marked-questions/count/:uid", handler.GetBookMarkedQuestionSize) // ユーザが投稿した質問の個数を取得
noAuth.GET("/user-answers/count/:uid", handler.GetUserAnswerSize) // ユーザが回答した質問の個数を取得
noAuth.GET("/question-good/count", handler.CountQuestionGood) // 質問へのいいねの総数
noAuth.GET("/answer-good/count", handler.CountAnswerGood) // 回答へのいいねの総数
noAuth.GET("/question-comment/:qid", handler.GetQuestionComments) // 質問に対するコメントを取得
noAuth.GET("/answer-comment/:aid", handler.GetAnswerComments) // 回答に対するコメントを取得
noAuth.GET("/question-comment/count", handler.CountQuestionComment) // 質問に対するコメントの総数を取得
noAuth.GET("/answer-comment/count", handler.CountAnswerComment) // 回答に対するコメントの総数を取得
// questions
api.GET("/questions", handler.GetAllQuestions) // 質問の全取得
api.GET("/questions/count", handler.GetQuestionSize) // 質問の個数を取得
api.GET("/questions/:page", handler.GetQuestionsWithPage) // 質問をページ全取得
api.GET("/user-questions/:page", handler.GetUserQuestionsWithPage) // 質問を 1 つ取得
api.GET("/question/:id", handler.GetQuestion) // 質問を 1 つ取得
api.POST("/questions", handler.PostQuestion) // 質問の投稿
api.DELETE("/question/:id", handler.DeleteQuestion) // 質問の削除
api.PUT("/question/:id/completed", handler.UpdateQuestionCompleted) // 質問の完了フラグの更新
api.PUT("/book-mark/:qid", handler.BookMarkQuestion) // ブックマークする(or 取り消す)
api.PUT("/question/:id/favorite", handler.FavoriteQuestion) // いいね
// answers
api.GET("/answers/:qid", handler.GetAnswersForQuestion) // 質問に紐づいた 回答を全取得
api.GET("/answer/:id", handler.GetAnswer) // 回答を 1 つ取得
api.GET("/user-answers/:page", handler.GetUserAnswersWithPage) // 質問を 1 つ取得
api.POST("/answers", handler.PostAnswer) // 回答の投稿
api.DELETE("/answer/:id", handler.DeleteAnswer) // 質問の削除
api.PUT("/answer/:id/favorite", handler.FavoriteAnswer) // いいね
// users
api.GET("/user/:uid", handler.GetUser) // user_id から ユーザー名を取得
api.DELETE("/user/:uid", handler.DeleteUser) // user_id から ユーザー名を削除
// question_good
api.GET("/question-good/:uid/:qid", handler.QuestionFavorited) // いいね状態かどうか
// answer_good
api.GET("/answer-good/:uid/:aid", handler.AnswerFavorited) // いいね状態かどうか
api.GET("/book-mark/:uid/:qid", handler.QuestionBookMarked) // いいね状態かどうか
// User
api.PUT("/update-user", handler.UpdateUser) // User の基本情報と通知フラグを更新
api.PUT("/notification/:uid/:flag", handler.UpdateUserNotification)
// Comment
api.POST("/question-comment", handler.PostQuestionComment) // 質問へのコメントの投稿
api.POST("/answer-comment", handler.PostAnswerComment) // 回答へのコメントの投稿
api.DELETE("/question-comment/:id", handler.DeleteQuestionComment) // 質問の削除
api.DELETE("/answer-comment/:id", handler.DeleteAnswerComment) // 質問の削除
// Notification
api.POST("/notification/:uid/:qid/:type", handler.PostNotification) // 質問へのコメントの投稿
api.GET("/notification/:uid", handler.GetNotification) // 質問へのコメントの投稿
// api.DELETE("/notification", handler.PostQuestionComment) // TODO 必要になったら実装h
api.GET("/token", handler.Token)
return e
}