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

58 lines
1.8 KiB
Go
Raw Normal View History

2023-11-16 06:07:53 +00:00
package logic
import (
"fusenapi/utils/auth"
"fusenapi/utils/basic"
2023-11-16 06:37:02 +00:00
"fusenapi/utils/ldap_lib"
"strings"
2023-11-16 06:07:53 +00:00
"context"
"fusenapi/server/ldap-admin/internal/svc"
"fusenapi/server/ldap-admin/internal/types"
"github.com/zeromicro/go-zero/core/logx"
)
2023-11-16 06:29:24 +00:00
type UpdateLdapOrginationLogic struct {
2023-11-16 06:07:53 +00:00
logx.Logger
ctx context.Context
svcCtx *svc.ServiceContext
}
2023-11-16 06:29:24 +00:00
func NewUpdateLdapOrginationLogic(ctx context.Context, svcCtx *svc.ServiceContext) *UpdateLdapOrginationLogic {
return &UpdateLdapOrginationLogic{
2023-11-16 06:07:53 +00:00
Logger: logx.WithContext(ctx),
ctx: ctx,
svcCtx: svcCtx,
}
}
// 处理进入前逻辑w,r
2023-11-16 06:29:24 +00:00
// func (l *UpdateLdapOrginationLogic) BeforeLogic(w http.ResponseWriter, r *http.Request) {
2023-11-16 06:07:53 +00:00
// }
2023-11-16 06:29:24 +00:00
func (l *UpdateLdapOrginationLogic) UpdateLdapOrgination(req *types.UpdateLdapOrginationReq, userinfo *auth.UserInfo) (resp *basic.Response) {
2023-11-16 06:37:02 +00:00
req.OrginationDN = strings.Trim(req.OrginationDN, " ")
if req.OrginationDN == "" {
return resp.SetStatusWithMessage(basic.CodeRequestParamsErr, "组织DN不能为空")
}
2023-11-16 06:39:09 +00:00
if len(req.OrginationDN) <= 3 || req.OrginationDN[:3] != "ou=" {
return resp.SetStatusWithMessage(basic.CodeRequestParamsErr, "无效的组织DN")
}
2023-11-16 06:37:02 +00:00
ldapServer := ldap_lib.NewLdap(l.svcCtx.Ldap, l.svcCtx.Config.Ldap.BaseDN, l.svcCtx.Config.Ldap.RootDN)
2023-11-16 06:39:09 +00:00
if err := ldapServer.Update(req.OrginationDN, map[string][]string{
2023-11-16 06:57:36 +00:00
"cn": {req.BusinessCategory},
"businessCategory": {req.BusinessCategory},
2023-11-16 06:39:09 +00:00
}); err != nil {
2023-11-16 06:37:02 +00:00
logx.Error(err)
2023-11-16 06:39:09 +00:00
return resp.SetStatusWithMessage(basic.CodeServiceErr, "更新ldap组织失败,", err.Error())
2023-11-16 06:37:02 +00:00
}
2023-11-16 06:39:09 +00:00
return resp.SetStatusWithMessage(basic.CodeOK, "更新成功")
2023-11-16 06:07:53 +00:00
}
// 处理逻辑后 w,r 如:重定向, resp 必须重新处理
2023-11-16 06:29:24 +00:00
// func (l *UpdateLdapOrginationLogic) AfterLogic(w http.ResponseWriter, r *http.Request, resp *basic.Response) {
2023-11-16 06:07:53 +00:00
// // httpx.OkJsonCtx(r.Context(), w, resp)
// }