sudo.go 817 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package http
  2. import (
  3. "encoding/json"
  4. bm "go-common/library/net/http/blademaster"
  5. )
  6. func sudo(ctx *bm.Context) {
  7. cmd := ctx.Request.Form.Get("cmd")
  8. if cmd == "" {
  9. ctx.AbortWithStatus(400)
  10. return
  11. }
  12. ctx.Set("command", cmd)
  13. }
  14. func notityPurgeCache(ctx *bm.Context) {
  15. cmd, ok := ctx.Get("command")
  16. if !ok {
  17. ctx.AbortWithStatus(400)
  18. return
  19. }
  20. plain, ok := cmd.(string)
  21. if !ok {
  22. ctx.AbortWithStatus(400)
  23. return
  24. }
  25. var param struct {
  26. Mid int64 `json:"mid"`
  27. Action string `json:"action"`
  28. }
  29. if err := json.Unmarshal([]byte(plain), &param); err != nil {
  30. ctx.AbortWithStatus(400)
  31. return
  32. }
  33. if param.Mid <= 0 {
  34. ctx.AbortWithStatus(400)
  35. return
  36. }
  37. if param.Action == "" {
  38. param.Action = "updateByAdmin"
  39. }
  40. ctx.JSON(nil, memberSvc.NotityPurgeCache(ctx, param.Mid, param.Action))
  41. }