2014-07-26 09:54:27 +05:30
|
|
|
// 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 21:28:08 +05:30
|
|
|
"mime/multipart"
|
|
|
|
|
2015-10-16 06:58:12 +05:30
|
|
|
"github.com/go-macaron/binding"
|
|
|
|
"gopkg.in/macaron.v1"
|
2014-07-26 09:54:27 +05:30
|
|
|
)
|
|
|
|
|
2016-11-27 11:33:59 +05:30
|
|
|
// InstallForm form for installation page
|
2014-07-26 09:54:27 +05:30
|
|
|
type InstallForm struct {
|
2015-07-09 10:47:48 +05:30
|
|
|
DbType string `binding:"Required"`
|
|
|
|
DbHost string
|
|
|
|
DbUser string
|
|
|
|
DbPasswd string
|
|
|
|
DbName string
|
2015-07-20 10:04:53 +05:30
|
|
|
SSLMode string
|
2015-07-09 10:47:48 +05:30
|
|
|
DbPath string
|
|
|
|
|
|
|
|
AppName string `binding:"Required" locale:"install.app_name"`
|
|
|
|
RepoRootPath string `binding:"Required"`
|
2016-12-26 06:46:37 +05:30
|
|
|
LFSRootPath string
|
2015-07-09 10:47:48 +05:30
|
|
|
RunUser string `binding:"Required"`
|
|
|
|
Domain string `binding:"Required"`
|
2015-08-19 18:06:19 +05:30
|
|
|
SSHPort int
|
2015-07-20 10:04:53 +05:30
|
|
|
HTTPPort string `binding:"Required"`
|
2016-11-27 11:33:59 +05:30
|
|
|
AppURL string `binding:"Required"`
|
2016-02-12 20:40:02 +05:30
|
|
|
LogRootPath string `binding:"Required"`
|
2015-07-09 10:47:48 +05:30
|
|
|
|
2015-07-20 10:04:53 +05:30
|
|
|
SMTPHost string
|
|
|
|
SMTPFrom string
|
2017-02-24 07:07:13 +05:30
|
|
|
SMTPUser string `binding:"OmitEmpty;MaxSize(254)" locale:"install.mailer_user"`
|
2015-07-20 10:04:53 +05:30
|
|
|
SMTPPasswd string
|
2015-07-09 10:47:48 +05:30
|
|
|
RegisterConfirm bool
|
|
|
|
MailNotify bool
|
|
|
|
|
2017-05-12 13:39:53 +05:30
|
|
|
OfflineMode bool
|
|
|
|
DisableGravatar bool
|
|
|
|
EnableFederatedAvatar bool
|
2017-08-19 21:04:49 +05:30
|
|
|
EnableOpenIDSignIn bool
|
|
|
|
EnableOpenIDSignUp bool
|
2017-05-12 13:39:53 +05:30
|
|
|
DisableRegistration bool
|
2018-05-13 13:21:16 +05:30
|
|
|
AllowOnlyExternalRegistration bool
|
2017-05-12 13:39:53 +05:30
|
|
|
EnableCaptcha bool
|
|
|
|
RequireSignInView bool
|
|
|
|
DefaultKeepEmailPrivate bool
|
2017-05-09 01:21:53 +05:30
|
|
|
DefaultAllowCreateOrganization bool
|
2017-09-12 12:18:13 +05:30
|
|
|
DefaultEnableTimetracking bool
|
2017-05-12 13:39:53 +05:30
|
|
|
NoReplyAddress string
|
2015-07-09 10:47:48 +05:30
|
|
|
|
2015-07-08 17:17:56 +05:30
|
|
|
AdminName string `binding:"OmitEmpty;AlphaDashDot;MaxSize(30)" locale:"install.admin_name"`
|
2015-08-18 00:00:33 +05:30
|
|
|
AdminPasswd string `binding:"OmitEmpty;MaxSize(255)" locale:"install.admin_password"`
|
2015-07-08 17:17:56 +05:30
|
|
|
AdminConfirmPasswd string
|
2015-10-30 06:42:41 +05:30
|
|
|
AdminEmail string `binding:"OmitEmpty;MinSize(3);MaxSize(254);Include(@)" locale:"install.admin_email"`
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
|
|
|
|
2017-03-15 06:22:01 +05:30
|
|
|
// Validate validates the fields
|
2014-10-15 20:49:20 +05:30
|
|
|
func (f *InstallForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
|
|
|
|
return validate(errs, ctx.Data, f, ctx.Locale)
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// _____ ____ _________________ ___
|
|
|
|
// / _ \ | | \__ ___/ | \
|
|
|
|
// / /_\ \| | / | | / ~ \
|
|
|
|
// / | \ | / | | \ Y /
|
|
|
|
// \____|__ /______/ |____| \___|_ /
|
|
|
|
// \/ \/
|
|
|
|
|
2016-11-27 11:33:59 +05:30
|
|
|
// RegisterForm form for registering
|
2014-07-26 09:54:27 +05:30
|
|
|
type RegisterForm struct {
|
2018-07-05 09:43:05 +05:30
|
|
|
UserName string `binding:"Required;AlphaDashDot;MaxSize(35)"`
|
|
|
|
Email string `binding:"Required;Email;MaxSize(254)"`
|
|
|
|
Password string `binding:"Required;MaxSize(255)"`
|
|
|
|
Retype string
|
|
|
|
GRecaptchaResponse string `form:"g-recaptcha-response"`
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
|
|
|
|
2016-11-27 11:33:59 +05:30
|
|
|
// Validate valideates the fields
|
2014-10-15 20:49:20 +05:30
|
|
|
func (f *RegisterForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
|
|
|
|
return validate(errs, ctx.Data, f, ctx.Locale)
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
|
|
|
|
2017-03-17 19:46:08 +05:30
|
|
|
// SignInForm form for signing in with user/password
|
2014-07-26 09:54:27 +05:30
|
|
|
type SignInForm struct {
|
2015-09-15 08:20:44 +05:30
|
|
|
UserName string `binding:"Required;MaxSize(254)"`
|
|
|
|
Password string `binding:"Required;MaxSize(255)"`
|
|
|
|
Remember bool
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
|
|
|
|
2016-11-27 11:33:59 +05:30
|
|
|
// Validate valideates the fields
|
2014-10-15 20:49:20 +05:30
|
|
|
func (f *SignInForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
|
|
|
|
return validate(errs, ctx.Data, f, ctx.Locale)
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// __________________________________________.___ _______ ________ _________
|
|
|
|
// / _____/\_ _____/\__ ___/\__ ___/| |\ \ / _____/ / _____/
|
|
|
|
// \_____ \ | __)_ | | | | | |/ | \/ \ ___ \_____ \
|
|
|
|
// / \ | \ | | | | | / | \ \_\ \/ \
|
|
|
|
// /_______ //_______ / |____| |____| |___\____|__ /\______ /_______ /
|
|
|
|
// \/ \/ \/ \/ \/
|
|
|
|
|
2016-11-27 11:33:59 +05:30
|
|
|
// UpdateProfileForm form for updating profile
|
2014-07-26 09:54:27 +05:30
|
|
|
type UpdateProfileForm struct {
|
2017-07-19 07:06:37 +05:30
|
|
|
Name string `binding:"AlphaDashDot;MaxSize(35)"`
|
2017-01-08 08:42:03 +05:30
|
|
|
FullName string `binding:"MaxSize(100)"`
|
|
|
|
Email string `binding:"Required;Email;MaxSize(254)"`
|
|
|
|
KeepEmailPrivate bool
|
2017-04-19 08:32:20 +05:30
|
|
|
Website string `binding:"ValidUrl;MaxSize(255)"`
|
2017-01-08 08:42:03 +05:30
|
|
|
Location string `binding:"MaxSize(50)"`
|
2018-05-05 05:58:30 +05:30
|
|
|
Language string `binding:"Size(5)"`
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
|
|
|
|
2017-03-15 06:22:01 +05:30
|
|
|
// Validate validates the fields
|
2014-10-15 20:49:20 +05:30
|
|
|
func (f *UpdateProfileForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
|
|
|
|
return validate(errs, ctx.Data, f, ctx.Locale)
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
|
|
|
|
2016-11-27 11:33:59 +05:30
|
|
|
// Avatar types
|
2016-08-07 22:57:38 +05:30
|
|
|
const (
|
2016-11-07 22:25:31 +05:30
|
|
|
AvatarLocal string = "local"
|
|
|
|
AvatarByMail string = "bymail"
|
2016-08-07 22:57:38 +05:30
|
|
|
)
|
|
|
|
|
2016-11-27 11:33:59 +05:30
|
|
|
// AvatarForm form for changing avatar
|
2016-08-07 22:57:38 +05:30
|
|
|
type AvatarForm struct {
|
|
|
|
Source string
|
|
|
|
Avatar *multipart.FileHeader
|
|
|
|
Gravatar string `binding:"OmitEmpty;Email;MaxSize(254)"`
|
|
|
|
Federavatar bool
|
2014-11-21 21:28:08 +05:30
|
|
|
}
|
|
|
|
|
2017-03-15 06:22:01 +05:30
|
|
|
// Validate validates the fields
|
2016-08-07 22:57:38 +05:30
|
|
|
func (f *AvatarForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
|
2014-11-21 21:28:08 +05:30
|
|
|
return validate(errs, ctx.Data, f, ctx.Locale)
|
|
|
|
}
|
|
|
|
|
2016-11-27 11:33:59 +05:30
|
|
|
// AddEmailForm form for adding new email
|
2014-12-17 21:12:54 +05:30
|
|
|
type AddEmailForm struct {
|
2015-09-10 21:10:34 +05:30
|
|
|
Email string `binding:"Required;Email;MaxSize(254)"`
|
2014-12-17 21:12:54 +05:30
|
|
|
}
|
|
|
|
|
2017-03-15 06:22:01 +05:30
|
|
|
// Validate validates the fields
|
2014-12-17 21:12:54 +05:30
|
|
|
func (f *AddEmailForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
|
|
|
|
return validate(errs, ctx.Data, f, ctx.Locale)
|
|
|
|
}
|
|
|
|
|
2016-11-27 11:33:59 +05:30
|
|
|
// ChangePasswordForm form for changing password
|
2014-07-26 09:54:27 +05:30
|
|
|
type ChangePasswordForm struct {
|
2017-02-22 12:44:37 +05:30
|
|
|
OldPassword string `form:"old_password" binding:"MaxSize(255)"`
|
2015-08-18 00:00:33 +05:30
|
|
|
Password string `form:"password" binding:"Required;MaxSize(255)"`
|
2014-07-26 09:54:27 +05:30
|
|
|
Retype string `form:"retype"`
|
|
|
|
}
|
|
|
|
|
2017-03-15 06:22:01 +05:30
|
|
|
// Validate validates the fields
|
2014-10-15 20:49:20 +05:30
|
|
|
func (f *ChangePasswordForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
|
|
|
|
return validate(errs, ctx.Data, f, ctx.Locale)
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
2014-11-12 17:18:50 +05:30
|
|
|
|
2017-03-17 19:46:08 +05:30
|
|
|
// AddOpenIDForm is for changing openid uri
|
|
|
|
type AddOpenIDForm struct {
|
2017-03-21 06:25:00 +05:30
|
|
|
Openid string `binding:"Required;MaxSize(256)"`
|
2017-03-17 19:46:08 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates the fields
|
|
|
|
func (f *AddOpenIDForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
|
|
|
|
return validate(errs, ctx.Data, f, ctx.Locale)
|
|
|
|
}
|
|
|
|
|
2017-04-26 18:40:43 +05:30
|
|
|
// AddKeyForm form for adding SSH/GPG key
|
|
|
|
type AddKeyForm struct {
|
2018-01-07 04:25:53 +05:30
|
|
|
Type string `binding:"OmitEmpty"`
|
|
|
|
Title string `binding:"Required;MaxSize(50)"`
|
|
|
|
Content string `binding:"Required"`
|
|
|
|
IsWritable bool
|
2014-11-12 17:18:50 +05:30
|
|
|
}
|
|
|
|
|
2017-03-15 06:22:01 +05:30
|
|
|
// Validate validates the fields
|
2017-04-26 18:40:43 +05:30
|
|
|
func (f *AddKeyForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
|
2014-11-12 17:18:50 +05:30
|
|
|
return validate(errs, ctx.Data, f, ctx.Locale)
|
|
|
|
}
|
|
|
|
|
2016-11-27 11:33:59 +05:30
|
|
|
// NewAccessTokenForm form for creating access token
|
2014-11-12 17:18:50 +05:30
|
|
|
type NewAccessTokenForm struct {
|
2018-05-16 19:48:13 +05:30
|
|
|
Name string `binding:"Required;MaxSize(255)"`
|
2014-11-12 17:18:50 +05:30
|
|
|
}
|
|
|
|
|
2016-11-27 11:33:59 +05:30
|
|
|
// Validate valideates the fields
|
2014-11-12 17:18:50 +05:30
|
|
|
func (f *NewAccessTokenForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
|
|
|
|
return validate(errs, ctx.Data, f, ctx.Locale)
|
|
|
|
}
|
2017-01-16 07:44:29 +05:30
|
|
|
|
|
|
|
// TwoFactorAuthForm for logging in with 2FA token.
|
|
|
|
type TwoFactorAuthForm struct {
|
|
|
|
Passcode string `binding:"Required"`
|
|
|
|
}
|
|
|
|
|
2017-03-15 06:22:01 +05:30
|
|
|
// Validate validates the fields
|
2017-01-16 07:44:29 +05:30
|
|
|
func (f *TwoFactorAuthForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
|
|
|
|
return validate(errs, ctx.Data, f, ctx.Locale)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TwoFactorScratchAuthForm for logging in with 2FA scratch token.
|
|
|
|
type TwoFactorScratchAuthForm struct {
|
|
|
|
Token string `binding:"Required"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate valideates the fields
|
|
|
|
func (f *TwoFactorScratchAuthForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
|
|
|
|
return validate(errs, ctx.Data, f, ctx.Locale)
|
|
|
|
}
|
2018-05-19 19:42:37 +05:30
|
|
|
|
|
|
|
// U2FRegistrationForm for reserving an U2F name
|
|
|
|
type U2FRegistrationForm struct {
|
|
|
|
Name string `binding:"Required"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate valideates the fields
|
|
|
|
func (f *U2FRegistrationForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
|
|
|
|
return validate(errs, ctx.Data, f, ctx.Locale)
|
|
|
|
}
|
|
|
|
|
|
|
|
// U2FDeleteForm for deleting U2F keys
|
|
|
|
type U2FDeleteForm struct {
|
|
|
|
ID int64 `binding:"Required"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate valideates the fields
|
|
|
|
func (f *U2FDeleteForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
|
|
|
|
return validate(errs, ctx.Data, f, ctx.Locale)
|
|
|
|
}
|