71 lines
2.0 KiB
Go
71 lines
2.0 KiB
Go
package logic
|
|
|
|
import (
|
|
"encoding/json"
|
|
"errors"
|
|
"fusenapi/utils/auth"
|
|
"fusenapi/utils/basic"
|
|
|
|
"context"
|
|
|
|
"fusenapi/server/ldap-admin/internal/svc"
|
|
"fusenapi/server/ldap-admin/internal/types"
|
|
|
|
"github.com/zeromicro/go-zero/core/logx"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type GetLdapGroupDetailLogic struct {
|
|
logx.Logger
|
|
ctx context.Context
|
|
svcCtx *svc.ServiceContext
|
|
}
|
|
|
|
func NewGetLdapGroupDetailLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetLdapGroupDetailLogic {
|
|
return &GetLdapGroupDetailLogic{
|
|
Logger: logx.WithContext(ctx),
|
|
ctx: ctx,
|
|
svcCtx: svcCtx,
|
|
}
|
|
}
|
|
|
|
// 处理进入前逻辑w,r
|
|
// func (l *GetLdapGroupDetailLogic) BeforeLogic(w http.ResponseWriter, r *http.Request) {
|
|
// }
|
|
|
|
func (l *GetLdapGroupDetailLogic) GetLdapGroupDetail(req *types.GetLdapGroupDetailReq, userinfo *auth.UserInfo) (resp *basic.Response) {
|
|
// 返回值必须调用Set重新返回, resp可以空指针调用 resp.SetStatus(basic.CodeOK, data)
|
|
// userinfo 传入值时, 一定不为null
|
|
resOne, err := l.svcCtx.AllModels.LdapGroup.FindOneById(l.ctx, req.Id)
|
|
if err != nil {
|
|
if errors.Is(err, gorm.ErrRecordNotFound) {
|
|
basic.CodeServiceErr.Message = "记录不存在"
|
|
} else {
|
|
basic.CodeServiceErr.Message = "系统出错"
|
|
}
|
|
return resp.SetStatus(basic.CodeServiceErr)
|
|
}
|
|
var metadata []types.GroupAuth
|
|
if resOne.Metadata != nil {
|
|
err := json.Unmarshal(*resOne.Metadata, &metadata)
|
|
if err != nil {
|
|
basic.CodeServiceErr.Message = "系统出错"
|
|
return resp.SetStatus(basic.CodeServiceErr)
|
|
}
|
|
}
|
|
return resp.SetStatus(basic.CodeOK, map[string]interface{}{
|
|
"id": resOne.Id,
|
|
"name": resOne.Name,
|
|
"keyword": resOne.Keyword,
|
|
"remark": resOne.Remark,
|
|
"status": resOne.Status,
|
|
"sort": resOne.Sort,
|
|
"metadata": metadata,
|
|
})
|
|
}
|
|
|
|
// 处理逻辑后 w,r 如:重定向, resp 必须重新处理
|
|
// func (l *GetLdapGroupDetailLogic) AfterLogic(w http.ResponseWriter, r *http.Request, resp *basic.Response) {
|
|
// // httpx.OkJsonCtx(r.Context(), w, resp)
|
|
// }
|