- 新增通知类型 post_approved / post_rejected
- PostService.Approve/Reject 完成后通知作者(通知失败不影响主流程)
- NotificationService 新增 NotifyPostApproved/NotifyPostRejected 方法
- 消息页面顶部增加系统消息标识和分隔线,之下为全部消息列表
- 稿件审核通过通知卡片点击跳转到 /posts/{id} 页面
- 稿件审核拒绝通知卡片点击跳转到 /studio/posts 创作中心
- 新增 postNotifier 接口遵循 ISP 原则
62 lines
2.5 KiB
Go
62 lines
2.5 KiB
Go
package service
|
||
|
||
import "metazone.cc/metalab/internal/model"
|
||
|
||
// userAuthStore AuthService 所需的最小仓储接口(ISP:7 个方法)
|
||
// 同时满足 common.UsernameChecker(ExistsByUsername),可传入 GenerateUsername
|
||
type userAuthStore interface {
|
||
ExistsByEmail(email string) (bool, error)
|
||
Create(user *model.User) error
|
||
FindByEmail(email string) (*model.User, error)
|
||
FindByID(id uint) (*model.User, error)
|
||
Update(user *model.User) error
|
||
IncrementTokenVersion(userID uint) error
|
||
ExistsByUsername(username string) (bool, error)
|
||
}
|
||
|
||
// userTokenStore TokenService 所需的最小仓储接口(ISP:1 个方法)
|
||
type userTokenStore interface {
|
||
FindByIDForAuth(userID uint) (*model.User, error)
|
||
}
|
||
|
||
// userAdminStore AdminService 所需的最小仓储接口(ISP:8 个方法)
|
||
type userAdminStore interface {
|
||
CountSearchUsers(keyword, role, status string) (int64, error)
|
||
SearchUsers(keyword, role, status string, offset, limit int) ([]model.User, error)
|
||
FindByIDUnscoped(userID uint) (*model.User, error)
|
||
UpdateStatus(uid uint, status string) error
|
||
SoftDelete(uid uint) error
|
||
Restore(uid uint) error
|
||
ExistsByEmailExclude(email string, excludeUID uint) (bool, error)
|
||
IncrementTokenVersion(userID uint) error
|
||
}
|
||
|
||
// postStore PostService 所需的最小仓储接口(ISP:10 个方法)
|
||
type postStore interface {
|
||
Create(post *model.Post) error
|
||
FindByID(id uint) (*model.Post, error)
|
||
FindByIDWithAuthor(id uint) (*model.Post, error)
|
||
FindPageable(keyword string, offset, limit int) ([]model.Post, int64, error)
|
||
FindAdminPageable(keyword, status string, offset, limit int) ([]model.Post, int64, error)
|
||
FindByUserIDAndStatus(userID uint, status string, offset, limit int) ([]model.Post, int64, error)
|
||
FindPendingRevisions(keyword string, offset, limit int) ([]model.Post, int64, error)
|
||
Update(post *model.Post) error
|
||
SoftDelete(id uint) error
|
||
Restore(id uint) error
|
||
}
|
||
|
||
// spaceUserStore SpaceService 所需的最小用户仓储接口(ISP:1 个方法)
|
||
type spaceUserStore interface {
|
||
FindByID(id uint) (*model.User, error)
|
||
}
|
||
|
||
// spacePostStore SpaceService 所需的最小帖子仓储接口(ISP:1 个方法)
|
||
type spacePostStore interface {
|
||
FindByUserID(userID uint, offset, limit int) ([]model.Post, int64, error)
|
||
}
|
||
|
||
// postNotifier PostService 所需的通知服务接口(ISP:2 个方法)
|
||
type postNotifier interface {
|
||
NotifyPostApproved(userID uint, postTitle string, postID uint)
|
||
NotifyPostRejected(userID uint, postTitle, reason string, postID uint)
|
||
} |