2014-07-26 04:24:27 +00:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2018-11-15 01:00:04 +00:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2014-07-26 04:24:27 +00:00
|
|
|
|
2021-01-26 15:36:53 +00:00
|
|
|
package forms
|
2014-07-26 04:24:27 +00:00
|
|
|
|
|
|
|
import (
|
2014-11-21 15:58:08 +00:00
|
|
|
"mime/multipart"
|
2021-01-26 15:36:53 +00:00
|
|
|
"net/http"
|
2018-11-15 01:00:04 +00:00
|
|
|
"strings"
|
|
|
|
|
2023-01-17 21:46:03 +00:00
|
|
|
auth_model "code.gitea.io/gitea/models/auth"
|
2024-03-11 06:07:36 +00:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2018-11-15 01:00:04 +00:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2021-06-26 19:53:14 +00:00
|
|
|
"code.gitea.io/gitea/modules/structs"
|
2021-01-30 08:55:53 +00:00
|
|
|
"code.gitea.io/gitea/modules/web/middleware"
|
2024-02-27 07:12:22 +00:00
|
|
|
"code.gitea.io/gitea/services/context"
|
2014-11-21 15:58:08 +00:00
|
|
|
|
2021-01-26 15:36:53 +00:00
|
|
|
"gitea.com/go-chi/binding"
|
2014-07-26 04:24:27 +00:00
|
|
|
)
|
|
|
|
|
2016-11-27 06:03:59 +00:00
|
|
|
// InstallForm form for installation page
|
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
|
2020-01-20 15:45:14 +00:00
|
|
|
DbSchema string
|
2015-07-09 05:17:48 +00:00
|
|
|
|
|
|
|
AppName string `binding:"Required" locale:"install.app_name"`
|
2024-06-07 17:12:48 +00:00
|
|
|
AppSlogan string
|
2015-07-09 05:17:48 +00:00
|
|
|
RepoRootPath string `binding:"Required"`
|
2016-12-26 01:16:37 +00:00
|
|
|
LFSRootPath string
|
2015-07-09 05:17:48 +00:00
|
|
|
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"`
|
2016-11-27 06:03:59 +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
|
|
|
|
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 05:24:18 +00:00
|
|
|
SMTPAddr string
|
|
|
|
SMTPPort string
|
2015-07-20 04:34:53 +00:00
|
|
|
SMTPFrom string
|
2017-02-24 01:37:13 +00:00
|
|
|
SMTPUser string `binding:"OmitEmpty;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
|
|
|
|
|
2017-05-12 08:09:53 +00:00
|
|
|
OfflineMode bool
|
|
|
|
DisableGravatar bool
|
|
|
|
EnableFederatedAvatar bool
|
2017-08-19 15:34:49 +00:00
|
|
|
EnableOpenIDSignIn bool
|
|
|
|
EnableOpenIDSignUp bool
|
2017-05-12 08:09:53 +00:00
|
|
|
DisableRegistration bool
|
2018-05-13 07:51:16 +00:00
|
|
|
AllowOnlyExternalRegistration bool
|
2017-05-12 08:09:53 +00:00
|
|
|
EnableCaptcha bool
|
|
|
|
RequireSignInView bool
|
|
|
|
DefaultKeepEmailPrivate bool
|
2017-05-08 19:51:53 +00:00
|
|
|
DefaultAllowCreateOrganization bool
|
2017-09-12 06:48:13 +00:00
|
|
|
DefaultEnableTimetracking bool
|
2022-11-01 19:23:56 +00:00
|
|
|
EnableUpdateChecker bool
|
2017-05-12 08:09:53 +00:00
|
|
|
NoReplyAddress string
|
2015-07-09 05:17:48 +00:00
|
|
|
|
2021-02-16 22:37:20 +00:00
|
|
|
PasswordAlgorithm string
|
|
|
|
|
2022-11-04 09:04:08 +00:00
|
|
|
AdminName string `binding:"OmitEmpty;Username;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"`
|
2021-12-01 07:50:01 +00:00
|
|
|
|
|
|
|
// 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 04:24:27 +00:00
|
|
|
}
|
|
|
|
|
2017-03-15 00:52:01 +00:00
|
|
|
// Validate validates the fields
|
2021-01-26 15:36:53 +00:00
|
|
|
func (f *InstallForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
2023-05-21 01:50:53 +00:00
|
|
|
ctx := context.GetValidateContext(req)
|
2021-01-30 08:55:53 +00:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2014-07-26 04:24:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// _____ ____ _________________ ___
|
|
|
|
// / _ \ | | \__ ___/ | \
|
|
|
|
// / /_\ \| | / | | / ~ \
|
|
|
|
// / | \ | / | | \ Y /
|
|
|
|
// \____|__ /______/ |____| \___|_ /
|
|
|
|
// \/ \/
|
|
|
|
|
2016-11-27 06:03:59 +00:00
|
|
|
// RegisterForm form for registering
|
2014-07-26 04:24:27 +00:00
|
|
|
type RegisterForm struct {
|
2022-11-22 21:13:18 +00:00
|
|
|
UserName string `binding:"Required;Username;MaxSize(40)"`
|
|
|
|
Email string `binding:"Required;MaxSize(254)"`
|
|
|
|
Password string `binding:"MaxSize(255)"`
|
|
|
|
Retype string
|
2014-07-26 04:24:27 +00:00
|
|
|
}
|
|
|
|
|
2020-06-05 14:34:23 +00:00
|
|
|
// Validate validates the fields
|
2021-01-26 15:36:53 +00:00
|
|
|
func (f *RegisterForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
2023-05-21 01:50:53 +00:00
|
|
|
ctx := context.GetValidateContext(req)
|
2021-01-30 08:55:53 +00:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2014-07-26 04:24:27 +00:00
|
|
|
}
|
|
|
|
|
2021-02-14 23:31:29 +00:00
|
|
|
// 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.
|
2023-05-22 00:05:44 +00:00
|
|
|
func (f *RegisterForm) IsEmailDomainAllowed() bool {
|
2024-03-11 06:07:36 +00:00
|
|
|
return user_model.IsEmailDomainAllowed(f.Email)
|
2021-02-14 23:31:29 +00:00
|
|
|
}
|
|
|
|
|
2018-09-13 12:04:25 +00:00
|
|
|
// 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 14:34:23 +00:00
|
|
|
// Validate validates the fields
|
2021-01-26 15:36:53 +00:00
|
|
|
func (f *MustChangePasswordForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
2023-05-21 01:50:53 +00:00
|
|
|
ctx := context.GetValidateContext(req)
|
2021-01-30 08:55:53 +00:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2018-09-13 12:04:25 +00:00
|
|
|
}
|
|
|
|
|
2017-03-17 14:16:08 +00:00
|
|
|
// SignInForm form for signing in with user/password
|
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)"`
|
2019-07-06 19:48:02 +00:00
|
|
|
// TODO remove required from password for SecondFactorAuthentication
|
2015-09-15 02:50:44 +00:00
|
|
|
Password string `binding:"Required;MaxSize(255)"`
|
|
|
|
Remember bool
|
2014-07-26 04:24:27 +00:00
|
|
|
}
|
|
|
|
|
2020-06-05 14:34:23 +00:00
|
|
|
// Validate validates the fields
|
2021-01-26 15:36:53 +00:00
|
|
|
func (f *SignInForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
2023-05-21 01:50:53 +00:00
|
|
|
ctx := context.GetValidateContext(req)
|
2021-01-30 08:55:53 +00:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2014-07-26 04:24:27 +00:00
|
|
|
}
|
|
|
|
|
2019-03-08 16:42:50 +00:00
|
|
|
// 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 16:33:27 +00:00
|
|
|
Scope string
|
|
|
|
Nonce string
|
2019-03-08 16:42:50 +00:00
|
|
|
|
|
|
|
// PKCE support
|
|
|
|
CodeChallengeMethod string // S256, plain
|
|
|
|
CodeChallenge string
|
|
|
|
}
|
|
|
|
|
2020-06-05 14:34:23 +00:00
|
|
|
// Validate validates the fields
|
2021-01-26 15:36:53 +00:00
|
|
|
func (f *AuthorizationForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
2023-05-21 01:50:53 +00:00
|
|
|
ctx := context.GetValidateContext(req)
|
2021-01-30 08:55:53 +00:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2019-03-08 16:42:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GrantApplicationForm form for authorizing oauth2 clients
|
|
|
|
type GrantApplicationForm struct {
|
|
|
|
ClientID string `binding:"Required"`
|
2024-05-20 07:17:00 +00:00
|
|
|
Granted bool
|
2019-03-08 16:42:50 +00:00
|
|
|
RedirectURI string
|
|
|
|
State string
|
2021-01-01 16:33:27 +00:00
|
|
|
Scope string
|
|
|
|
Nonce string
|
2019-03-08 16:42:50 +00:00
|
|
|
}
|
|
|
|
|
2020-06-05 14:34:23 +00:00
|
|
|
// Validate validates the fields
|
2021-01-26 15:36:53 +00:00
|
|
|
func (f *GrantApplicationForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
2023-05-21 01:50:53 +00:00
|
|
|
ctx := context.GetValidateContext(req)
|
2021-01-30 08:55:53 +00:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2019-03-08 16:42:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// AccessTokenForm for issuing access tokens from authorization codes or refresh tokens
|
|
|
|
type AccessTokenForm struct {
|
2019-04-15 15:54:50 +00:00
|
|
|
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 16:42:50 +00:00
|
|
|
|
|
|
|
// PKCE support
|
2019-04-15 15:54:50 +00:00
|
|
|
CodeVerifier string `json:"code_verifier"`
|
2019-03-08 16:42:50 +00:00
|
|
|
}
|
|
|
|
|
2020-06-05 14:34:23 +00:00
|
|
|
// Validate validates the fields
|
2021-01-26 15:36:53 +00:00
|
|
|
func (f *AccessTokenForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
2023-05-21 01:50:53 +00:00
|
|
|
ctx := context.GetValidateContext(req)
|
2021-01-30 08:55:53 +00:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2019-03-08 16:42:50 +00:00
|
|
|
}
|
|
|
|
|
2021-08-21 02:16:45 +00:00
|
|
|
// 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 {
|
2023-05-21 01:50:53 +00:00
|
|
|
ctx := context.GetValidateContext(req)
|
2021-08-21 02:16:45 +00:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
|
|
|
}
|
|
|
|
|
2014-07-26 04:24:27 +00:00
|
|
|
// __________________________________________.___ _______ ________ _________
|
|
|
|
// / _____/\_ _____/\__ ___/\__ ___/| |\ \ / _____/ / _____/
|
|
|
|
// \_____ \ | __)_ | | | | | |/ | \/ \ ___ \_____ \
|
|
|
|
// / \ | \ | | | | | / | \ \_\ \/ \
|
|
|
|
// /_______ //_______ / |____| |____| |___\____|__ /\______ /_______ /
|
|
|
|
// \/ \/ \/ \/ \/
|
|
|
|
|
2016-11-27 06:03:59 +00:00
|
|
|
// UpdateProfileForm form for updating profile
|
2014-07-26 04:24:27 +00:00
|
|
|
type UpdateProfileForm struct {
|
2022-11-04 09:04:08 +00:00
|
|
|
Name string `binding:"Username;MaxSize(40)"`
|
2020-06-05 20:01:53 +00:00
|
|
|
FullName string `binding:"MaxSize(100)"`
|
|
|
|
KeepEmailPrivate bool
|
2021-06-25 22:38:27 +00:00
|
|
|
Website string `binding:"ValidSiteUrl;MaxSize(255)"`
|
2020-06-05 20:01:53 +00:00
|
|
|
Location string `binding:"MaxSize(50)"`
|
2023-09-26 02:39:12 +00:00
|
|
|
Pronouns string `binding:"MaxSize(50)"`
|
2024-04-06 18:06:39 +00:00
|
|
|
Biography string `binding:"MaxSize(255)"`
|
2021-06-26 19:53:14 +00:00
|
|
|
Visibility structs.VisibleType
|
2020-06-05 20:01:53 +00:00
|
|
|
KeepActivityPrivate bool
|
2014-07-26 04:24:27 +00:00
|
|
|
}
|
|
|
|
|
2017-03-15 00:52:01 +00:00
|
|
|
// Validate validates the fields
|
2021-01-26 15:36:53 +00:00
|
|
|
func (f *UpdateProfileForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
2023-05-21 01:50:53 +00:00
|
|
|
ctx := context.GetValidateContext(req)
|
2021-10-27 15:40:08 +00:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
|
|
|
}
|
|
|
|
|
|
|
|
// UpdateLanguageForm form for updating profile
|
|
|
|
type UpdateLanguageForm struct {
|
|
|
|
Language string
|
|
|
|
}
|
|
|
|
|
2024-03-01 12:22:40 +00:00
|
|
|
// UpdateHintsForm form for updating user hint settings
|
|
|
|
type UpdateHintsForm struct {
|
|
|
|
EnableRepoUnitHints bool
|
|
|
|
}
|
|
|
|
|
2021-10-27 15:40:08 +00:00
|
|
|
// Validate validates the fields
|
|
|
|
func (f *UpdateLanguageForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
2023-05-21 01:50:53 +00:00
|
|
|
ctx := context.GetValidateContext(req)
|
2021-01-30 08:55:53 +00:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2014-07-26 04:24:27 +00:00
|
|
|
}
|
|
|
|
|
2016-11-27 06:03:59 +00:00
|
|
|
// Avatar types
|
2016-08-07 17:27:38 +00:00
|
|
|
const (
|
2016-11-07 16:55:31 +00:00
|
|
|
AvatarLocal string = "local"
|
|
|
|
AvatarByMail string = "bymail"
|
2016-08-07 17:27:38 +00:00
|
|
|
)
|
|
|
|
|
2016-11-27 06:03:59 +00:00
|
|
|
// AvatarForm form for changing avatar
|
2016-08-07 17:27:38 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2017-03-15 00:52:01 +00:00
|
|
|
// Validate validates the fields
|
2021-01-26 15:36:53 +00:00
|
|
|
func (f *AvatarForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
2023-05-21 01:50:53 +00:00
|
|
|
ctx := context.GetValidateContext(req)
|
2021-01-30 08:55:53 +00:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2014-11-21 15:58:08 +00:00
|
|
|
}
|
|
|
|
|
2016-11-27 06:03:59 +00:00
|
|
|
// AddEmailForm form for adding new email
|
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
|
|
|
}
|
|
|
|
|
2017-03-15 00:52:01 +00:00
|
|
|
// Validate validates the fields
|
2021-01-26 15:36:53 +00:00
|
|
|
func (f *AddEmailForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
2023-05-21 01:50:53 +00:00
|
|
|
ctx := context.GetValidateContext(req)
|
2021-01-30 08:55:53 +00:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2014-12-17 15:42:54 +00:00
|
|
|
}
|
|
|
|
|
2019-01-09 17:22:57 +00:00
|
|
|
// UpdateThemeForm form for updating a users' theme
|
|
|
|
type UpdateThemeForm struct {
|
2023-11-08 01:53:37 +00:00
|
|
|
Theme string `binding:"Required;MaxSize(64)"`
|
2019-01-09 17:22:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates the field
|
2021-01-26 15:36:53 +00:00
|
|
|
func (f *UpdateThemeForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
2023-05-21 01:50:53 +00:00
|
|
|
ctx := context.GetValidateContext(req)
|
2021-01-30 08:55:53 +00:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2019-01-09 17:22:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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-12 19:41:28 +00:00
|
|
|
if strings.EqualFold(v, f.Theme) {
|
2019-01-09 17:22:57 +00:00
|
|
|
exists = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return exists
|
|
|
|
}
|
|
|
|
|
2016-11-27 06:03:59 +00:00
|
|
|
// ChangePasswordForm form for changing password
|
2014-07-26 04:24:27 +00:00
|
|
|
type ChangePasswordForm struct {
|
2017-02-22 07:14:37 +00:00
|
|
|
OldPassword string `form:"old_password" binding:"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"`
|
|
|
|
}
|
|
|
|
|
2017-03-15 00:52:01 +00:00
|
|
|
// Validate validates the fields
|
2021-01-26 15:36:53 +00:00
|
|
|
func (f *ChangePasswordForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
2023-05-21 01:50:53 +00:00
|
|
|
ctx := context.GetValidateContext(req)
|
2021-01-30 08:55:53 +00:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2014-07-26 04:24:27 +00:00
|
|
|
}
|
2014-11-12 11:48:50 +00:00
|
|
|
|
2017-03-17 14:16:08 +00:00
|
|
|
// AddOpenIDForm is for changing openid uri
|
|
|
|
type AddOpenIDForm struct {
|
2017-03-21 00:55:00 +00:00
|
|
|
Openid string `binding:"Required;MaxSize(256)"`
|
2017-03-17 14:16:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates the fields
|
2021-01-26 15:36:53 +00:00
|
|
|
func (f *AddOpenIDForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
2023-05-21 01:50:53 +00:00
|
|
|
ctx := context.GetValidateContext(req)
|
2021-01-30 08:55:53 +00:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2017-03-17 14:16:08 +00:00
|
|
|
}
|
|
|
|
|
2017-04-26 13:10:43 +00:00
|
|
|
// AddKeyForm form for adding SSH/GPG key
|
|
|
|
type AddKeyForm struct {
|
2021-12-19 05:37:18 +00:00
|
|
|
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 11:48:50 +00:00
|
|
|
}
|
|
|
|
|
2017-03-15 00:52:01 +00:00
|
|
|
// Validate validates the fields
|
2021-01-26 15:36:53 +00:00
|
|
|
func (f *AddKeyForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
2023-05-21 01:50:53 +00:00
|
|
|
ctx := context.GetValidateContext(req)
|
2021-01-30 08:55:53 +00:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2014-11-12 11:48:50 +00:00
|
|
|
}
|
|
|
|
|
2022-12-20 09:07:13 +00:00
|
|
|
// AddSecretForm for adding secrets
|
|
|
|
type AddSecretForm struct {
|
2023-06-20 22:54:15 +00:00
|
|
|
Name string `binding:"Required;MaxSize(255)"`
|
|
|
|
Data string `binding:"Required;MaxSize(65535)"`
|
2022-12-20 09:07:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates the fields
|
|
|
|
func (f *AddSecretForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
2023-06-20 22:54:15 +00:00
|
|
|
ctx := context.GetValidateContext(req)
|
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
|
|
|
}
|
|
|
|
|
|
|
|
type EditVariableForm struct {
|
|
|
|
Name string `binding:"Required;MaxSize(255)"`
|
|
|
|
Data string `binding:"Required;MaxSize(65535)"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *EditVariableForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
2023-05-21 01:50:53 +00:00
|
|
|
ctx := context.GetValidateContext(req)
|
2022-12-20 09:07:13 +00:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
|
|
|
}
|
|
|
|
|
2016-11-27 06:03:59 +00:00
|
|
|
// NewAccessTokenForm form for creating access token
|
2014-11-12 11:48:50 +00:00
|
|
|
type NewAccessTokenForm struct {
|
2023-11-29 03:47:05 +00:00
|
|
|
Name string `binding:"Required;MaxSize(255)" locale:"settings.token_name"`
|
2023-01-17 21:46:03 +00:00
|
|
|
Scope []string
|
2014-11-12 11:48:50 +00:00
|
|
|
}
|
|
|
|
|
2020-06-05 14:34:23 +00:00
|
|
|
// Validate validates the fields
|
2021-01-26 15:36:53 +00:00
|
|
|
func (f *NewAccessTokenForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
2023-05-21 01:50:53 +00:00
|
|
|
ctx := context.GetValidateContext(req)
|
2021-01-30 08:55:53 +00:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2014-11-12 11:48:50 +00:00
|
|
|
}
|
2017-01-16 02:14:29 +00:00
|
|
|
|
2023-01-17 21:46:03 +00:00
|
|
|
func (f *NewAccessTokenForm) GetScope() (auth_model.AccessTokenScope, error) {
|
|
|
|
scope := strings.Join(f.Scope, ",")
|
|
|
|
s, err := auth_model.AccessTokenScope(scope).Normalize()
|
|
|
|
return s, err
|
|
|
|
}
|
|
|
|
|
2019-03-08 16:42:50 +00:00
|
|
|
// EditOAuth2ApplicationForm form for editing oauth2 applications
|
|
|
|
type EditOAuth2ApplicationForm struct {
|
2022-10-24 07:59:24 +00:00
|
|
|
Name string `binding:"Required;MaxSize(255)" form:"application_name"`
|
2023-06-05 07:00:12 +00:00
|
|
|
RedirectURIs string `binding:"Required" form:"redirect_uris"`
|
2022-10-24 07:59:24 +00:00
|
|
|
ConfidentialClient bool `form:"confidential_client"`
|
2019-03-08 16:42:50 +00:00
|
|
|
}
|
|
|
|
|
2020-06-05 14:34:23 +00:00
|
|
|
// Validate validates the fields
|
2021-01-26 15:36:53 +00:00
|
|
|
func (f *EditOAuth2ApplicationForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
2023-05-21 01:50:53 +00:00
|
|
|
ctx := context.GetValidateContext(req)
|
2021-01-30 08:55:53 +00:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2019-03-08 16:42:50 +00:00
|
|
|
}
|
|
|
|
|
2017-01-16 02:14:29 +00:00
|
|
|
// TwoFactorAuthForm for logging in with 2FA token.
|
|
|
|
type TwoFactorAuthForm struct {
|
|
|
|
Passcode string `binding:"Required"`
|
|
|
|
}
|
|
|
|
|
2017-03-15 00:52:01 +00:00
|
|
|
// Validate validates the fields
|
2021-01-26 15:36:53 +00:00
|
|
|
func (f *TwoFactorAuthForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
2023-05-21 01:50:53 +00:00
|
|
|
ctx := context.GetValidateContext(req)
|
2021-01-30 08:55:53 +00:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2017-01-16 02:14:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TwoFactorScratchAuthForm for logging in with 2FA scratch token.
|
|
|
|
type TwoFactorScratchAuthForm struct {
|
|
|
|
Token string `binding:"Required"`
|
|
|
|
}
|
|
|
|
|
2020-06-05 14:34:23 +00:00
|
|
|
// Validate validates the fields
|
2021-01-26 15:36:53 +00:00
|
|
|
func (f *TwoFactorScratchAuthForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
2023-05-21 01:50:53 +00:00
|
|
|
ctx := context.GetValidateContext(req)
|
2021-01-30 08:55:53 +00:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2017-01-16 02:14:29 +00:00
|
|
|
}
|
2018-05-19 14:12:37 +00:00
|
|
|
|
2022-01-14 15:03:31 +00:00
|
|
|
// WebauthnRegistrationForm for reserving an WebAuthn name
|
|
|
|
type WebauthnRegistrationForm struct {
|
2018-05-19 14:12:37 +00:00
|
|
|
Name string `binding:"Required"`
|
|
|
|
}
|
|
|
|
|
2020-06-05 14:34:23 +00:00
|
|
|
// Validate validates the fields
|
2022-01-14 15:03:31 +00:00
|
|
|
func (f *WebauthnRegistrationForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
2023-05-21 01:50:53 +00:00
|
|
|
ctx := context.GetValidateContext(req)
|
2021-01-30 08:55:53 +00:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2018-05-19 14:12:37 +00:00
|
|
|
}
|
|
|
|
|
2022-01-14 15:03:31 +00:00
|
|
|
// WebauthnDeleteForm for deleting WebAuthn keys
|
|
|
|
type WebauthnDeleteForm struct {
|
2018-05-19 14:12:37 +00:00
|
|
|
ID int64 `binding:"Required"`
|
|
|
|
}
|
|
|
|
|
2020-06-05 14:34:23 +00:00
|
|
|
// Validate validates the fields
|
2022-01-14 15:03:31 +00:00
|
|
|
func (f *WebauthnDeleteForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
2023-05-21 01:50:53 +00:00
|
|
|
ctx := context.GetValidateContext(req)
|
2021-01-30 08:55:53 +00:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2018-05-19 14:12:37 +00:00
|
|
|
}
|
2022-03-30 08:42:47 +00:00
|
|
|
|
|
|
|
// 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 {
|
2023-05-21 01:50:53 +00:00
|
|
|
ctx := context.GetValidateContext(req)
|
2022-03-30 08:42:47 +00:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
|
|
|
}
|