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.
|
|
|
|
|
2021-01-26 16:36:53 +01:00
|
|
|
package forms
|
2014-07-26 06:24:27 +02:00
|
|
|
|
|
|
|
import (
|
2021-01-26 16:36:53 +01:00
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2021-01-30 09:55:53 +01:00
|
|
|
"code.gitea.io/gitea/modules/web/middleware"
|
2021-01-26 16:36:53 +01:00
|
|
|
|
|
|
|
"gitea.com/go-chi/binding"
|
2014-07-26 06:24:27 +02:00
|
|
|
)
|
|
|
|
|
2016-11-27 07:03:59 +01:00
|
|
|
// AuthenticationForm form for authentication
|
2014-07-26 06:24:27 +02:00
|
|
|
type AuthenticationForm struct {
|
2017-05-01 15:26:53 +02:00
|
|
|
ID int64
|
2019-11-23 00:33:31 +01:00
|
|
|
Type int `binding:"Range(2,7)"`
|
2017-05-01 15:26:53 +02:00
|
|
|
Name string `binding:"Required;MaxSize(30)"`
|
|
|
|
Host string
|
|
|
|
Port int
|
|
|
|
BindDN string
|
|
|
|
BindPassword string
|
|
|
|
UserBase string
|
|
|
|
UserDN string
|
|
|
|
AttributeUsername string
|
|
|
|
AttributeName string
|
|
|
|
AttributeSurname string
|
|
|
|
AttributeMail string
|
2018-05-24 06:59:02 +02:00
|
|
|
AttributeSSHPublicKey string
|
2021-09-27 04:39:36 +02:00
|
|
|
AttributeAvatar string
|
2017-05-01 15:26:53 +02:00
|
|
|
AttributesInBind bool
|
2018-05-05 16:30:47 +02:00
|
|
|
UsePagedSearch bool
|
|
|
|
SearchPageSize int
|
2017-05-01 15:26:53 +02:00
|
|
|
Filter string
|
|
|
|
AdminFilter string
|
2020-09-10 17:30:07 +02:00
|
|
|
GroupsEnabled bool
|
|
|
|
GroupDN string
|
|
|
|
GroupFilter string
|
|
|
|
GroupMemberUID string
|
|
|
|
UserUID string
|
2020-03-05 07:30:33 +01:00
|
|
|
RestrictedFilter string
|
2020-01-20 04:47:39 +01:00
|
|
|
AllowDeactivateAll bool
|
2017-05-01 15:26:53 +02:00
|
|
|
IsActive bool
|
2017-05-10 15:10:18 +02:00
|
|
|
IsSyncEnabled bool
|
2017-05-01 15:26:53 +02:00
|
|
|
SMTPAuth string
|
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 07:24:18 +02:00
|
|
|
SMTPAddr string
|
2017-05-01 15:26:53 +02:00
|
|
|
SMTPPort int
|
|
|
|
AllowedDomains string
|
|
|
|
SecurityProtocol int `binding:"Range(0,2)"`
|
|
|
|
TLS bool
|
|
|
|
SkipVerify bool
|
2021-08-11 22:42:58 +02:00
|
|
|
HeloHostname string
|
|
|
|
DisableHelo bool
|
|
|
|
ForceSMTPS bool
|
2017-05-01 15:26:53 +02:00
|
|
|
PAMServiceName string
|
2021-05-14 00:11:47 +02:00
|
|
|
PAMEmailDomain string
|
2017-05-01 15:26:53 +02:00
|
|
|
Oauth2Provider string
|
|
|
|
Oauth2Key string
|
|
|
|
Oauth2Secret string
|
|
|
|
OpenIDConnectAutoDiscoveryURL string
|
|
|
|
Oauth2UseCustomURL bool
|
|
|
|
Oauth2TokenURL string
|
|
|
|
Oauth2AuthURL string
|
|
|
|
Oauth2ProfileURL string
|
|
|
|
Oauth2EmailURL string
|
2020-12-28 03:35:55 +01:00
|
|
|
Oauth2IconURL string
|
2021-08-06 03:11:08 +02:00
|
|
|
Oauth2Tenant string
|
2021-12-14 09:37:11 +01:00
|
|
|
Oauth2Scopes string
|
|
|
|
Oauth2RequiredClaimName string
|
|
|
|
Oauth2RequiredClaimValue string
|
|
|
|
Oauth2GroupClaimName string
|
|
|
|
Oauth2AdminGroup string
|
|
|
|
Oauth2RestrictedGroup string
|
2021-09-10 18:37:57 +02:00
|
|
|
SkipLocalTwoFA bool
|
2019-11-23 00:33:31 +01:00
|
|
|
SSPIAutoCreateUsers bool
|
|
|
|
SSPIAutoActivateUsers bool
|
|
|
|
SSPIStripDomainNames bool
|
|
|
|
SSPISeparatorReplacement string `binding:"AlphaDashDot;MaxSize(5)"`
|
|
|
|
SSPIDefaultLanguage string
|
2022-02-11 15:24:58 +01:00
|
|
|
GroupTeamMap string
|
|
|
|
GroupTeamMapRemoval bool
|
2014-07-26 06:24:27 +02:00
|
|
|
}
|
|
|
|
|
2016-11-27 07:03:59 +01:00
|
|
|
// Validate validates fields
|
2021-01-26 16:36:53 +01:00
|
|
|
func (f *AuthenticationForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
|
|
|
ctx := context.GetContext(req)
|
2021-01-30 09:55:53 +01:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2014-07-26 06:24:27 +02:00
|
|
|
}
|