2014-07-26 09:54:27 +05:30
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2018-11-15 06:30:04 +05:30
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2014-07-26 09:54:27 +05:30
|
|
|
|
2021-01-26 21:06:53 +05:30
|
|
|
package forms
|
2014-07-26 09:54:27 +05:30
|
|
|
|
|
|
|
import (
|
2014-11-21 21:28:08 +05:30
|
|
|
"mime/multipart"
|
2021-01-26 21:06:53 +05:30
|
|
|
"net/http"
|
2018-11-15 06:30:04 +05:30
|
|
|
"strings"
|
|
|
|
|
2021-01-26 21:06:53 +05:30
|
|
|
"code.gitea.io/gitea/modules/context"
|
2018-11-15 06:30:04 +05:30
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2021-06-27 01:23:14 +05:30
|
|
|
"code.gitea.io/gitea/modules/structs"
|
2021-01-30 14:25:53 +05:30
|
|
|
"code.gitea.io/gitea/modules/web/middleware"
|
2014-11-21 21:28:08 +05:30
|
|
|
|
2021-01-26 21:06:53 +05:30
|
|
|
"gitea.com/go-chi/binding"
|
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
|
2019-05-24 09:45:26 +05:30
|
|
|
Charset string `binding:"Required;In(utf8,utf8mb4)"`
|
2015-07-09 10:47:48 +05:30
|
|
|
DbPath string
|
2020-01-20 21:15:14 +05:30
|
|
|
DbSchema string
|
2015-07-09 10:47:48 +05:30
|
|
|
|
|
|
|
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
|
|
|
|
Rework mailer settings (#18982)
* `PROTOCOL`: can be smtp, smtps, smtp+startls, smtp+unix, sendmail, dummy
* `SMTP_ADDR`: domain for SMTP, or path to unix socket
* `SMTP_PORT`: port for SMTP; defaults to 25 for `smtp`, 465 for `smtps`, and 587 for `smtp+startls`
* `ENABLE_HELO`, `HELO_HOSTNAME`: reverse `DISABLE_HELO` to `ENABLE_HELO`; default to false + system hostname
* `FORCE_TRUST_SERVER_CERT`: replace the unclear `SKIP_VERIFY`
* `CLIENT_CERT_FILE`, `CLIENT_KEY_FILE`, `USE_CLIENT_CERT`: clarify client certificates here
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
2022-08-02 10:54:18 +05:30
|
|
|
SMTPAddr string
|
|
|
|
SMTPPort string
|
2015-07-20 10:04:53 +05:30
|
|
|
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
|
2022-11-02 00:53:56 +05:30
|
|
|
EnableUpdateChecker bool
|
2017-05-12 13:39:53 +05:30
|
|
|
NoReplyAddress string
|
2015-07-09 10:47:48 +05:30
|
|
|
|
2021-02-17 04:07:20 +05:30
|
|
|
PasswordAlgorithm string
|
|
|
|
|
2022-11-04 14:34:08 +05:30
|
|
|
AdminName string `binding:"OmitEmpty;Username;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"`
|
2021-12-01 13:20:01 +05:30
|
|
|
|
|
|
|
// ReinstallConfirmFirst we can not use 1/2/3 or A/B/C here, there is a framework bug, can not parse "reinstall_confirm_1" or "reinstall_confirm_a"
|
|
|
|
ReinstallConfirmFirst bool
|
|
|
|
ReinstallConfirmSecond bool
|
|
|
|
ReinstallConfirmThird bool
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
|
|
|
|
2017-03-15 06:22:01 +05:30
|
|
|
// Validate validates the fields
|
2021-01-26 21:06:53 +05:30
|
|
|
func (f *InstallForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
|
|
|
ctx := context.GetContext(req)
|
2021-01-30 14:25:53 +05:30
|
|
|
return middleware.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 {
|
2022-11-23 02:43:18 +05:30
|
|
|
UserName string `binding:"Required;Username;MaxSize(40)"`
|
|
|
|
Email string `binding:"Required;MaxSize(254)"`
|
|
|
|
Password string `binding:"MaxSize(255)"`
|
|
|
|
Retype string
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
|
|
|
|
2020-06-05 20:04:23 +05:30
|
|
|
// Validate validates the fields
|
2021-01-26 21:06:53 +05:30
|
|
|
func (f *RegisterForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
|
|
|
ctx := context.GetContext(req)
|
2021-01-30 14:25:53 +05:30
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
|
|
|
|
2021-02-15 05:01:29 +05:30
|
|
|
// IsEmailDomainListed checks whether the domain of an email address
|
|
|
|
// matches a list of domains
|
|
|
|
func IsEmailDomainListed(list []string, email string) bool {
|
|
|
|
if len(list) == 0 {
|
|
|
|
return false
|
2018-11-15 06:30:04 +05:30
|
|
|
}
|
|
|
|
|
2021-02-15 05:01:29 +05:30
|
|
|
n := strings.LastIndex(email, "@")
|
2018-11-15 06:30:04 +05:30
|
|
|
if n <= 0 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2021-02-15 05:01:29 +05:30
|
|
|
domain := strings.ToLower(email[n+1:])
|
2018-11-15 06:30:04 +05:30
|
|
|
|
2021-02-15 05:01:29 +05:30
|
|
|
for _, v := range list {
|
2018-11-15 06:30:04 +05:30
|
|
|
if strings.ToLower(v) == domain {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2021-02-15 05:01:29 +05:30
|
|
|
// IsEmailDomainAllowed validates that the email address
|
|
|
|
// provided by the user matches what has been configured .
|
|
|
|
// The email is marked as allowed if it matches any of the
|
|
|
|
// domains in the whitelist or if it doesn't match any of
|
|
|
|
// domains in the blocklist, if any such list is not empty.
|
|
|
|
func (f RegisterForm) IsEmailDomainAllowed() bool {
|
|
|
|
if len(setting.Service.EmailDomainWhitelist) == 0 {
|
|
|
|
return !IsEmailDomainListed(setting.Service.EmailDomainBlocklist, f.Email)
|
|
|
|
}
|
|
|
|
|
|
|
|
return IsEmailDomainListed(setting.Service.EmailDomainWhitelist, f.Email)
|
|
|
|
}
|
|
|
|
|
2018-09-13 17:34:25 +05:30
|
|
|
// MustChangePasswordForm form for updating your password after account creation
|
|
|
|
// by an admin
|
|
|
|
type MustChangePasswordForm struct {
|
|
|
|
Password string `binding:"Required;MaxSize(255)"`
|
|
|
|
Retype string
|
|
|
|
}
|
|
|
|
|
2020-06-05 20:04:23 +05:30
|
|
|
// Validate validates the fields
|
2021-01-26 21:06:53 +05:30
|
|
|
func (f *MustChangePasswordForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
|
|
|
ctx := context.GetContext(req)
|
2021-01-30 14:25:53 +05:30
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2018-09-13 17:34:25 +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)"`
|
2019-07-07 01:18:02 +05:30
|
|
|
// TODO remove required from password for SecondFactorAuthentication
|
2015-09-15 08:20:44 +05:30
|
|
|
Password string `binding:"Required;MaxSize(255)"`
|
|
|
|
Remember bool
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
|
|
|
|
2020-06-05 20:04:23 +05:30
|
|
|
// Validate validates the fields
|
2021-01-26 21:06:53 +05:30
|
|
|
func (f *SignInForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
|
|
|
ctx := context.GetContext(req)
|
2021-01-30 14:25:53 +05:30
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
|
|
|
|
2019-03-08 22:12:50 +05:30
|
|
|
// AuthorizationForm form for authorizing oauth2 clients
|
|
|
|
type AuthorizationForm struct {
|
|
|
|
ResponseType string `binding:"Required;In(code)"`
|
|
|
|
ClientID string `binding:"Required"`
|
|
|
|
RedirectURI string
|
|
|
|
State string
|
2021-01-01 22:03:27 +05:30
|
|
|
Scope string
|
|
|
|
Nonce string
|
2019-03-08 22:12:50 +05:30
|
|
|
|
|
|
|
// PKCE support
|
|
|
|
CodeChallengeMethod string // S256, plain
|
|
|
|
CodeChallenge string
|
|
|
|
}
|
|
|
|
|
2020-06-05 20:04:23 +05:30
|
|
|
// Validate validates the fields
|
2021-01-26 21:06:53 +05:30
|
|
|
func (f *AuthorizationForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
|
|
|
ctx := context.GetContext(req)
|
2021-01-30 14:25:53 +05:30
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2019-03-08 22:12:50 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// GrantApplicationForm form for authorizing oauth2 clients
|
|
|
|
type GrantApplicationForm struct {
|
|
|
|
ClientID string `binding:"Required"`
|
|
|
|
RedirectURI string
|
|
|
|
State string
|
2021-01-01 22:03:27 +05:30
|
|
|
Scope string
|
|
|
|
Nonce string
|
2019-03-08 22:12:50 +05:30
|
|
|
}
|
|
|
|
|
2020-06-05 20:04:23 +05:30
|
|
|
// Validate validates the fields
|
2021-01-26 21:06:53 +05:30
|
|
|
func (f *GrantApplicationForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
|
|
|
ctx := context.GetContext(req)
|
2021-01-30 14:25:53 +05:30
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2019-03-08 22:12:50 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// AccessTokenForm for issuing access tokens from authorization codes or refresh tokens
|
|
|
|
type AccessTokenForm struct {
|
2019-04-15 21:24:50 +05:30
|
|
|
GrantType string `json:"grant_type"`
|
|
|
|
ClientID string `json:"client_id"`
|
|
|
|
ClientSecret string `json:"client_secret"`
|
|
|
|
RedirectURI string `json:"redirect_uri"`
|
|
|
|
Code string `json:"code"`
|
|
|
|
RefreshToken string `json:"refresh_token"`
|
2019-03-08 22:12:50 +05:30
|
|
|
|
|
|
|
// PKCE support
|
2019-04-15 21:24:50 +05:30
|
|
|
CodeVerifier string `json:"code_verifier"`
|
2019-03-08 22:12:50 +05:30
|
|
|
}
|
|
|
|
|
2020-06-05 20:04:23 +05:30
|
|
|
// Validate validates the fields
|
2021-01-26 21:06:53 +05:30
|
|
|
func (f *AccessTokenForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
|
|
|
ctx := context.GetContext(req)
|
2021-01-30 14:25:53 +05:30
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2019-03-08 22:12:50 +05:30
|
|
|
}
|
|
|
|
|
2021-08-21 07:46:45 +05:30
|
|
|
// IntrospectTokenForm for introspecting tokens
|
|
|
|
type IntrospectTokenForm struct {
|
|
|
|
Token string `json:"token"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates the fields
|
|
|
|
func (f *IntrospectTokenForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
|
|
|
ctx := context.GetContext(req)
|
|
|
|
return middleware.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 {
|
2022-11-04 14:34:08 +05:30
|
|
|
Name string `binding:"Username;MaxSize(40)"`
|
2020-06-06 01:31:53 +05:30
|
|
|
FullName string `binding:"MaxSize(100)"`
|
|
|
|
KeepEmailPrivate bool
|
2021-06-26 04:08:27 +05:30
|
|
|
Website string `binding:"ValidSiteUrl;MaxSize(255)"`
|
2020-06-06 01:31:53 +05:30
|
|
|
Location string `binding:"MaxSize(50)"`
|
|
|
|
Description string `binding:"MaxSize(255)"`
|
2021-06-27 01:23:14 +05:30
|
|
|
Visibility structs.VisibleType
|
2020-06-06 01:31:53 +05:30
|
|
|
KeepActivityPrivate bool
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
|
|
|
|
2017-03-15 06:22:01 +05:30
|
|
|
// Validate validates the fields
|
2021-01-26 21:06:53 +05:30
|
|
|
func (f *UpdateProfileForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
2021-10-27 21:10:08 +05:30
|
|
|
ctx := context.GetContext(req)
|
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
|
|
|
}
|
|
|
|
|
|
|
|
// UpdateLanguageForm form for updating profile
|
|
|
|
type UpdateLanguageForm struct {
|
|
|
|
Language string
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates the fields
|
|
|
|
func (f *UpdateLanguageForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
2021-01-26 21:06:53 +05:30
|
|
|
ctx := context.GetContext(req)
|
2021-01-30 14:25:53 +05:30
|
|
|
return middleware.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
|
2021-01-26 21:06:53 +05:30
|
|
|
func (f *AvatarForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
|
|
|
ctx := context.GetContext(req)
|
2021-01-30 14:25:53 +05:30
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2014-11-21 21:28:08 +05:30
|
|
|
}
|
|
|
|
|
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
|
2021-01-26 21:06:53 +05:30
|
|
|
func (f *AddEmailForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
|
|
|
ctx := context.GetContext(req)
|
2021-01-30 14:25:53 +05:30
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2014-12-17 21:12:54 +05:30
|
|
|
}
|
|
|
|
|
2019-01-09 22:52:57 +05:30
|
|
|
// UpdateThemeForm form for updating a users' theme
|
|
|
|
type UpdateThemeForm struct {
|
|
|
|
Theme string `binding:"Required;MaxSize(30)"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates the field
|
2021-01-26 21:06:53 +05:30
|
|
|
func (f *UpdateThemeForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
|
|
|
ctx := context.GetContext(req)
|
2021-01-30 14:25:53 +05:30
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2019-01-09 22:52:57 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// IsThemeExists checks if the theme is a theme available in the config.
|
|
|
|
func (f UpdateThemeForm) IsThemeExists() bool {
|
|
|
|
var exists bool
|
|
|
|
|
|
|
|
for _, v := range setting.UI.Themes {
|
2019-06-13 01:11:28 +05:30
|
|
|
if strings.EqualFold(v, f.Theme) {
|
2019-01-09 22:52:57 +05:30
|
|
|
exists = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return exists
|
|
|
|
}
|
|
|
|
|
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
|
2021-01-26 21:06:53 +05:30
|
|
|
func (f *ChangePasswordForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
|
|
|
ctx := context.GetContext(req)
|
2021-01-30 14:25:53 +05:30
|
|
|
return middleware.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
|
2021-01-26 21:06:53 +05:30
|
|
|
func (f *AddOpenIDForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
|
|
|
ctx := context.GetContext(req)
|
2021-01-30 14:25:53 +05:30
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2017-03-17 19:46:08 +05:30
|
|
|
}
|
|
|
|
|
2017-04-26 18:40:43 +05:30
|
|
|
// AddKeyForm form for adding SSH/GPG key
|
|
|
|
type AddKeyForm struct {
|
2021-12-19 11:07:18 +05:30
|
|
|
Type string `binding:"OmitEmpty"`
|
|
|
|
Title string `binding:"Required;MaxSize(50)"`
|
|
|
|
Content string `binding:"Required"`
|
|
|
|
Signature string `binding:"OmitEmpty"`
|
|
|
|
KeyID string `binding:"OmitEmpty"`
|
|
|
|
Fingerprint string `binding:"OmitEmpty"`
|
|
|
|
IsWritable bool
|
2014-11-12 17:18:50 +05:30
|
|
|
}
|
|
|
|
|
2017-03-15 06:22:01 +05:30
|
|
|
// Validate validates the fields
|
2021-01-26 21:06:53 +05:30
|
|
|
func (f *AddKeyForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
|
|
|
ctx := context.GetContext(req)
|
2021-01-30 14:25:53 +05:30
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2014-11-12 17:18:50 +05:30
|
|
|
}
|
|
|
|
|
2022-12-20 14:37:13 +05:30
|
|
|
// AddSecretForm for adding secrets
|
|
|
|
type AddSecretForm struct {
|
|
|
|
Title string `binding:"Required;MaxSize(50)"`
|
|
|
|
Content string `binding:"Required"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates the fields
|
|
|
|
func (f *AddSecretForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
|
|
|
ctx := context.GetContext(req)
|
|
|
|
return middleware.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
|
|
|
}
|
|
|
|
|
2020-06-05 20:04:23 +05:30
|
|
|
// Validate validates the fields
|
2021-01-26 21:06:53 +05:30
|
|
|
func (f *NewAccessTokenForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
|
|
|
ctx := context.GetContext(req)
|
2021-01-30 14:25:53 +05:30
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2014-11-12 17:18:50 +05:30
|
|
|
}
|
2017-01-16 07:44:29 +05:30
|
|
|
|
2019-03-08 22:12:50 +05:30
|
|
|
// EditOAuth2ApplicationForm form for editing oauth2 applications
|
|
|
|
type EditOAuth2ApplicationForm struct {
|
2022-10-24 13:29:24 +05:30
|
|
|
Name string `binding:"Required;MaxSize(255)" form:"application_name"`
|
|
|
|
RedirectURI string `binding:"Required" form:"redirect_uri"`
|
|
|
|
ConfidentialClient bool `form:"confidential_client"`
|
2019-03-08 22:12:50 +05:30
|
|
|
}
|
|
|
|
|
2020-06-05 20:04:23 +05:30
|
|
|
// Validate validates the fields
|
2021-01-26 21:06:53 +05:30
|
|
|
func (f *EditOAuth2ApplicationForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
|
|
|
ctx := context.GetContext(req)
|
2021-01-30 14:25:53 +05:30
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2019-03-08 22:12:50 +05:30
|
|
|
}
|
|
|
|
|
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
|
2021-01-26 21:06:53 +05:30
|
|
|
func (f *TwoFactorAuthForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
|
|
|
ctx := context.GetContext(req)
|
2021-01-30 14:25:53 +05:30
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2017-01-16 07:44:29 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// TwoFactorScratchAuthForm for logging in with 2FA scratch token.
|
|
|
|
type TwoFactorScratchAuthForm struct {
|
|
|
|
Token string `binding:"Required"`
|
|
|
|
}
|
|
|
|
|
2020-06-05 20:04:23 +05:30
|
|
|
// Validate validates the fields
|
2021-01-26 21:06:53 +05:30
|
|
|
func (f *TwoFactorScratchAuthForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
|
|
|
ctx := context.GetContext(req)
|
2021-01-30 14:25:53 +05:30
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2017-01-16 07:44:29 +05:30
|
|
|
}
|
2018-05-19 19:42:37 +05:30
|
|
|
|
2022-01-14 20:33:31 +05:30
|
|
|
// WebauthnRegistrationForm for reserving an WebAuthn name
|
|
|
|
type WebauthnRegistrationForm struct {
|
2018-05-19 19:42:37 +05:30
|
|
|
Name string `binding:"Required"`
|
|
|
|
}
|
|
|
|
|
2020-06-05 20:04:23 +05:30
|
|
|
// Validate validates the fields
|
2022-01-14 20:33:31 +05:30
|
|
|
func (f *WebauthnRegistrationForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
2021-01-26 21:06:53 +05:30
|
|
|
ctx := context.GetContext(req)
|
2021-01-30 14:25:53 +05:30
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2018-05-19 19:42:37 +05:30
|
|
|
}
|
|
|
|
|
2022-01-14 20:33:31 +05:30
|
|
|
// WebauthnDeleteForm for deleting WebAuthn keys
|
|
|
|
type WebauthnDeleteForm struct {
|
2018-05-19 19:42:37 +05:30
|
|
|
ID int64 `binding:"Required"`
|
|
|
|
}
|
|
|
|
|
2020-06-05 20:04:23 +05:30
|
|
|
// Validate validates the fields
|
2022-01-14 20:33:31 +05:30
|
|
|
func (f *WebauthnDeleteForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
2021-01-26 21:06:53 +05:30
|
|
|
ctx := context.GetContext(req)
|
2021-01-30 14:25:53 +05:30
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2018-05-19 19:42:37 +05:30
|
|
|
}
|
2022-03-30 14:12:47 +05:30
|
|
|
|
|
|
|
// PackageSettingForm form for package settings
|
|
|
|
type PackageSettingForm struct {
|
|
|
|
Action string
|
|
|
|
RepoID int64 `form:"repo_id"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates the fields
|
|
|
|
func (f *PackageSettingForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
|
|
|
ctx := context.GetContext(req)
|
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
|
|
|
}
|