router.go 3.08 KB
Newer Older
chenweijian's avatar
chenweijian committed
1 2 3
package route

import (
hujiebin's avatar
hujiebin committed
4 5 6
	"fmt"
	"git.hilo.cn/hilo-common/domain"
	"git.hilo.cn/hilo-common/mycontext"
chenweijian's avatar
chenweijian committed
7 8 9
	"github.com/gin-gonic/gin"
	ginSwagger "github.com/swaggo/gin-swagger"
	"github.com/swaggo/gin-swagger/swaggerFiles"
hujiebin's avatar
hujiebin committed
10
	"hilo-user/_const/enum/msg_e"
chenweijian's avatar
chenweijian committed
11
	_ "hilo-user/docs"
hujiebin's avatar
hujiebin committed
12 13
	"hilo-user/domain/model/msg_m"
	"hilo-user/resp"
hujiebin's avatar
hujiebin committed
14
	"hilo-user/route/cp_r"
chenweijian's avatar
chenweijian committed
15 16 17 18 19 20 21 22 23 24 25
	"hilo-user/route/user_r"
)

func InitRouter() *gin.Engine {
	var r = gin.Default()

	r.GET("/user-swagger/*any", ginSwagger.WrapHandler(swaggerFiles.Handler))

	needLogin := r.Group("")
	needLogin.Use(ExceptionHandle, LoggerHandle, JWTApiHandle)
	v1 := needLogin.Group("/v1")
hujiebin's avatar
hujiebin committed
26
	v2 := needLogin.Group("/v2")
chenweijian's avatar
chenweijian committed
27 28 29
	user := v1.Group("/user")
	{
		user.GET("/nameplate", wrapper(user_r.UserNameplate))
hujiebin's avatar
hujiebin committed
30
		user.GET("/bag/:resType", wrapper(user_r.UserBag))
chenweijian's avatar
chenweijian committed
31
	}
hujiebin's avatar
hujiebin committed
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
	cp := v2.Group("/cp")
	{
		cp.GET("/space", wrapper(cp_r.CpSpace))
		cp.PUT("/privilege/openClose", wrapper(cp_r.CpPrivilegeOpenClose))
		cp.GET("/rank/:queryType", wrapper(cp_r.CpRank))
		cp.GET("/my/:queryType", wrapper(cp_r.CpMy))
		cp.GET("/achievement", wrapper(cp_r.CpAchievement))
		cp.GET("/top3", wrapper(cp_r.CpTop3))

		cp.POST("/anniversary", wrapper(cp_r.PostAnniversary))
		cp.PUT("/anniversary/:id", wrapper(cp_r.PutAnniversary))
		cp.GET("/anniversary", wrapper(cp_r.PageAnniversary))
		cp.DELETE("/anniversary/:id", wrapper(cp_r.DelAnniversary))

		cp.GET("/relation/check", wrapper(cp_r.CheckUserCpRelation))
		cp.POST("/relation", wrapper(cp_r.CpRelation))
		cp.POST("/relation/invite/reply", wrapper(cp_r.ReplyCpInvite))
		cp.POST("/relation/cancel/reply", wrapper(cp_r.ReplyCpCancel))
		//cp.GET("/relation/detail", wrapper(cp_r.CpDetailPage))
		cp.GET("/im/check", wrapper(cp_r.CheckCpImExpire))
	}
chenweijian's avatar
chenweijian committed
53 54
	inner := r.Group("/inner")
	inner.Use(ExceptionHandle, LoggerHandle)
hujiebin's avatar
hujiebin committed
55
	innerUser := inner.Group("/user")
chenweijian's avatar
chenweijian committed
56
	{
hujiebin's avatar
hujiebin committed
57 58
		innerUser.GET("/levels", wrapper(user_r.MGetUserLevels))
		innerUser.GET("/bag/id", wrapper(user_r.GetUserBagId))
hujiebin's avatar
hujiebin committed
59 60 61
		innerUser.GET("/cp", wrapper(user_r.GetUserCp))
		innerUser.GET("/cpRelations", wrapper(user_r.MGetUserCpRelation))
		innerUser.GET("/cp/pair", wrapper(user_r.GetUserCpPair))
hujiebin's avatar
hujiebin committed
62 63 64 65 66 67 68 69
	}
	// 道具相关
	innerProp := inner.Group("/prop")
	{
		innerProp.POST("/bag/send", wrapper(user_r.SendUserBag))           // 下发背包道具,暂礼物
		innerProp.POST("/noble/send", wrapper(user_r.SendUserNoble))       // 下发贵族
		innerProp.POST("/headwear/send", wrapper(user_r.SendUserHeadwear)) // 下发头饰
		innerProp.POST("/ride/send", wrapper(user_r.SendUserRide))         // 下发座驾
chenweijian's avatar
chenweijian committed
70
	}
hujiebin's avatar
hujiebin committed
71
	r.GET("/test", wrapper(Test))
chenweijian's avatar
chenweijian committed
72 73
	return r
}
hujiebin's avatar
hujiebin committed
74 75 76 77 78 79 80 81 82 83 84 85 86

func Test(c *gin.Context) (*mycontext.MyContext, error) {
	var model = domain.CreateModelContext(nil)
	myCtx := mycontext.CreateMyContext(c.Keys)
	// 下发hilo小助手通知
	if err := msg_m.NewUserRecord(model, 4549, msg_e.AddProps, "", 0, "", fmt.Sprintf("%d", 10), "https://image.whoisamy.shop/hilo/manager/1b95e0e63b814261acccc6e1f1736627.png", "", "").Persistent(); err != nil {
		model.Log.Errorf("NewUserRecord fail")
	} else {
		msg_m.SendEmasMsgAssistant(model, "f98c7fe5698e447c998615332eb660d1", "iOS")
	}
	resp.ResponseOk(c, struct{}{})
	return myCtx, nil
}