81 lines
1.9 KiB
Go
Executable File
81 lines
1.9 KiB
Go
Executable File
package menu_handler
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/xinliangnote/go-gin-api/internal/code"
|
|
"github.com/xinliangnote/go-gin-api/internal/pkg/core"
|
|
menu2 "github.com/xinliangnote/go-gin-api/internal/services/menu"
|
|
"github.com/xinliangnote/go-gin-api/pkg/errno"
|
|
|
|
"github.com/spf13/cast"
|
|
)
|
|
|
|
type listData struct {
|
|
Id int32 `json:"id"` // ID
|
|
HashID string `json:"hashid"` // hashid
|
|
Pid int32 `json:"pid"` // 父类ID
|
|
Name string `json:"name"` // 菜单名称
|
|
Link string `json:"link"` // 链接地址
|
|
Icon string `json:"icon"` // 图标
|
|
IsUsed int32 `json:"is_used"` // 是否启用 1=启用 -1=禁用
|
|
Sort int32 `json:"sort"` // 排序
|
|
}
|
|
|
|
type listResponse struct {
|
|
List []listData `json:"list"`
|
|
}
|
|
|
|
// List 菜单列表
|
|
// @Summary 菜单列表
|
|
// @Description 菜单列表
|
|
// @Tags API.menu
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Success 200 {object} listResponse
|
|
// @Failure 400 {object} code.Failure
|
|
// @Router /api/menu [get]
|
|
func (h *handler) List() core.HandlerFunc {
|
|
return func(c core.Context) {
|
|
res := new(listResponse)
|
|
resListData, err := h.menuService.List(c, new(menu2.SearchData))
|
|
if err != nil {
|
|
c.AbortWithError(errno.NewError(
|
|
http.StatusBadRequest,
|
|
code.MenuListError,
|
|
code.Text(code.MenuListError)).WithErr(err),
|
|
)
|
|
return
|
|
}
|
|
|
|
res.List = make([]listData, len(resListData))
|
|
|
|
for k, v := range resListData {
|
|
hashId, err := h.hashids.HashidsEncode([]int{cast.ToInt(v.Id)})
|
|
if err != nil {
|
|
c.AbortWithError(errno.NewError(
|
|
http.StatusBadRequest,
|
|
code.HashIdsEncodeError,
|
|
code.Text(code.HashIdsEncodeError)).WithErr(err),
|
|
)
|
|
return
|
|
}
|
|
|
|
data := listData{
|
|
Id: v.Id,
|
|
HashID: hashId,
|
|
Pid: v.Pid,
|
|
Name: v.Name,
|
|
Link: v.Link,
|
|
Icon: v.Icon,
|
|
IsUsed: v.IsUsed,
|
|
Sort: v.Sort,
|
|
}
|
|
|
|
res.List[k] = data
|
|
}
|
|
|
|
c.Payload(res)
|
|
}
|
|
}
|