2014-07-26 08:24:27 +04:00
// 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 (
2014-11-21 18:58:08 +03:00
"mime/multipart"
2015-10-16 04:28:12 +03:00
"github.com/go-macaron/binding"
"gopkg.in/macaron.v1"
2014-07-26 08:24:27 +04:00
)
type InstallForm struct {
2015-07-09 08:17:48 +03:00
DbType string ` binding:"Required" `
DbHost string
DbUser string
DbPasswd string
DbName string
2015-07-20 07:34:53 +03:00
SSLMode string
2015-07-09 08:17:48 +03:00
DbPath string
AppName string ` binding:"Required" locale:"install.app_name" `
RepoRootPath string ` binding:"Required" `
RunUser string ` binding:"Required" `
Domain string ` binding:"Required" `
2015-08-19 15:36:19 +03:00
SSHPort int
2015-07-20 07:34:53 +03:00
HTTPPort string ` binding:"Required" `
2015-07-09 08:17:48 +03:00
AppUrl string ` binding:"Required" `
2016-02-12 18:10:02 +03:00
LogRootPath string ` binding:"Required" `
2015-07-09 08:17:48 +03:00
2015-07-20 07:34:53 +03:00
SMTPHost string
SMTPFrom string
2015-10-30 04:12:41 +03:00
SMTPEmail string ` binding:"OmitEmpty;Email;MaxSize(254)" locale:"install.mailer_user" `
2015-07-20 07:34:53 +03:00
SMTPPasswd string
2015-07-09 08:17:48 +03:00
RegisterConfirm bool
MailNotify bool
2016-08-07 20:27:38 +03:00
OfflineMode bool
DisableGravatar bool
EnableFederatedAvatar bool
DisableRegistration bool
EnableCaptcha bool
RequireSignInView bool
2015-07-09 08:17:48 +03:00
2015-07-08 14:47:56 +03:00
AdminName string ` binding:"OmitEmpty;AlphaDashDot;MaxSize(30)" locale:"install.admin_name" `
2015-08-17 21:30:33 +03:00
AdminPasswd string ` binding:"OmitEmpty;MaxSize(255)" locale:"install.admin_password" `
2015-07-08 14:47:56 +03:00
AdminConfirmPasswd string
2015-10-30 04:12:41 +03:00
AdminEmail string ` binding:"OmitEmpty;MinSize(3);MaxSize(254);Include(@)" locale:"install.admin_email" `
2014-07-26 08:24:27 +04:00
}
2014-10-15 19:19:20 +04:00
func ( f * InstallForm ) Validate ( ctx * macaron . Context , errs binding . Errors ) binding . Errors {
return validate ( errs , ctx . Data , f , ctx . Locale )
2014-07-26 08:24:27 +04:00
}
// _____ ____ _________________ ___
// / _ \ | | \__ ___/ | \
// / /_\ \| | / | | / ~ \
// / | \ | / | | \ Y /
// \____|__ /______/ |____| \___|_ /
// \/ \/
type RegisterForm struct {
2015-09-13 17:05:18 +03:00
UserName string ` binding:"Required;AlphaDashDot;MaxSize(35)" `
Email string ` binding:"Required;Email;MaxSize(254)" `
Password string ` binding:"Required;MaxSize(255)" `
Retype string
2014-07-26 08:24:27 +04:00
}
2014-10-15 19:19:20 +04:00
func ( f * RegisterForm ) Validate ( ctx * macaron . Context , errs binding . Errors ) binding . Errors {
return validate ( errs , ctx . Data , f , ctx . Locale )
2014-07-26 08:24:27 +04:00
}
type SignInForm struct {
2015-09-15 05:50:44 +03:00
UserName string ` binding:"Required;MaxSize(254)" `
Password string ` binding:"Required;MaxSize(255)" `
Remember bool
2014-07-26 08:24:27 +04:00
}
2014-10-15 19:19:20 +04:00
func ( f * SignInForm ) Validate ( ctx * macaron . Context , errs binding . Errors ) binding . Errors {
return validate ( errs , ctx . Data , f , ctx . Locale )
2014-07-26 08:24:27 +04:00
}
// __________________________________________.___ _______ ________ _________
// / _____/\_ _____/\__ ___/\__ ___/| |\ \ / _____/ / _____/
// \_____ \ | __)_ | | | | | |/ | \/ \ ___ \_____ \
// / \ | \ | | | | | / | \ \_\ \/ \
// /_______ //_______ / |____| |____| |___\____|__ /\______ /_______ /
// \/ \/ \/ \/ \/
type UpdateProfileForm struct {
2015-12-12 02:52:28 +03:00
Name string ` binding:"OmitEmpty;MaxSize(35)" `
2015-09-06 23:31:22 +03:00
FullName string ` binding:"MaxSize(100)" `
Email string ` binding:"Required;Email;MaxSize(254)" `
Website string ` binding:"Url;MaxSize(100)" `
Location string ` binding:"MaxSize(50)" `
2014-07-26 08:24:27 +04:00
}
2014-10-15 19:19:20 +04:00
func ( f * UpdateProfileForm ) Validate ( ctx * macaron . Context , errs binding . Errors ) binding . Errors {
return validate ( errs , ctx . Data , f , ctx . Locale )
2014-07-26 08:24:27 +04:00
}
2016-08-07 20:27:38 +03:00
const (
AVATAR_LOCAL string = "local"
AVATAR_BYMAIL string = "bymail"
)
type AvatarForm struct {
Source string
Avatar * multipart . FileHeader
Gravatar string ` binding:"OmitEmpty;Email;MaxSize(254)" `
Federavatar bool
2014-11-21 18:58:08 +03:00
}
2016-08-07 20:27:38 +03:00
func ( f * AvatarForm ) Validate ( ctx * macaron . Context , errs binding . Errors ) binding . Errors {
2014-11-21 18:58:08 +03:00
return validate ( errs , ctx . Data , f , ctx . Locale )
}
2014-12-17 18:42:54 +03:00
type AddEmailForm struct {
2015-09-10 18:40:34 +03:00
Email string ` binding:"Required;Email;MaxSize(254)" `
2014-12-17 18:42:54 +03:00
}
func ( f * AddEmailForm ) Validate ( ctx * macaron . Context , errs binding . Errors ) binding . Errors {
return validate ( errs , ctx . Data , f , ctx . Locale )
}
2014-07-26 08:24:27 +04:00
type ChangePasswordForm struct {
2015-06-03 16:46:37 +03:00
OldPassword string ` form:"old_password" binding:"Required;MinSize(1);MaxSize(255)" `
2015-08-17 21:30:33 +03:00
Password string ` form:"password" binding:"Required;MaxSize(255)" `
2014-07-26 08:24:27 +04:00
Retype string ` form:"retype" `
}
2014-10-15 19:19:20 +04:00
func ( f * ChangePasswordForm ) Validate ( ctx * macaron . Context , errs binding . Errors ) binding . Errors {
return validate ( errs , ctx . Data , f , ctx . Locale )
2014-07-26 08:24:27 +04:00
}
2014-11-12 14:48:50 +03:00
type AddSSHKeyForm struct {
2015-08-06 17:48:11 +03:00
Title string ` binding:"Required;MaxSize(50)" `
Content string ` binding:"Required" `
2014-11-12 14:48:50 +03:00
}
func ( f * AddSSHKeyForm ) Validate ( ctx * macaron . Context , errs binding . Errors ) binding . Errors {
return validate ( errs , ctx . Data , f , ctx . Locale )
}
type NewAccessTokenForm struct {
2015-08-18 22:36:16 +03:00
Name string ` binding:"Required" `
2014-11-12 14:48:50 +03:00
}
func ( f * NewAccessTokenForm ) Validate ( ctx * macaron . Context , errs binding . Errors ) binding . Errors {
return validate ( errs , ctx . Data , f , ctx . Locale )
}