2021-08-06 03:11:08 +02:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-08-06 03:11:08 +02:00
|
|
|
|
|
|
|
package oauth2
|
|
|
|
|
|
|
|
import (
|
2023-06-13 12:51:02 +02:00
|
|
|
"html/template"
|
|
|
|
|
2021-08-06 03:11:08 +02:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2023-06-13 12:51:02 +02:00
|
|
|
"code.gitea.io/gitea/modules/svg"
|
2021-08-06 03:11:08 +02:00
|
|
|
|
|
|
|
"github.com/markbates/goth"
|
|
|
|
"github.com/markbates/goth/providers/openidConnect"
|
|
|
|
)
|
|
|
|
|
|
|
|
// OpenIDProvider is a GothProvider for OpenID
|
2022-01-20 18:46:10 +01:00
|
|
|
type OpenIDProvider struct{}
|
2021-08-06 03:11:08 +02:00
|
|
|
|
|
|
|
// Name provides the technical name for this provider
|
|
|
|
func (o *OpenIDProvider) Name() string {
|
2021-08-22 11:17:05 +02:00
|
|
|
return "openidConnect"
|
2021-08-06 03:11:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// DisplayName returns the friendly name for this provider
|
|
|
|
func (o *OpenIDProvider) DisplayName() string {
|
|
|
|
return "OpenID Connect"
|
|
|
|
}
|
|
|
|
|
2023-06-13 12:51:02 +02:00
|
|
|
// IconHTML returns icon HTML for this provider
|
|
|
|
func (o *OpenIDProvider) IconHTML() template.HTML {
|
|
|
|
return svg.RenderHTML("gitea-openid", 20, "gt-mr-3")
|
2021-08-06 03:11:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// CreateGothProvider creates a GothProvider from this Provider
|
|
|
|
func (o *OpenIDProvider) CreateGothProvider(providerName, callbackURL string, source *Source) (goth.Provider, error) {
|
2021-12-14 09:37:11 +01:00
|
|
|
scopes := setting.OAuth2Client.OpenIDConnectScopes
|
|
|
|
if len(scopes) == 0 {
|
|
|
|
scopes = append(scopes, source.Scopes...)
|
|
|
|
}
|
|
|
|
|
|
|
|
provider, err := openidConnect.New(source.ClientID, source.ClientSecret, callbackURL, source.OpenIDConnectAutoDiscoveryURL, scopes...)
|
2021-08-06 03:11:08 +02:00
|
|
|
if err != nil {
|
|
|
|
log.Warn("Failed to create OpenID Connect Provider with name '%s' with url '%s': %v", providerName, source.OpenIDConnectAutoDiscoveryURL, err)
|
|
|
|
}
|
|
|
|
return provider, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// CustomURLSettings returns the custom url settings for this provider
|
|
|
|
func (o *OpenIDProvider) CustomURLSettings() *CustomURLSettings {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-06-08 18:35:29 +02:00
|
|
|
var _ GothProvider = &OpenIDProvider{}
|
2021-08-06 03:11:08 +02:00
|
|
|
|
|
|
|
func init() {
|
|
|
|
RegisterGothProvider(&OpenIDProvider{})
|
|
|
|
}
|