snow/storage/postgres.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

309 lines
8.2 KiB
Go

package storage
import (
"github.com/ectrc/snow/aid"
"gorm.io/driver/postgres"
"gorm.io/gorm"
"gorm.io/gorm/logger"
)
type PostgresStorage struct {
Postgres *gorm.DB
}
func NewPostgresStorage() *PostgresStorage {
l := logger.Default
if aid.Config.Output.Level == "time" {
l = logger.Default.LogMode(logger.Info)
}
db, err := gorm.Open(postgres.Open(aid.Config.Database.URI), &gorm.Config{
Logger: l,
})
if err != nil {
panic(err)
}
return &PostgresStorage{
Postgres: db,
}
}
func (s *PostgresStorage) Migrate(table interface{}, tableName string) {
s.Postgres.Table(tableName).AutoMigrate(table)
}
func (s *PostgresStorage) MigrateAll() {
s.Migrate(&DB_Person{}, "Persons")
s.Migrate(&DB_Relationship{}, "Relationships")
s.Migrate(&DB_Profile{}, "Profiles")
s.Migrate(&DB_Attribute{}, "Attributes")
s.Migrate(&DB_Loadout{}, "Loadouts")
s.Migrate(&DB_Item{}, "Items")
s.Migrate(&DB_Purchase{}, "Purchases")
s.Migrate(&DB_PurchaseLoot{}, "PurchaseLoot")
s.Migrate(&DB_VariantChannel{}, "Variants")
s.Migrate(&DB_Quest{}, "Quests")
s.Migrate(&DB_Gift{}, "Gifts")
s.Migrate(&DB_GiftLoot{}, "GiftLoot")
s.Migrate(&DB_DiscordPerson{}, "Discords")
s.Migrate(&DB_BanStatus{}, "Bans")
s.Migrate(&DB_SeasonStat{}, "Stats")
s.Migrate(&DB_Receipt{}, "Receipts")
s.Migrate(&DB_ReceiptLoot{}, "ReceiptLoot")
s.Migrate(&DB_VariantToken{}, "VariantTokens")
s.Migrate(&DB_VariantTokenGrant{}, "VariantTokenGrants")
}
func (s *PostgresStorage) DropTables() {
s.Postgres.Exec(`DROP SCHEMA public CASCADE; CREATE SCHEMA public; GRANT ALL ON SCHEMA public TO postgres; GRANT ALL ON SCHEMA public TO public;`)
}
func (s *PostgresStorage) PreloadPerson() (tx *gorm.DB) {
return s.Postgres.
Model(&DB_Person{}).
Preload("Profiles").
Preload("Profiles.Loadouts").
Preload("Profiles.Attributes").
Preload("Profiles.Items").
Preload("Profiles.Items.Variants").
Preload("Profiles.Gifts").
Preload("Profiles.Gifts.Loot").
Preload("Profiles.Quests").
Preload("Profiles.VariantTokens").
Preload("Profiles.VariantTokens.VariantGrants").
Preload("Profiles.Purchases").
Preload("Profiles.Purchases.Loot").
Preload("Receipts").
Preload("Receipts.Loot").
Preload("Discord").
Preload("BanHistory").
Preload("Stats")
}
func (s *PostgresStorage) GetPerson(personId string) *DB_Person {
var dbPerson DB_Person
s.PreloadPerson().Where("id = ?", personId).Find(&dbPerson)
if dbPerson.ID == "" {
return nil
}
return &dbPerson
}
func (s *PostgresStorage) GetPersonByDisplay(displayName string) *DB_Person {
var dbPerson DB_Person
s.PreloadPerson().Where("display_name = ?", displayName).Find(&dbPerson)
if dbPerson.ID == "" {
return nil
}
return &dbPerson
}
func (s *PostgresStorage) GetPersonsByPartialDisplay(displayName string) []*DB_Person {
var dbPersons []*DB_Person
s.PreloadPerson().Where("display_name LIKE ?", "%" + displayName + "%").Find(&dbPersons)
if len(dbPersons) == 0 {
return nil
}
return dbPersons
}
func (s *PostgresStorage) GetPersonByDiscordID(discordId string) *DB_Person {
var discordEntry DB_DiscordPerson
s.Postgres.Model(&DB_DiscordPerson{}).Where("id = ?", discordId).Find(&discordEntry)
if discordEntry.ID == "" {
return nil
}
return s.GetPerson(discordEntry.PersonID)
}
func (s *PostgresStorage) GetAllPersons() []*DB_Person {
var dbPersons []*DB_Person
s.PreloadPerson().Find(&dbPersons)
return dbPersons
}
func (s *PostgresStorage) GetPersonsCount() int {
var count int64
s.Postgres.Model(&DB_Person{}).Count(&count)
return int(count)
}
func (s *PostgresStorage) TotalVBucks() int {
var total int64
s.Postgres.Model(&DB_Item{}).Select("sum(quantity)").Where("template_id = ?", "Currency:MtxPurchased").Find(&total)
return int(total)
}
func (s *PostgresStorage) SavePerson(person *DB_Person) {
s.Postgres.Save(person)
}
func (s *PostgresStorage) DeletePerson(personId string) {
s.PreloadPerson().Delete(&DB_Person{}, "id = ?", personId)
}
func (s *PostgresStorage) GetIncomingRelationships(personId string) []*DB_Relationship {
var dbRelationships []*DB_Relationship
s.Postgres.Model(&DB_Relationship{}).Where("towards_person_id = ?", personId).Find(&dbRelationships)
return dbRelationships
}
func (s *PostgresStorage) GetOutgoingRelationships(personId string) []*DB_Relationship {
var dbRelationships []*DB_Relationship
s.Postgres.Model(&DB_Relationship{}).Where("from_person_id = ?", personId).Find(&dbRelationships)
return dbRelationships
}
func (s *PostgresStorage) SaveRelationship(relationship *DB_Relationship) {
s.Postgres.Save(relationship)
}
func (s *PostgresStorage) DeleteRelationship(relationship *DB_Relationship) {
s.Postgres.Delete(relationship)
}
func (s *PostgresStorage) SaveProfile(profile *DB_Profile) {
s.Postgres.Save(profile)
}
func (s *PostgresStorage) DeleteProfile(profileId string) {
s.Postgres.Delete(&DB_Profile{}, "id = ?", profileId)
}
func (s *PostgresStorage) SaveItem(item *DB_Item) {
s.Postgres.Save(item)
}
func (s *PostgresStorage) BulkCreateItems(items *[]DB_Item) {
s.Postgres.Create(items)
}
func (s *PostgresStorage) DeleteItem(itemId string) {
s.Postgres.Delete(&DB_Item{}, "id = ?", itemId)
}
func (s *PostgresStorage) SaveVariant(variant *DB_VariantChannel) {
s.Postgres.Save(variant)
}
func (s *PostgresStorage) BulkCreateVariants(variants *[]DB_VariantChannel) {
s.Postgres.Create(variants)
}
func (s *PostgresStorage) DeleteVariant(variantId string) {
s.Postgres.Delete(&DB_VariantChannel{}, "id = ?", variantId)
}
func (s *PostgresStorage) SaveQuest(quest *DB_Quest) {
s.Postgres.Save(quest)
}
func (s *PostgresStorage) DeleteQuest(questId string) {
s.Postgres.Delete(&DB_Quest{}, "id = ?", questId)
}
func (s *PostgresStorage) SaveLoot(loot *DB_GiftLoot) {
s.Postgres.Save(loot)
}
func (s *PostgresStorage) DeleteLoot(lootId string) {
s.Postgres.Delete(&DB_GiftLoot{}, "id = ?", lootId)
}
func (s *PostgresStorage) SaveGift(gift *DB_Gift) {
s.Postgres.Save(gift)
}
func (s *PostgresStorage) DeleteGift(giftId string) {
s.Postgres.Delete(&DB_Gift{}, "id = ?", giftId)
}
func (s *PostgresStorage) SaveVariantToken(variantToken *DB_VariantToken) {
s.Postgres.Save(variantToken)
}
func (s *PostgresStorage) DeleteVariantToken(variantTokenId string) {
s.Postgres.Delete(&DB_VariantToken{}, "id = ?", variantTokenId)
}
func (s *PostgresStorage) SaveVariantTokenGrant(variantTokenGrant *DB_VariantTokenGrant) {
s.Postgres.Save(variantTokenGrant)
}
func (s *PostgresStorage) DeleteVariantTokenGrant(variantTokenGrantId string) {
s.Postgres.Delete(&DB_VariantTokenGrant{}, "id = ?", variantTokenGrantId)
}
func (s *PostgresStorage) SaveAttribute(attribute *DB_Attribute) {
s.Postgres.Save(attribute)
}
func (s *PostgresStorage) DeleteAttribute(attributeId string) {
s.Postgres.Delete(&DB_Attribute{}, "id = ?", attributeId)
}
func (s *PostgresStorage) SaveLoadout(loadout *DB_Loadout) {
s.Postgres.Save(loadout)
}
func (s *PostgresStorage) DeleteLoadout(loadoutId string) {
s.Postgres.Delete(&DB_Loadout{}, "id = ?", loadoutId)
}
func (s *PostgresStorage) SavePurchase(purchase *DB_Purchase) {
s.Postgres.Save(purchase)
}
func (s *PostgresStorage) DeletePurchase(purchaseId string) {
s.Postgres.Delete(&DB_Purchase{}, "id = ?", purchaseId)
}
func (s *PostgresStorage) SaveDiscordPerson(discordPerson *DB_DiscordPerson) {
s.Postgres.Save(discordPerson)
}
func (s *PostgresStorage) DeleteDiscordPerson(discordPersonId string) {
s.Postgres.Delete(&DB_DiscordPerson{}, "id = ?", discordPersonId)
}
func (s *PostgresStorage) SaveBanStatus(banStatus *DB_BanStatus) {
s.Postgres.Save(banStatus)
}
func (s *PostgresStorage) DeleteBanStatus(banStatusId string) {
s.Postgres.Delete(&DB_BanStatus{}, "id = ?", banStatusId)
}
func (s *PostgresStorage) SaveReceipt(receipt *DB_Receipt) {
s.Postgres.Save(receipt)
}
func (s *PostgresStorage) DeleteReceipt(receiptId string) {
s.Postgres.Delete(&DB_Receipt{}, "id = ?", receiptId)
}
func (s *PostgresStorage) SaveReceiptLoot(receiptLoot *DB_ReceiptLoot) {
s.Postgres.Save(receiptLoot)
}
func (s *PostgresStorage) DeleteReceiptLoot(receiptLootId string) {
s.Postgres.Delete(&DB_ReceiptLoot{}, "id = ?", receiptLootId)
}
func (s *PostgresStorage) SaveSeasonStats(seasonStats *DB_SeasonStat) {
s.Postgres.Save(seasonStats)
}
func (s *PostgresStorage) DeleteSeasonStats(seasonId string) {
s.Postgres.Delete(&DB_SeasonStat{}, "id = ?", seasonId)
}