package worker import ( "context" "encoding/json" "errors" "feedsystem_video_go/internal/middleware/rabbitmq" "log" "time" amqp "github.com/rabbitmq/amqp091-go" "gorm.io/gorm" ) type Notification struct { ID uint `gorm:"primaryKey" json:"id"` RecipientID uint `gorm:"index;not null" json:"recipient_id"` SenderID uint `gorm:"not null" json:"sender_id"` Type string `gorm:"type:varchar(50);not null" json:"type"` TargetID uint `json:"target_id"` Content string `gorm:"type:varchar(255)" json:"content"` IsRead bool `gorm:"default:false" json:"is_read"` CreatedAt time.Time `gorm:"autoCreateTime" json:"created_at"` } type NotificationWorker struct { ch *amqp.Channel db *gorm.DB queue string hub NotificationHub } type NotificationHub interface { Push(userID uint, n *Notification) } func NewNotificationWorker(ch *amqp.Channel, db *gorm.DB, queue string, hub NotificationHub) *NotificationWorker { return &NotificationWorker{ch: ch, db: db, queue: queue, hub: hub} } func (w *NotificationWorker) Run(ctx context.Context) error { if w == nil || w.ch == nil || w.db == nil { return errors.New("notification worker is not initialized") } if w.queue == "" { return errors.New("queue is required") } if err := w.db.WithContext(ctx).AutoMigrate(&Notification{}); err != nil { return err } deliveries, err := w.ch.Consume(w.queue, "", false, false, false, false, nil) if err != nil { return err } for { select { case <-ctx.Done(): return ctx.Err() case d, ok := <-deliveries: if !ok { return errors.New("deliveries channel closed") } w.handleDelivery(ctx, d) } } } func (w *NotificationWorker) handleDelivery(ctx context.Context, d amqp.Delivery) { const maxRetries = 3 for i := 0; i <= maxRetries; i++ { select { case <-ctx.Done(): _ = d.Nack(false, true) return default: } if err := w.process(ctx, d); err != nil { if i >= maxRetries { log.Printf("notification worker: 重试 %d 次后仍失败, 丢弃: %v", maxRetries, err) _ = d.Ack(false) return } wait := time.Duration(1<