2012-12-25 07:36:19 +00:00
|
|
|
package beego
|
|
|
|
|
|
|
|
import (
|
2013-07-08 07:13:51 +00:00
|
|
|
"bytes"
|
2012-12-25 07:36:19 +00:00
|
|
|
"fmt"
|
|
|
|
"mime"
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Context struct {
|
|
|
|
ResponseWriter http.ResponseWriter
|
|
|
|
Request *http.Request
|
2013-07-08 15:12:31 +00:00
|
|
|
RequestBody []byte
|
2012-12-25 07:36:19 +00:00
|
|
|
Params map[string]string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ctx *Context) WriteString(content string) {
|
|
|
|
ctx.ResponseWriter.Write([]byte(content))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ctx *Context) Abort(status int, body string) {
|
|
|
|
ctx.ResponseWriter.WriteHeader(status)
|
|
|
|
ctx.ResponseWriter.Write([]byte(body))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ctx *Context) Redirect(status int, url_ string) {
|
|
|
|
ctx.ResponseWriter.Header().Set("Location", url_)
|
|
|
|
ctx.ResponseWriter.WriteHeader(status)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ctx *Context) NotModified() {
|
|
|
|
ctx.ResponseWriter.WriteHeader(304)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ctx *Context) NotFound(message string) {
|
|
|
|
ctx.ResponseWriter.WriteHeader(404)
|
|
|
|
ctx.ResponseWriter.Write([]byte(message))
|
|
|
|
}
|
|
|
|
|
2013-07-08 07:13:51 +00:00
|
|
|
//Sets the content type by extension, as defined in the mime package.
|
2012-12-25 07:36:19 +00:00
|
|
|
//For example, ctx.ContentType("json") sets the content-type to "application/json"
|
|
|
|
func (ctx *Context) ContentType(ext string) {
|
|
|
|
if !strings.HasPrefix(ext, ".") {
|
|
|
|
ext = "." + ext
|
|
|
|
}
|
|
|
|
ctype := mime.TypeByExtension(ext)
|
|
|
|
if ctype != "" {
|
|
|
|
ctx.ResponseWriter.Header().Set("Content-Type", ctype)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ctx *Context) SetHeader(hdr string, val string, unique bool) {
|
|
|
|
if unique {
|
|
|
|
ctx.ResponseWriter.Header().Set(hdr, val)
|
|
|
|
} else {
|
|
|
|
ctx.ResponseWriter.Header().Add(hdr, val)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//Sets a cookie -- duration is the amount of time in seconds. 0 = forever
|
2013-07-08 07:13:51 +00:00
|
|
|
|
|
|
|
//params:
|
|
|
|
//string name
|
|
|
|
//string value
|
|
|
|
//int64 expire = 0
|
|
|
|
//string $path
|
|
|
|
//string $domain
|
|
|
|
//bool $secure = false
|
|
|
|
//bool $httponly = false
|
|
|
|
func (ctx *Context) SetCookie(name string, value string, others ...interface{}) {
|
|
|
|
var b bytes.Buffer
|
|
|
|
fmt.Fprintf(&b, "%s=%s", sanitizeName(name), sanitizeValue(value))
|
|
|
|
if len(others) > 0 {
|
2013-07-11 02:57:34 +00:00
|
|
|
switch others[0].(type) {
|
|
|
|
case int:
|
2013-08-20 04:04:50 +00:00
|
|
|
if others[0].(int) > 0 {
|
|
|
|
fmt.Fprintf(&b, "; Max-Age=%d", others[0].(int))
|
|
|
|
} else if others[0].(int) < 0 {
|
|
|
|
fmt.Fprintf(&b, "; Max-Age=0")
|
|
|
|
}
|
2013-07-11 02:57:34 +00:00
|
|
|
case int64:
|
2013-08-20 04:04:50 +00:00
|
|
|
if others[0].(int64) > 0 {
|
|
|
|
fmt.Fprintf(&b, "; Max-Age=%d", others[0].(int64))
|
|
|
|
} else if others[0].(int64) < 0 {
|
|
|
|
fmt.Fprintf(&b, "; Max-Age=0")
|
|
|
|
}
|
2013-07-11 02:57:34 +00:00
|
|
|
case int32:
|
2013-08-20 04:04:50 +00:00
|
|
|
if others[0].(int32) > 0 {
|
|
|
|
fmt.Fprintf(&b, "; Max-Age=%d", others[0].(int32))
|
|
|
|
} else if others[0].(int32) < 0 {
|
|
|
|
fmt.Fprintf(&b, "; Max-Age=0")
|
|
|
|
}
|
2013-07-11 02:57:34 +00:00
|
|
|
}
|
2013-07-08 07:13:51 +00:00
|
|
|
}
|
|
|
|
if len(others) > 1 {
|
|
|
|
fmt.Fprintf(&b, "; Path=%s", sanitizeValue(others[1].(string)))
|
|
|
|
}
|
|
|
|
if len(others) > 2 {
|
|
|
|
fmt.Fprintf(&b, "; Domain=%s", sanitizeValue(others[2].(string)))
|
2012-12-25 07:36:19 +00:00
|
|
|
}
|
2013-07-08 07:13:51 +00:00
|
|
|
if len(others) > 3 {
|
|
|
|
fmt.Fprintf(&b, "; Secure")
|
|
|
|
}
|
|
|
|
if len(others) > 4 {
|
|
|
|
fmt.Fprintf(&b, "; HttpOnly")
|
|
|
|
}
|
2013-07-23 13:54:36 +00:00
|
|
|
ctx.SetHeader("Set-Cookie", b.String(), false)
|
2013-07-08 07:13:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var cookieNameSanitizer = strings.NewReplacer("\n", "-", "\r", "-")
|
|
|
|
|
|
|
|
func sanitizeName(n string) string {
|
|
|
|
return cookieNameSanitizer.Replace(n)
|
|
|
|
}
|
|
|
|
|
|
|
|
var cookieValueSanitizer = strings.NewReplacer("\n", " ", "\r", " ", ";", " ")
|
|
|
|
|
|
|
|
func sanitizeValue(v string) string {
|
|
|
|
return cookieValueSanitizer.Replace(v)
|
2012-12-25 07:36:19 +00:00
|
|
|
}
|
2013-07-08 08:17:08 +00:00
|
|
|
|
|
|
|
func (ctx *Context) GetCookie(key string) string {
|
|
|
|
keycookie, err := ctx.Request.Cookie(key)
|
|
|
|
if err != nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return keycookie.Value
|
|
|
|
}
|