This commit introduces several architectural improvements and optimizations across the codebase: - **Performance & Reliability**: - Implemented Redis pipelining in `ConversationCache.CacheMessage` to reduce network round-trips. - Added a circuit breaker to the JPush client to prevent cascading failures. - Introduced batch deletion and batch member addition capabilities in repositories. - Added message idempotency support using `client_msg_id` and a Redis-based cache. - Optimized WebSocket handling with connection limits (total and per-user) and improved error logging. - **Code Refactoring**: - Refactored `Router` to use a `RouterDeps` struct, simplifying the constructor and improving maintainability. - Unified model ID generation logic using new `id_helper.go` (supporting UUID and Snowflake). - Standardized JSON serialization/deserialization in models using `json_helper.go`. - Refactored DTO conversion logic, specifically for `UserResponse` (using functional options) and `Report` responses. - Removed redundant/deprecated DTOs like `PostDetailResponse` and `TradeItemDetailResponse`. - **Cache Improvements**: - Enhanced `LayeredCache` with `SetRaw` to avoid double-encoding when promoting values from Redis to local cache. - Added `DeleteBatch` support to the cache interface. - **Other Changes**: - Cleaned up `config.go` by removing redundant default values and explicit environment variable overrides. - Improved WebSocket registration flow to handle connection limits gracefully.
51 lines
1.7 KiB
Go
51 lines
1.7 KiB
Go
package model
|
||
|
||
import (
|
||
"time"
|
||
|
||
"gorm.io/gorm"
|
||
)
|
||
|
||
// NotificationType 通知类型
|
||
type NotificationType string
|
||
|
||
const (
|
||
NotificationTypeLikePost NotificationType = "like_post"
|
||
NotificationTypeLikeComment NotificationType = "like_comment"
|
||
NotificationTypeComment NotificationType = "comment"
|
||
NotificationTypeReply NotificationType = "reply"
|
||
NotificationTypeFollow NotificationType = "follow"
|
||
NotificationTypeMention NotificationType = "mention"
|
||
NotificationTypeSystem NotificationType = "system"
|
||
)
|
||
|
||
// Notification 通知实体
|
||
type Notification struct {
|
||
ID string `json:"id" gorm:"type:varchar(36);primaryKey"`
|
||
UserID string `json:"user_id" gorm:"type:varchar(36);not null;index:idx_notifications_user_read_created,priority:1"` // 接收者
|
||
Type NotificationType `json:"type" gorm:"type:varchar(30);not null"`
|
||
Title string `json:"title" gorm:"type:varchar(200);not null"`
|
||
Content string `json:"content" gorm:"type:text"`
|
||
Data string `json:"data" gorm:"type:jsonb"` // 相关数据(JSON)
|
||
|
||
// 已读状态
|
||
IsRead bool `json:"is_read" gorm:"default:false;index:idx_notifications_user_read_created,priority:2"`
|
||
ReadAt *time.Time `json:"read_at" gorm:"type:timestamp"`
|
||
|
||
// 软删除
|
||
DeletedAt gorm.DeletedAt `json:"-" gorm:"index"`
|
||
|
||
// 时间戳
|
||
CreatedAt time.Time `json:"created_at" gorm:"autoCreateTime;index:idx_notifications_user_read_created,priority:3,sort:desc"`
|
||
}
|
||
|
||
// BeforeCreate 创建前生成UUID
|
||
func (n *Notification) BeforeCreate(tx *gorm.DB) error {
|
||
SetUUIDIfEmpty(&n.ID)
|
||
return nil
|
||
}
|
||
|
||
func (Notification) TableName() string {
|
||
return "notifications"
|
||
}
|