This repository was archived by the owner on Oct 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrouter.go
47 lines (36 loc) · 1.55 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
package router
import (
"github.com/ljcbaby/form/controller"
"github.com/ljcbaby/form/middleware"
"github.com/gin-gonic/gin"
)
// SetupRouter 配置路由
func SetupRouter() *gin.Engine {
// gin.SetMode(gin.ReleaseMode)
r := gin.Default()
// 创建控制器实例
Controller := &controller.Controller{}
// 中间件
r.Use(middleware.CORS())
// 路由配置
r.GET("/", Controller.Index)
// User
r.POST("/users/login", Controller.User.Login)
r.POST("/users/register", Controller.User.Register)
r.GET("/users", middleware.Auth(true), Controller.User.GetUserInfo)
// Form
r.POST("/forms", middleware.Auth(true), Controller.Form.CreateForm)
r.POST("/forms/:id/generateFormBody", middleware.Auth(true), Controller.Form.GenerateFormBody)
r.POST("/forms/:id/duplicate", middleware.Auth(true), Controller.Form.DuplicateForm)
r.GET("/forms", middleware.Auth(true), Controller.Form.GetFormList)
r.GET("/forms/:id", middleware.Auth(false), Controller.Form.GetFormDetail)
r.PATCH("/forms/:id", middleware.Auth(true), Controller.Form.UpdateForm)
r.DELETE("/forms/:id", middleware.Auth(true), Controller.Form.DeleteForm)
// Result
r.POST("/forms/:id/submit", Controller.Result.SubmitForm)
r.GET("/forms/:id/result", middleware.Auth(true), Controller.Result.GetFormResult)
r.GET("/forms/:id/results", middleware.Auth(true), Controller.Result.GetFormResultsList)
r.GET("/forms/:id/results/:rid", middleware.Auth(true), Controller.Result.GetFormResultsDetail)
r.GET("/forms/:id/results/export", middleware.Auth(true), Controller.Result.GetFormResultsFile)
return r
}