menu.go 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "iot_manager_service/app/middleware"
  5. "iot_manager_service/app/system/dao"
  6. "iot_manager_service/app/system/service"
  7. "iot_manager_service/util/common"
  8. "net/http"
  9. "strconv"
  10. )
  11. var Menu = new(menu)
  12. type menu struct{}
  13. func (c *menu) GetDetail(ctx *gin.Context) {
  14. id := ctx.Query("id")
  15. iId, err := strconv.ParseInt(id, 10, 64)
  16. if err != nil {
  17. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  18. return
  19. }
  20. detail, err := service.MenuService.Get(iId)
  21. if err != nil {
  22. ctx.JSON(http.StatusOK, err)
  23. return
  24. }
  25. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, detail))
  26. }
  27. func (c *menu) List(ctx *gin.Context) {
  28. }
  29. func (c *menu) LazyList(ctx *gin.Context) {
  30. id := ctx.Query("parentId")
  31. name := ctx.Query("name")
  32. code := ctx.Query("code")
  33. alias := ctx.Query("alias")
  34. var parentId int64 = -1
  35. if id != "" {
  36. parentId, _ = strconv.ParseInt(id, 10, 64)
  37. }
  38. menus, err := service.MenuService.LazyList(parentId, name, code, alias)
  39. if err != nil {
  40. ctx.JSON(http.StatusOK, common.FailResponse(err.Error(), nil))
  41. return
  42. }
  43. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, menus))
  44. }
  45. func (c *menu) MenuList(ctx *gin.Context) {
  46. }
  47. func (c *menu) LazyMenuList(ctx *gin.Context) {
  48. }
  49. func (c *menu) Submit(ctx *gin.Context) {
  50. var req dao.Menu
  51. if err := ctx.ShouldBindJSON(&req); err != nil {
  52. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  53. return
  54. }
  55. err := service.MenuService.Submit(req)
  56. ctx.JSON(http.StatusOK, err)
  57. }
  58. func (c *menu) Remove(ctx *gin.Context) {
  59. }
  60. func (c *menu) Routes(ctx *gin.Context) {
  61. value, _ := ctx.Get(middleware.Authorization)
  62. claims := value.(*middleware.Claims)
  63. menus, err := service.MenuService.Routes(claims.RoleId)
  64. if err != nil {
  65. ctx.JSON(http.StatusOK, common.FailResponse(err.Error(), nil))
  66. return
  67. }
  68. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, menus))
  69. }
  70. func (c *menu) RoutesExt(cxt *gin.Context) {
  71. }
  72. func (c *menu) Buttons(ctx *gin.Context) {
  73. }
  74. func (c *menu) Tree(ctx *gin.Context) {
  75. menus, err := service.MenuService.Tree()
  76. if err != nil {
  77. ctx.JSON(http.StatusOK, common.FailResponse(err.Error(), nil))
  78. return
  79. }
  80. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, menus))
  81. }
  82. func (c *menu) GrantTree(ctx *gin.Context) {
  83. }
  84. func (c *menu) RoleTreeKeys(ctx *gin.Context) {
  85. }
  86. func (c *menu) GrantTopTree(ctx *gin.Context) {
  87. }
  88. func (c *menu) TopTreeKeys(ctx *gin.Context) {
  89. }
  90. func (c *menu) TopMenu(ctx *gin.Context) {
  91. }
  92. func (c *menu) authRoutes(ctx *gin.Context) {
  93. }