fusenapi/server/ldap-admin/internal/logic/getdepartmentslogic.go

85 lines
2.1 KiB
Go
Raw Normal View History

2023-11-13 09:52:20 +00:00
package logic
import (
2023-11-14 04:13:04 +00:00
"fusenapi/model/gmodel"
2023-11-13 09:52:20 +00:00
"fusenapi/utils/auth"
"fusenapi/utils/basic"
2023-11-14 06:00:00 +00:00
"sort"
2023-11-13 09:52:20 +00:00
"context"
"fusenapi/server/ldap-admin/internal/svc"
"fusenapi/server/ldap-admin/internal/types"
"github.com/zeromicro/go-zero/core/logx"
)
type GetDepartmentsLogic struct {
logx.Logger
ctx context.Context
svcCtx *svc.ServiceContext
}
func NewGetDepartmentsLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetDepartmentsLogic {
return &GetDepartmentsLogic{
Logger: logx.WithContext(ctx),
ctx: ctx,
svcCtx: svcCtx,
}
}
// 处理进入前逻辑w,r
// func (l *GetDepartmentsLogic) BeforeLogic(w http.ResponseWriter, r *http.Request) {
// }
2023-11-14 03:26:08 +00:00
func (l *GetDepartmentsLogic) GetDepartments(req *types.Request, userinfo *auth.UserInfo) (resp *basic.Response) {
2023-11-13 10:57:11 +00:00
//todo 鉴权 。。。。
2023-11-14 03:57:09 +00:00
departList, _, err := l.svcCtx.AllModels.LdapDepartment.GetAll(l.ctx, "sort ASC")
if err != nil {
2023-11-13 10:05:42 +00:00
logx.Error(err)
2023-11-14 03:57:09 +00:00
return resp.SetStatusWithMessage(basic.CodeDbSqlErr, "获取部门列表失败")
2023-11-13 10:57:11 +00:00
}
2023-11-14 04:13:04 +00:00
//变成树形结构
list := l.DepartmentListToTree(departList)
return resp.SetStatusWithMessage(basic.CodeOK, "success", types.GetDepartmentsRsp{
List: list,
})
}
func (l *GetDepartmentsLogic)DepartmentListToTree(deps []gmodel.LdapDepartment)[]*types.DepartmentsItem{
2023-11-14 03:57:09 +00:00
//存入map
2023-11-14 03:26:08 +00:00
mapDepartment := make(map[int64]*types.DepartmentsItem)
2023-11-14 04:13:04 +00:00
for _, v := range deps {
2023-11-14 03:26:08 +00:00
mapDepartment[v.Id] = &types.DepartmentsItem{
Id: v.Id,
Name: *v.Name,
Remark: *v.Remark,
Type: *v.Type,
ParentId: *v.ParentId,
Dn: *v.Dn,
2023-11-13 10:57:11 +00:00
SyncState: *v.SyncState,
2023-11-14 03:57:09 +00:00
Sort: *v.Sort,
Child: make([]*types.DepartmentsItem, 0, 50),
2023-11-14 03:26:08 +00:00
}
}
2023-11-14 06:00:00 +00:00
//组织从属关系
2023-11-14 03:26:08 +00:00
for _,v := range mapDepartment{
2023-11-14 06:00:00 +00:00
//如果有父级
if parent,ok := mapDepartment[v.ParentId];ok{
parent.Child = append(parent.Child,v)
sort.Slice(parent.Child, func(i, j int) bool {
return parent.Child[i].Sort < parent.Child[j].Sort //升序
2023-11-14 03:57:09 +00:00
})
2023-11-14 03:26:08 +00:00
}
}
2023-11-14 06:00:00 +00:00
//排序
2023-11-14 04:13:04 +00:00
list := make([]*types.DepartmentsItem, 0, len(deps))
for _, v := range deps {
if *v.ParentId == 0 {
list = append(list, mapDepartment[v.Id])
2023-11-14 03:26:08 +00:00
}
2023-11-13 10:57:11 +00:00
}
2023-11-14 04:13:04 +00:00
return list
2023-11-13 09:52:20 +00:00
}