menu.go 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. package common
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "mtp2_if/global/app"
  6. "mtp2_if/global/e"
  7. "mtp2_if/logger"
  8. "mtp2_if/models"
  9. "net/http"
  10. "os"
  11. "github.com/gin-gonic/gin"
  12. )
  13. // ClientMenu 客户端菜单
  14. type ClientMenu struct {
  15. Code string `json:"code"` // ID
  16. Title string `json:"title"` // 标题
  17. Sort int `json:"sort"` // 排序
  18. Type int `json:"type"` // 类型,1:菜单 2:按钮
  19. RuleKey string `json:"rulekey"` // 对应权限主键,对应FUNCMENULIST表RESOURCECODE
  20. IsShow bool `json:"isshow"` // 是否显示
  21. URL string `json:"url"` // URL
  22. Remark string `json:"remark"` // 备注
  23. Children []ClientMenu `json:"children"` // 子菜单列表
  24. }
  25. // PCWebMenuAuth PC客户端页面(按钮)权限
  26. type PCWebMenuAuth struct {
  27. Label string `json:"label"` // 标题
  28. Code string `json:"code"` // ID,新版本中权限KEY也是这个字段
  29. RequireAuth bool `json:"requireauth"` // 是否需要权限判断
  30. IsShow bool `json:"isshow"` // 是否显示
  31. Remark string `json:"remark"` // 备注
  32. }
  33. // PCWebMenu PC客户端菜单权限
  34. type PCWebMenu struct {
  35. Title string `json:"title"` // 标题
  36. Code string `json:"code"` // ID,新版本中权限KEY也是这个字段
  37. Path string `json:"path"` // 路由路径
  38. Component string `json:"component"` // 路由组件
  39. Sort int `json:"sort"` // 排序
  40. RequireAuth bool `json:"requireauth"` // 是否需要权限判断
  41. IsShow bool `json:"isshow"` // 是否显示
  42. URL string `json:"url"` // URL
  43. Remark string `json:"remark"` // 备注
  44. Children []PCWebMenu `json:"children"` // 子菜单列表
  45. Auth []PCWebMenuAuth `json:"auth"` // 页面权限列表
  46. }
  47. // GetClientMenusReq 获取交易端菜单请求参数
  48. type GetClientMenusReq struct {
  49. LoginID int `form:"loginID" binding:"required"`
  50. ClientType int `form:"clientType"`
  51. Name string `form:"name"`
  52. }
  53. // GetClientMenus 获取交易端菜单
  54. // @Summary 获取交易端菜单
  55. // @Produce json
  56. // @Security ApiKeyAuth
  57. // @Param loginID query int true "登录账号"
  58. // @Param clientType query int false "终端类型,0:PCWEB 1:Mobile,不传默认返回PC端数据"
  59. // @Param name query string false "分支名称,ermcp:风管云平台 pingan:平安期货,不传默认返回风管云平台"
  60. // @Success 200 {array} ClientMenu
  61. // @Failure 500 {object} app.Response
  62. // @Router /Common/GetClientMenus [get]
  63. // @Tags 通用服务
  64. func GetClientMenus(c *gin.Context) {
  65. appG := app.Gin{C: c}
  66. // 获取请求参数
  67. var req GetClientMenusReq
  68. if err := c.ShouldBind(&req); err != nil {
  69. logger.GetLogger().Errorf("GetClientMenus parse query req: %v", err)
  70. appG.Response(http.StatusBadRequest, e.INVALID_PARAMS, nil)
  71. return
  72. }
  73. // 获取菜单数据
  74. jsonFile := "pc_menu.json"
  75. if req.ClientType == 1 {
  76. // Mobile
  77. jsonFile = "mobile_menu.json"
  78. }
  79. // 获取分支名称
  80. if len(req.Name) > 0 {
  81. if req.ClientType == 0 {
  82. // 目前只支持PCWEB
  83. jsonFile = fmt.Sprintf("pcweb_menu/pcweb_menu_%s.json", req.Name)
  84. }
  85. }
  86. // 读取json文件
  87. // 21-08-15 增加OEM菜单文件支持功能
  88. filePtr, err := os.Open(fmt.Sprintf("config/%s", jsonFile))
  89. if err != nil {
  90. // 读取文件失败
  91. logger.GetLogger().Errorf("GetClientMenus failed: %s", err.Error())
  92. appG.Response(http.StatusBadRequest, e.ERROR_CFG_FILE_FAIL, nil)
  93. return
  94. }
  95. defer filePtr.Close()
  96. var datas []interface{}
  97. // 创建Json编码器
  98. decoder := json.NewDecoder(filePtr)
  99. if err = decoder.Decode(&datas); err != nil {
  100. // Json解码失败
  101. logger.GetLogger().Errorf("GetClientMenus failed: %s", err.Error())
  102. appG.Response(http.StatusBadRequest, e.ERROR_CFG_JSON_FAIL, nil)
  103. return
  104. }
  105. rst := createMenu(datas, req.LoginID)
  106. r := make([]ClientMenu, 0)
  107. if req.ClientType == 0 {
  108. // PC 去掉第一层没有子项的
  109. for _, v := range rst {
  110. if len(v.Children) > 0 {
  111. r = append(r, v)
  112. }
  113. }
  114. } else {
  115. r = rst
  116. }
  117. // 查询成功
  118. logger.GetLogger().Debugln("GetPCMenus successed: %v", r)
  119. appG.Response(http.StatusOK, e.SUCCESS, r)
  120. }
  121. // createMenu 创建菜单数据
  122. func createMenu(datas []interface{}, loginID int) []ClientMenu {
  123. clientMenus := make([]ClientMenu, 0)
  124. for _, v := range datas {
  125. data := v.(map[string]interface{})
  126. if data["isshow"].(bool) {
  127. rulekey := data["rulekey"].(string)
  128. if len(rulekey) != 0 {
  129. // 判断是否有权限
  130. funcMenuList, err := models.GetErmcpRoleFuncMenuLists(loginID, rulekey)
  131. if err != nil {
  132. continue
  133. }
  134. if len(funcMenuList) == 0 {
  135. continue
  136. }
  137. }
  138. item := ClientMenu{
  139. Code: data["code"].(string),
  140. Title: data["title"].(string),
  141. Sort: int(data["sort"].(float64)),
  142. Type: int(data["type"].(float64)),
  143. RuleKey: data["rulekey"].(string),
  144. IsShow: data["isshow"].(bool),
  145. Children: createMenu(data["children"].([]interface{}), loginID), // TODO: - 这里为什么可以这样转?
  146. }
  147. if data["url"] != nil {
  148. item.URL = data["url"].(string)
  149. }
  150. if data["remark"] != nil {
  151. item.Remark = data["remark"].(string)
  152. }
  153. clientMenus = append(clientMenus, item)
  154. }
  155. }
  156. return clientMenus
  157. }
  158. // GetPCWebMenusReq 获取PCWeb交易端菜单请求参数
  159. type GetPCWebMenusReq struct {
  160. LoginID int `form:"loginID" binding:"required"`
  161. Name string `form:"name"`
  162. }
  163. // GetPCWebMenus 获取PCWeb交易端菜单
  164. // @Summary 获取PCWeb交易端菜单
  165. // @Produce json
  166. // @Security ApiKeyAuth
  167. // @Param loginID query int true "登录账号"
  168. // @Param name query string false "分支名称,ermcp:风管云平台,不传默认返回ermcp"
  169. // @Success 200 {array} PCWebMenu
  170. // @Failure 500 {object} app.Response
  171. // @Router /Common/GetPCWebMenus [get]
  172. // @Tags 通用服务
  173. func GetPCWebMenus(c *gin.Context) {
  174. appG := app.Gin{C: c}
  175. // 获取请求参数
  176. var req GetPCWebMenusReq
  177. if err := c.ShouldBind(&req); err != nil {
  178. logger.GetLogger().Errorf("GetPCWebMenus parse query req: %v", err)
  179. appG.Response(http.StatusBadRequest, e.INVALID_PARAMS, nil)
  180. return
  181. }
  182. // 获取菜单数据
  183. jsonFile := "pcweb_menu_ermcp.json"
  184. // 获取分支名称
  185. if len(req.Name) > 0 {
  186. jsonFile = fmt.Sprintf("pcweb_menu/pcweb_menu_%s.json", req.Name)
  187. }
  188. // 读取json文件
  189. filePtr, err := os.Open(fmt.Sprintf("config/%s", jsonFile))
  190. if err != nil {
  191. // 读取文件失败
  192. logger.GetLogger().Errorf("GetPCWebMenus failed: %s", err.Error())
  193. appG.Response(http.StatusBadRequest, e.ERROR_CFG_FILE_FAIL, nil)
  194. return
  195. }
  196. defer filePtr.Close()
  197. var datas []interface{}
  198. // 创建Json编码器
  199. decoder := json.NewDecoder(filePtr)
  200. if err = decoder.Decode(&datas); err != nil {
  201. // Json解码失败
  202. logger.GetLogger().Errorf("GetPCWebMenus failed: %s", err.Error())
  203. appG.Response(http.StatusBadRequest, e.ERROR_CFG_JSON_FAIL, nil)
  204. return
  205. }
  206. rst := createPCWebMenu(datas, req.LoginID)
  207. // 查询成功
  208. logger.GetLogger().Debugln("GetPCWebMenus successed: %v", rst)
  209. appG.Response(http.StatusOK, e.SUCCESS, rst)
  210. }
  211. // createPCWebMenu 创建菜单数据
  212. func createPCWebMenu(datas []interface{}, loginID int) []PCWebMenu {
  213. clientMenus := make([]PCWebMenu, 0)
  214. for _, v := range datas {
  215. data := v.(map[string]interface{})
  216. if data["isshow"].(bool) {
  217. // 判断权限
  218. requireAuth := data["requireauth"].(bool)
  219. // FIXME: - 暂时代码
  220. requireAuth = false
  221. if requireAuth {
  222. code := data["code"].(string) // PC WEB V6版本直接使用CODE来做权限KEY
  223. // 判断是否有权限
  224. funcMenuList, err := models.GetErmcpRoleFuncMenuLists(loginID, code)
  225. if err != nil {
  226. continue
  227. }
  228. if len(funcMenuList) == 0 {
  229. continue
  230. }
  231. }
  232. // 构建页面(按钮)权限
  233. auths := make([]PCWebMenuAuth, 0)
  234. if data["auth"] != nil {
  235. list := data["auth"].([]interface{})
  236. for _, a := range list {
  237. am := a.(map[string]interface{})
  238. if am["isshow"].(bool) {
  239. // 判断权限
  240. requireAuth := data["requireauth"].(bool)
  241. // FIXME: - 暂时代码
  242. requireAuth = false
  243. if requireAuth {
  244. code := data["code"].(string) // PC WEB V6版本直接使用CODE来做权限KEY
  245. // 判断是否有权限
  246. funcMenuList, err := models.GetErmcpRoleFuncMenuLists(loginID, code)
  247. if err != nil {
  248. continue
  249. }
  250. if len(funcMenuList) == 0 {
  251. continue
  252. }
  253. }
  254. auth := PCWebMenuAuth{
  255. Label: am["label"].(string),
  256. Code: am["code"].(string),
  257. RequireAuth: am["requireauth"].(bool),
  258. IsShow: am["isshow"].(bool),
  259. }
  260. if am["remark"] != nil {
  261. auth.Remark = am["remark"].(string)
  262. }
  263. auths = append(auths, auth)
  264. }
  265. }
  266. }
  267. item := PCWebMenu{
  268. Title: data["title"].(string),
  269. Code: data["code"].(string),
  270. Path: data["path"].(string),
  271. Component: data["component"].(string),
  272. Sort: int(data["sort"].(float64)),
  273. RequireAuth: data["requireauth"].(bool),
  274. IsShow: data["isshow"].(bool),
  275. }
  276. if data["url"] != nil {
  277. item.URL = data["url"].(string)
  278. }
  279. if data["remark"] != nil {
  280. item.Remark = data["remark"].(string)
  281. }
  282. if data["children"] != nil {
  283. item.Children = createPCWebMenu(data["children"].([]interface{}), loginID)
  284. }
  285. if len(auths) > 0 {
  286. item.Auth = auths
  287. }
  288. clientMenus = append(clientMenus, item)
  289. }
  290. }
  291. return clientMenus
  292. }