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