2023-10-31 22:40:14 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2023-10-31 23:19:52 +00:00
|
|
|
"github.com/ectrc/snow/aid"
|
2023-11-03 23:48:50 +00:00
|
|
|
"github.com/ectrc/snow/handlers"
|
2023-10-31 22:40:14 +00:00
|
|
|
"github.com/ectrc/snow/person"
|
|
|
|
"github.com/ectrc/snow/storage"
|
2023-11-09 18:53:19 +00:00
|
|
|
"github.com/goccy/go-json"
|
2023-11-03 23:48:50 +00:00
|
|
|
|
|
|
|
"github.com/gofiber/fiber/v2"
|
2023-10-31 22:40:14 +00:00
|
|
|
)
|
|
|
|
func init() {
|
2023-11-01 21:51:14 +00:00
|
|
|
aid.LoadConfig()
|
2023-11-08 22:09:08 +00:00
|
|
|
|
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 {
|
|
|
|
aid.Print("Dropping all tables")
|
2023-10-31 22:40:14 +00:00
|
|
|
postgresStorage.DropTables()
|
|
|
|
}
|
2023-11-09 18:53:19 +00:00
|
|
|
postgresStorage.MigrateAll()
|
2023-10-31 22:40:14 +00:00
|
|
|
device = postgresStorage
|
|
|
|
}
|
2023-10-31 23:19:52 +00:00
|
|
|
|
2023-10-31 22:40:14 +00:00
|
|
|
storage.Repo = storage.NewStorage(device)
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2023-11-03 23:48:50 +00:00
|
|
|
if aid.Config.Database.DropAllTables {
|
2023-11-05 01:58:00 +00:00
|
|
|
person.NewFortnitePerson("ac", "1")
|
2023-11-03 23:48:50 +00:00
|
|
|
}
|
2023-10-31 22:40:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
2023-11-09 18:53:19 +00:00
|
|
|
r := fiber.New(fiber.Config{
|
|
|
|
DisableStartupMessage: true,
|
|
|
|
JSONEncoder: json.Marshal,
|
|
|
|
JSONDecoder: json.Unmarshal,
|
|
|
|
})
|
2023-11-03 23:48:50 +00:00
|
|
|
|
|
|
|
r.Use(aid.FiberLogger())
|
|
|
|
r.Use(aid.FiberLimiter())
|
|
|
|
r.Use(aid.FiberCors())
|
|
|
|
|
2023-11-05 01:58:00 +00:00
|
|
|
r.Get("/content/api/pages/fortnite-game", handlers.GetContentPages)
|
2023-11-20 21:20:26 +00:00
|
|
|
r.Get("/waitingroom/api/waitingroom", handlers.GetWaitingRoomStatus)
|
|
|
|
r.Get("/region", handlers.GetRegion)
|
2023-11-20 23:20:42 +00:00
|
|
|
// r.Put("/profile/play_region", handlers.AnyNoContent)
|
2023-11-20 21:20:26 +00:00
|
|
|
|
|
|
|
r.Get("/snow/cache", func(c *fiber.Ctx) error {
|
|
|
|
cache := person.AllFromCache()
|
|
|
|
return c.JSON(cache)
|
|
|
|
})
|
2023-11-05 01:58:00 +00:00
|
|
|
|
2023-11-03 23:48:50 +00:00
|
|
|
account := r.Group("/account/api")
|
2023-11-09 18:42:28 +00:00
|
|
|
account.Get("/public/account", handlers.GetPublicAccounts)
|
2023-11-03 23:48:50 +00:00
|
|
|
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-11-05 22:08:53 +00:00
|
|
|
account.Get("/oauth/verify", handlers.GetOAuthVerify)
|
2023-11-03 23:48:50 +00:00
|
|
|
account.Post("/oauth/token", handlers.PostOAuthToken)
|
|
|
|
account.Delete("/oauth/sessions/kill", handlers.DeleteOAuthSessions)
|
|
|
|
|
|
|
|
fortnite := r.Group("/fortnite/api")
|
2023-11-05 22:08:53 +00:00
|
|
|
fortnite.Get("/receipts/v1/account/:accountId/receipts", handlers.GetFortniteReceipts)
|
|
|
|
fortnite.Get("/v2/versioncheck/*", handlers.GetFortniteVersion)
|
|
|
|
fortnite.Get("/calendar/v1/timeline", handlers.GetFortniteTimeline)
|
|
|
|
|
|
|
|
storefront := fortnite.Group("/storefront/v2")
|
2023-11-09 18:53:19 +00:00
|
|
|
storefront.Use(handlers.OAuthMiddleware)
|
2023-11-05 22:08:53 +00:00
|
|
|
storefront.Get("/catalog", handlers.GetStorefrontCatalog)
|
|
|
|
storefront.Get("/keychain", handlers.GetStorefrontKeychain)
|
2023-11-03 23:48:50 +00:00
|
|
|
|
|
|
|
matchmaking := fortnite.Group("/matchmaking")
|
2023-11-05 22:08:53 +00:00
|
|
|
matchmaking.Get("/session/findPlayer/:accountId", handlers.GetMatchmakingSession)
|
2023-11-03 23:48:50 +00:00
|
|
|
|
|
|
|
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-11-09 18:53:19 +00:00
|
|
|
user.Use(handlers.OAuthMiddleware)
|
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)
|
2023-11-03 23:48:50 +00:00
|
|
|
|
|
|
|
game := fortnite.Group("/game/v2")
|
2023-11-05 22:08:53 +00:00
|
|
|
game.Get("/enabled_features", handlers.GetGameEnabledFeatures)
|
|
|
|
game.Post("/tryPlayOnPlatform/account/:accountId", handlers.PostGamePlatform)
|
|
|
|
game.Post("/grant_access/:accountId", handlers.PostGameAccess)
|
2023-11-19 22:20:00 +00:00
|
|
|
game.Post("/profileToken/verify/:accountId", handlers.AnyNoContent)
|
2023-11-03 23:48:50 +00:00
|
|
|
|
|
|
|
profile := game.Group("/profile/:accountId")
|
2023-11-09 18:53:19 +00:00
|
|
|
profile.Use(handlers.OAuthMiddleware)
|
2023-11-03 23:48:50 +00:00
|
|
|
profile.Post("/client/:action", handlers.PostProfileAction)
|
|
|
|
|
|
|
|
lightswitch := r.Group("/lightswitch/api")
|
|
|
|
lightswitch.Get("/service/bulk/status", handlers.GetLightswitchBulkStatus)
|
2023-11-01 21:33:25 +00:00
|
|
|
|
2023-11-09 18:53:19 +00:00
|
|
|
r.Hooks().OnListen(func(ld fiber.ListenData) error {
|
|
|
|
aid.Print("Listening on " + ld.Host + ":" + ld.Port)
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
2023-11-03 23:48:50 +00:00
|
|
|
r.All("*", func(c *fiber.Ctx) error { return c.Status(fiber.StatusNotFound).JSON(aid.ErrorNotFound) })
|
|
|
|
r.Listen(aid.Config.API.Host + aid.Config.API.Port)
|
2023-10-31 22:40:14 +00:00
|
|
|
}
|