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

75 lines
1.9 KiB
Go
Raw Normal View History

2023-11-13 09:52:20 +00:00
package logic
import (
2023-11-14 03:26:08 +00:00
"context"
2023-11-13 09:52:20 +00:00
"fusenapi/utils/auth"
"fusenapi/utils/basic"
"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:26:08 +00:00
departList,_,err := l.svcCtx.AllModels.LdapDepartment.GetAll(l.ctx,"")
2023-11-13 10:05:42 +00:00
if err != nil{
logx.Error(err)
return resp.SetStatusWithMessage(basic.CodeDbSqlErr,"获取部门列表失败")
2023-11-13 10:57:11 +00:00
}
2023-11-14 03:26:08 +00:00
mapDepartment := make(map[int64]*types.DepartmentsItem)
2023-11-13 10:57:11 +00:00
for _,v := range departList{
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:26:08 +00:00
Child: make([]*types.DepartmentsItem,0,50),
}
}
//组织树形关系
for _,v := range mapDepartment{
//有父级,把他付给父级
if info,ok := mapDepartment[v.ParentId];ok{
info.Child = append(info.Child,v)
}
}
list := make([]*types.DepartmentsItem,0,len(departList))
for _,v := range mapDepartment{
if v.ParentId == 0{
list = append(list,v)
}
2023-11-13 10:57:11 +00:00
}
2023-11-14 03:26:08 +00:00
return resp.SetStatusWithMessage(basic.CodeOK,"success",types.GetDepartmentsRsp{
2023-11-13 10:57:11 +00:00
List: list,
})
2023-11-13 09:52:20 +00:00
}
// 处理逻辑后 w,r 如:重定向, resp 必须重新处理
// func (l *GetDepartmentsLogic) AfterLogic(w http.ResponseWriter, r *http.Request, resp *basic.Response) {
// // httpx.OkJsonCtx(r.Context(), w, resp)
// }