123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- package controller
- import (
- "github.com/gin-gonic/gin"
- "iot_manager_service/app/middleware"
- "iot_manager_service/app/system/dao"
- "iot_manager_service/app/system/service"
- "iot_manager_service/util/common"
- "net/http"
- "strconv"
- )
- var Menu = new(menu)
- type menu struct{}
- func (c *menu) GetDetail(ctx *gin.Context) {
- id := ctx.Query("id")
- iId, err := strconv.ParseInt(id, 10, 64)
- if err != nil {
- ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
- return
- }
- detail, err := service.MenuService.Get(iId)
- if err != nil {
- ctx.JSON(http.StatusOK, err)
- return
- }
- ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, detail))
- }
- func (c *menu) List(ctx *gin.Context) {
- }
- func (c *menu) LazyList(ctx *gin.Context) {
- id := ctx.Query("parentId")
- name := ctx.Query("name")
- code := ctx.Query("code")
- alias := ctx.Query("alias")
- var parentId int64 = -1
- if id != "" {
- parentId, _ = strconv.ParseInt(id, 10, 64)
- }
- menus, err := service.MenuService.LazyList(parentId, name, code, alias)
- if err != nil {
- ctx.JSON(http.StatusOK, common.FailResponse(err.Error(), nil))
- return
- }
- ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, menus))
- }
- func (c *menu) MenuList(ctx *gin.Context) {
- }
- func (c *menu) LazyMenuList(ctx *gin.Context) {
- }
- func (c *menu) Submit(ctx *gin.Context) {
- var req dao.Menu
- if err := ctx.ShouldBindJSON(&req); err != nil {
- ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
- return
- }
- err := service.MenuService.Submit(req)
- ctx.JSON(http.StatusOK, err)
- }
- func (c *menu) Remove(ctx *gin.Context) {
- }
- func (c *menu) Routes(ctx *gin.Context) {
- value, _ := ctx.Get(middleware.Authorization)
- claims := value.(*middleware.Claims)
- menus, err := service.MenuService.Routes(claims.RoleId)
- if err != nil {
- ctx.JSON(http.StatusOK, common.FailResponse(err.Error(), nil))
- return
- }
- ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, menus))
- }
- func (c *menu) RoutesExt(cxt *gin.Context) {
- }
- func (c *menu) Buttons(ctx *gin.Context) {
- }
- func (c *menu) Tree(ctx *gin.Context) {
- menus, err := service.MenuService.Tree()
- if err != nil {
- ctx.JSON(http.StatusOK, common.FailResponse(err.Error(), nil))
- return
- }
- ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, menus))
- }
- func (c *menu) GrantTree(ctx *gin.Context) {
- }
- func (c *menu) RoleTreeKeys(ctx *gin.Context) {
- }
- func (c *menu) GrantTopTree(ctx *gin.Context) {
- }
- func (c *menu) TopTreeKeys(ctx *gin.Context) {
- }
- func (c *menu) TopMenu(ctx *gin.Context) {
- }
- func (c *menu) authRoutes(ctx *gin.Context) {
- }
|