fusenapi/utils/ldap_lib/ldap_user.go

237 lines
6.9 KiB
Go
Raw Normal View History

2023-11-17 10:17:33 +00:00
package ldap_lib
import (
2023-11-20 09:16:17 +00:00
"encoding/hex"
2023-11-17 10:17:33 +00:00
"errors"
"github.com/go-ldap/ldap/v3"
"strconv"
"strings"
2023-11-21 03:39:03 +00:00
"time"
2023-11-17 10:17:33 +00:00
)
2023-11-20 09:16:17 +00:00
type LdapUserInfo struct {
2023-11-21 03:39:03 +00:00
UserId int64 `json:"userId"`
UserDN string `json:"user_dn"`
UserName string `json:"user_name"` //用户名
Password string `json:"password"` //密码
Email string `json:"email"` //邮箱
Mobile string `json:"mobile"` //手机号
Avatar string `json:"avatar"` //头像地址
EmployeeType int64 `json:"employee_type"` //1正式 2实习 3外包
Status int64 `json:"status,options=0|1"` //状态 1正常0离职
CreateTime time.Time `json:"create_time"`
UpdateTime time.Time `json:"update_time"`
2023-11-17 10:17:33 +00:00
}
2023-11-20 09:16:17 +00:00
// 获取用户详情
func (l *Ldap) GetLdapUserInfo(userDN string) (*LdapUserInfo, error) {
2023-11-17 10:17:33 +00:00
res, err := l.Search(userDN, ldap.ScopeWholeSubtree, "(&(objectClass=posixAccount)(objectClass=inetOrgPerson))", nil, nil)
if err != nil {
return nil, err
}
if len(res.Entries) != 1 {
return nil, errors.New("查询到不到用户信息")
}
2023-11-20 09:16:17 +00:00
user := &LdapUserInfo{}
2023-11-17 10:17:33 +00:00
for _, entry := range res.Entries {
if entry.DN != userDN {
continue
}
user.UserDN = entry.DN
for _, attr := range entry.Attributes {
switch attr.Name {
case "uidNumber": //用户id
if len(attr.Values) == 0 {
2023-11-21 03:39:03 +00:00
return nil, errors.New("用户id不存在")
2023-11-17 10:17:33 +00:00
}
user.UserId, err = strconv.ParseInt(attr.Values[0], 10, 64)
if err != nil {
2023-11-21 03:39:03 +00:00
return nil, err
2023-11-17 10:17:33 +00:00
}
case "sn": //用户真名
user.UserName = strings.Join(attr.Values, "")
case "mail": //邮箱
user.Email = strings.Join(attr.Values, "")
case "mobile": //手机号
user.Mobile = strings.Join(attr.Values, "")
case "postalAddress": //头像
user.Avatar = strings.Join(attr.Values, "")
case "userPassword": //密码
user.Password = strings.Join(attr.Values, ",")
2023-11-20 04:08:04 +00:00
case "employeeType": //员工类型
if len(attr.Values) == 0 {
2023-11-21 03:39:03 +00:00
return nil, errors.New("用户类型不存在")
2023-11-20 04:08:04 +00:00
}
user.EmployeeType, err = strconv.ParseInt(attr.Values[0], 10, 64)
if err != nil {
2023-11-21 03:39:03 +00:00
return nil, err
2023-11-20 04:08:04 +00:00
}
2023-11-17 10:17:33 +00:00
case "postalCode": //状态
if len(attr.Values) == 0 {
2023-11-21 03:39:03 +00:00
return nil, errors.New("用户状态不存在")
2023-11-17 10:17:33 +00:00
}
user.Status, err = strconv.ParseInt(attr.Values[0], 10, 64)
if err != nil {
2023-11-21 03:39:03 +00:00
return nil, err
}
case "createTimestamp":
user.CreateTime, err = LdapTimeToTime(attr.Values[0])
if err != nil {
return nil, err
}
case "modifyTimestamp":
user.UpdateTime, err = LdapTimeToTime(attr.Values[0])
if err != nil {
return nil, err
2023-11-17 10:17:33 +00:00
}
}
}
break
}
if user.UserId == 0 {
return nil, errors.New("查询到的不是用户信息!!!")
}
return user, nil
}
2023-11-20 09:16:17 +00:00
// 获取基础组用户列表
func (l *Ldap) GetLdapBaseTeamUserList(pageSize uint32, pageCookie string) ([]LdapUserInfo, string, error) {
pageCookieBytes, err := hex.DecodeString(pageCookie)
if err != nil {
return nil, "", err
}
result, err := l.SearchWithPaging(l.peopleGroupDN, ldap.ScopeWholeSubtree, "(objectClass=person)", nil, pageSize, string(pageCookieBytes))
if err != nil {
return nil, "", err
}
list := make([]LdapUserInfo, 0, pageSize)
for _, entry := range result.Entries {
user := LdapUserInfo{
UserDN: entry.DN,
}
for _, attr := range entry.Attributes {
switch attr.Name {
case "uidNumber": //用户id
if len(attr.Values) == 0 {
2023-11-21 03:39:03 +00:00
return nil, "", errors.New("用户id不存在")
2023-11-20 09:16:17 +00:00
}
user.UserId, err = strconv.ParseInt(attr.Values[0], 10, 64)
if err != nil {
2023-11-21 03:39:03 +00:00
return nil, "", err
2023-11-20 09:16:17 +00:00
}
case "sn": //用户真名
user.UserName = strings.Join(attr.Values, "")
case "mail": //邮箱
user.Email = strings.Join(attr.Values, "")
case "mobile": //手机号
user.Mobile = strings.Join(attr.Values, "")
case "postalAddress": //头像
user.Avatar = strings.Join(attr.Values, "")
case "userPassword": //密码
user.Password = strings.Join(attr.Values, ",")
case "employeeType": //员工类型
if len(attr.Values) == 0 {
2023-11-21 03:39:03 +00:00
return nil, "", errors.New("用户类型不存在")
2023-11-20 09:16:17 +00:00
}
user.EmployeeType, err = strconv.ParseInt(attr.Values[0], 10, 64)
if err != nil {
2023-11-21 03:39:03 +00:00
return nil, "", err
2023-11-20 09:16:17 +00:00
}
case "postalCode": //状态
if len(attr.Values) == 0 {
2023-11-21 03:39:03 +00:00
return nil, "", errors.New("用户状态不存在")
2023-11-20 09:16:17 +00:00
}
user.Status, err = strconv.ParseInt(attr.Values[0], 10, 64)
if err != nil {
2023-11-21 03:39:03 +00:00
return nil, "", err
}
case "createTimestamp":
user.CreateTime, err = LdapTimeToTime(attr.Values[0])
if err != nil {
return nil, "", err
}
case "modifyTimestamp":
user.UpdateTime, err = LdapTimeToTime(attr.Values[0])
if err != nil {
return nil, "", err
2023-11-20 09:16:17 +00:00
}
}
}
list = append(list, user)
}
rspCookie := ""
// 检查是否还有更多条目需要获取
controls := result.Controls
if len(controls) > 0 {
cookieControl := controls[0]
if control, ok := cookieControl.(*ldap.ControlPaging); ok {
rspCookie = hex.EncodeToString(control.Cookie)
}
}
return list, rspCookie, nil
}
2023-11-21 03:39:03 +00:00
// 从基础用户组中获取指定一批用户
func (l *Ldap) GetLdapBaseTeamUsersByParams(filter string) ([]LdapUserInfo, error) {
result, err := l.Search(l.peopleGroupDN, ldap.ScopeWholeSubtree, filter, nil, nil)
if err != nil {
return nil, err
}
list := make([]LdapUserInfo, 0, len(result.Entries))
for _, entry := range result.Entries {
user := LdapUserInfo{
UserDN: entry.DN,
}
for _, attr := range entry.Attributes {
switch attr.Name {
case "uidNumber": //用户id
if len(attr.Values) == 0 {
return nil, errors.New("用户id不存在")
}
user.UserId, err = strconv.ParseInt(attr.Values[0], 10, 64)
if err != nil {
return nil, err
}
case "sn": //用户真名
user.UserName = strings.Join(attr.Values, "")
case "mail": //邮箱
user.Email = strings.Join(attr.Values, "")
case "mobile": //手机号
user.Mobile = strings.Join(attr.Values, "")
case "postalAddress": //头像
user.Avatar = strings.Join(attr.Values, "")
case "userPassword": //密码
user.Password = strings.Join(attr.Values, ",")
case "employeeType": //员工类型
if len(attr.Values) == 0 {
return nil, errors.New("用户类型不存在")
}
user.EmployeeType, err = strconv.ParseInt(attr.Values[0], 10, 64)
if err != nil {
return nil, err
}
case "postalCode": //状态
if len(attr.Values) == 0 {
return nil, errors.New("用户状态不存在")
}
user.Status, err = strconv.ParseInt(attr.Values[0], 10, 64)
if err != nil {
return nil, err
}
case "createTimestamp":
user.CreateTime, err = LdapTimeToTime(attr.Values[0])
if err != nil {
return nil, err
}
case "modifyTimestamp":
user.UpdateTime, err = LdapTimeToTime(attr.Values[0])
if err != nil {
return nil, err
}
}
}
list = append(list, user)
}
return list, nil
}