kfc.go 790 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package http
  2. import (
  3. bm "go-common/library/net/http/blademaster"
  4. )
  5. func kfcInfo(c *bm.Context) {
  6. p := new(struct {
  7. ID int64 `form:"id" validate:"min=1"`
  8. })
  9. if err := c.Bind(p); err != nil {
  10. return
  11. }
  12. midStr, _ := c.Get("mid")
  13. mid := midStr.(int64)
  14. c.JSON(kfcSvc.KfcInfo(c, p.ID, mid))
  15. }
  16. func kfcUse(c *bm.Context) {
  17. p := new(struct {
  18. CouponCode string `form:"coupon_code" validate:"min=1"`
  19. })
  20. if err := c.Bind(p); err != nil {
  21. return
  22. }
  23. if len([]rune(p.CouponCode)) == 12 {
  24. kfcSvc.KfcUse(c, p.CouponCode)
  25. }
  26. c.JSON(200, nil)
  27. }
  28. func deliverKfc(c *bm.Context) {
  29. p := new(struct {
  30. ID int64 `form:"id" validate:"min=1"`
  31. Mid int64 `form:"mid" validate:"min=1"`
  32. })
  33. if err := c.Bind(p); err != nil {
  34. return
  35. }
  36. c.JSON(nil, kfcSvc.DeliverKfc(c, p.ID, p.Mid))
  37. }