controller.go 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404
  1. package api
  2. import (
  3. "3dshow/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. id := claims["id"].(string)
  63. name := claims["phone"].(string)
  64. role := claims["role"].(string)
  65. parent := claims["parent"].(string)
  66. state := int32(claims["state"].(float64))
  67. usr = &JWTUser{ID: id, Phone: name, Parent: parent, Role: role, State: state}
  68. }
  69. var apis = &ApiSession{
  70. Svc: svc,
  71. User: usr,
  72. }
  73. data, err := handle(c, apis)
  74. if err != nil {
  75. fmt.Println(err)
  76. httpErr, ok := err.(HTTPError)
  77. if ok {
  78. c.JSON(http.StatusOK, NewFailResultWithCode(httpErr.Error(), httpErr.Code))
  79. return
  80. }
  81. c.JSON(http.StatusOK, NewFailResult(err.Error()))
  82. return
  83. }
  84. if data != nil {
  85. c.JSON(http.StatusOK, NewOkResult(data))
  86. }
  87. }
  88. }
  89. // ResultJWTTestWrapper test 默认一个测试用户 JWT授权处理handler
  90. func ResultJWTTestWrapper(handle JWTHander, svc *Service) gin.HandlerFunc {
  91. return func(c *gin.Context) {
  92. defer func() {
  93. if r := recover(); r != nil {
  94. fmt.Println("recover success.")
  95. fmt.Println(r)
  96. buf := make([]byte, 1<<16)
  97. runtime.Stack(buf, true)
  98. fmt.Println("buf", string(buf))
  99. c.JSON(http.StatusOK, NewFailResultWithData("error", r))
  100. }
  101. }()
  102. var usr *JWTUser = &JWTUser{ID: svc.DebugUserId, Phone: svc.DebugUserPhone, Parent: svc.DebugUserId, Role: svc.DebugUserRole}
  103. data, err := handle(c, &ApiSession{Svc: svc, User: usr})
  104. if err != nil {
  105. fmt.Println(err)
  106. httpErr, ok := err.(HTTPError)
  107. if ok {
  108. c.JSON(http.StatusOK, NewFailResultWithCode(httpErr.Error(), httpErr.Code))
  109. return
  110. }
  111. c.JSON(http.StatusOK, NewFailResult(err.Error()))
  112. return
  113. }
  114. c.JSON(http.StatusOK, NewOkResult(data))
  115. }
  116. }
  117. // ResultJWTWrapper JWT授权处理handler
  118. func ResultJWTWrapperKey(handle JWTHander, svc *Service, keys []string) gin.HandlerFunc {
  119. return func(c *gin.Context) {
  120. defer func() {
  121. if r := recover(); r != nil {
  122. fmt.Println("recover success.")
  123. fmt.Println(r)
  124. buf := make([]byte, 1<<16)
  125. runtime.Stack(buf, true)
  126. fmt.Println("buf", string(buf))
  127. c.JSON(http.StatusOK, NewFailResultWithData("系统异常", r))
  128. }
  129. }()
  130. claims := jwt.ExtractClaims(c)
  131. var usr *JWTUser
  132. if claims["id"] != nil {
  133. id := claims["id"].(string)
  134. phone := claims["phone"].(string)
  135. name := claims["name"].(string)
  136. role := claims["role"].(string)
  137. parent := claims["parent"].(string)
  138. state := int32(claims["state"].(float64))
  139. key := ""
  140. if claims["key"] != nil {
  141. key = claims["key"].(string)
  142. }
  143. usr = &JWTUser{ID: id, Name: name, Phone: phone, Parent: parent, Role: role, State: state, Key: key}
  144. }
  145. var apis = &ApiSession{
  146. Svc: svc,
  147. User: usr,
  148. }
  149. flag := false
  150. for _, key := range keys {
  151. if usr.Key == key {
  152. flag = true
  153. break
  154. }
  155. }
  156. if !flag {
  157. c.JSON(http.StatusForbidden, NewFailResult("您没有权限"))
  158. c.Abort()
  159. return
  160. }
  161. data, err := handle(c, apis)
  162. if err != nil {
  163. fmt.Println(err)
  164. httpErr, ok := err.(HTTPError)
  165. if ok {
  166. c.JSON(http.StatusOK, NewFailResultWithCode(httpErr.Error(), httpErr.Code))
  167. return
  168. }
  169. c.JSON(http.StatusOK, NewFailResult(err.Error()))
  170. return
  171. }
  172. if data != nil {
  173. c.JSON(http.StatusOK, NewOkResult(data))
  174. }
  175. }
  176. }
  177. // ResultSuc 成功
  178. func ResultSuc(c *gin.Context, data interface{}) {
  179. c.JSON(http.StatusOK, NewOkResult(data))
  180. }
  181. // ResultFail 失败
  182. func ResultFail(c *gin.Context, msg string) {
  183. c.JSON(http.StatusOK, NewFailResult(msg))
  184. }
  185. // ResultFail401 失败2
  186. func ResultFail401(c *gin.Context, msg string, data interface{}) {
  187. c.JSON(http.StatusOK, &HTTPResult{ErrorNo: 401, Result: data, ErrorDesc: msg})
  188. }
  189. // UtilMd5 结算md5的值
  190. func UtilMd5(s string) string {
  191. data := []byte(s)
  192. has := md5.Sum(data)
  193. return fmt.Sprintf("%x", has)
  194. }
  195. // UtilQueryPageSize 分页数据
  196. func UtilQueryPageSize(c *gin.Context) (page int64, size int64, query map[string]interface{}) {
  197. p := c.Query("page")
  198. s := c.Query("size")
  199. q := c.Query("query")
  200. var _page = 1
  201. if len(p) > 0 {
  202. _page, _ = strconv.Atoi(p)
  203. }
  204. page = int64(_page)
  205. var _size = 10
  206. if len(s) > 0 {
  207. _size, _ = strconv.Atoi(s)
  208. }
  209. size = int64(_size)
  210. if len(q) > 0 {
  211. json.Unmarshal([]byte(q), &query)
  212. } else {
  213. query = map[string]interface{}{}
  214. }
  215. return
  216. }
  217. func UtilQueryPageSize2(c *gin.Context) (page int64, size int64, query map[string]interface{}, fields []string) {
  218. p := c.Query("page")
  219. s := c.Query("size")
  220. q := c.Query("query")
  221. f := c.Query("fields")
  222. var _page = 1
  223. if len(p) > 0 {
  224. _page, _ = strconv.Atoi(p)
  225. }
  226. page = int64(_page)
  227. var _size = 10
  228. if len(s) > 0 {
  229. _size, _ = strconv.Atoi(s)
  230. }
  231. size = int64(_size)
  232. if len(q) > 0 {
  233. json.Unmarshal([]byte(q), &query)
  234. } else {
  235. query = map[string]interface{}{}
  236. }
  237. if len(f) > 0 {
  238. fields = strings.Split(f, ",")
  239. } else {
  240. fields = []string{}
  241. }
  242. return
  243. }
  244. // HTTPResult 客户端统一返回结构体
  245. type HTTPResult struct {
  246. ErrorNo int32 `json:"errorNo"`
  247. Result interface{} `json:"result"`
  248. ErrorDesc string `json:"errorDesc"`
  249. }
  250. func (err HTTPResult) Error() string {
  251. return err.ErrorDesc
  252. }
  253. // HTTPError 统一错误处理
  254. type HTTPError struct {
  255. Code int32 `json:"code"`
  256. Message string `json:"message"`
  257. }
  258. func (err HTTPError) Error() string {
  259. return err.Message
  260. }
  261. // NewOkResult 创建正确结果
  262. func NewOkResult(obj interface{}) *HTTPResult {
  263. return &HTTPResult{ErrorNo: 200, Result: obj}
  264. }
  265. // NewFailResult 创建错误结构
  266. func NewFailResult(desc string) *HTTPResult {
  267. return &HTTPResult{ErrorNo: 500, Result: nil, ErrorDesc: desc}
  268. }
  269. // NewFailResultWithData 创建错误返回结果
  270. func NewFailResultWithData(desc string, data interface{}) *HTTPResult {
  271. return &HTTPResult{ErrorNo: 500, Result: data, ErrorDesc: desc}
  272. }
  273. // NewFailResultWithCode 创建错误结构
  274. func NewFailResultWithCode(desc string, code int32) *HTTPResult {
  275. return &HTTPResult{ErrorNo: code, Result: nil, ErrorDesc: desc}
  276. }
  277. // NewError NewError
  278. func NewError(desc string) HTTPError {
  279. return HTTPError{Code: 500, Message: desc}
  280. }
  281. func NewLogError(desc string) HTTPError {
  282. pc, file, line, _ := runtime.Caller(1)
  283. log.Errorf("%s:%d=>%s %v", file, line, runtime.FuncForPC(pc).Name(), desc)
  284. return HTTPError{Code: 500, Message: desc}
  285. }
  286. func NewLogWithError(err error) HTTPError {
  287. pc, file, line, _ := runtime.Caller(1)
  288. log.Errorf("%s:%d=>%s %s", file, line, runtime.FuncForPC(pc).Name(), err.Error())
  289. return HTTPError{Code: 500, Message: err.Error()}
  290. }
  291. // NewErrorWithCode NewErrorWithCode
  292. func NewErrorWithCode(desc string, code int32) HTTPError {
  293. return HTTPError{Code: code, Message: desc}
  294. }
  295. // JWTUser jwt登录用户
  296. type JWTUser struct {
  297. ID string `json:"id"`
  298. Parent string `json:"parent"`
  299. Name string `json:"name"`
  300. Phone string `json:"phone"`
  301. Role string `json:"role"`
  302. Perms string `json:"perms"`
  303. State int32 `json:"state"`
  304. Key string `json:"key"`
  305. UserType int `json:"userType"`
  306. }
  307. func UtilQueryMap(c *gin.Context) map[string]interface{} {
  308. query := map[string]interface{}{}
  309. q := c.Query("query")
  310. if len(q) > 0 {
  311. json.Unmarshal([]byte(q), &query)
  312. }
  313. return query
  314. }
  315. func BoolValue(value bool) *bool {
  316. return &value
  317. }
  318. func Int32Value(value int32) *int32 {
  319. return &value
  320. }
  321. func Float32Value(value float32) *float32 {
  322. return &value
  323. }
  324. func Float64Value(value float64) *float64 {
  325. return &value
  326. }