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

90 lines
2.7 KiB
Go
Raw Normal View History

2023-11-16 08:57:29 +00:00
package logic
import (
2023-11-16 09:42:05 +00:00
"fmt"
2023-11-21 07:07:44 +00:00
"fusenapi/model/gmodel"
2023-11-16 08:57:29 +00:00
"fusenapi/utils/basic"
2023-11-16 09:42:05 +00:00
"fusenapi/utils/chinese_to_pinyin"
2023-11-20 03:54:30 +00:00
"fusenapi/utils/email"
2023-11-21 10:10:30 +00:00
"net/http"
2023-11-16 09:42:05 +00:00
"strings"
2023-11-21 07:07:44 +00:00
"time"
2023-11-16 08:57:29 +00:00
"context"
"fusenapi/server/ldap-admin/internal/svc"
"fusenapi/server/ldap-admin/internal/types"
"github.com/zeromicro/go-zero/core/logx"
)
type UpdateLdapUserLogic struct {
logx.Logger
ctx context.Context
svcCtx *svc.ServiceContext
}
func NewUpdateLdapUserLogic(ctx context.Context, svcCtx *svc.ServiceContext) *UpdateLdapUserLogic {
return &UpdateLdapUserLogic{
Logger: logx.WithContext(ctx),
ctx: ctx,
svcCtx: svcCtx,
}
}
// 处理进入前逻辑w,r
// func (l *UpdateLdapUserLogic) BeforeLogic(w http.ResponseWriter, r *http.Request) {
// }
2023-11-21 10:10:30 +00:00
func (l *UpdateLdapUserLogic) UpdateLdapUser(req *types.UpdateLdapUserReq, 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 09:42:05 +00:00
req.UserDN = strings.Trim(req.UserDN, " ")
req.Mobile = strings.Trim(req.Mobile, " ")
req.Avatar = strings.Trim(req.Avatar, " ")
req.UserName = strings.Trim(req.UserName, " ")
2023-11-21 02:13:12 +00:00
if req.GroupId < 0 {
2023-11-17 07:29:43 +00:00
return resp.SetStatusWithMessage(basic.CodeRequestParamsErr, "参数错误无效的用户权限组id")
}
2023-11-16 09:42:05 +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 09:42:05 +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-16 09:42:05 +00:00
//把用户名转pinyin
userNamePinyin := chinese_to_pinyin.ChineseToPinyin(req.UserName)
2023-11-23 03:19:11 +00:00
now := time.Now().UTC()
2023-11-17 10:17:33 +00:00
//更新的属性
attr := map[string][]string{
2023-11-17 07:29:43 +00:00
"homeDirectory": {"/home/users/" + userNamePinyin},
2023-11-21 02:13:12 +00:00
"departmentNumber": {fmt.Sprintf("%d", req.GroupId)},
2023-11-17 07:29:43 +00:00
"sn": {req.UserName},
"uid": {userNamePinyin},
"mobile": {req.Mobile},
"postalAddress": {req.Avatar},
"postalCode": {fmt.Sprintf("%d", req.Status)},
2023-11-20 04:31:33 +00:00
"employeeType": {fmt.Sprintf("%d", req.EmployeeType)},
2023-11-17 10:17:33 +00:00
}
2023-11-22 02:12:46 +00:00
err := l.svcCtx.Ldap.Update(req.UserDN, attr)
2023-11-16 09:42:05 +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-16 09:42:05 +00:00
}
2023-11-21 07:07:44 +00:00
err = l.svcCtx.AllModels.LdapUser.Update(l.ctx, req.UserDN, &gmodel.LdapUser{
Utime: &now,
})
if err != nil {
logx.Error(err)
}
2023-11-16 09:42:05 +00:00
return resp.SetStatusWithMessage(basic.CodeOK, "更新用户成功")
2023-11-16 08:57:29 +00:00
}
// 处理逻辑后 w,r 如:重定向, resp 必须重新处理
// func (l *UpdateLdapUserLogic) AfterLogic(w http.ResponseWriter, r *http.Request, resp *basic.Response) {
// // httpx.OkJsonCtx(r.Context(), w, resp)
// }