2023-11-01 23:21:12 +03:00
|
|
|
// Package api provides primitives to interact with the openapi HTTP API.
|
|
|
|
//
|
2024-04-29 23:01:24 +03:00
|
|
|
// Code generated by github.com/deepmap/oapi-codegen/v2 version v2.1.0 DO NOT EDIT.
|
2023-11-01 23:21:12 +03:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"compress/gzip"
|
|
|
|
"encoding/base64"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
"path"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/getkin/kin-openapi/openapi3"
|
|
|
|
"github.com/labstack/echo/v4"
|
|
|
|
"github.com/oapi-codegen/runtime"
|
2024-01-06 08:44:26 +03:00
|
|
|
openapi_types "github.com/oapi-codegen/runtime/types"
|
2023-11-01 23:21:12 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
// ServerInterface represents all server handlers.
|
|
|
|
type ServerInterface interface {
|
|
|
|
|
2024-04-29 23:01:24 +03:00
|
|
|
// (GET /admin/file/{quest})
|
|
|
|
AdminListFiles(ctx echo.Context, quest openapi_types.UUID) error
|
|
|
|
|
|
|
|
// (POST /admin/file/{quest}/upload)
|
|
|
|
AdminUploadFile(ctx echo.Context, quest openapi_types.UUID) error
|
2024-01-28 22:19:41 +03:00
|
|
|
|
2024-01-25 01:45:09 +03:00
|
|
|
// (GET /admin/games)
|
2024-01-28 22:19:41 +03:00
|
|
|
AdminListGames(ctx echo.Context) error
|
2024-01-25 01:45:09 +03:00
|
|
|
|
|
|
|
// (POST /admin/games)
|
2024-01-28 22:19:41 +03:00
|
|
|
AdminEditGame(ctx echo.Context) error
|
2024-01-25 01:45:09 +03:00
|
|
|
|
|
|
|
// (GET /admin/games/{uid})
|
2024-01-28 22:19:41 +03:00
|
|
|
AdminGetGame(ctx echo.Context, uid openapi_types.UUID) error
|
2024-01-25 01:45:09 +03:00
|
|
|
|
2024-01-05 03:50:33 +03:00
|
|
|
// (GET /engine/{uid})
|
2024-01-06 08:44:26 +03:00
|
|
|
GameEngine(ctx echo.Context, uid openapi_types.UUID) error
|
2024-01-05 03:50:33 +03:00
|
|
|
|
|
|
|
// (POST /engine/{uid}/code)
|
2024-01-06 08:44:26 +03:00
|
|
|
EnterCode(ctx echo.Context, uid openapi_types.UUID) error
|
2023-11-19 22:54:54 +03:00
|
|
|
|
2023-11-02 01:21:13 +03:00
|
|
|
// (GET /games)
|
|
|
|
GetGames(ctx echo.Context) error
|
|
|
|
|
2023-11-01 23:21:12 +03:00
|
|
|
// (GET /user)
|
|
|
|
GetUser(ctx echo.Context) error
|
|
|
|
|
|
|
|
// (POST /user/login)
|
|
|
|
PostUserLogin(ctx echo.Context) error
|
|
|
|
|
|
|
|
// (POST /user/logout)
|
|
|
|
PostUserLogout(ctx echo.Context) error
|
|
|
|
|
|
|
|
// (POST /user/register)
|
|
|
|
PostUserRegister(ctx echo.Context) error
|
|
|
|
}
|
|
|
|
|
|
|
|
// ServerInterfaceWrapper converts echo contexts to parameters.
|
|
|
|
type ServerInterfaceWrapper struct {
|
|
|
|
Handler ServerInterface
|
|
|
|
}
|
|
|
|
|
2024-04-29 23:01:24 +03:00
|
|
|
// AdminListFiles converts echo context to params.
|
|
|
|
func (w *ServerInterfaceWrapper) AdminListFiles(ctx echo.Context) error {
|
|
|
|
var err error
|
|
|
|
// ------------- Path parameter "quest" -------------
|
|
|
|
var quest openapi_types.UUID
|
|
|
|
|
|
|
|
err = runtime.BindStyledParameterWithOptions("simple", "quest", ctx.Param("quest"), &quest, runtime.BindStyledParameterOptions{ParamLocation: runtime.ParamLocationPath, Explode: false, Required: true})
|
|
|
|
if err != nil {
|
|
|
|
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("Invalid format for parameter quest: %s", err))
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Set(CookieAuthScopes, []string{"creator", "admin"})
|
|
|
|
|
|
|
|
// Invoke the callback with all the unmarshaled arguments
|
|
|
|
err = w.Handler.AdminListFiles(ctx, quest)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2024-01-28 22:19:41 +03:00
|
|
|
// AdminUploadFile converts echo context to params.
|
|
|
|
func (w *ServerInterfaceWrapper) AdminUploadFile(ctx echo.Context) error {
|
2024-01-25 01:45:09 +03:00
|
|
|
var err error
|
2024-04-29 23:01:24 +03:00
|
|
|
// ------------- Path parameter "quest" -------------
|
|
|
|
var quest openapi_types.UUID
|
|
|
|
|
|
|
|
err = runtime.BindStyledParameterWithOptions("simple", "quest", ctx.Param("quest"), &quest, runtime.BindStyledParameterOptions{ParamLocation: runtime.ParamLocationPath, Explode: false, Required: true})
|
|
|
|
if err != nil {
|
|
|
|
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("Invalid format for parameter quest: %s", err))
|
|
|
|
}
|
2024-01-25 01:45:09 +03:00
|
|
|
|
2024-01-28 22:19:41 +03:00
|
|
|
ctx.Set(CookieAuthScopes, []string{"creator", "admin"})
|
2024-01-25 01:45:09 +03:00
|
|
|
|
|
|
|
// Invoke the callback with all the unmarshaled arguments
|
2024-04-29 23:01:24 +03:00
|
|
|
err = w.Handler.AdminUploadFile(ctx, quest)
|
2024-01-25 01:45:09 +03:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2024-01-28 22:19:41 +03:00
|
|
|
// AdminListGames converts echo context to params.
|
|
|
|
func (w *ServerInterfaceWrapper) AdminListGames(ctx echo.Context) error {
|
2024-01-25 01:45:09 +03:00
|
|
|
var err error
|
|
|
|
|
2024-01-28 22:19:41 +03:00
|
|
|
ctx.Set(CookieAuthScopes, []string{})
|
2024-01-25 01:45:09 +03:00
|
|
|
|
|
|
|
// Invoke the callback with all the unmarshaled arguments
|
2024-01-28 22:19:41 +03:00
|
|
|
err = w.Handler.AdminListGames(ctx)
|
2024-01-25 01:45:09 +03:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2024-01-28 22:19:41 +03:00
|
|
|
// AdminEditGame converts echo context to params.
|
|
|
|
func (w *ServerInterfaceWrapper) AdminEditGame(ctx echo.Context) error {
|
2024-01-25 01:45:09 +03:00
|
|
|
var err error
|
|
|
|
|
|
|
|
ctx.Set(CookieAuthScopes, []string{"creator", "admin"})
|
|
|
|
|
|
|
|
// Invoke the callback with all the unmarshaled arguments
|
2024-01-28 22:19:41 +03:00
|
|
|
err = w.Handler.AdminEditGame(ctx)
|
2024-01-25 01:45:09 +03:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2024-01-28 22:19:41 +03:00
|
|
|
// AdminGetGame converts echo context to params.
|
|
|
|
func (w *ServerInterfaceWrapper) AdminGetGame(ctx echo.Context) error {
|
2024-01-25 01:45:09 +03:00
|
|
|
var err error
|
|
|
|
// ------------- Path parameter "uid" -------------
|
|
|
|
var uid openapi_types.UUID
|
|
|
|
|
2024-04-29 23:01:24 +03:00
|
|
|
err = runtime.BindStyledParameterWithOptions("simple", "uid", ctx.Param("uid"), &uid, runtime.BindStyledParameterOptions{ParamLocation: runtime.ParamLocationPath, Explode: false, Required: true})
|
2024-01-25 01:45:09 +03:00
|
|
|
if err != nil {
|
|
|
|
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("Invalid format for parameter uid: %s", err))
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Set(CookieAuthScopes, []string{"creator", "admin"})
|
|
|
|
|
|
|
|
// Invoke the callback with all the unmarshaled arguments
|
2024-01-28 22:19:41 +03:00
|
|
|
err = w.Handler.AdminGetGame(ctx, uid)
|
2024-01-25 01:45:09 +03:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2024-01-05 03:50:33 +03:00
|
|
|
// GameEngine converts echo context to params.
|
|
|
|
func (w *ServerInterfaceWrapper) GameEngine(ctx echo.Context) error {
|
2023-11-01 23:21:12 +03:00
|
|
|
var err error
|
2024-01-05 03:50:33 +03:00
|
|
|
// ------------- Path parameter "uid" -------------
|
2024-01-06 08:44:26 +03:00
|
|
|
var uid openapi_types.UUID
|
2023-11-01 23:21:12 +03:00
|
|
|
|
2024-04-29 23:01:24 +03:00
|
|
|
err = runtime.BindStyledParameterWithOptions("simple", "uid", ctx.Param("uid"), &uid, runtime.BindStyledParameterOptions{ParamLocation: runtime.ParamLocationPath, Explode: false, Required: true})
|
2023-11-01 23:21:12 +03:00
|
|
|
if err != nil {
|
2024-01-05 03:50:33 +03:00
|
|
|
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("Invalid format for parameter uid: %s", err))
|
2023-11-01 23:21:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Set(CookieAuthScopes, []string{})
|
|
|
|
|
|
|
|
// Invoke the callback with all the unmarshaled arguments
|
2024-01-05 03:50:33 +03:00
|
|
|
err = w.Handler.GameEngine(ctx, uid)
|
2023-11-01 23:21:12 +03:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2024-01-05 03:50:33 +03:00
|
|
|
// EnterCode converts echo context to params.
|
|
|
|
func (w *ServerInterfaceWrapper) EnterCode(ctx echo.Context) error {
|
2023-11-01 23:21:12 +03:00
|
|
|
var err error
|
2024-01-05 03:50:33 +03:00
|
|
|
// ------------- Path parameter "uid" -------------
|
2024-01-06 08:44:26 +03:00
|
|
|
var uid openapi_types.UUID
|
2023-11-01 23:21:12 +03:00
|
|
|
|
2024-04-29 23:01:24 +03:00
|
|
|
err = runtime.BindStyledParameterWithOptions("simple", "uid", ctx.Param("uid"), &uid, runtime.BindStyledParameterOptions{ParamLocation: runtime.ParamLocationPath, Explode: false, Required: true})
|
2023-11-01 23:21:12 +03:00
|
|
|
if err != nil {
|
2024-01-05 03:50:33 +03:00
|
|
|
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("Invalid format for parameter uid: %s", err))
|
2023-11-01 23:21:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Set(CookieAuthScopes, []string{})
|
|
|
|
|
|
|
|
// Invoke the callback with all the unmarshaled arguments
|
2024-01-05 03:50:33 +03:00
|
|
|
err = w.Handler.EnterCode(ctx, uid)
|
2023-11-01 23:21:12 +03:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2024-01-05 03:50:33 +03:00
|
|
|
// GetGames converts echo context to params.
|
|
|
|
func (w *ServerInterfaceWrapper) GetGames(ctx echo.Context) error {
|
2023-11-12 23:22:58 +03:00
|
|
|
var err error
|
|
|
|
|
2024-01-21 02:20:59 +03:00
|
|
|
ctx.Set(CookieAuthScopes, []string{})
|
|
|
|
|
2023-11-12 23:22:58 +03:00
|
|
|
// Invoke the callback with all the unmarshaled arguments
|
2024-01-05 03:50:33 +03:00
|
|
|
err = w.Handler.GetGames(ctx)
|
2023-11-12 23:22:58 +03:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-11-01 23:21:12 +03:00
|
|
|
// GetUser converts echo context to params.
|
|
|
|
func (w *ServerInterfaceWrapper) GetUser(ctx echo.Context) error {
|
|
|
|
var err error
|
|
|
|
|
|
|
|
ctx.Set(CookieAuthScopes, []string{})
|
|
|
|
|
|
|
|
// Invoke the callback with all the unmarshaled arguments
|
|
|
|
err = w.Handler.GetUser(ctx)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// PostUserLogin converts echo context to params.
|
|
|
|
func (w *ServerInterfaceWrapper) PostUserLogin(ctx echo.Context) error {
|
|
|
|
var err error
|
|
|
|
|
|
|
|
// Invoke the callback with all the unmarshaled arguments
|
|
|
|
err = w.Handler.PostUserLogin(ctx)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// PostUserLogout converts echo context to params.
|
|
|
|
func (w *ServerInterfaceWrapper) PostUserLogout(ctx echo.Context) error {
|
|
|
|
var err error
|
|
|
|
|
2024-01-21 02:20:59 +03:00
|
|
|
ctx.Set(CookieAuthScopes, []string{})
|
|
|
|
|
2023-11-01 23:21:12 +03:00
|
|
|
// Invoke the callback with all the unmarshaled arguments
|
|
|
|
err = w.Handler.PostUserLogout(ctx)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// PostUserRegister converts echo context to params.
|
|
|
|
func (w *ServerInterfaceWrapper) PostUserRegister(ctx echo.Context) error {
|
|
|
|
var err error
|
|
|
|
|
|
|
|
// Invoke the callback with all the unmarshaled arguments
|
|
|
|
err = w.Handler.PostUserRegister(ctx)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is a simple interface which specifies echo.Route addition functions which
|
|
|
|
// are present on both echo.Echo and echo.Group, since we want to allow using
|
|
|
|
// either of them for path registration
|
|
|
|
type EchoRouter interface {
|
|
|
|
CONNECT(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
|
|
|
|
DELETE(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
|
|
|
|
GET(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
|
|
|
|
HEAD(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
|
|
|
|
OPTIONS(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
|
|
|
|
PATCH(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
|
|
|
|
POST(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
|
|
|
|
PUT(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
|
|
|
|
TRACE(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
|
|
|
|
}
|
|
|
|
|
|
|
|
// RegisterHandlers adds each server route to the EchoRouter.
|
|
|
|
func RegisterHandlers(router EchoRouter, si ServerInterface) {
|
|
|
|
RegisterHandlersWithBaseURL(router, si, "")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Registers handlers, and prepends BaseURL to the paths, so that the paths
|
|
|
|
// can be served under a prefix.
|
|
|
|
func RegisterHandlersWithBaseURL(router EchoRouter, si ServerInterface, baseURL string) {
|
|
|
|
|
|
|
|
wrapper := ServerInterfaceWrapper{
|
|
|
|
Handler: si,
|
|
|
|
}
|
|
|
|
|
2024-04-29 23:01:24 +03:00
|
|
|
router.GET(baseURL+"/admin/file/:quest", wrapper.AdminListFiles)
|
|
|
|
router.POST(baseURL+"/admin/file/:quest/upload", wrapper.AdminUploadFile)
|
2024-01-28 22:19:41 +03:00
|
|
|
router.GET(baseURL+"/admin/games", wrapper.AdminListGames)
|
|
|
|
router.POST(baseURL+"/admin/games", wrapper.AdminEditGame)
|
|
|
|
router.GET(baseURL+"/admin/games/:uid", wrapper.AdminGetGame)
|
2024-01-05 03:50:33 +03:00
|
|
|
router.GET(baseURL+"/engine/:uid", wrapper.GameEngine)
|
|
|
|
router.POST(baseURL+"/engine/:uid/code", wrapper.EnterCode)
|
2023-11-02 01:21:13 +03:00
|
|
|
router.GET(baseURL+"/games", wrapper.GetGames)
|
2023-11-01 23:21:12 +03:00
|
|
|
router.GET(baseURL+"/user", wrapper.GetUser)
|
|
|
|
router.POST(baseURL+"/user/login", wrapper.PostUserLogin)
|
|
|
|
router.POST(baseURL+"/user/logout", wrapper.PostUserLogout)
|
|
|
|
router.POST(baseURL+"/user/register", wrapper.PostUserRegister)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// Base64 encoded, gzipped, json marshaled Swagger object
|
|
|
|
var swaggerSpec = []string{
|
|
|
|
|
2024-05-05 19:42:33 +03:00
|
|
|
"H4sIAAAAAAAC/8xYS3OkNhD+KyklR2JmHyduG5fj2oprK9l4c3FNuWRoj7UGCUvNrCcu/nuqJWBgEA+P",
|
|
|
|
"iXdPHkPTj6+/bnXricUqy5UEiYZFT0yDyZU0YP8BrZX+XD2hB7GSCBLpJ8/zVMQchZLhV6MkPTPxHWSc",
|
|
|
|
"fuVa5aBROD2xSuznuMuBRUxIhA1oVgYsA2P4pv3SoBZyw8oyYBoeCqEhYdGVU7GXXwe1vLr5CjGykj5I",
|
|
|
|
"wMRa5OQTixjpvxUpmAth8KgoBEJmA/hFwy2L2M/hHqzQiZmQTHxEyMhc5RPXmu+GXNrwDD4kmZBHuTTm",
|
|
|
|
"CWk+SwSOWf5/sSAL/wj4NhcL5OZ+cRhIqXPCb7TIU8WTBWhdFCKhv7dKZxxZ5B4EE0y2QnP5WxjQiwNE",
|
|
|
|
"SocBKoNKTVO6llNTRV1He6DQ8/4Y0KyxPmiBfWFjWcq/0mOkKfGekVmxBExpsRGSp5945vfJiH+9HfIA",
|
|
|
|
"Bqu9o6z61AdN0w56Xk9mKHYvJuOaGX6uRHW89E8AqlYzu8GQtGtxhw0mYCgw9aPrHky3rkuSKwO2FUbc",
|
|
|
|
"dHTdKJUCl72E1JK19S67Kst1kA0QQ9m6rPwEWWROu8aCpyxgscBd67N9aE3H7SWZF3in9Hxo912hD22s",
|
|
|
|
"gSMkH/C4gn9lOp2qQuLA6+/AERfEGD2qgNretzEPmlz6iNOUhLcDzs9/0+k9+Z+ZGIRHP0OGYB9DyioL",
|
|
|
|
"qiCGAh9u/c8LfIj4rfm0Lkp1f10No0JueSqS+l+VNj8lPOJ1Clug2iXWXJPdFBC8RfxS3GZD1tR4DzLI",
|
|
|
|
"uEi9PsBjfqlOC61B4oUNyVtZVuwTPE7IgBYg44FtgJAyCwybswmbDvuqVdpJO0FXV6WiX5xmeG86SVT6",
|
|
|
|
"T3of4RvxoMpCB6jaSV8ieqjXEFbue6bMgBmICy1w9zfBWNeLuhfwocA7Cz7Nge4RUdkGwgwY0+pZEeO5",
|
|
|
|
"+AOqwV7IW2WDdXRl8q8CDDFxC9q4ufLNyepkZUehHCTPBYvYu5M3JyvqfhzvrBuhhdQuVOHTA6ko6fEG",
|
|
|
|
"bHEQW+20+zFhEbMbFC0zv9OGZ7VongECnXhXVRCkeR/CQ+XUPgGoCwhaQ/PUTLoOuvvx29VqiKSNXNhf",
|
|
|
|
"QdtZsM628b/qU6xc0xcedEK3ythqVmYIpS9WiHB6TZismt9UsjtYW7IiRZFzjSGp+TXh6NmsKMiOpRsh",
|
|
|
|
"ud551wTPHvX8JB3shC/KUNPFxol7Xlfqs53t7fE26BEG0LF+7jrMcGKWuXcojw2oeyXy8gSET4VIJvrH",
|
|
|
|
"OdSwTJeFo/or947FgAG5ERImMCEszqzgj4tI58bI8a0TXFiv/f5yOJMI+tQNaa8U4XH1NusuY94lyZFF",
|
|
|
|
"6UN6vLVV5bRcUyOTdu4asfjFzWVHtPz21VoZsPerd9MfdW/EWy6GqdoIOUy8P5Wxrl5YsaV4MTy159yY",
|
|
|
|
"b0on06ypZ87mi8UY1Ed49XyEO+1u3cFbFTgLcJLr+f++dxHGTBHHYMxPlepjPd77qGEjDDr+jnv5uZb8",
|
|
|
|
"rszYv3zrfTt/sfHsNI3dtpUfm2ujZ+2a2rsBva0PkEKnLGIhLTfluvwvAAD//8w97C1ZGwAA",
|
2023-11-01 23:21:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetSwagger returns the content of the embedded swagger specification file
|
|
|
|
// or error if failed to decode
|
|
|
|
func decodeSpec() ([]byte, error) {
|
|
|
|
zipped, err := base64.StdEncoding.DecodeString(strings.Join(swaggerSpec, ""))
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("error base64 decoding spec: %w", err)
|
|
|
|
}
|
|
|
|
zr, err := gzip.NewReader(bytes.NewReader(zipped))
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("error decompressing spec: %w", err)
|
|
|
|
}
|
|
|
|
var buf bytes.Buffer
|
|
|
|
_, err = buf.ReadFrom(zr)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("error decompressing spec: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf.Bytes(), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var rawSpec = decodeSpecCached()
|
|
|
|
|
|
|
|
// a naive cached of a decoded swagger spec
|
|
|
|
func decodeSpecCached() func() ([]byte, error) {
|
|
|
|
data, err := decodeSpec()
|
|
|
|
return func() ([]byte, error) {
|
|
|
|
return data, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Constructs a synthetic filesystem for resolving external references when loading openapi specifications.
|
|
|
|
func PathToRawSpec(pathToFile string) map[string]func() ([]byte, error) {
|
|
|
|
res := make(map[string]func() ([]byte, error))
|
|
|
|
if len(pathToFile) > 0 {
|
|
|
|
res[pathToFile] = rawSpec
|
|
|
|
}
|
|
|
|
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetSwagger returns the Swagger specification corresponding to the generated code
|
|
|
|
// in this file. The external references of Swagger specification are resolved.
|
|
|
|
// The logic of resolving external references is tightly connected to "import-mapping" feature.
|
|
|
|
// Externally referenced files must be embedded in the corresponding golang packages.
|
|
|
|
// Urls can be supported but this task was out of the scope.
|
|
|
|
func GetSwagger() (swagger *openapi3.T, err error) {
|
|
|
|
resolvePath := PathToRawSpec("")
|
|
|
|
|
|
|
|
loader := openapi3.NewLoader()
|
|
|
|
loader.IsExternalRefsAllowed = true
|
|
|
|
loader.ReadFromURIFunc = func(loader *openapi3.Loader, url *url.URL) ([]byte, error) {
|
|
|
|
pathToFile := url.String()
|
|
|
|
pathToFile = path.Clean(pathToFile)
|
|
|
|
getSpec, ok := resolvePath[pathToFile]
|
|
|
|
if !ok {
|
|
|
|
err1 := fmt.Errorf("path not found: %s", pathToFile)
|
|
|
|
return nil, err1
|
|
|
|
}
|
|
|
|
return getSpec()
|
|
|
|
}
|
|
|
|
var specData []byte
|
|
|
|
specData, err = rawSpec()
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
swagger, err = loader.LoadFromData(specData)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|