router.go 2.29 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
	cp := v2.Group("/cp")
	{
		cp.GET("/space", wrapper(cp_r.CpSpace))
hujiebin's avatar
hujiebin committed
35
		cp.PUT("/privilege/openClose", wrapper(cp_r.CpPrivilegeOpenClose))
hujiebin's avatar
hujiebin committed
36
		cp.GET("/rank/:queryType", wrapper(cp_r.CpRank))
hujiebin's avatar
hujiebin committed
37
		cp.GET("/my/:queryType", wrapper(cp_r.CpMy))
hujiebin's avatar
hujiebin committed
38
		cp.GET("/achievement", wrapper(cp_r.CpAchievement))
hujiebin's avatar
hujiebin committed
39
	}
chenweijian's avatar
chenweijian committed
40 41
	inner := r.Group("/inner")
	inner.Use(ExceptionHandle, LoggerHandle)
hujiebin's avatar
hujiebin committed
42
	innerUser := inner.Group("/user")
chenweijian's avatar
chenweijian committed
43
	{
hujiebin's avatar
hujiebin committed
44 45 46 47 48 49 50 51 52 53
		innerUser.GET("/levels", wrapper(user_r.MGetUserLevels))
		innerUser.GET("/bag/id", wrapper(user_r.GetUserBagId))
	}
	// 道具相关
	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
54
	}
hujiebin's avatar
hujiebin committed
55
	r.GET("/test", wrapper(Test))
chenweijian's avatar
chenweijian committed
56 57
	return r
}
hujiebin's avatar
hujiebin committed
58 59 60 61 62 63 64 65 66 67 68 69 70

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
}