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
|
|
|
)
|
|
|
|
|
|
|
|
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"`
|
|
|
|
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"`
|
2015-07-09 10:47:48 +05:30
|
|
|
AppUrl string `binding:"Required"`
|
|
|
|
|
2015-07-20 10:04:53 +05:30
|
|
|
SMTPHost string
|
|
|
|
SMTPFrom string
|
2015-10-30 06:42:41 +05:30
|
|
|
SMTPEmail string `binding:"OmitEmpty;Email;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
|
|
|
|
|
|
|
|
OfflineMode bool
|
2015-08-29 21:52:26 +05:30
|
|
|
DisableGravatar bool
|
2015-07-09 10:47:48 +05:30
|
|
|
DisableRegistration bool
|
2015-09-13 21:44:32 +05:30
|
|
|
EnableCaptcha bool
|
2015-07-09 10:47:48 +05:30
|
|
|
RequireSignInView bool
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
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 /
|
|
|
|
// \____|__ /______/ |____| \___|_ /
|
|
|
|
// \/ \/
|
|
|
|
|
|
|
|
type RegisterForm struct {
|
2015-09-13 19:35:18 +05:30
|
|
|
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 09:54:27 +05:30
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
// __________________________________________.___ _______ ________ _________
|
|
|
|
// / _____/\_ _____/\__ ___/\__ ___/| |\ \ / _____/ / _____/
|
|
|
|
// \_____ \ | __)_ | | | | | |/ | \/ \ ___ \_____ \
|
|
|
|
// / \ | \ | | | | | / | \ \_\ \/ \
|
|
|
|
// /_______ //_______ / |____| |____| |___\____|__ /\______ /_______ /
|
|
|
|
// \/ \/ \/ \/ \/
|
|
|
|
|
|
|
|
type UpdateProfileForm struct {
|
2015-12-12 05:22:28 +05:30
|
|
|
Name string `binding:"OmitEmpty;MaxSize(35)"`
|
2015-09-07 02:01:22 +05:30
|
|
|
FullName string `binding:"MaxSize(100)"`
|
|
|
|
Email string `binding:"Required;Email;MaxSize(254)"`
|
|
|
|
Website string `binding:"Url;MaxSize(100)"`
|
|
|
|
Location string `binding:"MaxSize(50)"`
|
2015-12-12 02:01:02 +05:30
|
|
|
Gravatar string `binding:"OmitEmpty;Email;MaxSize(254)"`
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2014-11-21 21:28:08 +05:30
|
|
|
type UploadAvatarForm struct {
|
2015-09-07 02:01:22 +05:30
|
|
|
Enable bool
|
|
|
|
Avatar *multipart.FileHeader
|
2014-11-21 21:28:08 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
func (f *UploadAvatarForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
|
|
|
|
return validate(errs, ctx.Data, f, ctx.Locale)
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
func (f *AddEmailForm) 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
|
|
|
type ChangePasswordForm struct {
|
2015-06-03 19:16:37 +05:30
|
|
|
OldPassword string `form:"old_password" binding:"Required;MinSize(1);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"`
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
type AddSSHKeyForm struct {
|
2015-08-06 20:18:11 +05:30
|
|
|
Title string `binding:"Required;MaxSize(50)"`
|
|
|
|
Content string `binding:"Required"`
|
2014-11-12 17:18:50 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
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-19 01:06:16 +05:30
|
|
|
Name string `binding:"Required"`
|
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)
|
|
|
|
}
|