Files
mayfly-go/server/internal/sys/application/resource.go

216 lines
6.2 KiB
Go
Raw Normal View History

package application
import (
"context"
"mayfly-go/internal/common/consts"
2024-11-20 22:43:53 +08:00
"mayfly-go/internal/sys/application/dto"
"mayfly-go/internal/sys/domain/entity"
"mayfly-go/internal/sys/domain/repository"
2024-11-20 22:43:53 +08:00
"mayfly-go/internal/sys/imsg"
"mayfly-go/pkg/base"
"mayfly-go/pkg/errorx"
"mayfly-go/pkg/model"
"mayfly-go/pkg/utils/collx"
"mayfly-go/pkg/utils/stringx"
"strings"
"time"
)
type Resource interface {
base.App[*entity.Resource]
Save(ctx context.Context, entity *entity.Resource) error
Delete(ctx context.Context, id uint64) error
ChangeStatus(ctx context.Context, resourceId uint64, status int8) error
Sort(ctx context.Context, re *entity.Resource) error
GetAccountResources(accountId uint64, toEntity any) error
2024-11-20 22:43:53 +08:00
GetResourceRoles(resourceId uint64) ([]*dto.ResourceRole, error)
}
2022-09-09 18:26:08 +08:00
type resourceAppImpl struct {
base.AppImpl[*entity.Resource, repository.Resource]
roleResourceRepo repository.RoleResource `inject:"RoleResourceRepo"`
2024-11-20 22:43:53 +08:00
roleApp Role `inject:"RoleApp"`
}
2024-11-20 22:43:53 +08:00
var _ (Resource) = (*resourceAppImpl)(nil)
func (r *resourceAppImpl) Save(ctx context.Context, resource *entity.Resource) error {
// 更新操作
if resource.Id != 0 {
if resource.Code != "" {
2024-05-05 14:53:30 +08:00
oldRes, err := r.GetById(resource.Id, "Code")
if err != nil {
2024-11-20 22:43:53 +08:00
return errorx.NewBiz("Resource does not exist")
}
// 如果修改了code则校验新code是否存在
if oldRes.Code != resource.Code {
2024-11-20 22:43:53 +08:00
if err := r.checkCode(ctx, resource.Code); err != nil {
return err
}
}
}
return r.UpdateById(ctx, resource)
}
// 生成随机八位唯一标识符
ui := stringx.Rand(8)
if pid := resource.Pid; pid != 0 {
2024-05-05 14:53:30 +08:00
pResource, err := r.GetById(uint64(pid))
if err != nil {
2024-11-20 22:43:53 +08:00
return errorx.NewBiz("pid does not exist")
}
resource.UiPath = pResource.UiPath + ui + entity.ResourceUiPathSp
} else {
resource.UiPath = ui + entity.ResourceUiPathSp
}
// 默认启用状态
if resource.Status == 0 {
resource.Status = entity.ResourceStatusEnable
}
2024-11-20 22:43:53 +08:00
if err := r.checkCode(ctx, resource.Code); err != nil {
return err
}
resource.Weight = int(time.Now().Unix())
return r.Insert(ctx, resource)
}
func (r *resourceAppImpl) ChangeStatus(ctx context.Context, resourceId uint64, status int8) error {
2024-05-05 14:53:30 +08:00
resource, err := r.GetById(resourceId)
if err != nil {
2024-11-20 22:43:53 +08:00
return errorx.NewBiz("Resource does not exist")
}
resource.Status = status
return r.GetRepo().UpdateByUiPathLike(resource)
}
func (r *resourceAppImpl) Sort(ctx context.Context, sortResource *entity.Resource) error {
2024-05-05 14:53:30 +08:00
resource, err := r.GetById(sortResource.Id)
if err != nil {
2024-11-20 22:43:53 +08:00
return errorx.NewBiz("Resource does not exist")
}
// 未改变父节点,则更新排序值即可
if sortResource.Pid == resource.Pid {
saveE := &entity.Resource{Weight: sortResource.Weight}
saveE.Id = sortResource.Id
return r.Save(ctx, saveE)
}
// 若资源原本唯一标识路径为xxxx/yyyy/zzzz/,则获取其父节点路径标识 xxxx/yyyy/ 与自身节点标识 zzzz/
splitStr := strings.Split(resource.UiPath, entity.ResourceUiPathSp)
// 获取 zzzz/
resourceUi := splitStr[len(splitStr)-2] + entity.ResourceUiPathSp
// 获取父资源路径 xxxx/yyyy/
var parentResourceUiPath string
if len(splitStr) > 2 {
parentResourceUiPath = strings.Split(resource.UiPath, resourceUi)[0]
} else {
parentResourceUiPath = resourceUi
}
newParentResourceUiPath := ""
if sortResource.Pid != 0 {
2024-05-05 14:53:30 +08:00
newParentResource, err := r.GetById(uint64(sortResource.Pid))
if err != nil {
2024-11-20 22:43:53 +08:00
return errorx.NewBiz("pid does not exist")
}
newParentResourceUiPath = newParentResource.UiPath
}
children := r.GetRepo().GetChildren(resource.UiPath)
for _, v := range children {
if v.Id == sortResource.Id {
continue
}
updateUiPath := &entity.Resource{}
updateUiPath.Id = v.Id
if parentResourceUiPath == resourceUi {
updateUiPath.UiPath = newParentResourceUiPath + v.UiPath
} else {
updateUiPath.UiPath = strings.ReplaceAll(v.UiPath, parentResourceUiPath, newParentResourceUiPath)
}
r.Save(ctx, updateUiPath)
}
// 更新零值使用map因为pid=0表示根节点
updateMap := collx.M{
"pid": sortResource.Pid,
"weight": sortResource.Weight,
"ui_path": newParentResourceUiPath + resourceUi,
}
condition := new(entity.Resource)
condition.Id = sortResource.Id
return r.UpdateByCond(ctx, updateMap, condition)
}
2024-11-20 22:43:53 +08:00
func (r *resourceAppImpl) checkCode(ctx context.Context, code string) error {
if strings.Contains(code, ",") {
2024-11-20 22:43:53 +08:00
return errorx.NewBizI(ctx, imsg.ErrResourceCodeInvalid)
}
if r.CountByCond(&entity.Resource{Code: code}) != 0 {
2024-11-20 22:43:53 +08:00
return errorx.NewBizI(ctx, imsg.ErrResourceCodeExist)
}
return nil
}
func (r *resourceAppImpl) Delete(ctx context.Context, id uint64) error {
2024-05-05 14:53:30 +08:00
resource, err := r.GetById(id)
if err != nil {
2024-11-20 22:43:53 +08:00
return errorx.NewBiz("Resource does not exist")
}
// 删除当前节点及其所有子节点
children := r.GetRepo().GetChildren(resource.UiPath)
for _, v := range children {
r.GetRepo().DeleteById(ctx, v.Id)
// 删除角色关联的资源信息
return r.roleResourceRepo.DeleteByCond(ctx, &entity.RoleResource{ResourceId: v.Id})
}
return nil
}
func (r *resourceAppImpl) GetAccountResources(accountId uint64, toEntity any) error {
// 超级管理员返回所有
if accountId == consts.AdminId {
cond := &entity.Resource{
Status: entity.ResourceStatusEnable,
}
2024-05-05 14:53:30 +08:00
return r.ListByCondToAny(model.NewModelCond(cond).OrderByAsc("pid").OrderByAsc("weight"), toEntity)
}
return r.GetRepo().GetAccountResources(accountId, toEntity)
}
2024-11-20 22:43:53 +08:00
func (r *resourceAppImpl) GetResourceRoles(resourceId uint64) ([]*dto.ResourceRole, error) {
rr, err := r.roleApp.GetResourceRoles(resourceId)
if err != nil {
return nil, err
}
roleId2Rr := collx.ArrayToMap[*entity.RoleResource, uint64](rr, func(val *entity.RoleResource) uint64 { return val.RoleId })
roleIds := collx.MapKeys(roleId2Rr)
roles, err := r.roleApp.GetByIds(roleIds)
if err != nil {
return nil, err
}
return collx.ArrayMap[*entity.Role, *dto.ResourceRole](roles, func(val *entity.Role) *dto.ResourceRole {
role := roleId2Rr[val.Id]
return &dto.ResourceRole{
RoleId: val.Id,
RoleName: val.Name,
RoleCode: val.Code,
RoleStatus: val.Status,
AllocateTime: role.CreateTime,
Assigner: role.Creator,
}
}), nil
}