2023-11-16 08:57:29 +00:00
|
|
|
|
package logic
|
|
|
|
|
|
|
|
|
|
import (
|
2023-11-16 10:29:45 +00:00
|
|
|
|
"context"
|
2023-11-17 10:17:33 +00:00
|
|
|
|
"fusenapi/server/ldap-admin/internal/svc"
|
|
|
|
|
"fusenapi/server/ldap-admin/internal/types"
|
2023-11-16 08:57:29 +00:00
|
|
|
|
"fusenapi/utils/basic"
|
2023-11-20 03:54:30 +00:00
|
|
|
|
"fusenapi/utils/email"
|
2023-11-21 10:10:30 +00:00
|
|
|
|
"net/http"
|
2023-11-20 03:54:30 +00:00
|
|
|
|
"strings"
|
2023-11-16 08:57:29 +00:00
|
|
|
|
|
|
|
|
|
"github.com/zeromicro/go-zero/core/logx"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type GetLdapUserInfoLogic struct {
|
|
|
|
|
logx.Logger
|
|
|
|
|
ctx context.Context
|
|
|
|
|
svcCtx *svc.ServiceContext
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func NewGetLdapUserInfoLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetLdapUserInfoLogic {
|
|
|
|
|
return &GetLdapUserInfoLogic{
|
|
|
|
|
Logger: logx.WithContext(ctx),
|
|
|
|
|
ctx: ctx,
|
|
|
|
|
svcCtx: svcCtx,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 处理进入前逻辑w,r
|
|
|
|
|
// func (l *GetLdapUserInfoLogic) BeforeLogic(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
// }
|
|
|
|
|
|
2023-11-21 10:10:30 +00:00
|
|
|
|
func (l *GetLdapUserInfoLogic) GetLdapUserInfo(req *types.GetLdapUserInfoReq, 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-16 10:29:45 +00:00
|
|
|
|
if len(req.UserDN) <= 3 || req.UserDN[:3] != "cn=" {
|
2023-11-17 03:24:54 +00:00
|
|
|
|
return resp.SetStatusWithMessage(basic.CodeRequestParamsErr, "参数错误,用户DN错误")
|
2023-11-16 10:29:45 +00:00
|
|
|
|
}
|
2023-11-20 03:54:30 +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
|
|
|
|
user, err := l.svcCtx.Ldap.GetLdapUserInfo(req.UserDN)
|
2023-11-16 10:29:45 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
logx.Error(err)
|
2023-11-17 10:17:33 +00:00
|
|
|
|
return resp.SetStatusWithMessage(basic.CodeServiceErr, err.Error())
|
2023-11-17 01:57:32 +00:00
|
|
|
|
}
|
2023-11-17 10:17:33 +00:00
|
|
|
|
return resp.SetStatusWithMessage(basic.CodeOK, "success", types.GetLdapUserInfoRsp{
|
2023-11-20 04:08:04 +00:00
|
|
|
|
UserId: user.UserId,
|
|
|
|
|
UserDN: user.UserDN,
|
|
|
|
|
UserName: user.UserName,
|
|
|
|
|
Email: user.Email,
|
|
|
|
|
Mobile: user.Mobile,
|
|
|
|
|
Avatar: user.Avatar,
|
|
|
|
|
Status: user.Status,
|
|
|
|
|
EmployeeTpye: user.EmployeeType,
|
2023-11-17 10:17:33 +00:00
|
|
|
|
})
|
2023-11-16 08:57:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 处理逻辑后 w,r 如:重定向, resp 必须重新处理
|
|
|
|
|
// func (l *GetLdapUserInfoLogic) AfterLogic(w http.ResponseWriter, r *http.Request, resp *basic.Response) {
|
|
|
|
|
// // httpx.OkJsonCtx(r.Context(), w, resp)
|
|
|
|
|
// }
|