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