- Delete 权限:新增 requesterID/isAdmin 参数,Service 层鉴权(仅本人/管理员可删)
- 通知内容:改用 GetUsernameByID 显示真实用户名,非数字 UID
- SearchUsers:Repository 返回 exp,Service 调用 GetLevelByExp 计算等级
- 通知高亮:Notification 新增 CommentID 字段,消息链接支持 #comment-{id}
- 已删除提示:前端 hash 检测 + 3 秒超时 Toast "该评论已不存在"
- Admin CSS:移除不存在的 comments.css 引用
- 错误哨兵:改用 common.ErrCommentNotFound/ErrCommentEmpty/PermissionDenied
46 lines
1.6 KiB
Go
46 lines
1.6 KiB
Go
package model
|
||
|
||
// 消息/通知类型常量
|
||
const (
|
||
NotifyAuditApproved = "audit_approved"
|
||
NotifyAuditRejected = "audit_rejected"
|
||
NotifyPostApproved = "post_approved"
|
||
NotifyPostRejected = "post_rejected"
|
||
NotifyLevelUp = "level_up"
|
||
NotifyComment = "comment"
|
||
NotifyCommentReply = "comment_reply"
|
||
)
|
||
|
||
// Notification 消息/通知模型
|
||
type Notification struct {
|
||
BaseModel
|
||
|
||
UserID uint `gorm:"index:idx_user_read,priority:1;not null" json:"user_id"`
|
||
NotifyType string `gorm:"type:varchar(30);index;not null" json:"notify_type"`
|
||
Title string `gorm:"type:varchar(200);not null" json:"title"`
|
||
Content string `gorm:"type:text" json:"content"`
|
||
IsRead bool `gorm:"index:idx_user_read,priority:2;default:false;not null" json:"is_read"`
|
||
RelatedID *uint `gorm:"default:null" json:"related_id,omitempty"` // 关联业务 ID(文章/评论等)
|
||
CommentID *uint `gorm:"default:null" json:"comment_id,omitempty"` // 评论 ID(用于跳转高亮目标评论)
|
||
}
|
||
|
||
// NotifyTypeNames 通知类型 → 中文名
|
||
var NotifyTypeNames = map[string]string{
|
||
NotifyAuditApproved: "资料审核",
|
||
NotifyAuditRejected: "资料审核",
|
||
NotifyPostApproved: "稿件审核",
|
||
NotifyPostRejected: "稿件审核",
|
||
NotifyLevelUp: "等级提升",
|
||
NotifyComment: "评论",
|
||
NotifyCommentReply: "回复",
|
||
}
|
||
|
||
// NotificationListResult 消息列表查询结果
|
||
type NotificationListResult struct {
|
||
Items []Notification `json:"items"`
|
||
Total int64 `json:"total"`
|
||
Page int `json:"page"`
|
||
TotalPages int `json:"total_pages"`
|
||
Unread int64 `json:"unread"`
|
||
}
|