2014-07-26 09:54:27 +05:30
|
|
|
// Copyright 2014 The Gogs 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 (
|
2021-01-26 21:06:53 +05:30
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2021-01-30 14:25:53 +05:30
|
|
|
"code.gitea.io/gitea/modules/web/middleware"
|
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
|
|
|
// AuthenticationForm form for authentication
|
2014-07-26 09:54:27 +05:30
|
|
|
type AuthenticationForm struct {
|
2017-05-01 18:56:53 +05:30
|
|
|
ID int64
|
2019-11-23 05:03:31 +05:30
|
|
|
Type int `binding:"Range(2,7)"`
|
2017-05-01 18:56:53 +05:30
|
|
|
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 10:29:02 +05:30
|
|
|
AttributeSSHPublicKey string
|
2021-09-27 08:09:36 +05:30
|
|
|
AttributeAvatar string
|
2017-05-01 18:56:53 +05:30
|
|
|
AttributesInBind bool
|
2018-05-05 20:00:47 +05:30
|
|
|
UsePagedSearch bool
|
|
|
|
SearchPageSize int
|
2017-05-01 18:56:53 +05:30
|
|
|
Filter string
|
|
|
|
AdminFilter string
|
2020-09-10 21:00:07 +05:30
|
|
|
GroupsEnabled bool
|
|
|
|
GroupDN string
|
|
|
|
GroupFilter string
|
|
|
|
GroupMemberUID string
|
|
|
|
UserUID string
|
2020-03-05 12:00:33 +05:30
|
|
|
RestrictedFilter string
|
2020-01-20 09:17:39 +05:30
|
|
|
AllowDeactivateAll bool
|
2017-05-01 18:56:53 +05:30
|
|
|
IsActive bool
|
2017-05-10 18:40:18 +05:30
|
|
|
IsSyncEnabled bool
|
2017-05-01 18:56:53 +05:30
|
|
|
SMTPAuth string
|
2022-11-11 02:42:23 +05:30
|
|
|
SMTPHost string
|
2017-05-01 18:56:53 +05:30
|
|
|
SMTPPort int
|
|
|
|
AllowedDomains string
|
|
|
|
SecurityProtocol int `binding:"Range(0,2)"`
|
|
|
|
TLS bool
|
|
|
|
SkipVerify bool
|
2021-08-12 02:12:58 +05:30
|
|
|
HeloHostname string
|
|
|
|
DisableHelo bool
|
|
|
|
ForceSMTPS bool
|
2017-05-01 18:56:53 +05:30
|
|
|
PAMServiceName string
|
2021-05-14 03:41:47 +05:30
|
|
|
PAMEmailDomain string
|
2017-05-01 18:56:53 +05:30
|
|
|
Oauth2Provider string
|
|
|
|
Oauth2Key string
|
|
|
|
Oauth2Secret string
|
|
|
|
OpenIDConnectAutoDiscoveryURL string
|
|
|
|
Oauth2UseCustomURL bool
|
|
|
|
Oauth2TokenURL string
|
|
|
|
Oauth2AuthURL string
|
|
|
|
Oauth2ProfileURL string
|
|
|
|
Oauth2EmailURL string
|
2020-12-28 08:05:55 +05:30
|
|
|
Oauth2IconURL string
|
2021-08-06 06:41:08 +05:30
|
|
|
Oauth2Tenant string
|
2021-12-14 14:07:11 +05:30
|
|
|
Oauth2Scopes string
|
|
|
|
Oauth2RequiredClaimName string
|
|
|
|
Oauth2RequiredClaimValue string
|
|
|
|
Oauth2GroupClaimName string
|
|
|
|
Oauth2AdminGroup string
|
|
|
|
Oauth2RestrictedGroup string
|
2021-09-10 22:07:57 +05:30
|
|
|
SkipLocalTwoFA bool
|
2019-11-23 05:03:31 +05:30
|
|
|
SSPIAutoCreateUsers bool
|
|
|
|
SSPIAutoActivateUsers bool
|
|
|
|
SSPIStripDomainNames bool
|
|
|
|
SSPISeparatorReplacement string `binding:"AlphaDashDot;MaxSize(5)"`
|
|
|
|
SSPIDefaultLanguage string
|
2022-02-11 19:54:58 +05:30
|
|
|
GroupTeamMap string
|
|
|
|
GroupTeamMapRemoval bool
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
|
|
|
|
2016-11-27 11:33:59 +05:30
|
|
|
// Validate validates fields
|
2021-01-26 21:06:53 +05:30
|
|
|
func (f *AuthenticationForm) 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
|
|
|
}
|