- 新增关注系统:UserFollow 模型、FollowService(toggle/status/列表隐私控制) - User 新增 FollowersCount/FollowingCount/FollowListPublic/NotifyPrefs 字段 - Space 页面增加四态关注按钮(关注/已关注/回关/已互粉)+ 粉丝/关注数链接 - 新增 /space/:uid/followers 和 /space/:uid/following 列表页 - 新增 NotifyFollow/NotifyLikeAggregated 通知类型 - ReactionService 点赞时写入 daily_like_summary,访问时生成聚合通知 - FollowService 关注时触发 NotifyFollow 通知 - 消息中心侧边栏升级为分类 TAB(全部/系统通知/@艾特/点赞/关注) - NotificationService 新增 ListByCategory 按分类分页查询
63 lines
2.2 KiB
Go
63 lines
2.2 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"
|
||
NotifyLikeAggregated = "like_aggregated" // 每日聚合点赞通知
|
||
NotifyFollow = "follow" // 关注通知
|
||
)
|
||
|
||
// 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: "回复",
|
||
NotifyLikeAggregated: "点赞",
|
||
NotifyFollow: "关注",
|
||
}
|
||
|
||
// NotifyCategory 通知类型所属分类 TAB
|
||
var NotifyCategory = map[string]string{
|
||
NotifyAuditApproved: "system",
|
||
NotifyAuditRejected: "system",
|
||
NotifyPostApproved: "system",
|
||
NotifyPostRejected: "system",
|
||
NotifyLevelUp: "system",
|
||
NotifyComment: "mention",
|
||
NotifyCommentReply: "mention",
|
||
NotifyLikeAggregated: "like",
|
||
NotifyFollow: "follow",
|
||
}
|
||
|
||
// 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"`
|
||
}
|