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