...

Package openapi

import "go.formulabun.club/replays/staff/server/go"
Overview
Index

Overview ▾

Index ▾

Variables
func AssertRecurseInterfaceRequired(obj interface{}, callback func(interface{}) error) error
func AssertRecurseValueRequired(value reflect.Value, callback func(interface{}) error) error
func DefaultErrorHandler(w http.ResponseWriter, r *http.Request, err error, result *ImplResponse)
func EncodeFileResponse(data io.Reader, filename string, status *int, w http.ResponseWriter) error
func EncodeJSONResponse(i interface{}, status *int, w http.ResponseWriter) error
func IsZeroValue(val interface{}) bool
func Logger(inner http.Handler, name string) http.Handler
func NewRouter(routers ...Router) *mux.Router
func ReadFormFileToTempFile(r *http.Request, key string) (*os.File, error)
func ReadFormFilesToTempFiles(r *http.Request, key string) ([]*os.File, error)
type DefaultApiController
    func (c *DefaultApiController) ReplayIdGet(w http.ResponseWriter, r *http.Request)
    func (c *DefaultApiController) Routes() Routes
    func (c *DefaultApiController) StaffGet(w http.ResponseWriter, r *http.Request)
type DefaultApiOption
    func WithDefaultApiErrorHandler(h ErrorHandler) DefaultApiOption
type DefaultApiRouter
type DefaultApiService
    func (s *DefaultApiService) ReplayIdGet(ctx context.Context, id string) (ImplResponse, error)
    func (s *DefaultApiService) StaffGet(ctx context.Context, ids []string) (ImplResponse, error)
type DefaultApiServicer
    func NewDefaultApiService() DefaultApiServicer
type ErrorHandler
type ImplResponse
    func Response(code int, body io.Reader, filename string) ImplResponse
type ParsingError
    func (e *ParsingError) Error() string
    func (e *ParsingError) Unwrap() error
type RequiredError
    func (e *RequiredError) Error() string
type Route
type Router
    func NewDefaultApiController(s DefaultApiServicer, opts ...DefaultApiOption) Router
type Routes

Package files

api.go api_default.go api_default_service.go error.go helpers.go impl.go logger.go routers.go

Variables

var (
    // ErrTypeAssertionError is thrown when type an interface does not match the asserted type
    ErrTypeAssertionError = errors.New("unable to assert type")
)

func AssertRecurseInterfaceRequired

func AssertRecurseInterfaceRequired(obj interface{}, callback func(interface{}) error) error

AssertRecurseInterfaceRequired recursively checks each struct in a slice against the callback. This method traverse nested slices in a preorder fashion.

func AssertRecurseValueRequired

func AssertRecurseValueRequired(value reflect.Value, callback func(interface{}) error) error

AssertRecurseValueRequired checks each struct in the nested slice against the callback. This method traverse nested slices in a preorder fashion.

func DefaultErrorHandler

func DefaultErrorHandler(w http.ResponseWriter, r *http.Request, err error, result *ImplResponse)

DefaultErrorHandler defines the default logic on how to handle errors from the controller. Any errors from parsing request params will return a StatusBadRequest. Otherwise, the error code originating from the servicer will be used.

func EncodeFileResponse

func EncodeFileResponse(data io.Reader, filename string, status *int, w http.ResponseWriter) error

EncodeFileResponse writes a binary file to the response

func EncodeJSONResponse

func EncodeJSONResponse(i interface{}, status *int, w http.ResponseWriter) error

EncodeJSONResponse uses the json encoder to write an interface to the http response with an optional status code

func IsZeroValue

func IsZeroValue(val interface{}) bool

IsZeroValue checks if the val is the zero-ed value.

func Logger

func Logger(inner http.Handler, name string) http.Handler

func NewRouter

func NewRouter(routers ...Router) *mux.Router

NewRouter creates a new router for any number of api routers

func ReadFormFileToTempFile

func ReadFormFileToTempFile(r *http.Request, key string) (*os.File, error)

ReadFormFileToTempFile reads file data from a request form and writes it to a temporary file

func ReadFormFilesToTempFiles

func ReadFormFilesToTempFiles(r *http.Request, key string) ([]*os.File, error)

ReadFormFilesToTempFiles reads files array data from a request form and writes it to a temporary files

type DefaultApiController

DefaultApiController binds http requests to an api service and writes the service results to the http response

type DefaultApiController struct {
    // contains filtered or unexported fields
}

func (*DefaultApiController) ReplayIdGet

func (c *DefaultApiController) ReplayIdGet(w http.ResponseWriter, r *http.Request)

ReplayIdGet - Get a replay

func (*DefaultApiController) Routes

func (c *DefaultApiController) Routes() Routes

Routes returns all the api routes for the DefaultApiController

func (*DefaultApiController) StaffGet

func (c *DefaultApiController) StaffGet(w http.ResponseWriter, r *http.Request)

StaffGet - Get a replay as staff

type DefaultApiOption

DefaultApiOption for how the controller is set up.

type DefaultApiOption func(*DefaultApiController)

func WithDefaultApiErrorHandler

func WithDefaultApiErrorHandler(h ErrorHandler) DefaultApiOption

WithDefaultApiErrorHandler inject ErrorHandler into controller

type DefaultApiRouter

DefaultApiRouter defines the required methods for binding the api requests to a responses for the DefaultApi The DefaultApiRouter implementation should parse necessary information from the http request, pass the data to a DefaultApiServicer to perform the required actions, then write the service results to the http response.

type DefaultApiRouter interface {
    ReplayIdGet(http.ResponseWriter, *http.Request)
    StaffGet(http.ResponseWriter, *http.Request)
}

type DefaultApiService

DefaultApiService is a service that implements the logic for the DefaultApiServicer This service should implement the business logic for every endpoint for the DefaultApi API. Include any external packages or services that will be required by this service.

type DefaultApiService struct {
}

func (*DefaultApiService) ReplayIdGet

func (s *DefaultApiService) ReplayIdGet(ctx context.Context, id string) (ImplResponse, error)

ReplayIdGet - Get a replay

func (*DefaultApiService) StaffGet

func (s *DefaultApiService) StaffGet(ctx context.Context, ids []string) (ImplResponse, error)

StaffGet - Get a replay as staff

type DefaultApiServicer

DefaultApiServicer defines the api actions for the DefaultApi service This interface intended to stay up to date with the openapi yaml used to generate it, while the service implementation can be ignored with the .openapi-generator-ignore file and updated with the logic required for the API.

type DefaultApiServicer interface {
    ReplayIdGet(context.Context, string) (ImplResponse, error)
    StaffGet(context.Context, []string) (ImplResponse, error)
}

func NewDefaultApiService

func NewDefaultApiService() DefaultApiServicer

NewDefaultApiService creates a default api service

type ErrorHandler

ErrorHandler defines the required method for handling error. You may implement it and inject this into a controller if you would like errors to be handled differently from the DefaultErrorHandler

type ErrorHandler func(w http.ResponseWriter, r *http.Request, err error, result *ImplResponse)

type ImplResponse

ImplResponse response defines an error code with the associated body

type ImplResponse struct {
    Code     int
    Body     io.Reader
    Filename string
}

func Response

func Response(code int, body io.Reader, filename string) ImplResponse

Response return a ImplResponse struct filled

type ParsingError

ParsingError indicates that an error has occurred when parsing request parameters

type ParsingError struct {
    Err error
}

func (*ParsingError) Error

func (e *ParsingError) Error() string

func (*ParsingError) Unwrap

func (e *ParsingError) Unwrap() error

type RequiredError

RequiredError indicates that an error has occurred when parsing request parameters

type RequiredError struct {
    Field string
}

func (*RequiredError) Error

func (e *RequiredError) Error() string

type Route

A Route defines the parameters for an api endpoint

type Route struct {
    Name        string
    Method      string
    Pattern     string
    HandlerFunc http.HandlerFunc
}

type Router

Router defines the required methods for retrieving api routes

type Router interface {
    Routes() Routes
}

func NewDefaultApiController

func NewDefaultApiController(s DefaultApiServicer, opts ...DefaultApiOption) Router

NewDefaultApiController creates a default api controller

type Routes

Routes are a collection of defined api endpoints

type Routes []Route