2013-08-03 09:55:44 +00:00
|
|
|
package beego
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/url"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
2013-12-20 13:16:26 +00:00
|
|
|
// FlashData is a tools to maintain data when using across request.
|
2013-08-03 09:55:44 +00:00
|
|
|
type FlashData struct {
|
|
|
|
Data map[string]string
|
|
|
|
}
|
|
|
|
|
2013-12-20 13:16:26 +00:00
|
|
|
// NewFlash return a new empty FlashData struct.
|
2013-08-03 10:18:09 +00:00
|
|
|
func NewFlash() *FlashData {
|
2013-08-03 10:17:00 +00:00
|
|
|
return &FlashData{
|
2013-08-03 10:18:09 +00:00
|
|
|
Data: make(map[string]string),
|
2013-08-03 10:17:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-20 13:16:26 +00:00
|
|
|
// Notice writes notice message to flash.
|
2013-08-03 09:55:44 +00:00
|
|
|
func (fd *FlashData) Notice(msg string, args ...interface{}) {
|
|
|
|
if len(args) == 0 {
|
|
|
|
fd.Data["notice"] = msg
|
|
|
|
} else {
|
|
|
|
fd.Data["notice"] = fmt.Sprintf(msg, args...)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-20 13:16:26 +00:00
|
|
|
// Warning writes warning message to flash.
|
2013-08-03 09:55:44 +00:00
|
|
|
func (fd *FlashData) Warning(msg string, args ...interface{}) {
|
|
|
|
if len(args) == 0 {
|
|
|
|
fd.Data["warning"] = msg
|
|
|
|
} else {
|
|
|
|
fd.Data["warning"] = fmt.Sprintf(msg, args...)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-20 13:16:26 +00:00
|
|
|
// Error writes error message to flash.
|
2013-08-03 09:55:44 +00:00
|
|
|
func (fd *FlashData) Error(msg string, args ...interface{}) {
|
|
|
|
if len(args) == 0 {
|
|
|
|
fd.Data["error"] = msg
|
|
|
|
} else {
|
|
|
|
fd.Data["error"] = fmt.Sprintf(msg, args...)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-20 13:16:26 +00:00
|
|
|
// Store does the saving operation of flash data.
|
|
|
|
// the data are encoded and saved in cookie.
|
2013-08-03 09:55:44 +00:00
|
|
|
func (fd *FlashData) Store(c *Controller) {
|
|
|
|
c.Data["flash"] = fd.Data
|
|
|
|
var flashValue string
|
|
|
|
for key, value := range fd.Data {
|
2014-03-14 05:30:12 +00:00
|
|
|
flashValue += "\x00" + key + "\x23" + FlashSeperator + "\x23" + value + "\x00"
|
2013-08-03 09:55:44 +00:00
|
|
|
}
|
2014-03-14 05:30:12 +00:00
|
|
|
c.Ctx.SetCookie(FlashName, url.QueryEscape(flashValue), 0, "/")
|
2013-08-03 09:55:44 +00:00
|
|
|
}
|
|
|
|
|
2013-12-20 13:16:26 +00:00
|
|
|
// ReadFromRequest parsed flash data from encoded values in cookie.
|
2013-08-03 09:55:44 +00:00
|
|
|
func ReadFromRequest(c *Controller) *FlashData {
|
2014-03-14 05:30:12 +00:00
|
|
|
flash := NewFlash()
|
|
|
|
if cookie, err := c.Ctx.Request.Cookie(FlashName); err == nil {
|
2013-08-20 04:04:50 +00:00
|
|
|
v, _ := url.QueryUnescape(cookie.Value)
|
|
|
|
vals := strings.Split(v, "\x00")
|
2013-08-03 09:55:44 +00:00
|
|
|
for _, v := range vals {
|
|
|
|
if len(v) > 0 {
|
2014-04-10 10:14:18 +00:00
|
|
|
kv := strings.Split(v, "\x23"+FlashSeperator+"\x23")
|
2013-08-03 09:55:44 +00:00
|
|
|
if len(kv) == 2 {
|
|
|
|
flash.Data[kv[0]] = kv[1]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//read one time then delete it
|
2014-03-14 05:30:12 +00:00
|
|
|
c.Ctx.SetCookie(FlashName, "", -1, "/")
|
2013-08-03 09:55:44 +00:00
|
|
|
}
|
|
|
|
c.Data["flash"] = flash.Data
|
|
|
|
return flash
|
|
|
|
}
|