menu.go 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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"
  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, util.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, util.SuccessResponse(util.Succeeded, detail))
  26. }
  27. func (c *menu) List(ctx *gin.Context) {
  28. }
  29. func (c *menu) LazyList(ctx *gin.Context) {
  30. }
  31. func (c *menu) MenuList(ctx *gin.Context) {
  32. }
  33. func (c *menu) LazyMenuList(ctx *gin.Context) {
  34. }
  35. func (c *menu) Submit(ctx *gin.Context) {
  36. var req dao.Menu
  37. if err := ctx.ShouldBindJSON(&req); err != nil {
  38. ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(err.Error(), nil))
  39. return
  40. }
  41. err := service.MenuService.Submit(req)
  42. ctx.JSON(http.StatusOK, err)
  43. }
  44. func (c *menu) Remove(ctx *gin.Context) {
  45. }
  46. func (c *menu) Routes(ctx *gin.Context) {
  47. value, isExist := ctx.Get(middleware.Authorization)
  48. if !isExist || value == nil {
  49. ctx.JSON(http.StatusUnauthorized, util.NormalResponse(http.StatusUnauthorized, "", nil))
  50. }
  51. menus, err := service.MenuService.Routes(value.(*middleware.Claims).RoleId)
  52. if err != nil {
  53. ctx.JSON(http.StatusOK, util.FailResponse(err.Error(), nil))
  54. return
  55. }
  56. ctx.JSON(http.StatusOK, menus)
  57. }
  58. func (c *menu) RoutesExt(cxt *gin.Context) {
  59. }
  60. func (c *menu) Buttons(ctx *gin.Context) {
  61. }
  62. func (c *menu) Tree(ctx *gin.Context) {
  63. }
  64. func (c *menu) GrantTree(ctx *gin.Context) {
  65. }
  66. func (c *menu) RoleTreeKeys(ctx *gin.Context) {
  67. }
  68. func (c *menu) GrantTopTree(ctx *gin.Context) {
  69. }
  70. func (c *menu) TopTreeKeys(ctx *gin.Context) {
  71. }
  72. func (c *menu) TopMenu(ctx *gin.Context) {
  73. }
  74. func (c *menu) authRoutes(ctx *gin.Context) {
  75. }