mirror of https://github.com/gogits/gogs.git
Unknown
11 years ago
20 changed files with 276 additions and 120 deletions
@ -0,0 +1,89 @@
|
||||
// Copyright 2014 The Gogs Authors. All rights reserved.
|
||||
// Use of this source code is governed by a MIT-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package apiv1 |
||||
|
||||
import ( |
||||
"net/http" |
||||
"reflect" |
||||
|
||||
"github.com/go-martini/martini" |
||||
|
||||
"github.com/gogits/gogs/modules/auth" |
||||
"github.com/gogits/gogs/modules/base" |
||||
"github.com/gogits/gogs/modules/log" |
||||
"github.com/gogits/gogs/modules/middleware/binding" |
||||
) |
||||
|
||||
type MarkdownForm struct { |
||||
Text string `form:"text" binding:"Required"` |
||||
Mode string `form:"mode"` |
||||
Context string `form:"context"` |
||||
} |
||||
|
||||
func (f *MarkdownForm) Name(field string) string { |
||||
names := map[string]string{ |
||||
"Text": "text", |
||||
} |
||||
return names[field] |
||||
} |
||||
|
||||
func (f *MarkdownForm) Validate(errs *binding.BindingErrors, req *http.Request, ctx martini.Context) { |
||||
data := ctx.Get(reflect.TypeOf(base.TmplData{})).Interface().(base.TmplData) |
||||
validateApiReq(errs, data, f) |
||||
} |
||||
|
||||
func validateApiReq(errs *binding.BindingErrors, data base.TmplData, f auth.Form) { |
||||
if errs.Count() == 0 { |
||||
return |
||||
} else if len(errs.Overall) > 0 { |
||||
for _, err := range errs.Overall { |
||||
log.Error("%s: %v", reflect.TypeOf(f), err) |
||||
} |
||||
return |
||||
} |
||||
|
||||
data["HasError"] = true |
||||
|
||||
typ := reflect.TypeOf(f) |
||||
val := reflect.ValueOf(f) |
||||
|
||||
if typ.Kind() == reflect.Ptr { |
||||
typ = typ.Elem() |
||||
val = val.Elem() |
||||
} |
||||
|
||||
for i := 0; i < typ.NumField(); i++ { |
||||
field := typ.Field(i) |
||||
|
||||
fieldName := field.Tag.Get("form") |
||||
// Allow ignored fields in the struct
|
||||
if fieldName == "-" { |
||||
continue |
||||
} |
||||
|
||||
if err, ok := errs.Fields[field.Name]; ok { |
||||
data["Err_"+field.Name] = true |
||||
switch err { |
||||
case binding.BindingRequireError: |
||||
data["ErrorMsg"] = f.Name(field.Name) + " cannot be empty" |
||||
case binding.BindingAlphaDashError: |
||||
data["ErrorMsg"] = f.Name(field.Name) + " must be valid alpha or numeric or dash(-_) characters" |
||||
case binding.BindingAlphaDashDotError: |
||||
data["ErrorMsg"] = f.Name(field.Name) + " must be valid alpha or numeric or dash(-_) or dot characters" |
||||
case binding.BindingMinSizeError: |
||||
data["ErrorMsg"] = f.Name(field.Name) + " must contain at least " + auth.GetMinMaxSize(field) + " characters" |
||||
case binding.BindingMaxSizeError: |
||||
data["ErrorMsg"] = f.Name(field.Name) + " must contain at most " + auth.GetMinMaxSize(field) + " characters" |
||||
case binding.BindingEmailError: |
||||
data["ErrorMsg"] = f.Name(field.Name) + " is not a valid e-mail address" |
||||
case binding.BindingUrlError: |
||||
data["ErrorMsg"] = f.Name(field.Name) + " is not a valid URL" |
||||
default: |
||||
data["ErrorMsg"] = "Unknown error: " + err |
||||
} |
||||
return |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue