snow/shop/catalog.go
Eccentric 250e85732d feat: update to latest;
new shop system
more config options
arena & hype
per season stats
battle pass
better variant system
complete vbuck & starter pack store
fix bugs related to deleting account
update launcher endpoints
fixed gift loot not deleting
2024-03-10 18:16:42 +00:00

46 lines
1.1 KiB
Go

package shop
import "github.com/ectrc/snow/aid"
type StorefrontCatalog struct {
Sections []*StorefrontCatalogSection
}
func NewStorefrontCatalog() *StorefrontCatalog {
return &StorefrontCatalog{
Sections: make([]*StorefrontCatalogSection, 0),
}
}
func (c *StorefrontCatalog) AddSection(section *StorefrontCatalogSection) {
c.Sections = append(c.Sections, section)
}
func (c *StorefrontCatalog) AddSections(sections ...*StorefrontCatalogSection) {
c.Sections = append(c.Sections, sections...)
}
func (c *StorefrontCatalog) GetOfferByID(offerID string) (interface{}, StorefrontCatalogOfferEnum) {
for _, section := range c.Sections {
found, type_ := section.GetOfferByID(offerID)
if found != nil {
return found, type_
}
}
return nil, -1
}
func (c *StorefrontCatalog) GenerateFortniteCatalogResponse() aid.JSON {
sectionsResponse := []aid.JSON{}
for _, section := range c.Sections {
sectionsResponse = append(sectionsResponse, section.GenerateFortniteCatalogSectionResponse())
}
return aid.JSON{
"storefronts": sectionsResponse,
"refreshIntervalHrs": 24,
"dailyPurchaseHrs": 24,
"expiration": "9999-12-31T23:59:59.999Z",
}
}