setting.go 665 B

1234567891011121314151617181920212223242526272829303132333435
  1. package http
  2. import (
  3. "go-common/app/interface/main/push-archive/model"
  4. "go-common/library/ecode"
  5. "go-common/library/log"
  6. bm "go-common/library/net/http/blademaster"
  7. "strconv"
  8. )
  9. func getMID(c *bm.Context) (mid int64) {
  10. midi, _ := c.Get("mid")
  11. if midi != nil {
  12. mid = midi.(int64)
  13. }
  14. return
  15. }
  16. func setting(c *bm.Context) {
  17. mid := getMID(c)
  18. c.JSON(pushSrv.Setting(c, mid))
  19. }
  20. func setSetting(c *bm.Context) {
  21. mid := getMID(c)
  22. tp, _ := strconv.Atoi(c.Request.Form.Get("type"))
  23. if tp <= 0 {
  24. log.Error("type(%d) is wrong", tp)
  25. c.JSON(nil, ecode.RequestErr)
  26. return
  27. }
  28. st := &model.Setting{Type: tp}
  29. c.JSON(nil, pushSrv.SetSetting(c, mid, st))
  30. }