Files
VLoop/backend/internal/middleware/rabbitmq/likeMQ.go
yiyiis d8bca16362 fix: 拆分 RabbitMQ Channel,修复新视频不出现在推荐列表的问题
- RabbitMQ 结构体移除共享 Ch 字段,仅管理 Connection
- 每个MQ组件(Like/Comment/Social/Popularity/Timeline)持有独立 Channel
- Timeline Consumer 使用独立 Channel 并加入自动重连机制
- Redis 操作超时从 50ms 调整为 500ms,避免 NACK 循环
- router.go 中 notification 相关逻辑适配新 API
2026-05-22 23:57:06 +08:00

75 lines
1.6 KiB
Go

package rabbitmq
import (
"context"
"errors"
"time"
amqp "github.com/rabbitmq/amqp091-go"
)
type LikeMQ struct {
ch *amqp.Channel
}
const (
likeExchange = "like.events"
likeQueue = "like.events"
likeBindingKey = "like.*"
likeLikeRK = "like.like"
likeUnlikeRK = "like.unlike"
)
type LikeEvent struct {
EventID string `json:"event_id"`
Action string `json:"action"`
UserID uint `json:"user_id"`
VideoID uint `json:"video_id"`
OccurredAt time.Time `json:"occurred_at"`
}
func NewLikeMQ(base *RabbitMQ) (*LikeMQ, error) {
if base == nil {
return nil, errors.New("rabbitmq base is nil")
}
ch, err := base.NewChannel()
if err != nil {
return nil, err
}
if err := DeclareTopic(ch, likeExchange, likeQueue, likeBindingKey); err != nil {
ch.Close()
return nil, err
}
return &LikeMQ{ch: ch}, nil
}
func (l *LikeMQ) Like(ctx context.Context, userID, videoID uint) error {
return l.publish(ctx, "like", likeLikeRK, userID, videoID)
}
func (l *LikeMQ) Unlike(ctx context.Context, userID, videoID uint) error {
return l.publish(ctx, "unlike", likeUnlikeRK, userID, videoID)
}
func (l *LikeMQ) publish(ctx context.Context, action, routingKey string, userID, videoID uint) error {
if l == nil || l.ch == nil {
return errors.New("like mq is not initialized")
}
if userID == 0 || videoID == 0 {
return errors.New("userID and videoID are required")
}
id, err := newEventID(16)
if err != nil {
return err
}
event := LikeEvent{
EventID: id,
Action: action,
UserID: userID,
VideoID: videoID,
OccurredAt: time.Now(),
}
return PublishJSON(ctx, l.ch, likeExchange, routingKey, event)
}