controller.go 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  1. package api
  2. import (
  3. "cr-svc/log"
  4. "crypto/md5"
  5. "encoding/json"
  6. "fmt"
  7. "net/http"
  8. "runtime"
  9. "strconv"
  10. "strings"
  11. jwt "github.com/appleboy/gin-jwt/v2"
  12. "github.com/gin-gonic/gin"
  13. )
  14. // Handler 包装http处理函数
  15. type Handler func(c *gin.Context, apictx *ApiSession) (interface{}, error)
  16. // JWTHander JWT授权的http处理函数
  17. type JWTHander func(c *gin.Context, apictx *ApiSession) (interface{}, error)
  18. // ResultWrapper 统一返回结果处理
  19. func ResultWrapper(handle Handler, svc *Service) gin.HandlerFunc {
  20. return func(c *gin.Context) {
  21. defer func() {
  22. if r := recover(); r != nil {
  23. fmt.Println("recover success.")
  24. fmt.Println(r)
  25. buf := make([]byte, 1<<16)
  26. runtime.Stack(buf, true)
  27. fmt.Println("buf", string(buf))
  28. c.JSON(http.StatusOK, NewFailResultWithData("系统异常", r))
  29. }
  30. }()
  31. data, err := handle(c, &ApiSession{Svc: svc, User: nil})
  32. if err != nil {
  33. httpErr, ok := err.(HTTPError)
  34. if ok {
  35. c.JSON(http.StatusOK, NewFailResultWithCode(httpErr.Error(), httpErr.Code))
  36. return
  37. }
  38. c.JSON(http.StatusOK, NewFailResult(err.Error()))
  39. return
  40. }
  41. if data != nil {
  42. c.JSON(http.StatusOK, NewOkResult(data))
  43. }
  44. }
  45. }
  46. // ResultJWTWrapper JWT授权处理handler
  47. func ResultJWTWrapper(handle JWTHander, svc *Service) gin.HandlerFunc {
  48. return func(c *gin.Context) {
  49. defer func() {
  50. if r := recover(); r != nil {
  51. fmt.Println("recover success.")
  52. fmt.Println(r)
  53. buf := make([]byte, 1<<16)
  54. runtime.Stack(buf, true)
  55. fmt.Println("buf", string(buf))
  56. c.JSON(http.StatusOK, NewFailResultWithData("系统异常", r))
  57. }
  58. }()
  59. claims := jwt.ExtractClaims(c)
  60. var usr *JWTUser
  61. if claims["id"] != nil {
  62. fmt.Printf("%#v\n", claims)
  63. id := claims["id"].(string)
  64. usr = &JWTUser{ID: id}
  65. }
  66. var apis = &ApiSession{
  67. Svc: svc,
  68. User: usr,
  69. }
  70. data, err := handle(c, apis)
  71. if err != nil {
  72. fmt.Println(err)
  73. httpErr, ok := err.(HTTPError)
  74. if ok {
  75. c.JSON(http.StatusOK, NewFailResultWithCode(httpErr.Error(), httpErr.Code))
  76. return
  77. }
  78. c.JSON(http.StatusOK, NewFailResult(err.Error()))
  79. return
  80. }
  81. if data != nil {
  82. c.JSON(http.StatusOK, NewOkResult(data))
  83. }
  84. }
  85. }
  86. // ResultJWTWrapper JWT授权处理handler
  87. func ResultJWTWrapperKey(handle JWTHander, svc *Service, keys []string) gin.HandlerFunc {
  88. return func(c *gin.Context) {
  89. defer func() {
  90. if r := recover(); r != nil {
  91. fmt.Println("recover success.")
  92. fmt.Println(r)
  93. buf := make([]byte, 1<<16)
  94. runtime.Stack(buf, true)
  95. fmt.Println("buf", string(buf))
  96. c.JSON(http.StatusOK, NewFailResultWithData("系统异常", r))
  97. }
  98. }()
  99. claims := jwt.ExtractClaims(c)
  100. var usr *JWTUser
  101. if claims["id"] != nil {
  102. id := claims["id"].(string)
  103. usr = &JWTUser{ID: id}
  104. }
  105. var apis = &ApiSession{
  106. Svc: svc,
  107. User: usr,
  108. }
  109. data, err := handle(c, apis)
  110. if err != nil {
  111. fmt.Println(err)
  112. httpErr, ok := err.(HTTPError)
  113. if ok {
  114. c.JSON(http.StatusOK, NewFailResultWithCode(httpErr.Error(), httpErr.Code))
  115. return
  116. }
  117. c.JSON(http.StatusOK, NewFailResult(err.Error()))
  118. return
  119. }
  120. if data != nil {
  121. c.JSON(http.StatusOK, NewOkResult(data))
  122. }
  123. }
  124. }
  125. // ResultSuc 成功
  126. func ResultSuc(c *gin.Context, data interface{}) {
  127. c.JSON(http.StatusOK, NewOkResult(data))
  128. }
  129. // ResultFail 失败
  130. func ResultFail(c *gin.Context, msg string) {
  131. c.JSON(http.StatusOK, NewFailResult(msg))
  132. }
  133. // ResultFail401 失败2
  134. func ResultFail401(c *gin.Context, msg string, data interface{}) {
  135. c.JSON(http.StatusOK, &HTTPResult{ErrorNo: 401, Result: data, ErrorDesc: msg})
  136. }
  137. // UtilMd5 结算md5的值
  138. func UtilMd5(s string) string {
  139. data := []byte(s)
  140. has := md5.Sum(data)
  141. return fmt.Sprintf("%x", has)
  142. }
  143. // UtilQueryPageSize 分页数据
  144. func UtilQueryPageSize(c *gin.Context) (page int64, size int64, query map[string]interface{}) {
  145. p := c.Query("page")
  146. s := c.Query("size")
  147. q := c.Query("query")
  148. var _page = 1
  149. if len(p) > 0 {
  150. _page, _ = strconv.Atoi(p)
  151. }
  152. page = int64(_page)
  153. var _size = 10
  154. if len(s) > 0 {
  155. _size, _ = strconv.Atoi(s)
  156. }
  157. size = int64(_size)
  158. if len(q) > 0 {
  159. json.Unmarshal([]byte(q), &query)
  160. } else {
  161. query = map[string]interface{}{}
  162. }
  163. return
  164. }
  165. func UtilQueryPageSize2(c *gin.Context) (page int64, size int64, query map[string]interface{}, fields []string) {
  166. p := c.Query("page")
  167. s := c.Query("size")
  168. q := c.Query("query")
  169. f := c.Query("fields")
  170. var _page = 1
  171. if len(p) > 0 {
  172. _page, _ = strconv.Atoi(p)
  173. }
  174. page = int64(_page)
  175. var _size = 10
  176. if len(s) > 0 {
  177. _size, _ = strconv.Atoi(s)
  178. }
  179. size = int64(_size)
  180. if len(q) > 0 {
  181. json.Unmarshal([]byte(q), &query)
  182. } else {
  183. query = map[string]interface{}{}
  184. }
  185. if len(f) > 0 {
  186. fields = strings.Split(f, ",")
  187. } else {
  188. fields = []string{}
  189. }
  190. return
  191. }
  192. // HTTPResult 客户端统一返回结构体
  193. type HTTPResult struct {
  194. ErrorNo int32 `json:"errorNo"`
  195. Result interface{} `json:"result"`
  196. ErrorDesc string `json:"errorDesc"`
  197. }
  198. func (err HTTPResult) Error() string {
  199. return err.ErrorDesc
  200. }
  201. // HTTPError 统一错误处理
  202. type HTTPError struct {
  203. Code int32 `json:"code"`
  204. Message string `json:"message"`
  205. }
  206. func (err HTTPError) Error() string {
  207. return err.Message
  208. }
  209. // NewOkResult 创建正确结果
  210. func NewOkResult(obj interface{}) *HTTPResult {
  211. return &HTTPResult{ErrorNo: 200, Result: obj}
  212. }
  213. // NewFailResult 创建错误结构
  214. func NewFailResult(desc string) *HTTPResult {
  215. return &HTTPResult{ErrorNo: 500, Result: nil, ErrorDesc: desc}
  216. }
  217. // NewFailResultWithData 创建错误返回结果
  218. func NewFailResultWithData(desc string, data interface{}) *HTTPResult {
  219. return &HTTPResult{ErrorNo: 500, Result: data, ErrorDesc: desc}
  220. }
  221. // NewFailResultWithCode 创建错误结构
  222. func NewFailResultWithCode(desc string, code int32) *HTTPResult {
  223. return &HTTPResult{ErrorNo: code, Result: nil, ErrorDesc: desc}
  224. }
  225. // NewError NewError
  226. func NewError(desc string) HTTPError {
  227. return HTTPError{Code: 500, Message: desc}
  228. }
  229. func NewLogError(desc string) HTTPError {
  230. pc, file, line, _ := runtime.Caller(1)
  231. log.Errorf("%s:%d=>%s %v", file, line, runtime.FuncForPC(pc).Name(), desc)
  232. return HTTPError{Code: 500, Message: desc}
  233. }
  234. func NewLogWithError(err error) HTTPError {
  235. pc, file, line, _ := runtime.Caller(1)
  236. log.Errorf("%s:%d=>%s %s", file, line, runtime.FuncForPC(pc).Name(), err.Error())
  237. return HTTPError{Code: 500, Message: err.Error()}
  238. }
  239. // NewErrorWithCode NewErrorWithCode
  240. func NewErrorWithCode(desc string, code int32) HTTPError {
  241. return HTTPError{Code: code, Message: desc}
  242. }
  243. // JWTUser jwt登录用户
  244. type JWTUser struct {
  245. ID string `json:"id"`
  246. }
  247. func UtilQueryMap(c *gin.Context) map[string]interface{} {
  248. query := map[string]interface{}{}
  249. q := c.Query("query")
  250. if len(q) > 0 {
  251. json.Unmarshal([]byte(q), &query)
  252. }
  253. return query
  254. }
  255. func BoolValue(value bool) *bool {
  256. return &value
  257. }
  258. func Int32Value(value int32) *int32 {
  259. return &value
  260. }
  261. func Float32Value(value float32) *float32 {
  262. return &value
  263. }
  264. func Float64Value(value float64) *float64 {
  265. return &value
  266. }