snow/main.go

185 lines
6.4 KiB
Go
Raw Normal View History

2023-10-31 22:40:14 +00:00
package main
import (
_ "embed"
2023-12-07 19:29:47 +00:00
"fmt"
"github.com/ectrc/snow/aid"
2023-12-13 22:52:16 +00:00
"github.com/ectrc/snow/discord"
2023-11-21 23:42:39 +00:00
"github.com/ectrc/snow/fortnite"
"github.com/ectrc/snow/handlers"
"github.com/ectrc/snow/person"
2023-10-31 22:40:14 +00:00
"github.com/ectrc/snow/storage"
2023-12-09 15:35:33 +00:00
"github.com/goccy/go-json"
2024-01-28 22:04:40 +00:00
"github.com/gofiber/contrib/websocket"
"github.com/gofiber/fiber/v2"
2023-10-31 22:40:14 +00:00
)
//go:embed config.ini
var configFile []byte
2023-10-31 22:40:14 +00:00
func init() {
aid.LoadConfig(configFile)
2023-10-31 22:40:14 +00:00
var device storage.Storage
2023-11-01 21:51:14 +00:00
switch aid.Config.Database.Type {
2023-10-31 22:40:14 +00:00
case "postgres":
postgresStorage := storage.NewPostgresStorage()
2023-11-02 17:50:52 +00:00
if aid.Config.Database.DropAllTables {
2023-10-31 22:40:14 +00:00
postgresStorage.DropTables()
2024-01-03 19:56:23 +00:00
aid.Print("(snow) all tables dropped and reset")
2023-10-31 22:40:14 +00:00
}
postgresStorage.MigrateAll()
2023-10-31 22:40:14 +00:00
device = postgresStorage
2023-12-07 19:29:47 +00:00
default:
panic("Invalid database type: " + aid.Config.Database.Type)
2023-10-31 22:40:14 +00:00
}
2023-10-31 22:40:14 +00:00
storage.Repo = storage.NewStorage(device)
2024-02-04 19:49:31 +00:00
if aid.Config.Amazon.Enabled {
storage.Repo.Amazon = storage.NewAmazonClient(aid.Config.Amazon.BucketURI, aid.Config.Amazon.AccessKeyID, aid.Config.Amazon.SecretAccessKey, aid.Config.Amazon.ClientSettingsBucket)
}
2023-10-31 22:40:14 +00:00
}
func init() {
2023-12-13 22:52:16 +00:00
discord.IntialiseClient()
fortnite.PreloadCosmetics()
2023-12-06 22:26:42 +00:00
fortnite.GenerateRandomStorefront()
2023-12-09 00:20:53 +00:00
fortnite.GeneratePlaylistImages()
2023-10-31 22:40:14 +00:00
2024-02-03 02:33:54 +00:00
for _, username := range aid.Config.Accounts.Gods {
found := person.FindByDisplay(username)
if found == nil {
found = fortnite.NewFortnitePersonWithId(username, username, true)
}
2024-02-10 00:34:12 +00:00
found.AddPermission(person.PermissionAllWithRoles)
aid.Print("(snow) max account " + username + " loaded")
}
for _, username := range aid.Config.Accounts.Owners {
found := person.FindByDisplay(username)
if found == nil {
continue
2024-02-03 02:33:54 +00:00
}
2024-02-10 00:34:12 +00:00
found.AddPermission(person.PermissionOwner)
aid.Print("(snow) owner account " + username + " loaded")
2024-02-03 02:33:54 +00:00
}
}
2024-02-10 00:34:12 +00:00
2023-10-31 22:40:14 +00:00
func main() {
r := fiber.New(fiber.Config{
DisableStartupMessage: true,
JSONEncoder: json.Marshal,
JSONDecoder: json.Unmarshal,
})
r.Use(aid.FiberLogger())
r.Use(aid.FiberLimiter())
r.Use(aid.FiberCors())
r.Get("/region", handlers.GetRegion)
2024-01-20 23:08:29 +00:00
r.Get("/content/api/pages/fortnite-game", handlers.GetContentPages)
r.Get("/waitingroom/api/waitingroom", handlers.GetWaitingRoomStatus)
2024-02-10 00:34:12 +00:00
r.Get("/affiliate/api/public/affiliates/slug/:slug", handlers.GetAffiliate)
2024-01-03 23:25:17 +00:00
r.Get("/api/v1/search/:accountId", handlers.GetPersonSearch)
2024-02-04 20:24:15 +00:00
r.Post("/api/v1/assets/Fortnite/:versionId/:assetName", handlers.PostAssets)
2024-02-10 00:34:12 +00:00
r.Get("/profile/privacy_settings", handlers.MiddlewareFortnite, handlers.GetPrivacySettings)
2024-02-04 20:03:53 +00:00
r.Put("/profile/play_region", handlers.AnyNoContent)
2024-01-20 01:58:57 +00:00
2024-01-28 22:04:40 +00:00
r.Get("/", handlers.RedirectSocket)
r.Get("/socket", handlers.MiddlewareWebsocket, websocket.New(handlers.WebsocketConnection))
account := r.Group("/account/api")
2023-11-09 18:42:28 +00:00
account.Get("/public/account", handlers.GetPublicAccounts)
account.Get("/public/account/:accountId", handlers.GetPublicAccount)
account.Get("/public/account/:accountId/externalAuths", handlers.GetPublicAccountExternalAuths)
2023-11-09 18:42:28 +00:00
account.Get("/public/account/displayName/:displayName", handlers.GetPublicAccountByDisplayName)
2023-12-26 03:39:12 +00:00
account.Get("/oauth/verify", handlers.GetTokenVerify)
2023-12-09 15:35:33 +00:00
account.Post("/oauth/token", handlers.PostFortniteToken)
2023-12-19 21:48:01 +00:00
account.Delete("/oauth/sessions/kill", handlers.DeleteToken)
fortnite := r.Group("/fortnite/api")
fortnite.Get("/receipts/v1/account/:accountId/receipts", handlers.GetFortniteReceipts)
2023-12-26 03:18:12 +00:00
fortnite.Get("/v2/versioncheck/:version", handlers.GetFortniteVersion)
fortnite.Get("/calendar/v1/timeline", handlers.GetFortniteTimeline)
storefront := fortnite.Group("/storefront/v2")
2023-12-19 21:48:01 +00:00
storefront.Use(handlers.MiddlewareFortnite)
storefront.Get("/catalog", handlers.GetStorefrontCatalog)
storefront.Get("/keychain", handlers.GetStorefrontKeychain)
matchmaking := fortnite.Group("/matchmaking")
matchmaking.Get("/session/findPlayer/:accountId", handlers.GetMatchmakingSession)
storage := fortnite.Group("/cloudstorage")
storage.Get("/system", handlers.GetCloudStorageFiles)
storage.Get("/system/config", handlers.GetCloudStorageConfig)
storage.Get("/system/:fileName", handlers.GetCloudStorageFile)
2023-11-09 18:42:28 +00:00
user := storage.Group("/user")
2023-12-19 21:48:01 +00:00
user.Use(handlers.MiddlewareFortnite)
2023-11-09 18:42:28 +00:00
user.Get("/:accountId", handlers.GetUserStorageFiles)
user.Get("/:accountId/:fileName", handlers.GetUserStorageFile)
user.Put("/:accountId/:fileName", handlers.PutUserStorageFile)
2024-01-03 23:25:17 +00:00
friends := r.Group("/friends/api")
friends.Use(handlers.MiddlewareFortnite)
friends.Get("/public/friends/:accountId", handlers.GetFriendList)
friends.Post("/public/friends/:accountId/:wanted", handlers.PostCreateFriend)
friends.Delete("/public/friends/:accountId/:wanted", handlers.DeleteFriend)
friends.Get("/:version/:accountId/summary", handlers.GetFriendListSummary)
2024-02-04 16:01:24 +00:00
friends.Post("/:version/:accountId/friends/:wanted", handlers.PostCreateFriend)
2024-02-10 02:27:42 +00:00
friends.Delete("/:version/:accountId/friends/:wanted", handlers.DeleteFriend)
2024-01-03 23:25:17 +00:00
game := fortnite.Group("/game/v2")
game.Get("/enabled_features", handlers.GetGameEnabledFeatures)
game.Post("/tryPlayOnPlatform/account/:accountId", handlers.PostGamePlatform)
game.Post("/grant_access/:accountId", handlers.PostGameAccess)
game.Post("/creative/discovery/surface/:accountId", handlers.PostDiscovery)
2023-11-19 22:20:00 +00:00
game.Post("/profileToken/verify/:accountId", handlers.AnyNoContent)
profile := game.Group("/profile/:accountId")
2023-12-19 21:48:01 +00:00
profile.Use(handlers.MiddlewareFortnite)
2024-01-03 19:51:46 +00:00
profile.Post("/client/:action", handlers.PostClientProfileAction)
profile.Post("/dedicated_server/:action", handlers.PostServerProfileAction)
lightswitch := r.Group("/lightswitch/api")
2023-12-19 21:48:01 +00:00
lightswitch.Use(handlers.MiddlewareFortnite)
lightswitch.Get("/service/bulk/status", handlers.GetLightswitchBulkStatus)
snow := r.Group("/snow")
2023-12-07 23:25:17 +00:00
snow.Get("/image/:playlist", handlers.GetPlaylistImage)
2024-02-10 15:26:28 +00:00
if aid.Config.API.Debug {
2024-02-04 19:49:31 +00:00
snow.Get("/cache", handlers.GetCachedPlayers)
snow.Get("/config", handlers.GetSnowConfig)
snow.Get("/sockets", handlers.GetConnectedSockets)
snow.Get("/cosmetics", handlers.GetPreloadedCosmetics)
}
2023-12-09 15:35:33 +00:00
discord := snow.Group("/discord")
discord.Get("/", handlers.GetDiscordOAuthURL)
2023-12-09 15:35:33 +00:00
player := snow.Group("/player")
2023-12-19 21:48:01 +00:00
player.Use(handlers.MiddlewareWeb)
player.Get("/", handlers.GetPlayer)
2023-12-09 15:35:33 +00:00
player.Get("/locker", handlers.GetPlayerLocker)
r.Hooks().OnListen(func(ld fiber.ListenData) error {
2024-01-03 19:56:23 +00:00
aid.Print("(fiber) listening on " + aid.Config.API.Host + ":" + ld.Port)
return nil
})
r.All("*", func(c *fiber.Ctx) error { return c.Status(fiber.StatusNotFound).JSON(aid.ErrorNotFound) })
2023-12-09 15:35:33 +00:00
err := r.Listen("0.0.0.0" + aid.Config.API.Port)
2023-12-07 19:29:47 +00:00
if err != nil {
2024-01-03 23:51:42 +00:00
panic(fmt.Sprintf("(fiber) ailed to listen: %v", err))
2023-12-07 19:29:47 +00:00
}
}