Documentation
¶
Index ¶
- Constants
- Variables
- func Background() http.Context
- func Cors() http.Middleware
- func NewContextRequest(ctx *Context, log log.Log, validation contractsvalidate.Validation) contractshttp.ContextRequest
- func NewContextResponse(instance *fiber.Ctx, origin contractshttp.ResponseOrigin) contractshttp.ContextResponse
- func NewGroup(config config.Config, instance *fiber.App, prefix string, ...) route.Router
- func NewStatus(instance *fiber.Ctx, code int) contractshttp.ResponseStatus
- func ResponseMiddleware() contractshttp.Middleware
- func Timeout(timeout time.Duration) contractshttp.Middleware
- type Context
- func (c *Context) Context() context.Context
- func (c *Context) Deadline() (deadline time.Time, ok bool)
- func (c *Context) Done() <-chan struct{}
- func (c *Context) Err() error
- func (c *Context) Instance() *fiber.Ctx
- func (c *Context) Request() http.ContextRequest
- func (c *Context) Response() http.ContextResponse
- func (c *Context) Value(key any) any
- func (c *Context) WithContext(ctx context.Context)
- func (c *Context) WithValue(key any, value any)
- type ContextRequest
- func (r *ContextRequest) Abort(code ...int)
- func (r *ContextRequest) AbortWithStatus(code int)
- func (r *ContextRequest) AbortWithStatusJson(code int, jsonObj any)
- func (r *ContextRequest) All() map[string]any
- func (r *ContextRequest) Bind(obj any) error
- func (r *ContextRequest) BindQuery(obj any) error
- func (r *ContextRequest) Cookie(key string, defaultValue ...string) string
- func (r *ContextRequest) File(name string) (contractsfilesystem.File, error)
- func (r *ContextRequest) Files(name string) ([]contractsfilesystem.File, error)
- func (r *ContextRequest) Form(key string, defaultValue ...string) string
- func (r *ContextRequest) FullUrl() string
- func (r *ContextRequest) HasSession() bool
- func (r *ContextRequest) Header(key string, defaultValue ...string) string
- func (r *ContextRequest) Headers() http.Header
- func (r *ContextRequest) Host() string
- func (r *ContextRequest) Input(key string, defaultValue ...string) string
- func (r *ContextRequest) InputArray(key string, defaultValue ...[]string) []string
- func (r *ContextRequest) InputBool(key string, defaultValue ...bool) bool
- func (r *ContextRequest) InputInt(key string, defaultValue ...int) int
- func (r *ContextRequest) InputInt64(key string, defaultValue ...int64) int64
- func (r *ContextRequest) InputMap(key string, defaultValue ...map[string]any) map[string]any
- func (r *ContextRequest) InputMapArray(key string, defaultValue ...[]map[string]any) []map[string]any
- func (r *ContextRequest) Ip() string
- func (r *ContextRequest) Json(key string, defaultValue ...string) string
- func (r *ContextRequest) Method() string
- func (r *ContextRequest) Next()
- func (r *ContextRequest) Origin() *http.Request
- func (r *ContextRequest) Path() string
- func (r *ContextRequest) Queries() map[string]string
- func (r *ContextRequest) Query(key string, defaultValue ...string) string
- func (r *ContextRequest) QueryArray(key string) []string
- func (r *ContextRequest) QueryBool(key string, defaultValue ...bool) bool
- func (r *ContextRequest) QueryInt(key string, defaultValue ...int) int
- func (r *ContextRequest) QueryInt64(key string, defaultValue ...int64) int64
- func (r *ContextRequest) QueryMap(key string) map[string]string
- func (r *ContextRequest) Route(key string) string
- func (r *ContextRequest) RouteInt(key string) int
- func (r *ContextRequest) RouteInt64(key string) int64
- func (r *ContextRequest) Session() contractsession.Session
- func (r *ContextRequest) SetSession(session contractsession.Session) contractshttp.ContextRequest
- func (r *ContextRequest) Url() string
- func (r *ContextRequest) Validate(rules map[string]string, options ...contractsvalidate.Option) (contractsvalidate.Validator, error)
- func (r *ContextRequest) ValidateRequest(request contractshttp.FormRequest) (contractsvalidate.Errors, error)
- type ContextResponse
- func (r *ContextResponse) Cookie(cookie contractshttp.Cookie) contractshttp.ContextResponse
- func (r *ContextResponse) Data(code int, contentType string, data []byte) contractshttp.AbortableResponse
- func (r *ContextResponse) Download(filepath, filename string) contractshttp.Response
- func (r *ContextResponse) File(filepath string) contractshttp.Response
- func (r *ContextResponse) Flush()
- func (r *ContextResponse) Header(key, value string) contractshttp.ContextResponse
- func (r *ContextResponse) Json(code int, obj any) contractshttp.AbortableResponse
- func (r *ContextResponse) NoContent(code ...int) contractshttp.AbortableResponse
- func (r *ContextResponse) Origin() contractshttp.ResponseOrigin
- func (r *ContextResponse) Redirect(code int, location string) contractshttp.AbortableResponse
- func (r *ContextResponse) Status(code int) contractshttp.ResponseStatus
- func (r *ContextResponse) Stream(code int, step func(w contractshttp.StreamWriter) error) contractshttp.Response
- func (r *ContextResponse) String(code int, format string, values ...any) contractshttp.AbortableResponse
- func (r *ContextResponse) Success() contractshttp.ResponseStatus
- func (r *ContextResponse) View() contractshttp.ResponseView
- func (r *ContextResponse) WithoutCookie(name string) contractshttp.ContextResponse
- func (r *ContextResponse) Writer() http.ResponseWriter
- type DataResponse
- type DownloadResponse
- type FileResponse
- type Group
- func (r *Group) Any(relativePath string, handler httpcontract.HandlerFunc)
- func (r *Group) Delete(relativePath string, handler httpcontract.HandlerFunc)
- func (r *Group) Get(relativePath string, handler httpcontract.HandlerFunc)
- func (r *Group) Group(handler route.GroupFunc)
- func (r *Group) Middleware(middlewares ...httpcontract.Middleware) route.Router
- func (r *Group) Options(relativePath string, handler httpcontract.HandlerFunc)
- func (r *Group) Patch(relativePath string, handler httpcontract.HandlerFunc)
- func (r *Group) Post(relativePath string, handler httpcontract.HandlerFunc)
- func (r *Group) Prefix(addr string) route.Router
- func (r *Group) Put(relativePath string, handler httpcontract.HandlerFunc)
- func (r *Group) Resource(relativePath string, controller httpcontract.ResourceController)
- func (r *Group) Static(relativePath, root string)
- func (r *Group) StaticFS(relativePath string, fs http.FileSystem)
- func (r *Group) StaticFile(relativePath, filePath string)
- type HtmlResponse
- type JsonResponse
- type NoContentResponse
- type RedirectResponse
- type ResponseOrigin
- type Route
- func (r *Route) Fallback(handler contractshttp.HandlerFunc)
- func (r *Route) GlobalMiddleware(middlewares ...contractshttp.Middleware)
- func (r *Route) Listen(l net.Listener) error
- func (r *Route) ListenTLS(l net.Listener) error
- func (r *Route) ListenTLSWithCert(l net.Listener, certFile, keyFile string) error
- func (r *Route) Recover(callback func(ctx contractshttp.Context, err any))
- func (r *Route) Run(host ...string) error
- func (r *Route) RunTLS(host ...string) error
- func (r *Route) RunTLSWithCert(host, certFile, keyFile string) error
- func (r *Route) ServeHTTP(writer http.ResponseWriter, request *http.Request)
- func (r *Route) Shutdown(ctx ...context.Context) error
- func (r *Route) Test(request *http.Request) (*http.Response, error)
- type ServiceProvider
- type Status
- func (r *Status) Data(contentType string, data []byte) contractshttp.AbortableResponse
- func (r *Status) Json(obj any) contractshttp.AbortableResponse
- func (r *Status) Stream(step func(w contractshttp.StreamWriter) error) contractshttp.Response
- func (r *Status) String(format string, values ...any) contractshttp.AbortableResponse
- type StreamResponse
- type StringResponse
- type View
Constants ¶
const RouteBinding = "goravel.fiber.route"
Variables ¶
var ( App foundation.Application ConfigFacade config.Config LogFacade log.Log ValidationFacade validation.Validation ViewFacade http.View )
Functions ¶
func Background ¶
func Cors ¶
func Cors() http.Middleware
func NewContextRequest ¶
func NewContextRequest(ctx *Context, log log.Log, validation contractsvalidate.Validation) contractshttp.ContextRequest
func NewContextResponse ¶
func NewContextResponse(instance *fiber.Ctx, origin contractshttp.ResponseOrigin) contractshttp.ContextResponse
func NewGroup ¶
func NewGroup(config config.Config, instance *fiber.App, prefix string, originMiddlewares []httpcontract.Middleware, lastMiddlewares []httpcontract.Middleware) route.Router
func NewStatus ¶
func NewStatus(instance *fiber.Ctx, code int) contractshttp.ResponseStatus
func ResponseMiddleware ¶
func ResponseMiddleware() contractshttp.Middleware
func Timeout ¶
func Timeout(timeout time.Duration) contractshttp.Middleware
Timeout creates middleware to set a timeout for a request. NOTICE: It does not cancel long running executions. Underlying executions must handle timeout by using context.Context parameter. For details, see https://github.com/valyala/fasthttp/issues/965
Types ¶
type Context ¶
type Context struct {
// contains filtered or unexported fields
}
func NewContext ¶
func (*Context) Request ¶
func (c *Context) Request() http.ContextRequest
func (*Context) Response ¶
func (c *Context) Response() http.ContextResponse
func (*Context) WithContext ¶
type ContextRequest ¶
type ContextRequest struct {
// contains filtered or unexported fields
}
func (*ContextRequest) Abort ¶
func (r *ContextRequest) Abort(code ...int)
func (*ContextRequest) AbortWithStatus ¶
func (r *ContextRequest) AbortWithStatus(code int)
DEPRECATED: Use Abort instead
func (*ContextRequest) AbortWithStatusJson ¶
func (r *ContextRequest) AbortWithStatusJson(code int, jsonObj any)
DEPRECATED: Use Response().Json().Abort() instead
func (*ContextRequest) All ¶
func (r *ContextRequest) All() map[string]any
func (*ContextRequest) Bind ¶
func (r *ContextRequest) Bind(obj any) error
func (*ContextRequest) BindQuery ¶
func (r *ContextRequest) BindQuery(obj any) error
func (*ContextRequest) Cookie ¶
func (r *ContextRequest) Cookie(key string, defaultValue ...string) string
func (*ContextRequest) File ¶
func (r *ContextRequest) File(name string) (contractsfilesystem.File, error)
func (*ContextRequest) Files ¶
func (r *ContextRequest) Files(name string) ([]contractsfilesystem.File, error)
func (*ContextRequest) Form ¶
func (r *ContextRequest) Form(key string, defaultValue ...string) string
func (*ContextRequest) FullUrl ¶
func (r *ContextRequest) FullUrl() string
func (*ContextRequest) HasSession ¶
func (r *ContextRequest) HasSession() bool
func (*ContextRequest) Header ¶
func (r *ContextRequest) Header(key string, defaultValue ...string) string
func (*ContextRequest) Headers ¶
func (r *ContextRequest) Headers() http.Header
func (*ContextRequest) Host ¶
func (r *ContextRequest) Host() string
func (*ContextRequest) Input ¶
func (r *ContextRequest) Input(key string, defaultValue ...string) string
func (*ContextRequest) InputArray ¶
func (r *ContextRequest) InputArray(key string, defaultValue ...[]string) []string
func (*ContextRequest) InputBool ¶
func (r *ContextRequest) InputBool(key string, defaultValue ...bool) bool
func (*ContextRequest) InputInt ¶
func (r *ContextRequest) InputInt(key string, defaultValue ...int) int
func (*ContextRequest) InputInt64 ¶
func (r *ContextRequest) InputInt64(key string, defaultValue ...int64) int64
func (*ContextRequest) InputMapArray ¶
func (*ContextRequest) Ip ¶
func (r *ContextRequest) Ip() string
func (*ContextRequest) Json ¶
func (r *ContextRequest) Json(key string, defaultValue ...string) string
func (*ContextRequest) Method ¶
func (r *ContextRequest) Method() string
func (*ContextRequest) Next ¶
func (r *ContextRequest) Next()
func (*ContextRequest) Origin ¶
func (r *ContextRequest) Origin() *http.Request
func (*ContextRequest) Path ¶
func (r *ContextRequest) Path() string
func (*ContextRequest) Queries ¶
func (r *ContextRequest) Queries() map[string]string
func (*ContextRequest) Query ¶
func (r *ContextRequest) Query(key string, defaultValue ...string) string
func (*ContextRequest) QueryArray ¶
func (r *ContextRequest) QueryArray(key string) []string
func (*ContextRequest) QueryBool ¶
func (r *ContextRequest) QueryBool(key string, defaultValue ...bool) bool
func (*ContextRequest) QueryInt ¶
func (r *ContextRequest) QueryInt(key string, defaultValue ...int) int
func (*ContextRequest) QueryInt64 ¶
func (r *ContextRequest) QueryInt64(key string, defaultValue ...int64) int64
func (*ContextRequest) Route ¶
func (r *ContextRequest) Route(key string) string
func (*ContextRequest) RouteInt ¶
func (r *ContextRequest) RouteInt(key string) int
func (*ContextRequest) RouteInt64 ¶
func (r *ContextRequest) RouteInt64(key string) int64
func (*ContextRequest) Session ¶
func (r *ContextRequest) Session() contractsession.Session
func (*ContextRequest) SetSession ¶
func (r *ContextRequest) SetSession(session contractsession.Session) contractshttp.ContextRequest
func (*ContextRequest) Url ¶
func (r *ContextRequest) Url() string
func (*ContextRequest) Validate ¶
func (r *ContextRequest) Validate(rules map[string]string, options ...contractsvalidate.Option) (contractsvalidate.Validator, error)
func (*ContextRequest) ValidateRequest ¶
func (r *ContextRequest) ValidateRequest(request contractshttp.FormRequest) (contractsvalidate.Errors, error)
type ContextResponse ¶
type ContextResponse struct {
// contains filtered or unexported fields
}
func (*ContextResponse) Cookie ¶
func (r *ContextResponse) Cookie(cookie contractshttp.Cookie) contractshttp.ContextResponse
func (*ContextResponse) Data ¶
func (r *ContextResponse) Data(code int, contentType string, data []byte) contractshttp.AbortableResponse
func (*ContextResponse) Download ¶
func (r *ContextResponse) Download(filepath, filename string) contractshttp.Response
func (*ContextResponse) File ¶
func (r *ContextResponse) File(filepath string) contractshttp.Response
func (*ContextResponse) Flush ¶
func (r *ContextResponse) Flush()
func (*ContextResponse) Header ¶
func (r *ContextResponse) Header(key, value string) contractshttp.ContextResponse
func (*ContextResponse) Json ¶
func (r *ContextResponse) Json(code int, obj any) contractshttp.AbortableResponse
func (*ContextResponse) NoContent ¶
func (r *ContextResponse) NoContent(code ...int) contractshttp.AbortableResponse
func (*ContextResponse) Origin ¶
func (r *ContextResponse) Origin() contractshttp.ResponseOrigin
func (*ContextResponse) Redirect ¶
func (r *ContextResponse) Redirect(code int, location string) contractshttp.AbortableResponse
func (*ContextResponse) Status ¶
func (r *ContextResponse) Status(code int) contractshttp.ResponseStatus
func (*ContextResponse) Stream ¶
func (r *ContextResponse) Stream(code int, step func(w contractshttp.StreamWriter) error) contractshttp.Response
func (*ContextResponse) String ¶
func (r *ContextResponse) String(code int, format string, values ...any) contractshttp.AbortableResponse
func (*ContextResponse) Success ¶
func (r *ContextResponse) Success() contractshttp.ResponseStatus
func (*ContextResponse) View ¶
func (r *ContextResponse) View() contractshttp.ResponseView
func (*ContextResponse) WithoutCookie ¶
func (r *ContextResponse) WithoutCookie(name string) contractshttp.ContextResponse
func (*ContextResponse) Writer ¶
func (r *ContextResponse) Writer() http.ResponseWriter
type DataResponse ¶
type DataResponse struct {
// contains filtered or unexported fields
}
func (*DataResponse) Abort ¶
func (r *DataResponse) Abort() error
func (*DataResponse) Render ¶
func (r *DataResponse) Render() error
type DownloadResponse ¶
type DownloadResponse struct {
// contains filtered or unexported fields
}
func (*DownloadResponse) Render ¶
func (r *DownloadResponse) Render() error
type FileResponse ¶
type FileResponse struct {
// contains filtered or unexported fields
}
func (*FileResponse) Render ¶
func (r *FileResponse) Render() error
type Group ¶
type Group struct {
// contains filtered or unexported fields
}
func (*Group) Any ¶
func (r *Group) Any(relativePath string, handler httpcontract.HandlerFunc)
func (*Group) Delete ¶
func (r *Group) Delete(relativePath string, handler httpcontract.HandlerFunc)
func (*Group) Get ¶
func (r *Group) Get(relativePath string, handler httpcontract.HandlerFunc)
func (*Group) Middleware ¶
func (r *Group) Middleware(middlewares ...httpcontract.Middleware) route.Router
func (*Group) Options ¶
func (r *Group) Options(relativePath string, handler httpcontract.HandlerFunc)
func (*Group) Patch ¶
func (r *Group) Patch(relativePath string, handler httpcontract.HandlerFunc)
func (*Group) Post ¶
func (r *Group) Post(relativePath string, handler httpcontract.HandlerFunc)
func (*Group) Put ¶
func (r *Group) Put(relativePath string, handler httpcontract.HandlerFunc)
func (*Group) Resource ¶
func (r *Group) Resource(relativePath string, controller httpcontract.ResourceController)
func (*Group) StaticFile ¶
type HtmlResponse ¶
type HtmlResponse struct {
// contains filtered or unexported fields
}
func (*HtmlResponse) Render ¶
func (r *HtmlResponse) Render() error
type JsonResponse ¶
type JsonResponse struct {
// contains filtered or unexported fields
}
func (*JsonResponse) Abort ¶
func (r *JsonResponse) Abort() error
func (*JsonResponse) Render ¶
func (r *JsonResponse) Render() error
type NoContentResponse ¶
type NoContentResponse struct {
// contains filtered or unexported fields
}
func (*NoContentResponse) Abort ¶
func (r *NoContentResponse) Abort() error
func (*NoContentResponse) Render ¶
func (r *NoContentResponse) Render() error
type RedirectResponse ¶
type RedirectResponse struct {
// contains filtered or unexported fields
}
func (*RedirectResponse) Abort ¶
func (r *RedirectResponse) Abort() error
func (*RedirectResponse) Render ¶
func (r *RedirectResponse) Render() error
type ResponseOrigin ¶
func (*ResponseOrigin) Body ¶
func (w *ResponseOrigin) Body() *bytes.Buffer
func (*ResponseOrigin) Header ¶
func (w *ResponseOrigin) Header() http.Header
func (*ResponseOrigin) Size ¶
func (w *ResponseOrigin) Size() int
func (*ResponseOrigin) Status ¶
func (w *ResponseOrigin) Status() int
type Route ¶
Route fiber route Route fiber 路由
func (*Route) Fallback ¶
func (r *Route) Fallback(handler contractshttp.HandlerFunc)
Fallback set fallback handler Fallback 设置回退处理程序
func (*Route) GlobalMiddleware ¶
func (r *Route) GlobalMiddleware(middlewares ...contractshttp.Middleware)
GlobalMiddleware set global middleware GlobalMiddleware 设置全局中间件
func (*Route) ListenTLSWithCert ¶
ListenTLSWithCert listen TLS server with cert file and key file ListenTLSWithCert 使用证书文件和密钥文件监听 TLS 服务器
func (*Route) RunTLSWithCert ¶
RunTLSWithCert run TLS server with cert file and key file RunTLSWithCert 使用证书文件和密钥文件运行 TLS 服务器
func (*Route) ServeHTTP ¶
func (r *Route) ServeHTTP(writer http.ResponseWriter, request *http.Request)
ServeHTTP serve http request (Not support) ServeHTTP 服务 HTTP 请求 (不支持)
type ServiceProvider ¶
type ServiceProvider struct{}
func (*ServiceProvider) Boot ¶
func (receiver *ServiceProvider) Boot(app foundation.Application)
func (*ServiceProvider) Register ¶
func (receiver *ServiceProvider) Register(app foundation.Application)
type Status ¶
type Status struct {
// contains filtered or unexported fields
}
func (*Status) Data ¶
func (r *Status) Data(contentType string, data []byte) contractshttp.AbortableResponse
func (*Status) Json ¶
func (r *Status) Json(obj any) contractshttp.AbortableResponse
func (*Status) Stream ¶
func (r *Status) Stream(step func(w contractshttp.StreamWriter) error) contractshttp.Response
func (*Status) String ¶
func (r *Status) String(format string, values ...any) contractshttp.AbortableResponse
type StreamResponse ¶
type StreamResponse struct {
// contains filtered or unexported fields
}
func (*StreamResponse) Render ¶
func (r *StreamResponse) Render() (err error)
type StringResponse ¶
type StringResponse struct {
// contains filtered or unexported fields
}
func (*StringResponse) Abort ¶
func (r *StringResponse) Abort() error
func (*StringResponse) Render ¶
func (r *StringResponse) Render() error