2023-11-17 02:22:23 +00:00
|
|
|
|
package logic
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"fusenapi/utils/basic"
|
2023-11-20 06:25:12 +00:00
|
|
|
|
"fusenapi/utils/email"
|
2023-11-21 10:10:30 +00:00
|
|
|
|
"net/http"
|
2023-11-17 02:22:23 +00:00
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
|
|
"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 AddLdapOrganizationMemberLogic struct {
|
2023-11-17 02:22:23 +00:00
|
|
|
|
logx.Logger
|
|
|
|
|
ctx context.Context
|
|
|
|
|
svcCtx *svc.ServiceContext
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-17 02:33:40 +00:00
|
|
|
|
func NewAddLdapOrganizationMemberLogic(ctx context.Context, svcCtx *svc.ServiceContext) *AddLdapOrganizationMemberLogic {
|
|
|
|
|
return &AddLdapOrganizationMemberLogic{
|
2023-11-17 02:22:23 +00:00
|
|
|
|
Logger: logx.WithContext(ctx),
|
|
|
|
|
ctx: ctx,
|
|
|
|
|
svcCtx: svcCtx,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 处理进入前逻辑w,r
|
2023-11-17 02:33:40 +00:00
|
|
|
|
// func (l *AddLdapOrganizationMemberLogic) BeforeLogic(w http.ResponseWriter, r *http.Request) {
|
2023-11-17 02:22:23 +00:00
|
|
|
|
// }
|
|
|
|
|
|
2023-11-21 10:10:30 +00:00
|
|
|
|
func (l *AddLdapOrganizationMemberLogic) AddLdapOrganizationMember(req *types.AddLdapOrganizationMemberReq, 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, " ")
|
2023-11-17 02:22:23 +00:00
|
|
|
|
req.UserDN = strings.Trim(req.UserDN, " ")
|
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-17 02:22:23 +00:00
|
|
|
|
}
|
|
|
|
|
if len(req.UserDN) <= 3 || req.UserDN[:3] != "cn=" {
|
|
|
|
|
return resp.SetStatusWithMessage(basic.CodeRequestParamsErr, "无效的用户DN")
|
|
|
|
|
}
|
2023-11-20 06:25:12 +00:00
|
|
|
|
cnEmail := strings.Split(req.UserDN, ",")[0][3:]
|
|
|
|
|
if !email.IsEmailValid(cnEmail) {
|
|
|
|
|
return resp.SetStatusWithMessage(basic.CodeRequestParamsErr, "错误的用户cn")
|
|
|
|
|
}
|
2023-11-22 02:12:46 +00:00
|
|
|
|
err := l.svcCtx.Ldap.AddUserToOrganization(req.OrganizationDN, req.UserDN)
|
2023-11-17 03:10:38 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
logx.Error(err)
|
2023-11-17 08:02:35 +00:00
|
|
|
|
return resp.SetStatusWithMessage(basic.CodeServiceErr, "添加成员失败,"+err.Error())
|
2023-11-17 03:10:38 +00:00
|
|
|
|
}
|
|
|
|
|
return resp.SetStatusWithMessage(basic.CodeOK, "添加成功")
|
2023-11-17 02:22:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 处理逻辑后 w,r 如:重定向, resp 必须重新处理
|
2023-11-17 02:33:40 +00:00
|
|
|
|
// func (l *AddLdapOrganizationMemberLogic) AfterLogic(w http.ResponseWriter, r *http.Request, resp *basic.Response) {
|
2023-11-17 02:22:23 +00:00
|
|
|
|
// // httpx.OkJsonCtx(r.Context(), w, resp)
|
|
|
|
|
// }
|