2021-06-07 17:22:07 +08:00
|
|
|
package application
|
|
|
|
|
|
|
|
|
|
import (
|
2023-11-07 21:05:21 +08:00
|
|
|
"context"
|
2022-06-02 17:41:11 +08:00
|
|
|
"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"
|
2023-10-26 17:15:49 +08:00
|
|
|
"mayfly-go/pkg/base"
|
|
|
|
|
"mayfly-go/pkg/errorx"
|
2022-06-02 17:41:11 +08:00
|
|
|
"mayfly-go/pkg/model"
|
2021-06-07 17:22:07 +08:00
|
|
|
)
|
|
|
|
|
|
2021-07-28 18:03:19 +08:00
|
|
|
type Account interface {
|
2023-10-26 17:15:49 +08:00
|
|
|
base.App[*entity.Account]
|
2021-06-07 17:22:07 +08:00
|
|
|
|
2024-02-29 22:12:50 +08:00
|
|
|
GetPageList(condition *entity.AccountQuery, pageParam *model.PageParam, toEntity any, orderBy ...string) (*model.PageResult[any], error)
|
2023-07-24 22:36:07 +08:00
|
|
|
|
2023-11-07 21:05:21 +08:00
|
|
|
Create(ctx context.Context, account *entity.Account) error
|
2021-07-28 18:03:19 +08:00
|
|
|
|
2023-11-07 21:05:21 +08:00
|
|
|
Update(ctx context.Context, account *entity.Account) error
|
2021-07-28 18:03:19 +08:00
|
|
|
|
2023-11-07 21:05:21 +08:00
|
|
|
Delete(ctx context.Context, id uint64) error
|
2021-06-07 17:22:07 +08:00
|
|
|
}
|
|
|
|
|
|
2022-09-09 18:26:08 +08:00
|
|
|
type accountAppImpl struct {
|
2023-10-26 17:15:49 +08:00
|
|
|
base.AppImpl[*entity.Account, repository.Account]
|
2024-04-28 23:45:57 +08:00
|
|
|
|
|
|
|
|
accountRoleRepo repository.AccountRole `inject:"AccountRoleRepo"`
|
2021-06-07 17:22:07 +08:00
|
|
|
}
|
|
|
|
|
|
2024-02-29 22:12:50 +08:00
|
|
|
func (a *accountAppImpl) GetPageList(condition *entity.AccountQuery, pageParam *model.PageParam, toEntity any, orderBy ...string) (*model.PageResult[any], error) {
|
2023-10-26 17:15:49 +08:00
|
|
|
return a.GetRepo().GetPageList(condition, pageParam, toEntity)
|
2023-07-24 22:36:07 +08:00
|
|
|
}
|
|
|
|
|
|
2023-11-07 21:05:21 +08:00
|
|
|
func (a *accountAppImpl) Create(ctx context.Context, account *entity.Account) error {
|
2024-04-28 23:45:57 +08:00
|
|
|
if a.GetByCond(&entity.Account{Username: account.Username}) == nil {
|
2024-11-20 22:43:53 +08:00
|
|
|
return errorx.NewBizI(ctx, imsg.ErrUsernameExist)
|
2023-10-26 17:15:49 +08:00
|
|
|
}
|
2024-01-19 21:33:37 +08:00
|
|
|
account.Status = entity.AccountEnable
|
2023-11-07 21:05:21 +08:00
|
|
|
return a.Insert(ctx, account)
|
2021-07-28 18:03:19 +08:00
|
|
|
}
|
|
|
|
|
|
2023-11-07 21:05:21 +08:00
|
|
|
func (a *accountAppImpl) Update(ctx context.Context, account *entity.Account) error {
|
2023-07-24 22:36:07 +08:00
|
|
|
if account.Username != "" {
|
|
|
|
|
unAcc := &entity.Account{Username: account.Username}
|
2024-04-28 23:45:57 +08:00
|
|
|
err := a.GetByCond(unAcc)
|
2023-10-26 17:15:49 +08:00
|
|
|
if err == nil && unAcc.Id != account.Id {
|
2024-11-20 22:43:53 +08:00
|
|
|
return errorx.NewBizI(ctx, imsg.ErrUsernameExist)
|
2023-10-26 17:15:49 +08:00
|
|
|
}
|
2023-07-24 22:36:07 +08:00
|
|
|
}
|
|
|
|
|
|
2023-11-07 21:05:21 +08:00
|
|
|
return a.UpdateById(ctx, account)
|
2021-07-28 18:03:19 +08:00
|
|
|
}
|
|
|
|
|
|
2023-11-07 21:05:21 +08:00
|
|
|
func (a *accountAppImpl) Delete(ctx context.Context, id uint64) error {
|
2024-04-28 23:45:57 +08:00
|
|
|
return a.Tx(ctx, func(ctx context.Context) error {
|
|
|
|
|
return a.DeleteById(ctx, id)
|
|
|
|
|
}, func(ctx context.Context) error {
|
|
|
|
|
return a.accountRoleRepo.DeleteByCond(ctx, &entity.AccountRole{AccountId: id})
|
|
|
|
|
})
|
2021-07-28 18:03:19 +08:00
|
|
|
}
|