snow/storage/storage.go

292 lines
7.0 KiB
Go
Raw Normal View History

2023-10-31 22:40:14 +00:00
package storage
var (
Repo *Repository
2023-10-31 22:40:14 +00:00
)
type Storage interface {
Migrate(table interface{}, tableName string)
2023-12-13 22:52:16 +00:00
GetAllPersons() []*DB_Person
GetPersonsCount() int
2024-01-03 23:25:17 +00:00
TotalVBucks() int
2023-10-31 22:40:14 +00:00
GetPerson(personId string) *DB_Person
GetPersonByDisplay(displayName string) *DB_Person
2024-01-03 23:25:17 +00:00
GetPersonsByPartialDisplay(displayName string) []*DB_Person
GetPersonByDiscordID(discordId string) *DB_Person
2023-10-31 22:40:14 +00:00
SavePerson(person *DB_Person)
2023-12-13 22:52:16 +00:00
DeletePerson(personId string)
2024-01-29 23:46:22 +00:00
GetIncomingRelationships(personId string) []*DB_Relationship
GetOutgoingRelationships(personId string) []*DB_Relationship
SaveRelationship(relationship *DB_Relationship)
DeleteRelationship(relationship *DB_Relationship)
SaveProfile(profile *DB_Profile)
DeleteProfile(profileId string)
SaveItem(item *DB_Item)
BulkCreateItems(items *[]DB_Item)
DeleteItem(itemId string)
SaveVariant(variant *DB_VariantChannel)
2024-02-04 01:25:44 +00:00
BulkCreateVariants(variants *[]DB_VariantChannel)
DeleteVariant(variantId string)
SaveQuest(quest *DB_Quest)
DeleteQuest(questId string)
2024-02-04 02:05:31 +00:00
SaveLoot(loot *DB_GiftLoot)
DeleteLoot(lootId string)
SaveGift(gift *DB_Gift)
DeleteGift(giftId string)
SaveVariantToken(variantToken *DB_VariantToken)
SaveVariantTokenGrant(variantTokenGrant *DB_VariantTokenGrant)
DeleteVariantToken(variantTokenId string)
DeleteVariantTokenGrant(variantTokenGrantId string)
2024-02-04 02:05:31 +00:00
SaveAttribute(attribute *DB_Attribute)
DeleteAttribute(attributeId string)
SaveLoadout(loadout *DB_Loadout)
DeleteLoadout(loadoutId string)
2024-02-04 15:21:16 +00:00
SavePurchase(purchase *DB_Purchase)
DeletePurchase(purchaseId string)
SaveDiscordPerson(person *DB_DiscordPerson)
DeleteDiscordPerson(personId string)
2024-02-10 01:55:56 +00:00
SaveBanStatus(ban *DB_BanStatus)
DeleteBanStatus(banId string)
SaveReceipt(receipt *DB_Receipt)
SaveReceiptLoot(receiptLoot *DB_ReceiptLoot)
DeleteReceipt(receiptId string)
DeleteReceiptLoot(receiptLootId string)
SaveSeasonStats(season *DB_SeasonStat)
DeleteSeasonStats(seasonId string)
2023-10-31 22:40:14 +00:00
}
type Repository struct {
Storage Storage
2024-02-04 19:49:31 +00:00
Amazon *AmazonClient
2023-10-31 22:40:14 +00:00
}
func NewStorage(s Storage) *Repository {
return &Repository{
Storage: s,
}
}
func (r *Repository) GetPersonFromDB(personId string) *DB_Person {
2023-10-31 22:40:14 +00:00
storagePerson := r.Storage.GetPerson(personId)
if storagePerson != nil {
return storagePerson
}
return nil
}
func (r *Repository) GetPersonByDisplayFromDB(displayName string) *DB_Person {
storagePerson := r.Storage.GetPersonByDisplay(displayName)
if storagePerson != nil {
return storagePerson
}
return nil
}
2024-01-03 23:25:17 +00:00
func (r *Repository) GetPersonsByPartialDisplayFromDB(displayName string) []*DB_Person {
storagePerson := r.Storage.GetPersonsByPartialDisplay(displayName)
if storagePerson != nil {
return storagePerson
}
return nil
}
func (r *Repository) GetPersonByDiscordIDFromDB(discordId string) *DB_Person {
storagePerson := r.Storage.GetPersonByDiscordID(discordId)
if storagePerson != nil {
return storagePerson
}
return nil
}
2024-01-03 23:25:17 +00:00
func (r *Repository) TotalVBucks() int {
return r.Storage.TotalVBucks()
}
2023-10-31 22:40:14 +00:00
func (r *Repository) GetAllPersons() []*DB_Person {
return r.Storage.GetAllPersons()
}
2023-12-13 22:52:16 +00:00
func (r *Repository) GetPersonsCount() int {
return r.Storage.GetPersonsCount()
}
2023-10-31 22:40:14 +00:00
func (r *Repository) SavePerson(person *DB_Person) {
r.Storage.SavePerson(person)
}
2023-12-13 22:52:16 +00:00
func (r *Repository) DeletePerson(personId string) {
r.Storage.DeletePerson(personId)
}
func (r *Repository) SaveProfile(profile *DB_Profile) {
r.Storage.SaveProfile(profile)
}
func (r *Repository) DeleteProfile(profileId string) {
r.Storage.DeleteProfile(profileId)
}
2024-01-29 23:46:22 +00:00
func (r *Repository) GetIncomingRelationships(personId string) []*DB_Relationship {
return r.Storage.GetIncomingRelationships(personId)
}
func (r *Repository) GetOutgoingRelationships(personId string) []*DB_Relationship {
return r.Storage.GetOutgoingRelationships(personId)
}
func (r *Repository) SaveRelationship(relationship *DB_Relationship) {
r.Storage.SaveRelationship(relationship)
}
func (r *Repository) DeleteRelationship(relationship *DB_Relationship) {
r.Storage.DeleteRelationship(relationship)
}
func (r *Repository) SaveItem(item *DB_Item) {
r.Storage.SaveItem(item)
}
func (r *Repository) BulkCreateItems(items *[]DB_Item) {
r.Storage.BulkCreateItems(items)
}
func (r *Repository) DeleteItem(itemId string) {
r.Storage.DeleteItem(itemId)
}
2024-02-04 01:25:44 +00:00
func (r *Repository) BulkCreateVariants(variants *[]DB_VariantChannel) {
r.Storage.BulkCreateVariants(variants)
}
func (r *Repository) SaveVariant(variant *DB_VariantChannel) {
r.Storage.SaveVariant(variant)
}
func (r *Repository) DeleteVariant(variantId string) {
r.Storage.DeleteVariant(variantId)
}
func (r *Repository) SaveQuest(quest *DB_Quest) {
r.Storage.SaveQuest(quest)
}
func (r *Repository) DeleteQuest(questId string) {
r.Storage.DeleteQuest(questId)
}
2024-02-04 02:05:31 +00:00
func (r *Repository) SaveLoot(loot *DB_GiftLoot) {
r.Storage.SaveLoot(loot)
}
func (r *Repository) DeleteLoot(lootId string) {
r.Storage.DeleteLoot(lootId)
}
func (r *Repository) SaveGift(gift *DB_Gift) {
r.Storage.SaveGift(gift)
}
func (r *Repository) DeleteGift(giftId string) {
r.Storage.DeleteGift(giftId)
}
func (r *Repository) SaveVariantToken(variantToken *DB_VariantToken) {
r.Storage.SaveVariantToken(variantToken)
}
func (r *Repository) SaveVariantTokenGrant(variantTokenGrant *DB_VariantTokenGrant) {
r.Storage.SaveVariantTokenGrant(variantTokenGrant)
}
func (r *Repository) DeleteVariantToken(variantTokenId string) {
r.Storage.DeleteVariantToken(variantTokenId)
}
func (r *Repository) DeleteVariantTokenGrant(variantTokenGrantId string) {
r.Storage.DeleteVariantTokenGrant(variantTokenGrantId)
}
2024-02-04 02:05:31 +00:00
func (r *Repository) SaveAttribute(attribute *DB_Attribute) {
r.Storage.SaveAttribute(attribute)
}
func (r *Repository) DeleteAttribute(attributeId string) {
r.Storage.DeleteAttribute(attributeId)
}
func (r *Repository) SaveLoadout(loadout *DB_Loadout) {
r.Storage.SaveLoadout(loadout)
}
func (r *Repository) DeleteLoadout(loadoutId string) {
r.Storage.DeleteLoadout(loadoutId)
}
2024-02-04 15:21:16 +00:00
func (r *Repository) SavePurchase(purchase *DB_Purchase) {
r.Storage.SavePurchase(purchase)
}
func (r *Repository) DeletePurchase(purchaseId string) {
r.Storage.DeletePurchase(purchaseId)
}
func (r *Repository) SaveDiscordPerson(person *DB_DiscordPerson) {
r.Storage.SaveDiscordPerson(person)
}
func (r *Repository) DeleteDiscordPerson(personId string) {
r.Storage.DeleteDiscordPerson(personId)
2024-02-10 01:55:56 +00:00
}
func (r *Repository) SaveBanStatus(ban *DB_BanStatus) {
r.Storage.SaveBanStatus(ban)
}
func (r *Repository) DeleteBanStatus(banId string) {
r.Storage.DeleteBanStatus(banId)
}
func (r *Repository) SaveReceipt(receipt *DB_Receipt) {
r.Storage.SaveReceipt(receipt)
}
func (r *Repository) SaveReceiptLoot(receiptLoot *DB_ReceiptLoot) {
r.Storage.SaveReceiptLoot(receiptLoot)
}
func (r *Repository) DeleteReceipt(receiptId string) {
r.Storage.DeleteReceipt(receiptId)
}
func (r *Repository) DeleteReceiptLoot(receiptLootId string) {
r.Storage.DeleteReceiptLoot(receiptLootId)
}
func (r *Repository) SaveSeasonStats(season *DB_SeasonStat) {
r.Storage.SaveSeasonStats(season)
}
func (r *Repository) DeleteSeasonStats(seasonId string) {
r.Storage.DeleteSeasonStats(seasonId)
2023-10-31 22:40:14 +00:00
}