Documentation ¶
Index ¶
- func ArrContains[T string | int | float32](arr []T, val T) bool
- func GenerateQueryComponenFromStruct(model interface{}, skips []string) (string, []interface{}, string)
- func GetStructKey(field reflect.StructField) string
- func GetStructValue(value reflect.Value) interface{}
- func InitHandler(router http.Handler) http.Handler
- func MethodNotAllowedHandler(w http.ResponseWriter, r *http.Request)
- func PanicHandler(next http.Handler) http.Handler
- func RouteNotFoundHandler(w http.ResponseWriter, r *http.Request)
- func WriteJson(w http.ResponseWriter, data interface{})
- type App
- type Apps
- type Controller
- type ControllerConfig
- type ControllerImpl
- type ErrorOption
- type Handler
- type HttpError
- func BadRequest(message, code string) *HttpError
- func Forbidden(message, code string) *HttpError
- func InternalServerError(message, code string) *HttpError
- func MethodNotAllowed(message, code string) *HttpError
- func NewErr(opts ...ErrorOption) *HttpError
- func NotFound(message, code string) *HttpError
- func TooManyRequest(message, code string) *HttpError
- func Unauthorized(message, code string) *HttpError
- func UnprocessableEntity(message, code string) *HttpError
- type Map
- type Options
- type Request
- type Response
- func (resp *Response) Send(w http.ResponseWriter)
- func (resp *Response) SentNotif(ctx contextpkg.Context, err *HttpError, r *http.Request, traceId string)
- func (resp *Response) SetData(data interface{}) *Response
- func (resp *Response) SetError(err error) *Response
- func (resp *Response) SetHTTPError(err *HttpError) *Response
- func (resp *Response) SetMessage(msg string) *Response
- type Route
- type RouteOption
- type StringMap
- type ValidationError
- type Wrapper
- type WrittenResponseWriter
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetStructKey ¶
func GetStructKey(field reflect.StructField) string
func GetStructValue ¶
func MethodNotAllowedHandler ¶
func MethodNotAllowedHandler(w http.ResponseWriter, r *http.Request)
func RouteNotFoundHandler ¶
func RouteNotFoundHandler(w http.ResponseWriter, r *http.Request)
func WriteJson ¶
func WriteJson(w http.ResponseWriter, data interface{})
Types ¶
type App ¶
type App struct { Http *chi.Mux *server.Config TotalEndpoints int // contains filtered or unexported fields }
func (*App) AddController ¶
func (app *App) AddController(ctrl Controller)
func (*App) AddScheduler ¶ added in v2.8.1
func (app *App) AddScheduler(pattern string, handler cron.HandlerFunc)
func (*App) WrapScheduler ¶ added in v2.8.7
func (*App) WrapToContext ¶ added in v2.3.0
type Controller ¶
type Controller interface {
GetConfig() ControllerConfig
}
type ControllerConfig ¶
type ControllerImpl ¶
type ControllerImpl struct { }
type ErrorOption ¶
type ErrorOption func(*HttpError)
func WithCode ¶
func WithCode(code string) ErrorOption
func WithData ¶
func WithData(data interface{}) ErrorOption
func WithMessage ¶
func WithMessage(message string) ErrorOption
func WithStatus ¶
func WithStatus(status int) ErrorOption
type HttpError ¶
type HttpError struct { Message string `json:"message"` Code string `json:"code"` Status int `json:"-"` TraceId string `json:"trace_id"` Data interface{} `json:"data,omitempty"` }
func BadRequest ¶
func InternalServerError ¶
func MethodNotAllowed ¶
func NewErr ¶
func NewErr(opts ...ErrorOption) *HttpError
func TooManyRequest ¶
func Unauthorized ¶
func UnprocessableEntity ¶
func (*HttpError) SetTraceId ¶ added in v2.5.6
func (*HttpError) Write ¶
func (e *HttpError) Write(w http.ResponseWriter)
type Options ¶
type Options func(api *App)
func ReadTimeout ¶
func WithAPITimeout ¶
func WithAppPort ¶
func WithCronJob ¶ added in v2.8.0
func WriteTimeout ¶
type Response ¶
type Response struct { Message string `json:"message,omitempty"` Data interface{} `json:"data,omitempty"` Err error `json:"error,omitempty"` InternalError *HttpError `json:"-"` MetaData *database.ResponseMetaData `json:"metadata,omitempty"` }
func NewResponse ¶
func NewResponse() *Response
func (*Response) Send ¶ added in v2.3.9
func (resp *Response) Send(w http.ResponseWriter)
func (*Response) SetHTTPError ¶
func (*Response) SetMessage ¶
type Route ¶
type Route struct { Method string Path string Handler Handler Version int Middlewares *[]func(http.Handler) http.Handler }
func (*Route) GetVersionedPath ¶
type RouteOption ¶
type RouteOption func(*Route)
func WithMiddleware ¶
func WithMiddleware(handlers ...func(http.Handler) http.Handler) RouteOption
func WithPath ¶
func WithPath(path string) RouteOption
func WithVersion ¶
func WithVersion(version int) RouteOption
type ValidationError ¶
type ValidationError struct { Field string `json:"field"` Tag string `json:"tag"` Value string `json:"value"` }
func ValidateStruct ¶
func ValidateStruct(data interface{}) []*ValidationError
type WrittenResponseWriter ¶
type WrittenResponseWriter struct { http.ResponseWriter // contains filtered or unexported fields }
func (*WrittenResponseWriter) WriteHeader ¶
func (w *WrittenResponseWriter) WriteHeader(status int)
func (*WrittenResponseWriter) Written ¶
func (w *WrittenResponseWriter) Written() bool
Click to show internal directories.
Click to hide internal directories.