1
0
mirror of https://github.com/labstack/echo.git synced 2024-11-24 08:22:21 +02:00
echo/context.go
Vishal Rana d0ed5830c4 Test coverage for cookie.go and context.go
Signed-off-by: Vishal Rana <vr@labstack.com>
2016-06-05 22:25:34 -07:00

517 lines
13 KiB
Go

package echo
import (
"encoding/json"
"encoding/xml"
"io"
"mime"
"mime/multipart"
"net/http"
"os"
"path/filepath"
"time"
"github.com/labstack/echo/engine"
"github.com/labstack/echo/log"
"bytes"
"golang.org/x/net/context"
)
type (
// Context represents the context of the current HTTP request. It holds request and
// response objects, path, path parameters, data and registered handler.
Context interface {
context.Context
// StdContext returns `net/context.Context`. By default it is set the background
// context. To change the context, use SetStdContext().
StdContext() context.Context
// SetStdContext sets `net/context.Context`.
SetStdContext(context.Context)
// Request returns `engine.Request` interface.
Request() engine.Request
// Request returns `engine.Response` interface.
Response() engine.Response
// Path returns the registered path for the handler.
Path() string
// SetPath sets the registered path for the handler.
SetPath(string)
// P returns path parameter by index.
P(int) string
// Param returns path parameter by name.
Param(string) string
// ParamNames returns path parameter names.
ParamNames() []string
// SetParamNames sets path parameter names.
SetParamNames(...string)
// ParamValues returns path parameter values.
ParamValues() []string
// SetParamValues sets path parameter values.
SetParamValues(...string)
// QueryParam returns the query param for the provided name. It is an alias
// for `engine.URL#QueryParam()`.
QueryParam(string) string
// QueryParams returns the query parameters as map.
// It is an alias for `engine.URL#QueryParams()`.
QueryParams() map[string][]string
// FormValue returns the form field value for the provided name. It is an
// alias for `engine.Request#FormValue()`.
FormValue(string) string
// FormParams returns the form parameters as map.
// It is an alias for `engine.Request#FormParams()`.
FormParams() map[string][]string
// FormFile returns the multipart form file for the provided name. It is an
// alias for `engine.Request#FormFile()`.
FormFile(string) (*multipart.FileHeader, error)
// MultipartForm returns the multipart form.
// It is an alias for `engine.Request#MultipartForm()`.
MultipartForm() (*multipart.Form, error)
// Cookie returns the named cookie provided in the request.
// It is an alias for `engine.Request#Cookie()`.
Cookie(string) (engine.Cookie, error)
// SetCookie adds a `Set-Cookie` header in HTTP response.
// It is an alias for `engine.Response#SetCookie()`.
SetCookie(engine.Cookie)
// Cookies returns the HTTP cookies sent with the request.
// It is an alias for `engine.Request#Cookies()`.
Cookies() []engine.Cookie
// Get retrieves data from the context.
Get(string) interface{}
// Set saves data in the context.
Set(string, interface{})
// Del deletes data from the context.
Del(string)
// Contains checks if the key exists in the context.
Contains(string) bool
// Bind binds the request body into provided type `i`. The default binder
// does it based on Content-Type header.
Bind(interface{}) error
// Render renders a template with data and sends a text/html response with status
// code. Templates can be registered using `Echo.SetRenderer()`.
Render(int, string, interface{}) error
// HTML sends an HTTP response with status code.
HTML(int, string) error
// String sends a string response with status code.
String(int, string) error
// JSON sends a JSON response with status code.
JSON(int, interface{}) error
// JSONBlob sends a JSON blob response with status code.
JSONBlob(int, []byte) error
// JSONP sends a JSONP response with status code. It uses `callback` to construct
// the JSONP payload.
JSONP(int, string, interface{}) error
// XML sends an XML response with status code.
XML(int, interface{}) error
// XMLBlob sends a XML blob response with status code.
XMLBlob(int, []byte) error
// File sends a response with the content of the file.
File(string) error
// Attachment sends a response from `io.ReaderSeeker` as attachment, prompting
// client to save the file.
Attachment(io.ReadSeeker, string) error
// NoContent sends a response with no body and a status code.
NoContent(int) error
// Redirect redirects the request with status code.
Redirect(int, string) error
// Error invokes the registered HTTP error handler. Generally used by middleware.
Error(err error)
// Handler returns the matched handler by router.
Handler() HandlerFunc
// SetHandler sets the matched handler by router.
SetHandler(HandlerFunc)
// Logger returns the `Logger` instance.
Logger() log.Logger
// Echo returns the `Echo` instance.
Echo() *Echo
// ServeContent sends static content from `io.Reader` and handles caching
// via `If-Modified-Since` request header. It automatically sets `Content-Type`
// and `Last-Modified` response headers.
ServeContent(io.ReadSeeker, string, time.Time) error
// Reset resets the context after request completes. It must be called along
// with `Echo#AcquireContext()` and `Echo#ReleaseContext()`.
// See `Echo#ServeHTTP()`
Reset(engine.Request, engine.Response)
}
echoContext struct {
context.Context
request engine.Request
response engine.Response
path string
pnames []string
pvalues []string
store store
handler HandlerFunc
echo *Echo
}
store map[string]interface{}
)
const (
indexPage = "index.html"
)
func (c *echoContext) StdContext() context.Context {
return c.Context
}
func (c *echoContext) SetStdContext(ctx context.Context) {
c.Context = ctx
}
func (c *echoContext) Deadline() (deadline time.Time, ok bool) {
return c.Context.Deadline()
}
func (c *echoContext) Done() <-chan struct{} {
return c.Context.Done()
}
func (c *echoContext) Err() error {
return c.Context.Err()
}
func (c *echoContext) Value(key interface{}) interface{} {
return c.Context.Value(key)
}
func (c *echoContext) Request() engine.Request {
return c.request
}
func (c *echoContext) Response() engine.Response {
return c.response
}
func (c *echoContext) Path() string {
return c.path
}
func (c *echoContext) SetPath(p string) {
c.path = p
}
func (c *echoContext) P(i int) (value string) {
l := len(c.pnames)
if i < l {
value = c.pvalues[i]
}
return
}
func (c *echoContext) Param(name string) (value string) {
l := len(c.pnames)
for i, n := range c.pnames {
if n == name && i < l {
value = c.pvalues[i]
break
}
}
return
}
func (c *echoContext) ParamNames() []string {
return c.pnames
}
func (c *echoContext) SetParamNames(names ...string) {
c.pnames = names
}
func (c *echoContext) ParamValues() []string {
return c.pvalues
}
func (c *echoContext) SetParamValues(values ...string) {
c.pvalues = values
}
func (c *echoContext) QueryParam(name string) string {
return c.request.URL().QueryParam(name)
}
func (c *echoContext) QueryParams() map[string][]string {
return c.request.URL().QueryParams()
}
func (c *echoContext) FormValue(name string) string {
return c.request.FormValue(name)
}
func (c *echoContext) FormParams() map[string][]string {
return c.request.FormParams()
}
func (c *echoContext) FormFile(name string) (*multipart.FileHeader, error) {
return c.request.FormFile(name)
}
func (c *echoContext) MultipartForm() (*multipart.Form, error) {
return c.request.MultipartForm()
}
func (c *echoContext) Cookie(name string) (engine.Cookie, error) {
return c.request.Cookie(name)
}
func (c *echoContext) SetCookie(cookie engine.Cookie) {
c.response.SetCookie(cookie)
}
func (c *echoContext) Cookies() []engine.Cookie {
return c.request.Cookies()
}
func (c *echoContext) Set(key string, val interface{}) {
if c.store == nil {
c.store = make(store)
}
c.store[key] = val
}
func (c *echoContext) Get(key string) interface{} {
return c.store[key]
}
func (c *echoContext) Del(key string) {
delete(c.store, key)
}
func (c *echoContext) Contains(key string) bool {
_, ok := c.store[key]
return ok
}
func (c *echoContext) Bind(i interface{}) error {
return c.echo.binder.Bind(i, c)
}
func (c *echoContext) 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
}
c.response.Header().Set(HeaderContentType, MIMETextHTMLCharsetUTF8)
c.response.WriteHeader(code)
_, err = c.response.Write(buf.Bytes())
return
}
func (c *echoContext) HTML(code int, html string) (err error) {
c.response.Header().Set(HeaderContentType, MIMETextHTMLCharsetUTF8)
c.response.WriteHeader(code)
_, err = c.response.Write([]byte(html))
return
}
func (c *echoContext) String(code int, s string) (err error) {
c.response.Header().Set(HeaderContentType, MIMETextPlainCharsetUTF8)
c.response.WriteHeader(code)
_, err = c.response.Write([]byte(s))
return
}
func (c *echoContext) JSON(code int, i interface{}) (err error) {
b, err := json.Marshal(i)
if c.echo.Debug() {
b, err = json.MarshalIndent(i, "", " ")
}
if err != nil {
return err
}
return c.JSONBlob(code, b)
}
func (c *echoContext) JSONBlob(code int, b []byte) (err error) {
c.response.Header().Set(HeaderContentType, MIMEApplicationJSONCharsetUTF8)
c.response.WriteHeader(code)
_, err = c.response.Write(b)
return
}
func (c *echoContext) JSONP(code int, callback string, i interface{}) (err error) {
b, err := json.Marshal(i)
if err != nil {
return err
}
c.response.Header().Set(HeaderContentType, 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 *echoContext) XML(code int, i interface{}) (err error) {
b, err := xml.Marshal(i)
if c.echo.Debug() {
b, err = xml.MarshalIndent(i, "", " ")
}
if err != nil {
return err
}
return c.XMLBlob(code, b)
}
func (c *echoContext) XMLBlob(code int, b []byte) (err error) {
c.response.Header().Set(HeaderContentType, MIMEApplicationXMLCharsetUTF8)
c.response.WriteHeader(code)
if _, err = c.response.Write([]byte(xml.Header)); err != nil {
return
}
_, err = c.response.Write(b)
return
}
func (c *echoContext) File(file string) error {
f, err := os.Open(file)
if err != nil {
return ErrNotFound
}
defer f.Close()
fi, _ := f.Stat()
if fi.IsDir() {
file = filepath.Join(file, "index.html")
f, err = os.Open(file)
if err != nil {
return ErrNotFound
}
if fi, err = f.Stat(); err != nil {
return err
}
}
return c.ServeContent(f, fi.Name(), fi.ModTime())
}
func (c *echoContext) Attachment(r io.ReadSeeker, name string) (err error) {
c.response.Header().Set(HeaderContentType, ContentTypeByExtension(name))
c.response.Header().Set(HeaderContentDisposition, "attachment; filename="+name)
c.response.WriteHeader(http.StatusOK)
_, err = io.Copy(c.response, r)
return
}
func (c *echoContext) NoContent(code int) error {
c.response.WriteHeader(code)
return nil
}
func (c *echoContext) Redirect(code int, url string) error {
if code < http.StatusMultipleChoices || code > http.StatusTemporaryRedirect {
return ErrInvalidRedirectCode
}
c.response.Header().Set(HeaderLocation, url)
c.response.WriteHeader(code)
return nil
}
func (c *echoContext) Error(err error) {
c.echo.httpErrorHandler(err, c)
}
func (c *echoContext) Echo() *Echo {
return c.echo
}
func (c *echoContext) Handler() HandlerFunc {
return c.handler
}
func (c *echoContext) SetHandler(h HandlerFunc) {
c.handler = h
}
func (c *echoContext) Logger() log.Logger {
return c.echo.logger
}
func (c *echoContext) ServeContent(content io.ReadSeeker, name string, modtime time.Time) error {
req := c.Request()
res := c.Response()
if t, err := time.Parse(http.TimeFormat, req.Header().Get(HeaderIfModifiedSince)); err == nil && modtime.Before(t.Add(1*time.Second)) {
res.Header().Del(HeaderContentType)
res.Header().Del(HeaderContentLength)
return c.NoContent(http.StatusNotModified)
}
res.Header().Set(HeaderContentType, ContentTypeByExtension(name))
res.Header().Set(HeaderLastModified, modtime.UTC().Format(http.TimeFormat))
res.WriteHeader(http.StatusOK)
_, err := io.Copy(res, content)
return err
}
// ContentTypeByExtension returns the MIME type associated with the file based on
// its extension. It returns `application/octet-stream` incase MIME type is not
// found.
func ContentTypeByExtension(name string) (t string) {
if t = mime.TypeByExtension(filepath.Ext(name)); t == "" {
t = MIMEOctetStream
}
return
}
func (c *echoContext) Reset(req engine.Request, res engine.Response) {
c.Context = nil
c.request = req
c.response = res
c.store = nil
c.handler = notFoundHandler
}