Files
2026-04-28 21:22:28 +03:00

53 lines
1.4 KiB
Go

package service
import (
"context"
pb "lunar-tear/server/gen/proto"
"lunar-tear/server/internal/gametime"
"lunar-tear/server/internal/model"
"lunar-tear/server/internal/runtime"
)
type BannerServiceServer struct {
pb.UnimplementedBannerServiceServer
holder *runtime.Holder
}
func NewBannerServiceServer(holder *runtime.Holder) *BannerServiceServer {
return &BannerServiceServer{holder: holder}
}
func (s *BannerServiceServer) GetMamaBanner(ctx context.Context, req *pb.GetMamaBannerRequest) (*pb.GetMamaBannerResponse, error) {
catalog := s.holder.Get().GachaEntries
nowMillis := gametime.NowMillis()
var termLimited []*pb.GachaBanner
var latestChapter *pb.GachaBanner
for _, entry := range catalog {
if !gachaActiveAt(entry, nowMillis) {
continue
}
if entry.GachaLabelType == model.GachaLabelPortalCage || entry.GachaLabelType == model.GachaLabelRecycle {
continue
}
b := &pb.GachaBanner{
GachaLabelType: entry.GachaLabelType,
GachaAssetName: entry.BannerAssetName,
GachaId: entry.GachaId,
}
switch entry.GachaLabelType {
case model.GachaLabelEvent, model.GachaLabelPremium:
termLimited = append(termLimited, b)
case model.GachaLabelChapter:
if latestChapter == nil || entry.GachaId > latestChapter.GachaId {
latestChapter = b
}
}
}
return &pb.GetMamaBannerResponse{
TermLimitedGacha: termLimited,
LatestChapterGacha: latestChapter,
IsExistUnreadPop: false,
}, nil
}