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

59 lines
1.8 KiB
Go
Raw Normal View History

2023-11-16 06:07:53 +00:00
package logic
import (
"fusenapi/utils/basic"
2023-11-21 10:10:30 +00:00
"net/http"
2023-11-16 06:37:02 +00:00
"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-17 02:33:40 +00:00
type UpdateLdapOrganizationLogic struct {
2023-11-16 06:07:53 +00:00
logx.Logger
ctx context.Context
svcCtx *svc.ServiceContext
}
2023-11-17 02:33:40 +00:00
func NewUpdateLdapOrganizationLogic(ctx context.Context, svcCtx *svc.ServiceContext) *UpdateLdapOrganizationLogic {
return &UpdateLdapOrganizationLogic{
2023-11-16 06:07:53 +00:00
Logger: logx.WithContext(ctx),
ctx: ctx,
svcCtx: svcCtx,
}
}
// 处理进入前逻辑w,r
2023-11-17 02:33:40 +00:00
// func (l *UpdateLdapOrganizationLogic) BeforeLogic(w http.ResponseWriter, r *http.Request) {
2023-11-16 06:07:53 +00:00
// }
2023-11-21 10:10:30 +00:00
func (l *UpdateLdapOrganizationLogic) UpdateLdapOrganization(req *types.UpdateLdapOrganizationReq, r *http.Request) (resp *basic.Response) {
2023-11-22 02:12:46 +00:00
2023-11-22 02:19:27 +00:00
if !l.svcCtx.Ldap.VerifyAuthority(r) {
2023-11-21 10:10:30 +00:00
return resp.SetStatusWithMessage(basic.CodeUnAuth, "无权限,请联系管理员开通")
}
2023-11-17 02:33:40 +00:00
req.OrganizationDN = strings.Trim(req.OrganizationDN, " ")
if req.OrganizationDN == "" {
2023-11-17 03:24:54 +00:00
return resp.SetStatusWithMessage(basic.CodeRequestParamsErr, "参数错误组织DN不能为空")
2023-11-16 06:37:02 +00:00
}
2023-11-17 02:33:40 +00:00
if len(req.OrganizationDN) <= 3 || req.OrganizationDN[:3] != "ou=" {
2023-11-17 03:24:54 +00:00
return resp.SetStatusWithMessage(basic.CodeRequestParamsErr, "参数错误无效的组织DN")
2023-11-16 06:39:09 +00:00
}
2023-11-22 02:12:46 +00:00
if err := l.svcCtx.Ldap.Update(req.OrganizationDN, map[string][]string{
2023-11-24 04:31:13 +00:00
"businessCategory": {req.OrganizationName},
2023-11-16 06:39:09 +00:00
}); err != nil {
2023-11-16 06:37:02 +00:00
logx.Error(err)
2023-11-17 08:02:35 +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-17 02:33:40 +00:00
// func (l *UpdateLdapOrganizationLogic) AfterLogic(w http.ResponseWriter, r *http.Request, resp *basic.Response) {
2023-11-16 06:07:53 +00:00
// // httpx.OkJsonCtx(r.Context(), w, resp)
// }