credential.go 864 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package http
  2. import (
  3. "strconv"
  4. "go-common/library/ecode"
  5. bm "go-common/library/net/http/blademaster"
  6. )
  7. const (
  8. _contentType = "Content-Type"
  9. _urlJSON = "application/json"
  10. )
  11. // credential verify.
  12. func credential(ctx *bm.Context) {
  13. var (
  14. appIDStr string
  15. signature string
  16. )
  17. req := ctx.Request
  18. params := req.Form
  19. header := req.Header
  20. if header.Get(_contentType) == _urlJSON {
  21. appIDStr = header.Get("App-Tree-ID")
  22. signature = header.Get("Signature")
  23. header.Del("Signature")
  24. } else {
  25. appIDStr = params.Get("app_tree_id")
  26. signature = params.Get("signature")
  27. params.Del("signature")
  28. }
  29. appID, _ := strconv.ParseInt(appIDStr, 10, 64)
  30. if appID == 0 || signature == "" {
  31. ctx.JSON(nil, ecode.RequestErr)
  32. ctx.Abort()
  33. return
  34. }
  35. if ok := svr.CheckSign(appID, signature); !ok {
  36. ctx.JSON(nil, ecode.SignCheckErr)
  37. ctx.Abort()
  38. }
  39. }