- RabbitMQ 结构体移除共享 Ch 字段,仅管理 Connection - 每个MQ组件(Like/Comment/Social/Popularity/Timeline)持有独立 Channel - Timeline Consumer 使用独立 Channel 并加入自动重连机制 - Redis 操作超时从 50ms 调整为 500ms,避免 NACK 循环 - router.go 中 notification 相关逻辑适配新 API
75 lines
1.8 KiB
Go
75 lines
1.8 KiB
Go
package rabbitmq
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"time"
|
|
|
|
amqp "github.com/rabbitmq/amqp091-go"
|
|
)
|
|
|
|
type SocialMQ struct {
|
|
ch *amqp.Channel
|
|
}
|
|
|
|
const (
|
|
socialExchange = "social.events"
|
|
socialQueue = "social.events"
|
|
socialBindingKey = "social.*"
|
|
|
|
socialFollowRK = "social.follow"
|
|
socialUnfollowRK = "social.unfollow"
|
|
)
|
|
|
|
type SocialEvent struct {
|
|
EventID string `json:"event_id"`
|
|
Action string `json:"action"`
|
|
FollowerID uint `json:"follower_id"`
|
|
VloggerID uint `json:"vlogger_id"`
|
|
OccurredAt time.Time `json:"occurred_at"`
|
|
}
|
|
|
|
func NewSocialMQ(base *RabbitMQ) (*SocialMQ, 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, socialExchange, socialQueue, socialBindingKey); err != nil {
|
|
ch.Close()
|
|
return nil, err
|
|
}
|
|
return &SocialMQ{ch: ch}, nil
|
|
}
|
|
|
|
func (s *SocialMQ) Follow(ctx context.Context, followerID, vloggerID uint) error {
|
|
return s.publish(ctx, "follow", socialFollowRK, followerID, vloggerID)
|
|
}
|
|
|
|
func (s *SocialMQ) UnFollow(ctx context.Context, followerID, vloggerID uint) error {
|
|
return s.publish(ctx, "unfollow", socialUnfollowRK, followerID, vloggerID)
|
|
}
|
|
|
|
func (s *SocialMQ) publish(ctx context.Context, action, routingKey string, followerID, vloggerID uint) error {
|
|
if s == nil || s.ch == nil {
|
|
return errors.New("social mq is not initialized")
|
|
}
|
|
if followerID == 0 || vloggerID == 0 {
|
|
return errors.New("followerID and vloggerID are required")
|
|
}
|
|
id, err := newEventID(16)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
evt := SocialEvent{
|
|
EventID: id,
|
|
Action: action,
|
|
FollowerID: followerID,
|
|
VloggerID: vloggerID,
|
|
OccurredAt: time.Now().UTC(),
|
|
}
|
|
return PublishJSON(ctx, s.ch, socialExchange, routingKey, evt)
|
|
}
|