215 lines
		
	
	
		
			5.8 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			215 lines
		
	
	
		
			5.8 KiB
		
	
	
	
		
			Go
		
	
	
	
| // 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 auth
 | |
| 
 | |
| import (
 | |
| 	"net/http"
 | |
| 	"reflect"
 | |
| 	"strings"
 | |
| 
 | |
| 	"github.com/go-martini/martini"
 | |
| 
 | |
| 	"github.com/gogits/gogs/modules/base"
 | |
| 	"github.com/gogits/gogs/modules/log"
 | |
| )
 | |
| 
 | |
| // Web form interface.
 | |
| type Form interface {
 | |
| 	Name(field string) string
 | |
| }
 | |
| 
 | |
| type RegisterForm struct {
 | |
| 	UserName     string `form:"username" binding:"Required;AlphaDash;MaxSize(30)"`
 | |
| 	Email        string `form:"email" binding:"Required;Email;MaxSize(50)"`
 | |
| 	Password     string `form:"passwd" binding:"Required;MinSize(6);MaxSize(30)"`
 | |
| 	RetypePasswd string `form:"retypepasswd"`
 | |
| }
 | |
| 
 | |
| func (f *RegisterForm) Name(field string) string {
 | |
| 	names := map[string]string{
 | |
| 		"UserName":     "Username",
 | |
| 		"Email":        "E-mail address",
 | |
| 		"Password":     "Password",
 | |
| 		"RetypePasswd": "Re-type password",
 | |
| 	}
 | |
| 	return names[field]
 | |
| }
 | |
| 
 | |
| func (f *RegisterForm) Validate(errors *base.BindingErrors, req *http.Request, context martini.Context) {
 | |
| 	if req.Method == "GET" || errors.Count() == 0 {
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	data := context.Get(reflect.TypeOf(base.TmplData{})).Interface().(base.TmplData)
 | |
| 	data["HasError"] = true
 | |
| 	AssignForm(f, data)
 | |
| 
 | |
| 	if len(errors.Overall) > 0 {
 | |
| 		for _, err := range errors.Overall {
 | |
| 			log.Error("RegisterForm.Validate: %v", err)
 | |
| 		}
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	validate(errors, data, f)
 | |
| }
 | |
| 
 | |
| type LogInForm struct {
 | |
| 	UserName string `form:"username" binding:"Required;AlphaDash;MaxSize(30)"`
 | |
| 	Password string `form:"passwd" binding:"Required;MinSize(6);MaxSize(30)"`
 | |
| 	Remember string `form:"remember"`
 | |
| }
 | |
| 
 | |
| func (f *LogInForm) Name(field string) string {
 | |
| 	names := map[string]string{
 | |
| 		"UserName": "Username",
 | |
| 		"Password": "Password",
 | |
| 	}
 | |
| 	return names[field]
 | |
| }
 | |
| 
 | |
| func (f *LogInForm) Validate(errors *base.BindingErrors, req *http.Request, context martini.Context) {
 | |
| 	if req.Method == "GET" || errors.Count() == 0 {
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	data := context.Get(reflect.TypeOf(base.TmplData{})).Interface().(base.TmplData)
 | |
| 	data["HasError"] = true
 | |
| 	AssignForm(f, data)
 | |
| 
 | |
| 	if len(errors.Overall) > 0 {
 | |
| 		for _, err := range errors.Overall {
 | |
| 			log.Error("LogInForm.Validate: %v", err)
 | |
| 		}
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	validate(errors, data, f)
 | |
| }
 | |
| 
 | |
| func getMinMaxSize(field reflect.StructField) string {
 | |
| 	for _, rule := range strings.Split(field.Tag.Get("binding"), ";") {
 | |
| 		if strings.HasPrefix(rule, "MinSize(") || strings.HasPrefix(rule, "MaxSize(") {
 | |
| 			return rule[8 : len(rule)-1]
 | |
| 		}
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func validate(errors *base.BindingErrors, data base.TmplData, form Form) {
 | |
| 	typ := reflect.TypeOf(form)
 | |
| 	val := reflect.ValueOf(form)
 | |
| 
 | |
| 	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 := errors.Fields[field.Name]; ok {
 | |
| 			data["Err_"+field.Name] = true
 | |
| 			switch err {
 | |
| 			case base.BindingRequireError:
 | |
| 				data["ErrorMsg"] = form.Name(field.Name) + " cannot be empty"
 | |
| 			case base.BindingAlphaDashError:
 | |
| 				data["ErrorMsg"] = form.Name(field.Name) + " must be valid alpha or numeric or dash(-_) characters"
 | |
| 			case base.BindingMinSizeError:
 | |
| 				data["ErrorMsg"] = form.Name(field.Name) + " must contain at least " + getMinMaxSize(field) + " characters"
 | |
| 			case base.BindingMaxSizeError:
 | |
| 				data["ErrorMsg"] = form.Name(field.Name) + " must contain at most " + getMinMaxSize(field) + " characters"
 | |
| 			case base.BindingEmailError:
 | |
| 				data["ErrorMsg"] = form.Name(field.Name) + " is not a valid e-mail address"
 | |
| 			case base.BindingUrlError:
 | |
| 				data["ErrorMsg"] = form.Name(field.Name) + " is not a valid URL"
 | |
| 			default:
 | |
| 				data["ErrorMsg"] = "Unknown error: " + err
 | |
| 			}
 | |
| 			return
 | |
| 		}
 | |
| 	}
 | |
| }
 | |
| 
 | |
| // AssignForm assign form values back to the template data.
 | |
| func AssignForm(form interface{}, data base.TmplData) {
 | |
| 	typ := reflect.TypeOf(form)
 | |
| 	val := reflect.ValueOf(form)
 | |
| 
 | |
| 	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
 | |
| 		}
 | |
| 
 | |
| 		data[fieldName] = val.Field(i).Interface()
 | |
| 	}
 | |
| }
 | |
| 
 | |
| type InstallForm struct {
 | |
| 	Database        string `form:"database" binding:"Required"`
 | |
| 	Host            string `form:"host"`
 | |
| 	User            string `form:"user"`
 | |
| 	Passwd          string `form:"passwd"`
 | |
| 	DatabaseName    string `form:"database_name"`
 | |
| 	SslMode         string `form:"ssl_mode"`
 | |
| 	DatabasePath    string `form:"database_path"`
 | |
| 	RepoRootPath    string `form:"repo_path"`
 | |
| 	RunUser         string `form:"run_user"`
 | |
| 	Domain          string `form:"domain"`
 | |
| 	AppUrl          string `form:"app_url"`
 | |
| 	AdminName       string `form:"admin_name" binding:"Required"`
 | |
| 	AdminPasswd     string `form:"admin_pwd" binding:"Required;MinSize(6);MaxSize(30)"`
 | |
| 	AdminEmail      string `form:"admin_email" binding:"Required;Email;MaxSize(50)"`
 | |
| 	SmtpHost        string `form:"smtp_host"`
 | |
| 	SmtpEmail       string `form:"mailer_user"`
 | |
| 	SmtpPasswd      string `form:"mailer_pwd"`
 | |
| 	RegisterConfirm string `form:"register_confirm"`
 | |
| 	MailNotify      string `form:"mail_notify"`
 | |
| }
 | |
| 
 | |
| func (f *InstallForm) Name(field string) string {
 | |
| 	names := map[string]string{
 | |
| 		"Database":    "Database name",
 | |
| 		"AdminName":   "Admin user name",
 | |
| 		"AdminPasswd": "Admin password",
 | |
| 		"AdminEmail":  "Admin e-maill address",
 | |
| 	}
 | |
| 	return names[field]
 | |
| }
 | |
| 
 | |
| func (f *InstallForm) Validate(errors *base.BindingErrors, req *http.Request, context martini.Context) {
 | |
| 	if req.Method == "GET" || errors.Count() == 0 {
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	data := context.Get(reflect.TypeOf(base.TmplData{})).Interface().(base.TmplData)
 | |
| 	data["HasError"] = true
 | |
| 	AssignForm(f, data)
 | |
| 
 | |
| 	if len(errors.Overall) > 0 {
 | |
| 		for _, err := range errors.Overall {
 | |
| 			log.Error("InstallForm.Validate: %v", err)
 | |
| 		}
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	validate(errors, data, f)
 | |
| }
 |