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