2015-03-27 23:21:30 +02:00
|
|
|
package echo
|
2015-03-01 19:45:13 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2015-07-11 21:20:59 +02:00
|
|
|
"encoding/xml"
|
2016-02-15 18:11:29 +02:00
|
|
|
"io"
|
|
|
|
"mime"
|
2016-03-21 22:10:20 +02:00
|
|
|
"mime/multipart"
|
2015-03-01 19:45:13 +02:00
|
|
|
"net/http"
|
2016-02-15 18:11:29 +02:00
|
|
|
"os"
|
2016-03-12 15:14:15 +02:00
|
|
|
"path"
|
2015-10-16 16:51:42 +02:00
|
|
|
"path/filepath"
|
2015-12-04 03:23:53 +02:00
|
|
|
"time"
|
2015-05-20 23:38:51 +02:00
|
|
|
|
2015-12-22 01:20:49 +02:00
|
|
|
"github.com/labstack/echo/engine"
|
2016-03-06 19:52:32 +02:00
|
|
|
"github.com/labstack/gommon/log"
|
2015-12-04 18:13:26 +02:00
|
|
|
|
2015-07-05 20:08:17 +02:00
|
|
|
"net/url"
|
2015-07-22 18:44:52 +02:00
|
|
|
|
2015-10-02 20:23:52 +02:00
|
|
|
"bytes"
|
2015-10-13 16:09:53 +02:00
|
|
|
|
2015-12-22 01:20:49 +02:00
|
|
|
netContext "golang.org/x/net/context"
|
2015-03-01 19:45:13 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type (
|
2016-03-20 00:47:20 +02:00
|
|
|
// Context represents the context of the current HTTP request. It holds request and
|
|
|
|
// response objects, path, path parameters, data and registered handler.
|
2015-12-04 03:23:53 +02:00
|
|
|
Context interface {
|
2015-12-22 01:20:49 +02:00
|
|
|
netContext.Context
|
2016-03-20 00:47:20 +02:00
|
|
|
|
|
|
|
// NetContext returns `http://blog.golang.org/context.Context` interface.
|
2016-03-14 21:21:47 +02:00
|
|
|
NetContext() netContext.Context
|
2016-03-20 00:47:20 +02:00
|
|
|
|
|
|
|
// SetNetContext sets `http://blog.golang.org/context.Context` interface.
|
2016-03-15 04:58:46 +02:00
|
|
|
SetNetContext(netContext.Context)
|
2016-03-20 00:47:20 +02:00
|
|
|
|
|
|
|
// Request returns `engine.Request` interface.
|
2015-12-22 01:20:49 +02:00
|
|
|
Request() engine.Request
|
2016-03-20 00:47:20 +02:00
|
|
|
|
|
|
|
// Request returns `engine.Response` interface.
|
2015-12-22 01:20:49 +02:00
|
|
|
Response() engine.Response
|
2016-03-20 00:47:20 +02:00
|
|
|
|
|
|
|
// Path returns the registered path for the handler.
|
2015-12-04 03:23:53 +02:00
|
|
|
Path() string
|
2016-03-20 00:47:20 +02:00
|
|
|
|
|
|
|
// P returns path parameter by index.
|
2015-12-04 03:23:53 +02:00
|
|
|
P(int) string
|
2016-03-20 00:47:20 +02:00
|
|
|
|
|
|
|
// Param returns path parameter by name.
|
2015-12-04 03:23:53 +02:00
|
|
|
Param(string) string
|
2016-03-20 00:47:20 +02:00
|
|
|
|
|
|
|
// ParamNames returns path parameter names.
|
2016-03-06 06:03:11 +02:00
|
|
|
ParamNames() []string
|
2016-03-20 00:47:20 +02:00
|
|
|
|
2016-03-21 22:10:20 +02:00
|
|
|
// QueryParam returns the query param for the provided name. It is an alias
|
|
|
|
// for `engine.URL#QueryParam()`.
|
|
|
|
QueryParam(string) string
|
2016-03-20 00:47:20 +02:00
|
|
|
|
2016-03-23 18:10:22 +02:00
|
|
|
// QueryParam returns the query parameters as map. It is an alias for `engine.URL#QueryParams()`.
|
|
|
|
QueryParams() map[string][]string
|
|
|
|
|
2016-03-21 22:10:20 +02:00
|
|
|
// FormValue returns the form field value for the provided name. It is an
|
|
|
|
// alias for `engine.Request#FormValue()`.
|
|
|
|
FormValue(string) string
|
|
|
|
|
2016-03-23 18:10:22 +02:00
|
|
|
// FormParams returns the form parameters as map. It is an alias for `engine.Request#FormParams()`.
|
|
|
|
FormParams() map[string][]string
|
|
|
|
|
2016-03-21 22:10:20 +02:00
|
|
|
// 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)
|
2016-03-20 00:47:20 +02:00
|
|
|
|
|
|
|
// Get retrieves data from the context.
|
2015-12-04 03:23:53 +02:00
|
|
|
Get(string) interface{}
|
2016-03-20 00:47:20 +02:00
|
|
|
|
|
|
|
// Set saves data in the context.
|
2016-03-15 04:58:46 +02:00
|
|
|
Set(string, interface{})
|
2016-03-20 00:47:20 +02:00
|
|
|
|
|
|
|
// Bind binds the request body into provided type `i`. The default binder does
|
|
|
|
// it based on Content-Type header.
|
2015-12-04 03:23:53 +02:00
|
|
|
Bind(interface{}) error
|
2016-03-20 00:47:20 +02:00
|
|
|
|
|
|
|
// Render renders a template with data and sends a text/html response with status
|
|
|
|
// code. Templates can be registered using `Echo.SetRenderer()`.
|
2015-12-04 03:23:53 +02:00
|
|
|
Render(int, string, interface{}) error
|
2016-03-20 00:47:20 +02:00
|
|
|
|
|
|
|
// HTML sends an HTTP response with status code.
|
2015-12-04 03:23:53 +02:00
|
|
|
HTML(int, string) error
|
2016-03-20 00:47:20 +02:00
|
|
|
|
|
|
|
// String sends a string response with status code.
|
2015-12-04 03:23:53 +02:00
|
|
|
String(int, string) error
|
2016-03-20 00:47:20 +02:00
|
|
|
|
|
|
|
// JSON sends a JSON response with status code.
|
2015-12-04 03:23:53 +02:00
|
|
|
JSON(int, interface{}) error
|
2016-03-20 00:47:20 +02:00
|
|
|
|
|
|
|
// JSONBlob sends a JSON blob response with status code.
|
2016-02-11 02:51:43 +02:00
|
|
|
JSONBlob(int, []byte) error
|
2016-03-20 00:47:20 +02:00
|
|
|
|
|
|
|
// JSONP sends a JSONP response with status code. It uses `callback` to construct
|
|
|
|
// the JSONP payload.
|
2015-12-04 03:23:53 +02:00
|
|
|
JSONP(int, string, interface{}) error
|
2016-03-20 00:47:20 +02:00
|
|
|
|
|
|
|
// XML sends an XML response with status code.
|
2015-12-04 03:23:53 +02:00
|
|
|
XML(int, interface{}) error
|
2016-03-20 00:47:20 +02:00
|
|
|
|
|
|
|
// XMLBlob sends a XML blob response with status code.
|
2016-02-11 02:51:43 +02:00
|
|
|
XMLBlob(int, []byte) error
|
2016-03-20 00:47:20 +02:00
|
|
|
|
|
|
|
// File sends a response with the content of the file.
|
2016-03-12 15:14:15 +02:00
|
|
|
File(string) error
|
2016-03-20 00:47:20 +02:00
|
|
|
|
|
|
|
// Attachment sends a response from `io.Reader` as attachment, prompting client
|
|
|
|
// to save the file.
|
2016-03-12 21:49:45 +02:00
|
|
|
Attachment(io.Reader, string) error
|
2016-03-20 00:47:20 +02:00
|
|
|
|
|
|
|
// NoContent sends a response with no body and a status code.
|
2015-12-04 03:23:53 +02:00
|
|
|
NoContent(int) error
|
2016-03-20 00:47:20 +02:00
|
|
|
|
|
|
|
// Redirect redirects the request with status code.
|
2015-12-04 03:23:53 +02:00
|
|
|
Redirect(int, string) error
|
2016-03-20 00:47:20 +02:00
|
|
|
|
|
|
|
// Error invokes the registered HTTP error handler. Generally used by middleware.
|
2015-12-04 03:23:53 +02:00
|
|
|
Error(err error)
|
2016-03-20 00:47:20 +02:00
|
|
|
|
|
|
|
// Handler implements `Handler` interface.
|
2016-02-15 18:11:29 +02:00
|
|
|
Handle(Context) error
|
2016-03-20 00:47:20 +02:00
|
|
|
|
|
|
|
// Logger returns the `Logger` instance.
|
2016-03-06 19:52:32 +02:00
|
|
|
Logger() *log.Logger
|
2016-03-20 00:47:20 +02:00
|
|
|
|
|
|
|
// Echo returns the `Echo` instance.
|
2016-02-19 00:04:28 +02:00
|
|
|
Echo() *Echo
|
2016-03-20 00:47:20 +02:00
|
|
|
|
|
|
|
// Object returns the `context` instance.
|
2016-02-09 02:48:03 +02:00
|
|
|
Object() *context
|
2016-03-20 00:47:20 +02:00
|
|
|
|
|
|
|
// Reset resets the context after request completes. It must be called along
|
|
|
|
// with `Echo#GetContext()` and `Echo#PutContext()`. See `Echo#ServeHTTP()`
|
|
|
|
Reset(engine.Request, engine.Response)
|
2015-12-04 03:23:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
context struct {
|
2016-03-14 17:09:48 +02:00
|
|
|
netContext netContext.Context
|
|
|
|
request engine.Request
|
|
|
|
response engine.Response
|
|
|
|
path string
|
|
|
|
pnames []string
|
|
|
|
pvalues []string
|
|
|
|
query url.Values
|
|
|
|
store store
|
|
|
|
handler Handler
|
|
|
|
echo *Echo
|
2015-03-01 19:45:13 +02:00
|
|
|
}
|
2015-12-04 03:23:53 +02:00
|
|
|
|
2015-03-01 19:45:13 +02:00
|
|
|
store map[string]interface{}
|
|
|
|
)
|
|
|
|
|
2016-02-15 18:11:29 +02:00
|
|
|
const (
|
|
|
|
indexPage = "index.html"
|
|
|
|
)
|
|
|
|
|
2015-05-29 01:50:49 +02:00
|
|
|
// NewContext creates a Context object.
|
2016-03-22 02:27:14 +02:00
|
|
|
func NewContext(rq engine.Request, rs engine.Response, e *Echo) Context {
|
2015-12-04 03:23:53 +02:00
|
|
|
return &context{
|
2016-03-22 02:27:14 +02:00
|
|
|
request: rq,
|
|
|
|
response: rs,
|
2015-05-08 20:52:06 +02:00
|
|
|
echo: e,
|
2015-06-04 00:18:27 +02:00
|
|
|
pvalues: make([]string, *e.maxParam),
|
2015-05-08 20:52:06 +02:00
|
|
|
store: make(store),
|
2016-02-15 18:11:29 +02:00
|
|
|
handler: notFoundHandler,
|
2015-05-08 20:52:06 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-14 21:21:47 +02:00
|
|
|
func (c *context) NetContext() netContext.Context {
|
|
|
|
return c.netContext
|
|
|
|
}
|
|
|
|
|
2016-03-15 04:58:46 +02:00
|
|
|
func (c *context) SetNetContext(ctx netContext.Context) {
|
|
|
|
c.netContext = ctx
|
|
|
|
}
|
|
|
|
|
2015-12-04 03:23:53 +02:00
|
|
|
func (c *context) Deadline() (deadline time.Time, ok bool) {
|
2016-03-14 17:09:48 +02:00
|
|
|
return c.netContext.Deadline()
|
2015-12-04 03:23:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *context) Done() <-chan struct{} {
|
2016-03-14 17:09:48 +02:00
|
|
|
return c.netContext.Done()
|
2015-12-04 03:23:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *context) Err() error {
|
2016-03-14 17:09:48 +02:00
|
|
|
return c.netContext.Err()
|
2015-12-04 03:23:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *context) Value(key interface{}) interface{} {
|
2016-03-14 17:09:48 +02:00
|
|
|
return c.netContext.Value(key)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *context) Handle(ctx Context) error {
|
|
|
|
return c.handler.Handle(ctx)
|
2015-12-04 03:23:53 +02:00
|
|
|
}
|
|
|
|
|
2015-12-22 01:20:49 +02:00
|
|
|
func (c *context) Request() engine.Request {
|
2015-05-22 13:40:01 +02:00
|
|
|
return c.request
|
|
|
|
}
|
|
|
|
|
2015-12-22 01:20:49 +02:00
|
|
|
func (c *context) Response() engine.Response {
|
2015-05-22 13:40:01 +02:00
|
|
|
return c.response
|
|
|
|
}
|
|
|
|
|
2015-12-04 03:23:53 +02:00
|
|
|
func (c *context) Path() string {
|
2015-11-13 06:23:14 +02:00
|
|
|
return c.path
|
|
|
|
}
|
|
|
|
|
2015-12-04 03:23:53 +02:00
|
|
|
func (c *context) P(i int) (value string) {
|
2015-06-06 00:08:32 +02:00
|
|
|
l := len(c.pnames)
|
2015-06-21 03:56:51 +02:00
|
|
|
if i < l {
|
2015-04-26 07:32:20 +02:00
|
|
|
value = c.pvalues[i]
|
|
|
|
}
|
|
|
|
return
|
2015-03-01 19:45:13 +02:00
|
|
|
}
|
|
|
|
|
2015-12-04 03:23:53 +02:00
|
|
|
func (c *context) Param(name string) (value string) {
|
2015-04-26 18:48:49 +02:00
|
|
|
l := len(c.pnames)
|
2015-04-26 07:32:20 +02:00
|
|
|
for i, n := range c.pnames {
|
2015-06-21 03:56:51 +02:00
|
|
|
if n == name && i < l {
|
2015-04-26 07:32:20 +02:00
|
|
|
value = c.pvalues[i]
|
|
|
|
break
|
2015-04-06 05:08:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
2015-03-01 19:45:13 +02:00
|
|
|
}
|
|
|
|
|
2016-03-06 06:03:11 +02:00
|
|
|
func (c *context) ParamNames() []string {
|
|
|
|
return c.pnames
|
|
|
|
}
|
|
|
|
|
2016-03-21 22:10:20 +02:00
|
|
|
func (c *context) QueryParam(name string) string {
|
|
|
|
return c.request.URL().QueryParam(name)
|
2015-07-05 20:08:17 +02:00
|
|
|
}
|
|
|
|
|
2016-03-23 18:10:22 +02:00
|
|
|
func (c *context) QueryParams() map[string][]string {
|
|
|
|
return c.request.URL().QueryParams()
|
|
|
|
}
|
|
|
|
|
2016-03-21 22:10:20 +02:00
|
|
|
func (c *context) FormValue(name string) string {
|
2016-01-29 09:46:11 +02:00
|
|
|
return c.request.FormValue(name)
|
2015-07-05 20:08:17 +02:00
|
|
|
}
|
|
|
|
|
2016-03-23 18:10:22 +02:00
|
|
|
func (c *context) FormParams() map[string][]string {
|
|
|
|
return c.request.FormParams()
|
|
|
|
}
|
|
|
|
|
2016-03-21 22:10:20 +02:00
|
|
|
func (c *context) FormFile(name string) (*multipart.FileHeader, error) {
|
|
|
|
return c.request.FormFile(name)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *context) MultipartForm() (*multipart.Form, error) {
|
|
|
|
return c.request.MultipartForm()
|
|
|
|
}
|
|
|
|
|
2015-12-04 03:23:53 +02:00
|
|
|
func (c *context) Set(key string, val interface{}) {
|
2015-07-14 19:56:23 +02:00
|
|
|
if c.store == nil {
|
|
|
|
c.store = make(store)
|
|
|
|
}
|
2015-05-30 19:54:55 +02:00
|
|
|
c.store[key] = val
|
|
|
|
}
|
|
|
|
|
2016-03-15 04:58:46 +02:00
|
|
|
func (c *context) Get(key string) interface{} {
|
|
|
|
return c.store[key]
|
|
|
|
}
|
|
|
|
|
2015-12-04 03:23:53 +02:00
|
|
|
func (c *context) Bind(i interface{}) error {
|
2016-03-06 06:03:11 +02:00
|
|
|
return c.echo.binder.Bind(i, c)
|
2015-03-01 19:45:13 +02:00
|
|
|
}
|
|
|
|
|
2015-12-04 03:23:53 +02:00
|
|
|
func (c *context) Render(code int, name string, data interface{}) (err error) {
|
2015-04-11 06:48:26 +02:00
|
|
|
if c.echo.renderer == nil {
|
2016-02-15 18:11:29 +02:00
|
|
|
return ErrRendererNotRegistered
|
2015-04-11 06:48:26 +02:00
|
|
|
}
|
2015-10-06 15:48:33 +02:00
|
|
|
buf := new(bytes.Buffer)
|
2016-03-06 06:03:11 +02:00
|
|
|
if err = c.echo.renderer.Render(buf, name, data, c); err != nil {
|
2015-10-02 20:23:52 +02:00
|
|
|
return
|
|
|
|
}
|
2015-07-22 13:44:29 +02:00
|
|
|
c.response.Header().Set(ContentType, TextHTMLCharsetUTF8)
|
2015-05-22 13:40:01 +02:00
|
|
|
c.response.WriteHeader(code)
|
2016-03-13 01:06:52 +02:00
|
|
|
_, err = c.response.Write(buf.Bytes())
|
2015-10-02 20:23:52 +02:00
|
|
|
return
|
2015-03-30 08:35:08 +02:00
|
|
|
}
|
|
|
|
|
2015-12-04 03:23:53 +02:00
|
|
|
func (c *context) HTML(code int, html string) (err error) {
|
2015-07-22 13:44:29 +02:00
|
|
|
c.response.Header().Set(ContentType, TextHTMLCharsetUTF8)
|
2015-07-08 22:51:08 +02:00
|
|
|
c.response.WriteHeader(code)
|
2016-03-13 01:06:52 +02:00
|
|
|
_, err = c.response.Write([]byte(html))
|
2015-07-08 22:51:08 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-12-04 03:23:53 +02:00
|
|
|
func (c *context) String(code int, s string) (err error) {
|
2015-12-01 21:22:45 +02:00
|
|
|
c.response.Header().Set(ContentType, TextPlainCharsetUTF8)
|
2015-07-11 21:20:59 +02:00
|
|
|
c.response.WriteHeader(code)
|
2016-03-13 01:06:52 +02:00
|
|
|
_, err = c.response.Write([]byte(s))
|
2015-07-11 21:20:59 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-12-04 03:23:53 +02:00
|
|
|
func (c *context) JSON(code int, i interface{}) (err error) {
|
2015-11-08 01:39:09 +02:00
|
|
|
b, err := json.Marshal(i)
|
2016-02-11 02:51:43 +02:00
|
|
|
if c.echo.Debug() {
|
|
|
|
b, err = json.MarshalIndent(i, "", " ")
|
2015-11-01 20:48:55 +02:00
|
|
|
}
|
2015-10-02 20:23:52 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-02-11 02:51:43 +02:00
|
|
|
return c.JSONBlob(code, b)
|
2015-11-08 06:06:58 +02:00
|
|
|
}
|
|
|
|
|
2016-02-11 02:51:43 +02:00
|
|
|
func (c *context) JSONBlob(code int, b []byte) (err error) {
|
2015-07-22 13:44:29 +02:00
|
|
|
c.response.Header().Set(ContentType, ApplicationJSONCharsetUTF8)
|
2015-05-22 13:40:01 +02:00
|
|
|
c.response.WriteHeader(code)
|
2016-03-13 01:06:52 +02:00
|
|
|
_, err = c.response.Write(b)
|
2016-02-11 02:51:43 +02:00
|
|
|
return
|
2015-04-05 23:21:03 +02:00
|
|
|
}
|
|
|
|
|
2015-12-04 03:23:53 +02:00
|
|
|
func (c *context) JSONP(code int, callback string, i interface{}) (err error) {
|
2015-10-02 20:23:52 +02:00
|
|
|
b, err := json.Marshal(i)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-07-24 21:28:35 +02:00
|
|
|
c.response.Header().Set(ContentType, ApplicationJavaScriptCharsetUTF8)
|
|
|
|
c.response.WriteHeader(code)
|
2016-03-13 01:06:52 +02:00
|
|
|
if _, err = c.response.Write([]byte(callback + "(")); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if _, err = c.response.Write(b); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
_, err = c.response.Write([]byte(");"))
|
2015-07-24 21:28:35 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-12-04 03:23:53 +02:00
|
|
|
func (c *context) XML(code int, i interface{}) (err error) {
|
2015-10-02 20:23:52 +02:00
|
|
|
b, err := xml.Marshal(i)
|
2016-02-11 02:51:43 +02:00
|
|
|
if c.echo.Debug() {
|
|
|
|
b, err = xml.MarshalIndent(i, "", " ")
|
2015-10-02 20:23:52 +02:00
|
|
|
}
|
2015-11-08 01:39:09 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-02-11 02:51:43 +02:00
|
|
|
return c.XMLBlob(code, b)
|
2015-11-08 06:06:58 +02:00
|
|
|
}
|
|
|
|
|
2016-02-11 02:51:43 +02:00
|
|
|
func (c *context) XMLBlob(code int, b []byte) (err error) {
|
2015-11-08 01:39:09 +02:00
|
|
|
c.response.Header().Set(ContentType, ApplicationXMLCharsetUTF8)
|
|
|
|
c.response.WriteHeader(code)
|
2016-03-13 01:06:52 +02:00
|
|
|
if _, err = c.response.Write([]byte(xml.Header)); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
_, err = c.response.Write(b)
|
2016-02-11 02:51:43 +02:00
|
|
|
return
|
2015-11-08 01:39:09 +02:00
|
|
|
}
|
|
|
|
|
2016-03-12 15:14:15 +02:00
|
|
|
func (c *context) File(file string) error {
|
|
|
|
root, file := filepath.Split(file)
|
|
|
|
fs := http.Dir(root)
|
|
|
|
f, err := fs.Open(file)
|
|
|
|
if err != nil {
|
|
|
|
return ErrNotFound
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
fi, _ := f.Stat()
|
|
|
|
if fi.IsDir() {
|
|
|
|
file = path.Join(file, "index.html")
|
|
|
|
f, err = fs.Open(file)
|
|
|
|
if err != nil {
|
|
|
|
return ErrNotFound
|
|
|
|
}
|
|
|
|
fi, _ = f.Stat()
|
|
|
|
}
|
|
|
|
|
|
|
|
return ServeContent(c.Request(), c.Response(), f, fi)
|
|
|
|
}
|
|
|
|
|
2016-03-12 21:49:45 +02:00
|
|
|
func (c *context) Attachment(r io.Reader, name string) (err error) {
|
|
|
|
c.response.Header().Set(ContentType, detectContentType(name))
|
2016-03-12 20:18:40 +02:00
|
|
|
c.response.Header().Set(ContentDisposition, "attachment; filename="+name)
|
2016-02-15 18:11:29 +02:00
|
|
|
c.response.WriteHeader(http.StatusOK)
|
2016-03-12 21:49:45 +02:00
|
|
|
_, err = io.Copy(c.response, r)
|
2015-10-02 20:23:52 +02:00
|
|
|
return
|
2015-08-01 04:25:03 +02:00
|
|
|
}
|
|
|
|
|
2015-12-04 03:23:53 +02:00
|
|
|
func (c *context) NoContent(code int) error {
|
2015-05-22 13:40:01 +02:00
|
|
|
c.response.WriteHeader(code)
|
2015-04-19 01:47:48 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-12-04 03:23:53 +02:00
|
|
|
func (c *context) Redirect(code int, url string) error {
|
2015-07-22 18:44:52 +02:00
|
|
|
if code < http.StatusMultipleChoices || code > http.StatusTemporaryRedirect {
|
2016-02-15 18:11:29 +02:00
|
|
|
return ErrInvalidRedirectCode
|
2015-07-22 18:44:52 +02:00
|
|
|
}
|
2016-02-20 22:54:43 +02:00
|
|
|
c.response.Header().Set(Location, url)
|
|
|
|
c.response.WriteHeader(code)
|
2015-07-21 04:24:33 +02:00
|
|
|
return nil
|
2015-05-30 02:20:13 +02:00
|
|
|
}
|
|
|
|
|
2015-12-04 03:23:53 +02:00
|
|
|
func (c *context) Error(err error) {
|
2015-05-20 23:38:51 +02:00
|
|
|
c.echo.httpErrorHandler(err, c)
|
2015-04-20 01:00:23 +02:00
|
|
|
}
|
2015-03-09 08:58:10 +02:00
|
|
|
|
2016-02-19 00:04:28 +02:00
|
|
|
func (c *context) Echo() *Echo {
|
|
|
|
return c.echo
|
|
|
|
}
|
|
|
|
|
2016-03-06 19:52:32 +02:00
|
|
|
func (c *context) Logger() *log.Logger {
|
2015-12-04 18:13:26 +02:00
|
|
|
return c.echo.logger
|
|
|
|
}
|
|
|
|
|
2016-02-09 02:48:03 +02:00
|
|
|
func (c *context) Object() *context {
|
2015-12-04 18:13:26 +02:00
|
|
|
return c
|
2015-12-01 21:22:45 +02:00
|
|
|
}
|
|
|
|
|
2016-03-20 00:47:20 +02:00
|
|
|
// ServeContent sends a response from `io.Reader`. It automatically sets the `Content-Type`
|
|
|
|
// and `Last-Modified` headers.
|
2016-03-22 02:27:14 +02:00
|
|
|
func ServeContent(rq engine.Request, rs engine.Response, f http.File, fi os.FileInfo) error {
|
|
|
|
rs.Header().Set(ContentType, detectContentType(fi.Name()))
|
|
|
|
rs.Header().Set(LastModified, fi.ModTime().UTC().Format(http.TimeFormat))
|
|
|
|
rs.WriteHeader(http.StatusOK)
|
|
|
|
_, err := io.Copy(rs, f)
|
2016-03-12 15:14:15 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func detectContentType(name string) (t string) {
|
2016-02-15 18:11:29 +02:00
|
|
|
if t = mime.TypeByExtension(filepath.Ext(name)); t == "" {
|
|
|
|
t = OctetStream
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-03-22 02:27:14 +02:00
|
|
|
func (c *context) Reset(rq engine.Request, rs engine.Response) {
|
2016-03-16 17:24:25 +02:00
|
|
|
c.netContext = nil
|
2016-03-22 02:27:14 +02:00
|
|
|
c.request = rq
|
|
|
|
c.response = rs
|
2015-07-14 08:36:56 +02:00
|
|
|
c.query = nil
|
2015-07-14 19:56:23 +02:00
|
|
|
c.store = nil
|
2016-03-09 05:31:11 +02:00
|
|
|
c.handler = notFoundHandler
|
2015-03-06 21:12:33 +02:00
|
|
|
}
|