2012-12-15 15:53:19 +00:00
|
|
|
|
package beego
|
|
|
|
|
|
|
|
|
|
import (
|
2013-04-03 15:37:59 +00:00
|
|
|
|
"fmt"
|
|
|
|
|
"html/template"
|
2013-07-25 14:25:12 +00:00
|
|
|
|
"net/url"
|
2013-09-12 07:24:08 +00:00
|
|
|
|
"os"
|
2013-07-25 14:25:12 +00:00
|
|
|
|
"reflect"
|
2013-04-03 15:37:59 +00:00
|
|
|
|
"regexp"
|
2013-07-25 14:25:12 +00:00
|
|
|
|
"strconv"
|
2012-12-15 15:53:19 +00:00
|
|
|
|
"strings"
|
|
|
|
|
"time"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func webTime(t time.Time) string {
|
|
|
|
|
ftime := t.Format(time.RFC1123)
|
|
|
|
|
if strings.HasSuffix(ftime, "UTC") {
|
|
|
|
|
ftime = ftime[0:len(ftime)-3] + "GMT"
|
|
|
|
|
}
|
|
|
|
|
return ftime
|
|
|
|
|
}
|
2013-04-03 15:37:59 +00:00
|
|
|
|
|
|
|
|
|
func Substr(s string, start, length int) string {
|
|
|
|
|
bt := []rune(s)
|
|
|
|
|
if start < 0 {
|
|
|
|
|
start = 0
|
|
|
|
|
}
|
|
|
|
|
var end int
|
|
|
|
|
if (start + length) > (len(bt) - 1) {
|
2013-06-24 09:28:15 +00:00
|
|
|
|
end = len(bt)
|
2013-04-03 15:37:59 +00:00
|
|
|
|
} else {
|
|
|
|
|
end = start + length
|
|
|
|
|
}
|
|
|
|
|
return string(bt[start:end])
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Html2str() returns escaping text convert from html
|
|
|
|
|
func Html2str(html string) string {
|
|
|
|
|
src := string(html)
|
|
|
|
|
|
|
|
|
|
//将HTML标签全转换成小写
|
|
|
|
|
re, _ := regexp.Compile("\\<[\\S\\s]+?\\>")
|
|
|
|
|
src = re.ReplaceAllStringFunc(src, strings.ToLower)
|
|
|
|
|
|
|
|
|
|
//去除STYLE
|
|
|
|
|
re, _ = regexp.Compile("\\<style[\\S\\s]+?\\</style\\>")
|
|
|
|
|
src = re.ReplaceAllString(src, "")
|
|
|
|
|
|
|
|
|
|
//去除SCRIPT
|
|
|
|
|
re, _ = regexp.Compile("\\<script[\\S\\s]+?\\</script\\>")
|
|
|
|
|
src = re.ReplaceAllString(src, "")
|
|
|
|
|
|
|
|
|
|
//去除所有尖括号内的HTML代码,并换成换行符
|
|
|
|
|
re, _ = regexp.Compile("\\<[\\S\\s]+?\\>")
|
|
|
|
|
src = re.ReplaceAllString(src, "\n")
|
|
|
|
|
|
|
|
|
|
//去除连续的换行符
|
|
|
|
|
re, _ = regexp.Compile("\\s{2,}")
|
|
|
|
|
src = re.ReplaceAllString(src, "\n")
|
|
|
|
|
|
|
|
|
|
return strings.TrimSpace(src)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// DateFormat takes a time and a layout string and returns a string with the formatted date. Used by the template parser as "dateformat"
|
|
|
|
|
func DateFormat(t time.Time, layout string) (datestring string) {
|
|
|
|
|
datestring = t.Format(layout)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-11 15:47:01 +00:00
|
|
|
|
var DatePatterns = []string{
|
|
|
|
|
// year
|
2013-09-12 07:24:08 +00:00
|
|
|
|
"Y", "2006", // A full numeric representation of a year, 4 digits Examples: 1999 or 2003
|
|
|
|
|
"y", "06", //A two digit representation of a year Examples: 99 or 03
|
2013-09-11 15:47:01 +00:00
|
|
|
|
|
|
|
|
|
// month
|
|
|
|
|
"m", "01", // Numeric representation of a month, with leading zeros 01 through 12
|
2013-09-12 07:24:08 +00:00
|
|
|
|
"n", "1", // Numeric representation of a month, without leading zeros 1 through 12
|
2013-09-11 15:47:01 +00:00
|
|
|
|
"M", "Jan", // A short textual representation of a month, three letters Jan through Dec
|
2013-09-12 07:24:08 +00:00
|
|
|
|
"F", "January", // A full textual representation of a month, such as January or March January through December
|
2013-09-11 15:47:01 +00:00
|
|
|
|
|
|
|
|
|
// day
|
|
|
|
|
"d", "02", // Day of the month, 2 digits with leading zeros 01 to 31
|
|
|
|
|
"j", "2", // Day of the month without leading zeros 1 to 31
|
|
|
|
|
|
|
|
|
|
// week
|
|
|
|
|
"D", "Mon", // A textual representation of a day, three letters Mon through Sun
|
2013-09-12 07:24:08 +00:00
|
|
|
|
"l", "Monday", // A full textual representation of the day of the week Sunday through Saturday
|
2013-09-11 15:47:01 +00:00
|
|
|
|
|
|
|
|
|
// time
|
2013-09-12 07:24:08 +00:00
|
|
|
|
"g", "3", // 12-hour format of an hour without leading zeros 1 through 12
|
|
|
|
|
"G", "15", // 24-hour format of an hour without leading zeros 0 through 23
|
|
|
|
|
"h", "03", // 12-hour format of an hour with leading zeros 01 through 12
|
|
|
|
|
"H", "15", // 24-hour format of an hour with leading zeros 00 through 23
|
2013-09-11 15:47:01 +00:00
|
|
|
|
|
|
|
|
|
"a", "pm", // Lowercase Ante meridiem and Post meridiem am or pm
|
|
|
|
|
"A", "PM", // Uppercase Ante meridiem and Post meridiem AM or PM
|
|
|
|
|
|
2013-09-12 07:24:08 +00:00
|
|
|
|
"i", "04", // Minutes with leading zeros 00 to 59
|
|
|
|
|
"s", "05", // Seconds, with leading zeros 00 through 59
|
2013-09-11 15:47:01 +00:00
|
|
|
|
|
|
|
|
|
// time zone
|
|
|
|
|
"T", "MST",
|
|
|
|
|
"P", "-07:00",
|
|
|
|
|
"O", "-0700",
|
|
|
|
|
|
|
|
|
|
// RFC 2822
|
|
|
|
|
"r", time.RFC1123Z,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Parse Date use PHP time format
|
|
|
|
|
func DateParse(dateString, format string) (time.Time, error) {
|
|
|
|
|
replacer := strings.NewReplacer(DatePatterns...)
|
2013-04-03 15:37:59 +00:00
|
|
|
|
format = replacer.Replace(format)
|
2013-09-11 15:47:01 +00:00
|
|
|
|
return time.ParseInLocation(format, dateString, time.Local)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Date takes a PHP like date func to Go's time format
|
|
|
|
|
func Date(t time.Time, format string) string {
|
|
|
|
|
replacer := strings.NewReplacer(DatePatterns...)
|
|
|
|
|
format = replacer.Replace(format)
|
|
|
|
|
return t.Format(format)
|
2013-04-03 15:37:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Compare is a quick and dirty comparison function. It will convert whatever you give it to strings and see if the two values are equal.
|
|
|
|
|
// Whitespace is trimmed. Used by the template parser as "eq"
|
|
|
|
|
func Compare(a, b interface{}) (equal bool) {
|
|
|
|
|
equal = false
|
|
|
|
|
if strings.TrimSpace(fmt.Sprintf("%v", a)) == strings.TrimSpace(fmt.Sprintf("%v", b)) {
|
|
|
|
|
equal = true
|
|
|
|
|
}
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func Str2html(raw string) template.HTML {
|
|
|
|
|
return template.HTML(raw)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func Htmlquote(src string) string {
|
|
|
|
|
//HTML编码为实体符号
|
|
|
|
|
/*
|
|
|
|
|
Encodes `text` for raw use in HTML.
|
|
|
|
|
>>> htmlquote("<'&\\">")
|
|
|
|
|
'<'&">'
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
text := string(src)
|
|
|
|
|
|
|
|
|
|
text = strings.Replace(text, "&", "&", -1) // Must be done first!
|
|
|
|
|
text = strings.Replace(text, "<", "<", -1)
|
|
|
|
|
text = strings.Replace(text, ">", ">", -1)
|
|
|
|
|
text = strings.Replace(text, "'", "'", -1)
|
|
|
|
|
text = strings.Replace(text, "\"", """, -1)
|
|
|
|
|
text = strings.Replace(text, "“", "“", -1)
|
|
|
|
|
text = strings.Replace(text, "”", "”", -1)
|
|
|
|
|
text = strings.Replace(text, " ", " ", -1)
|
|
|
|
|
|
|
|
|
|
return strings.TrimSpace(text)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func Htmlunquote(src string) string {
|
|
|
|
|
//实体符号解释为HTML
|
|
|
|
|
/*
|
|
|
|
|
Decodes `text` that's HTML quoted.
|
|
|
|
|
>>> htmlunquote('<'&">')
|
|
|
|
|
'<\\'&">'
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// strings.Replace(s, old, new, n)
|
|
|
|
|
// 在s字符串中,把old字符串替换为new字符串,n表示替换的次数,小于0表示全部替换
|
|
|
|
|
|
|
|
|
|
text := string(src)
|
|
|
|
|
text = strings.Replace(text, " ", " ", -1)
|
|
|
|
|
text = strings.Replace(text, "”", "”", -1)
|
|
|
|
|
text = strings.Replace(text, "“", "“", -1)
|
|
|
|
|
text = strings.Replace(text, """, "\"", -1)
|
|
|
|
|
text = strings.Replace(text, "'", "'", -1)
|
|
|
|
|
text = strings.Replace(text, ">", ">", -1)
|
|
|
|
|
text = strings.Replace(text, "<", "<", -1)
|
|
|
|
|
text = strings.Replace(text, "&", "&", -1) // Must be done last!
|
|
|
|
|
|
|
|
|
|
return strings.TrimSpace(text)
|
|
|
|
|
}
|
support user define function
+//Add("/user",&UserController{})
+//Add("/api/list",&RestController{},"*:ListFood")
+//Add("/api/create",&RestController{},"post:CreateFood")
+//Add("/api/update",&RestController{},"put:UpdateFood")
+//Add("/api/delete",&RestController{},"delete:DeleteFood")
+//Add("/api",&RestController{},"get,post:ApiFunc")
+//Add("/simple",&SimpleController{},"get:GetFunc;post:PostFunc")
2013-07-25 07:17:09 +00:00
|
|
|
|
|
|
|
|
|
func inSlice(v string, sl []string) bool {
|
|
|
|
|
for _, vv := range sl {
|
|
|
|
|
if vv == v {
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
2013-07-25 14:25:12 +00:00
|
|
|
|
|
|
|
|
|
// parse form values to struct via tag
|
|
|
|
|
func ParseForm(form url.Values, obj interface{}) error {
|
|
|
|
|
objT := reflect.TypeOf(obj)
|
|
|
|
|
objV := reflect.ValueOf(obj)
|
2013-08-10 08:33:46 +00:00
|
|
|
|
if !isStructPtr(objT) {
|
2013-07-25 14:25:12 +00:00
|
|
|
|
return fmt.Errorf("%v must be a struct pointer", obj)
|
|
|
|
|
}
|
|
|
|
|
objT = objT.Elem()
|
|
|
|
|
objV = objV.Elem()
|
|
|
|
|
|
|
|
|
|
for i := 0; i < objT.NumField(); i++ {
|
|
|
|
|
fieldV := objV.Field(i)
|
|
|
|
|
if !fieldV.CanSet() {
|
|
|
|
|
continue
|
|
|
|
|
}
|
2013-08-10 03:42:25 +00:00
|
|
|
|
|
2013-08-10 08:33:46 +00:00
|
|
|
|
fieldT := objT.Field(i)
|
2013-08-10 03:42:25 +00:00
|
|
|
|
tags := strings.Split(fieldT.Tag.Get("form"), ",")
|
|
|
|
|
var tag string
|
|
|
|
|
if len(tags) == 0 || len(tags[0]) == 0 {
|
2013-07-25 14:25:12 +00:00
|
|
|
|
tag = fieldT.Name
|
2013-08-11 14:20:05 +00:00
|
|
|
|
} else if tags[0] == "-" {
|
|
|
|
|
continue
|
2013-08-10 03:42:25 +00:00
|
|
|
|
} else {
|
|
|
|
|
tag = tags[0]
|
2013-07-25 14:25:12 +00:00
|
|
|
|
}
|
2013-08-10 03:42:25 +00:00
|
|
|
|
|
2013-07-25 14:25:12 +00:00
|
|
|
|
value := form.Get(tag)
|
|
|
|
|
if len(value) == 0 {
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch fieldT.Type.Kind() {
|
|
|
|
|
case reflect.Bool:
|
|
|
|
|
b, err := strconv.ParseBool(value)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
fieldV.SetBool(b)
|
2013-07-28 05:51:01 +00:00
|
|
|
|
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
|
2013-07-25 14:25:12 +00:00
|
|
|
|
x, err := strconv.ParseInt(value, 10, 64)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
fieldV.SetInt(x)
|
2013-07-28 05:51:01 +00:00
|
|
|
|
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
|
2013-07-25 14:25:12 +00:00
|
|
|
|
x, err := strconv.ParseUint(value, 10, 64)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
fieldV.SetUint(x)
|
2013-07-28 05:51:01 +00:00
|
|
|
|
case reflect.Float32, reflect.Float64:
|
2013-07-25 14:25:12 +00:00
|
|
|
|
x, err := strconv.ParseFloat(value, 64)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
fieldV.SetFloat(x)
|
|
|
|
|
case reflect.Interface:
|
|
|
|
|
fieldV.Set(reflect.ValueOf(value))
|
|
|
|
|
case reflect.String:
|
|
|
|
|
fieldV.SetString(value)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return nil
|
|
|
|
|
}
|
2013-08-06 08:37:41 +00:00
|
|
|
|
|
2013-08-10 08:33:46 +00:00
|
|
|
|
// form types for RenderForm function
|
|
|
|
|
var FormType = map[string]bool{
|
|
|
|
|
"text": true,
|
|
|
|
|
"textarea": true,
|
|
|
|
|
"hidden": true,
|
|
|
|
|
"password": true,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var unKind = map[reflect.Kind]bool{
|
|
|
|
|
reflect.Uintptr: true,
|
|
|
|
|
reflect.Complex64: true,
|
|
|
|
|
reflect.Complex128: true,
|
|
|
|
|
reflect.Array: true,
|
|
|
|
|
reflect.Chan: true,
|
|
|
|
|
reflect.Func: true,
|
|
|
|
|
reflect.Map: true,
|
|
|
|
|
reflect.Ptr: true,
|
|
|
|
|
reflect.Slice: true,
|
|
|
|
|
reflect.Struct: true,
|
|
|
|
|
reflect.UnsafePointer: true,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// obj must be a struct pointer
|
|
|
|
|
func RenderForm(obj interface{}) template.HTML {
|
|
|
|
|
objT := reflect.TypeOf(obj)
|
|
|
|
|
objV := reflect.ValueOf(obj)
|
|
|
|
|
if !isStructPtr(objT) {
|
|
|
|
|
return template.HTML("")
|
|
|
|
|
}
|
|
|
|
|
objT = objT.Elem()
|
|
|
|
|
objV = objV.Elem()
|
|
|
|
|
|
|
|
|
|
var raw []string
|
|
|
|
|
for i := 0; i < objT.NumField(); i++ {
|
|
|
|
|
fieldV := objV.Field(i)
|
|
|
|
|
if !fieldV.CanSet() || unKind[fieldV.Kind()] {
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fieldT := objT.Field(i)
|
|
|
|
|
tags := strings.Split(fieldT.Tag.Get("form"), ",")
|
2013-08-11 22:46:40 +00:00
|
|
|
|
label := fieldT.Name + ": "
|
2013-08-10 08:33:46 +00:00
|
|
|
|
name := fieldT.Name
|
2013-08-11 14:42:35 +00:00
|
|
|
|
fType := "text"
|
|
|
|
|
|
2013-08-11 22:46:40 +00:00
|
|
|
|
switch len(tags) {
|
|
|
|
|
case 1:
|
|
|
|
|
if tags[0] == "-" {
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
if len(tags[0]) > 0 {
|
|
|
|
|
name = tags[0]
|
|
|
|
|
}
|
|
|
|
|
case 2:
|
|
|
|
|
if len(tags[0]) > 0 {
|
|
|
|
|
name = tags[0]
|
|
|
|
|
}
|
|
|
|
|
if len(tags[1]) > 0 {
|
|
|
|
|
fType = tags[1]
|
|
|
|
|
}
|
|
|
|
|
case 3:
|
2013-08-10 08:33:46 +00:00
|
|
|
|
if len(tags[0]) > 0 {
|
|
|
|
|
name = tags[0]
|
|
|
|
|
}
|
2013-08-11 14:42:35 +00:00
|
|
|
|
if len(tags[1]) > 0 {
|
|
|
|
|
fType = tags[1]
|
|
|
|
|
}
|
2013-08-11 22:46:40 +00:00
|
|
|
|
if len(tags[2]) > 0 {
|
|
|
|
|
label = tags[2]
|
|
|
|
|
}
|
2013-08-10 08:33:46 +00:00
|
|
|
|
}
|
2013-08-11 22:46:40 +00:00
|
|
|
|
|
|
|
|
|
raw = append(raw, fmt.Sprintf(`%v<input name="%v" type="%v" value="%v">`,
|
|
|
|
|
label, name, fType, fieldV.Interface()))
|
2013-08-10 08:33:46 +00:00
|
|
|
|
}
|
|
|
|
|
return template.HTML(strings.Join(raw, "</br>"))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func isStructPtr(t reflect.Type) bool {
|
|
|
|
|
return t.Kind() == reflect.Ptr && t.Elem().Kind() == reflect.Struct
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-06 08:37:41 +00:00
|
|
|
|
func stringsToJson(str string) string {
|
|
|
|
|
rs := []rune(str)
|
|
|
|
|
jsons := ""
|
|
|
|
|
for _, r := range rs {
|
|
|
|
|
rint := int(r)
|
|
|
|
|
if rint < 128 {
|
|
|
|
|
jsons += string(r)
|
|
|
|
|
} else {
|
|
|
|
|
jsons += "\\u" + strconv.FormatInt(int64(rint), 16) // json
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return jsons
|
|
|
|
|
}
|
2013-09-12 07:24:08 +00:00
|
|
|
|
|
|
|
|
|
func FileExists(path string) (bool, error) {
|
|
|
|
|
_, err := os.Stat(path)
|
|
|
|
|
if err == nil {
|
|
|
|
|
return true, nil
|
|
|
|
|
}
|
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
|
return false, nil
|
|
|
|
|
}
|
|
|
|
|
return false, err
|
|
|
|
|
}
|