Files
VLoop/backend/internal/middleware/rabbitmq/popularityMQ.go

64 lines
1.4 KiB
Go
Raw Normal View History

2025-12-30 01:25:30 +08:00
package rabbitmq
import (
"context"
"errors"
"time"
amqp "github.com/rabbitmq/amqp091-go"
2025-12-30 01:25:30 +08:00
)
type PopularityMQ struct {
ch *amqp.Channel
2025-12-30 01:25:30 +08:00
}
const (
popularityExchange = "video.popularity.events"
popularityQueue = "video.popularity.events"
popularityBindingKey = "video.popularity.*"
popularityUpdateRK = "video.popularity.update"
)
type PopularityEvent struct {
EventID string `json:"event_id"`
VideoID uint `json:"video_id"`
Change int64 `json:"change"`
OccurredAt time.Time `json:"occurred_at"`
}
func NewPopularityMQ(base *RabbitMQ) (*PopularityMQ, 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, popularityExchange, popularityQueue, popularityBindingKey); err != nil {
ch.Close()
2025-12-30 01:25:30 +08:00
return nil, err
}
return &PopularityMQ{ch: ch}, nil
2025-12-30 01:25:30 +08:00
}
func (p *PopularityMQ) Update(ctx context.Context, videoID uint, change int64) error {
if p == nil || p.ch == nil {
2025-12-30 01:25:30 +08:00
return errors.New("popularity mq is not initialized")
}
if videoID == 0 || change == 0 {
return errors.New("videoID and change are required")
}
id, err := newEventID(16)
if err != nil {
return err
}
event := PopularityEvent{
EventID: id,
VideoID: videoID,
Change: change,
OccurredAt: time.Now().UTC(),
}
return PublishJSON(ctx, p.ch, popularityExchange, popularityUpdateRK, event)
2025-12-30 01:25:30 +08:00
}