123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- package http
- import (
- "go-common/app/admin/main/esports/model"
- "go-common/library/ecode"
- bm "go-common/library/net/http/blademaster"
- )
- func gameInfo(c *bm.Context) {
- v := new(struct {
- ID int64 `form:"id" validate:"min=1"`
- })
- if err := c.Bind(v); err != nil {
- return
- }
- c.JSON(esSvc.GameInfo(c, v.ID))
- }
- func gameList(c *bm.Context) {
- var (
- list []*model.Game
- cnt int64
- err error
- )
- v := new(struct {
- Pn int64 `form:"pn" validate:"min=0"`
- Ps int64 `form:"ps" validate:"min=0,max=30"`
- Name string `form:"name"`
- State int64 `form:"state"`
- })
- if err = c.Bind(v); err != nil {
- return
- }
- if v.Pn == 0 {
- v.Pn = 1
- }
- if v.Ps == 0 {
- v.Ps = 20
- }
- if list, cnt, err = esSvc.GameList(c, v.Pn, v.Ps, v.Name); err != nil {
- c.JSON(nil, err)
- return
- }
- data := make(map[string]interface{}, 2)
- page := map[string]int64{
- "num": v.Pn,
- "size": v.Ps,
- "total": cnt,
- }
- data["page"] = page
- data["list"] = list
- c.JSON(data, nil)
- }
- func addGame(c *bm.Context) {
- v := new(model.Game)
- if err := c.Bind(v); err != nil {
- return
- }
- if v.Plat != 0 {
- if _, ok := model.PlatMap[v.Plat]; !ok {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- }
- if v.Type != 0 {
- if _, ok := model.TypeMap[v.Type]; !ok {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- }
- c.JSON(nil, esSvc.AddGame(c, v))
- }
- func editGame(c *bm.Context) {
- v := new(model.Game)
- if err := c.Bind(v); err != nil {
- return
- }
- if v.ID <= 0 {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- if v.Plat != 0 {
- if _, ok := model.PlatMap[v.Plat]; !ok {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- }
- if v.Type != 0 {
- if _, ok := model.TypeMap[v.Type]; !ok {
- c.JSON(nil, ecode.RequestErr)
- return
- }
- }
- c.JSON(nil, esSvc.EditGame(c, v))
- }
- func forbidGame(c *bm.Context) {
- v := new(struct {
- ID int64 `form:"id" validate:"min=1"`
- State int `form:"state" validate:"min=0,max=1"`
- })
- if err := c.Bind(v); err != nil {
- return
- }
- c.JSON(nil, esSvc.ForbidGame(c, v.ID, v.State))
- }
- func types(c *bm.Context) {
- c.JSON(esSvc.Types(c))
- }
|