mirror of
https://github.com/labstack/echo.git
synced 2024-12-22 20:06:21 +02:00
6ef5f77bf2
WIP: make default logger implemented custom writer for jsonlike logs WIP: improve examples WIP: defaultErrorHandler use errors.As to unwrap errors. Update readme WIP: default logger logs json, restore e.Start method WIP: clean router.Match a bit WIP: func types/fields have echo.Context has first element WIP: remove yaml tags as functions etc can not be serialized anyway WIP: change BindPathParams,BindQueryParams,BindHeaders from methods to functions and reverse arguments to be like DefaultBinder.Bind is WIP: improved comments, logger now extracts status from error WIP: go mod tidy WIP: rebase with 4.5.0 WIP: * removed todos. * removed StartAutoTLS and StartH2CServer methods from `StartConfig` * KeyAuth middleware errorhandler can swallow the error and resume next middleware WIP: add RouterConfig.UseEscapedPathForMatching to use escaped path for matching request against routes WIP: FIXMEs WIP: upgrade golang-jwt/jwt to `v4` WIP: refactor http methods to return RouteInfo WIP: refactor static not creating multiple routes WIP: refactor route and middleware adding functions not to return error directly WIP: Use 401 for problematic/missing headers for key auth and JWT middleware (#1552, #1402). > In summary, a 401 Unauthorized response should be used for missing or bad authentication WIP: replace `HTTPError.SetInternal` with `HTTPError.WithInternal` so we could not mutate global error variables WIP: add RouteInfo and RouteMatchType into Context what we could know from in middleware what route was matched and/or type of that match (200/404/405) WIP: make notFoundHandler and methodNotAllowedHandler private. encourage that all errors be handled in Echo.HTTPErrorHandler WIP: server cleanup ideas WIP: routable.ForGroup WIP: note about logger middleware WIP: bind should not default values on second try. use crypto rand for better randomness WIP: router add route as interface and returns info as interface WIP: improve flaky test (remains still flaky) WIP: add notes about bind default values WIP: every route can have their own path params names WIP: routerCreator and different tests WIP: different things WIP: remove route implementation WIP: support custom method types WIP: extractor tests WIP: v5.0.x proposal over v4.4.0
664 lines
18 KiB
Go
664 lines
18 KiB
Go
package echo
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/xml"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"io/fs"
|
|
"mime/multipart"
|
|
"net"
|
|
"net/http"
|
|
"net/url"
|
|
"path/filepath"
|
|
"strings"
|
|
"sync"
|
|
)
|
|
|
|
// Context represents the context of the current HTTP request. It holds request and
|
|
// response objects, path, path parameters, data and registered handler.
|
|
type Context interface {
|
|
// Request returns `*http.Request`.
|
|
Request() *http.Request
|
|
|
|
// SetRequest sets `*http.Request`.
|
|
SetRequest(r *http.Request)
|
|
|
|
// SetResponse sets `*Response`.
|
|
SetResponse(r *Response)
|
|
|
|
// Response returns `*Response`.
|
|
Response() *Response
|
|
|
|
// IsTLS returns true if HTTP connection is TLS otherwise false.
|
|
IsTLS() bool
|
|
|
|
// IsWebSocket returns true if HTTP connection is WebSocket otherwise false.
|
|
IsWebSocket() bool
|
|
|
|
// Scheme returns the HTTP protocol scheme, `http` or `https`.
|
|
Scheme() string
|
|
|
|
// RealIP returns the client's network address based on `X-Forwarded-For`
|
|
// or `X-Real-IP` request header.
|
|
// The behavior can be configured using `Echo#IPExtractor`.
|
|
RealIP() string
|
|
|
|
// RouteMatchType returns router match type for current context. This helps middlewares to distinguish which type
|
|
// of match router found and how this request context handler chain could end:
|
|
// * route match - this path + method had matching route.
|
|
// * not found - this path did not match any routes enough to be considered match
|
|
// * method not allowed - path had routes registered but for other method types then current request is
|
|
// * unknown - initial state for fresh context before router tries to do routing
|
|
//
|
|
// Note: for pre-middleware (Echo.Pre) this method result is always RouteMatchUnknown as at point router has not tried
|
|
// to match request to route.
|
|
RouteMatchType() RouteMatchType
|
|
|
|
// RouteInfo returns current request route information. Method, Path, Name and params if they exist for matched route.
|
|
// In case of 404 (route not found) and 405 (method not allowed) RouteInfo returns generic struct for these cases.
|
|
RouteInfo() RouteInfo
|
|
|
|
// Path returns the registered path for the handler.
|
|
Path() string
|
|
|
|
// PathParam returns path parameter by name.
|
|
PathParam(name string) string
|
|
|
|
// PathParams returns path parameter values.
|
|
PathParams() PathParams
|
|
|
|
// SetPathParams set path parameter for during current request lifecycle.
|
|
SetPathParams(params PathParams)
|
|
|
|
// QueryParam returns the query param for the provided name.
|
|
QueryParam(name string) string
|
|
|
|
// QueryParams returns the query parameters as `url.Values`.
|
|
QueryParams() url.Values
|
|
|
|
// QueryString returns the URL query string.
|
|
QueryString() string
|
|
|
|
// FormValue returns the form field value for the provided name.
|
|
FormValue(name string) string
|
|
|
|
// FormParams returns the form parameters as `url.Values`.
|
|
FormParams() (url.Values, error)
|
|
|
|
// FormFile returns the multipart form file for the provided name.
|
|
FormFile(name string) (*multipart.FileHeader, error)
|
|
|
|
// MultipartForm returns the multipart form.
|
|
MultipartForm() (*multipart.Form, error)
|
|
|
|
// Cookie returns the named cookie provided in the request.
|
|
Cookie(name string) (*http.Cookie, error)
|
|
|
|
// SetCookie adds a `Set-Cookie` header in HTTP response.
|
|
SetCookie(cookie *http.Cookie)
|
|
|
|
// Cookies returns the HTTP cookies sent with the request.
|
|
Cookies() []*http.Cookie
|
|
|
|
// Get retrieves data from the context.
|
|
Get(key string) interface{}
|
|
|
|
// Set saves data in the context.
|
|
Set(key string, val interface{})
|
|
|
|
// Bind binds the request body into provided type `i`. The default binder
|
|
// does it based on Content-Type header.
|
|
Bind(i interface{}) error
|
|
|
|
// Validate validates provided `i`. It is usually called after `Context#Bind()`.
|
|
// Validator must be registered using `Echo#Validator`.
|
|
Validate(i interface{}) error
|
|
|
|
// Render renders a template with data and sends a text/html response with status
|
|
// code. Renderer must be registered using `Echo.Renderer`.
|
|
Render(code int, name string, data interface{}) error
|
|
|
|
// HTML sends an HTTP response with status code.
|
|
HTML(code int, html string) error
|
|
|
|
// HTMLBlob sends an HTTP blob response with status code.
|
|
HTMLBlob(code int, b []byte) error
|
|
|
|
// String sends a string response with status code.
|
|
String(code int, s string) error
|
|
|
|
// JSON sends a JSON response with status code.
|
|
JSON(code int, i interface{}) error
|
|
|
|
// JSONPretty sends a pretty-print JSON with status code.
|
|
JSONPretty(code int, i interface{}, indent string) error
|
|
|
|
// JSONBlob sends a JSON blob response with status code.
|
|
JSONBlob(code int, b []byte) error
|
|
|
|
// JSONP sends a JSONP response with status code. It uses `callback` to construct
|
|
// the JSONP payload.
|
|
JSONP(code int, callback string, i interface{}) error
|
|
|
|
// JSONPBlob sends a JSONP blob response with status code. It uses `callback`
|
|
// to construct the JSONP payload.
|
|
JSONPBlob(code int, callback string, b []byte) error
|
|
|
|
// XML sends an XML response with status code.
|
|
XML(code int, i interface{}) error
|
|
|
|
// XMLPretty sends a pretty-print XML with status code.
|
|
XMLPretty(code int, i interface{}, indent string) error
|
|
|
|
// XMLBlob sends an XML blob response with status code.
|
|
XMLBlob(code int, b []byte) error
|
|
|
|
// Blob sends a blob response with status code and content type.
|
|
Blob(code int, contentType string, b []byte) error
|
|
|
|
// Stream sends a streaming response with status code and content type.
|
|
Stream(code int, contentType string, r io.Reader) error
|
|
|
|
// File sends a response with the content of the file.
|
|
File(file string) error
|
|
|
|
// Attachment sends a response as attachment, prompting client to save the
|
|
// file.
|
|
Attachment(file string, name string) error
|
|
|
|
// Inline sends a response as inline, opening the file in the browser.
|
|
Inline(file string, name string) error
|
|
|
|
// NoContent sends a response with no body and a status code.
|
|
NoContent(code int) error
|
|
|
|
// Redirect redirects the request to a provided URL with status code.
|
|
Redirect(code int, url string) error
|
|
|
|
// Error invokes the registered HTTP error handler.
|
|
// NB: Avoid using this method. It is better to return errors so middlewares up in chain could act on returned error.
|
|
Error(err error)
|
|
|
|
// Echo returns the `Echo` instance.
|
|
Echo() *Echo
|
|
}
|
|
|
|
// EditableContext is additional interface that structure implementing Context must implement. Methods inside this
|
|
// interface are meant for Echo internal usage (for mainly routing) and should not be used in middlewares.
|
|
type EditableContext interface {
|
|
Context
|
|
|
|
// RawPathParams returns raw path pathParams value.
|
|
RawPathParams() *PathParams
|
|
|
|
// SetRawPathParams replaces any existing param values with new values for this context lifetime (request).
|
|
SetRawPathParams(params *PathParams)
|
|
|
|
// SetPath sets the registered path for the handler.
|
|
SetPath(p string)
|
|
|
|
// SetRouteMatchType sets the RouteMatchType of router match for this request.
|
|
SetRouteMatchType(t RouteMatchType)
|
|
|
|
// SetRouteInfo sets the route info of this request to the context.
|
|
SetRouteInfo(ri RouteInfo)
|
|
|
|
// Reset resets the context after request completes. It must be called along
|
|
// with `Echo#AcquireContext()` and `Echo#ReleaseContext()`.
|
|
// See `Echo#ServeHTTP()`
|
|
Reset(r *http.Request, w http.ResponseWriter)
|
|
}
|
|
|
|
type context struct {
|
|
request *http.Request
|
|
response *Response
|
|
|
|
matchType RouteMatchType
|
|
route RouteInfo
|
|
path string
|
|
|
|
// pathParams holds path/uri parameters determined by Router. Lifecycle is handled by Echo to reduce allocations.
|
|
pathParams *PathParams
|
|
// currentParams hold path parameters set by non-Echo implementation (custom middlewares, handlers) during the lifetime of Request.
|
|
// Lifecycle is not handle by Echo and could have excess allocations per served Request
|
|
currentParams PathParams
|
|
|
|
query url.Values
|
|
store Map
|
|
echo *Echo
|
|
lock sync.RWMutex
|
|
}
|
|
|
|
const (
|
|
defaultMemory = 32 << 20 // 32 MB
|
|
indexPage = "index.html"
|
|
defaultIndent = " "
|
|
)
|
|
|
|
func (c *context) writeContentType(value string) {
|
|
header := c.Response().Header()
|
|
if header.Get(HeaderContentType) == "" {
|
|
header.Set(HeaderContentType, value)
|
|
}
|
|
}
|
|
|
|
func (c *context) Request() *http.Request {
|
|
return c.request
|
|
}
|
|
|
|
func (c *context) SetRequest(r *http.Request) {
|
|
c.request = r
|
|
}
|
|
|
|
func (c *context) Response() *Response {
|
|
return c.response
|
|
}
|
|
|
|
func (c *context) SetResponse(r *Response) {
|
|
c.response = r
|
|
}
|
|
|
|
func (c *context) IsTLS() bool {
|
|
return c.request.TLS != nil
|
|
}
|
|
|
|
func (c *context) IsWebSocket() bool {
|
|
upgrade := c.request.Header.Get(HeaderUpgrade)
|
|
return strings.EqualFold(upgrade, "websocket")
|
|
}
|
|
|
|
func (c *context) Scheme() string {
|
|
// Can't use `r.Request.URL.Scheme`
|
|
// See: https://groups.google.com/forum/#!topic/golang-nuts/pMUkBlQBDF0
|
|
if c.IsTLS() {
|
|
return "https"
|
|
}
|
|
if scheme := c.request.Header.Get(HeaderXForwardedProto); scheme != "" {
|
|
return scheme
|
|
}
|
|
if scheme := c.request.Header.Get(HeaderXForwardedProtocol); scheme != "" {
|
|
return scheme
|
|
}
|
|
if ssl := c.request.Header.Get(HeaderXForwardedSsl); ssl == "on" {
|
|
return "https"
|
|
}
|
|
if scheme := c.request.Header.Get(HeaderXUrlScheme); scheme != "" {
|
|
return scheme
|
|
}
|
|
return "http"
|
|
}
|
|
|
|
func (c *context) RealIP() string {
|
|
if c.echo != nil && c.echo.IPExtractor != nil {
|
|
return c.echo.IPExtractor(c.request)
|
|
}
|
|
// Fall back to legacy behavior
|
|
if ip := c.request.Header.Get(HeaderXForwardedFor); ip != "" {
|
|
i := strings.IndexAny(ip, ",")
|
|
if i > 0 {
|
|
return strings.TrimSpace(ip[:i])
|
|
}
|
|
return ip
|
|
}
|
|
if ip := c.request.Header.Get(HeaderXRealIP); ip != "" {
|
|
return ip
|
|
}
|
|
ra, _, _ := net.SplitHostPort(c.request.RemoteAddr)
|
|
return ra
|
|
}
|
|
|
|
func (c *context) Path() string {
|
|
return c.path
|
|
}
|
|
|
|
func (c *context) SetPath(p string) {
|
|
c.path = p
|
|
}
|
|
|
|
func (c *context) RouteMatchType() RouteMatchType {
|
|
return c.matchType
|
|
}
|
|
|
|
func (c *context) SetRouteMatchType(t RouteMatchType) {
|
|
c.matchType = t
|
|
}
|
|
|
|
func (c *context) RouteInfo() RouteInfo {
|
|
return c.route
|
|
}
|
|
|
|
func (c *context) SetRouteInfo(ri RouteInfo) {
|
|
c.route = ri
|
|
}
|
|
|
|
func (c *context) RawPathParams() *PathParams {
|
|
return c.pathParams
|
|
}
|
|
|
|
func (c *context) SetRawPathParams(params *PathParams) {
|
|
c.pathParams = params
|
|
}
|
|
|
|
func (c *context) PathParam(name string) string {
|
|
if c.currentParams != nil {
|
|
return c.currentParams.Get(name, "")
|
|
}
|
|
|
|
return c.pathParams.Get(name, "")
|
|
}
|
|
|
|
func (c *context) PathParams() PathParams {
|
|
if c.currentParams != nil {
|
|
return c.currentParams
|
|
}
|
|
|
|
result := make(PathParams, len(*c.pathParams))
|
|
copy(result, *c.pathParams)
|
|
return result
|
|
}
|
|
|
|
func (c *context) SetPathParams(params PathParams) {
|
|
c.currentParams = params
|
|
}
|
|
|
|
func (c *context) QueryParam(name string) string {
|
|
if c.query == nil {
|
|
c.query = c.request.URL.Query()
|
|
}
|
|
return c.query.Get(name)
|
|
}
|
|
|
|
func (c *context) QueryParams() url.Values {
|
|
if c.query == nil {
|
|
c.query = c.request.URL.Query()
|
|
}
|
|
return c.query
|
|
}
|
|
|
|
func (c *context) QueryString() string {
|
|
return c.request.URL.RawQuery
|
|
}
|
|
|
|
func (c *context) FormValue(name string) string {
|
|
return c.request.FormValue(name)
|
|
}
|
|
|
|
func (c *context) FormParams() (url.Values, error) {
|
|
if strings.HasPrefix(c.request.Header.Get(HeaderContentType), MIMEMultipartForm) {
|
|
if err := c.request.ParseMultipartForm(defaultMemory); err != nil {
|
|
return nil, err
|
|
}
|
|
} else {
|
|
if err := c.request.ParseForm(); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return c.request.Form, nil
|
|
}
|
|
|
|
func (c *context) FormFile(name string) (*multipart.FileHeader, error) {
|
|
f, fh, err := c.request.FormFile(name)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
f.Close()
|
|
return fh, nil
|
|
}
|
|
|
|
func (c *context) MultipartForm() (*multipart.Form, error) {
|
|
err := c.request.ParseMultipartForm(defaultMemory)
|
|
return c.request.MultipartForm, err
|
|
}
|
|
|
|
func (c *context) Cookie(name string) (*http.Cookie, error) {
|
|
return c.request.Cookie(name)
|
|
}
|
|
|
|
func (c *context) SetCookie(cookie *http.Cookie) {
|
|
http.SetCookie(c.Response(), cookie)
|
|
}
|
|
|
|
func (c *context) Cookies() []*http.Cookie {
|
|
return c.request.Cookies()
|
|
}
|
|
|
|
func (c *context) Get(key string) interface{} {
|
|
c.lock.RLock()
|
|
defer c.lock.RUnlock()
|
|
return c.store[key]
|
|
}
|
|
|
|
func (c *context) Set(key string, val interface{}) {
|
|
c.lock.Lock()
|
|
defer c.lock.Unlock()
|
|
|
|
if c.store == nil {
|
|
c.store = make(Map)
|
|
}
|
|
c.store[key] = val
|
|
}
|
|
|
|
func (c *context) Bind(i interface{}) error {
|
|
return c.echo.Binder.Bind(c, i)
|
|
}
|
|
|
|
func (c *context) Validate(i interface{}) error {
|
|
if c.echo.Validator == nil {
|
|
return ErrValidatorNotRegistered
|
|
}
|
|
return c.echo.Validator.Validate(i)
|
|
}
|
|
|
|
func (c *context) Render(code int, name string, data interface{}) (err error) {
|
|
if c.echo.Renderer == nil {
|
|
return ErrRendererNotRegistered
|
|
}
|
|
buf := new(bytes.Buffer)
|
|
if err = c.echo.Renderer.Render(buf, name, data, c); err != nil {
|
|
return
|
|
}
|
|
return c.HTMLBlob(code, buf.Bytes())
|
|
}
|
|
|
|
func (c *context) HTML(code int, html string) (err error) {
|
|
return c.HTMLBlob(code, []byte(html))
|
|
}
|
|
|
|
func (c *context) HTMLBlob(code int, b []byte) (err error) {
|
|
return c.Blob(code, MIMETextHTMLCharsetUTF8, b)
|
|
}
|
|
|
|
func (c *context) String(code int, s string) (err error) {
|
|
return c.Blob(code, MIMETextPlainCharsetUTF8, []byte(s))
|
|
}
|
|
|
|
func (c *context) jsonPBlob(code int, callback string, i interface{}) (err error) {
|
|
indent := ""
|
|
if _, pretty := c.QueryParams()["pretty"]; c.echo.Debug || pretty {
|
|
indent = defaultIndent
|
|
}
|
|
c.writeContentType(MIMEApplicationJavaScriptCharsetUTF8)
|
|
c.response.WriteHeader(code)
|
|
if _, err = c.response.Write([]byte(callback + "(")); err != nil {
|
|
return
|
|
}
|
|
if err = c.echo.JSONSerializer.Serialize(c, i, indent); err != nil {
|
|
return
|
|
}
|
|
if _, err = c.response.Write([]byte(");")); err != nil {
|
|
return
|
|
}
|
|
return
|
|
}
|
|
|
|
func (c *context) json(code int, i interface{}, indent string) error {
|
|
c.writeContentType(MIMEApplicationJSONCharsetUTF8)
|
|
c.response.Status = code
|
|
return c.echo.JSONSerializer.Serialize(c, i, indent)
|
|
}
|
|
|
|
func (c *context) JSON(code int, i interface{}) (err error) {
|
|
indent := ""
|
|
if _, pretty := c.QueryParams()["pretty"]; c.echo.Debug || pretty {
|
|
indent = defaultIndent
|
|
}
|
|
return c.json(code, i, indent)
|
|
}
|
|
|
|
func (c *context) JSONPretty(code int, i interface{}, indent string) (err error) {
|
|
return c.json(code, i, indent)
|
|
}
|
|
|
|
func (c *context) JSONBlob(code int, b []byte) (err error) {
|
|
return c.Blob(code, MIMEApplicationJSONCharsetUTF8, b)
|
|
}
|
|
|
|
func (c *context) JSONP(code int, callback string, i interface{}) (err error) {
|
|
return c.jsonPBlob(code, callback, i)
|
|
}
|
|
|
|
func (c *context) JSONPBlob(code int, callback string, b []byte) (err error) {
|
|
c.writeContentType(MIMEApplicationJavaScriptCharsetUTF8)
|
|
c.response.WriteHeader(code)
|
|
if _, err = c.response.Write([]byte(callback + "(")); err != nil {
|
|
return
|
|
}
|
|
if _, err = c.response.Write(b); err != nil {
|
|
return
|
|
}
|
|
_, err = c.response.Write([]byte(");"))
|
|
return
|
|
}
|
|
|
|
func (c *context) xml(code int, i interface{}, indent string) (err error) {
|
|
c.writeContentType(MIMEApplicationXMLCharsetUTF8)
|
|
c.response.WriteHeader(code)
|
|
enc := xml.NewEncoder(c.response)
|
|
if indent != "" {
|
|
enc.Indent("", indent)
|
|
}
|
|
if _, err = c.response.Write([]byte(xml.Header)); err != nil {
|
|
return
|
|
}
|
|
return enc.Encode(i)
|
|
}
|
|
|
|
func (c *context) XML(code int, i interface{}) (err error) {
|
|
indent := ""
|
|
if _, pretty := c.QueryParams()["pretty"]; c.echo.Debug || pretty {
|
|
indent = defaultIndent
|
|
}
|
|
return c.xml(code, i, indent)
|
|
}
|
|
|
|
func (c *context) XMLPretty(code int, i interface{}, indent string) (err error) {
|
|
return c.xml(code, i, indent)
|
|
}
|
|
|
|
func (c *context) XMLBlob(code int, b []byte) (err error) {
|
|
c.writeContentType(MIMEApplicationXMLCharsetUTF8)
|
|
c.response.WriteHeader(code)
|
|
if _, err = c.response.Write([]byte(xml.Header)); err != nil {
|
|
return
|
|
}
|
|
_, err = c.response.Write(b)
|
|
return
|
|
}
|
|
|
|
func (c *context) Blob(code int, contentType string, b []byte) (err error) {
|
|
c.writeContentType(contentType)
|
|
c.response.WriteHeader(code)
|
|
_, err = c.response.Write(b)
|
|
return
|
|
}
|
|
|
|
func (c *context) Stream(code int, contentType string, r io.Reader) (err error) {
|
|
c.writeContentType(contentType)
|
|
c.response.WriteHeader(code)
|
|
_, err = io.Copy(c.response, r)
|
|
return
|
|
}
|
|
|
|
func (c *context) File(file string) error {
|
|
return c.FsFile(file, c.echo.Filesystem)
|
|
}
|
|
|
|
func (c *context) FsFile(file string, filesystem fs.FS) error {
|
|
// FIXME: should we add this method into echo.Context interface?
|
|
f, err := filesystem.Open(file)
|
|
if err != nil {
|
|
return ErrNotFound
|
|
}
|
|
defer f.Close()
|
|
|
|
fi, _ := f.Stat()
|
|
if fi.IsDir() {
|
|
file = filepath.Join(file, indexPage)
|
|
f, err = filesystem.Open(file)
|
|
if err != nil {
|
|
return ErrNotFound
|
|
}
|
|
defer f.Close()
|
|
if fi, err = f.Stat(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
ff, ok := f.(io.ReadSeeker)
|
|
if !ok {
|
|
return errors.New("file does not implement io.ReadSeeker")
|
|
}
|
|
http.ServeContent(c.Response(), c.Request(), fi.Name(), fi.ModTime(), ff)
|
|
return nil
|
|
}
|
|
|
|
func (c *context) Attachment(file, name string) error {
|
|
return c.contentDisposition(file, name, "attachment")
|
|
}
|
|
|
|
func (c *context) Inline(file, name string) error {
|
|
return c.contentDisposition(file, name, "inline")
|
|
}
|
|
|
|
func (c *context) contentDisposition(file, name, dispositionType string) error {
|
|
c.response.Header().Set(HeaderContentDisposition, fmt.Sprintf("%s; filename=%q", dispositionType, name))
|
|
return c.File(file)
|
|
}
|
|
|
|
func (c *context) NoContent(code int) error {
|
|
c.response.WriteHeader(code)
|
|
return nil
|
|
}
|
|
|
|
func (c *context) Redirect(code int, url string) error {
|
|
if code < 300 || code > 308 {
|
|
return ErrInvalidRedirectCode
|
|
}
|
|
c.response.Header().Set(HeaderLocation, url)
|
|
c.response.WriteHeader(code)
|
|
return nil
|
|
}
|
|
|
|
func (c *context) Error(err error) {
|
|
c.echo.HTTPErrorHandler(c, err)
|
|
}
|
|
|
|
func (c *context) Echo() *Echo {
|
|
return c.echo
|
|
}
|
|
|
|
func (c *context) Reset(r *http.Request, w http.ResponseWriter) {
|
|
c.request = r
|
|
c.response.reset(w)
|
|
c.query = nil
|
|
c.store = nil
|
|
|
|
c.matchType = RouteMatchUnknown
|
|
c.route = nil
|
|
c.path = ""
|
|
// NOTE: Don't reset because it has to have length c.echo.contextPathParamAllocSize at all times
|
|
*c.pathParams = (*c.pathParams)[:0]
|
|
c.currentParams = nil
|
|
}
|