2014-07-26 09:54:27 +05:30
|
|
|
// 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.
|
|
|
|
|
|
|
|
package auth
|
|
|
|
|
|
|
|
import (
|
2019-08-23 22:10:30 +05:30
|
|
|
"gitea.com/macaron/binding"
|
|
|
|
"gitea.com/macaron/macaron"
|
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
|
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
|
|
|
|
SMTPHost string
|
|
|
|
SMTPPort int
|
|
|
|
AllowedDomains string
|
|
|
|
SecurityProtocol int `binding:"Range(0,2)"`
|
|
|
|
TLS bool
|
|
|
|
SkipVerify bool
|
|
|
|
PAMServiceName string
|
|
|
|
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
|
2019-11-23 05:03:31 +05:30
|
|
|
SSPIAutoCreateUsers bool
|
|
|
|
SSPIAutoActivateUsers bool
|
|
|
|
SSPIStripDomainNames bool
|
|
|
|
SSPISeparatorReplacement string `binding:"AlphaDashDot;MaxSize(5)"`
|
|
|
|
SSPIDefaultLanguage string
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
|
|
|
|
2016-11-27 11:33:59 +05:30
|
|
|
// Validate validates fields
|
2014-10-15 20:49:20 +05:30
|
|
|
func (f *AuthenticationForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
|
|
|
|
return validate(errs, ctx.Data, f, ctx.Locale)
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|