2023-06-19 23:42:47 +02:00
|
|
|
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2020-03-08 03:45:19 +01:00
|
|
|
|
2023-08-11 04:46:45 +02:00
|
|
|
package oauth2 // import "miniflux.app/v2/internal/oauth2"
|
2020-03-08 03:45:19 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-12-22 06:14:10 +01:00
|
|
|
|
2023-08-11 04:46:45 +02:00
|
|
|
"miniflux.app/v2/internal/model"
|
2020-12-22 06:14:10 +01:00
|
|
|
|
2023-06-28 05:21:51 +02:00
|
|
|
"github.com/coreos/go-oidc/v3/oidc"
|
2020-03-08 03:45:19 +01:00
|
|
|
"golang.org/x/oauth2"
|
|
|
|
)
|
|
|
|
|
|
|
|
type oidcProvider struct {
|
|
|
|
clientID string
|
|
|
|
clientSecret string
|
|
|
|
redirectURL string
|
|
|
|
provider *oidc.Provider
|
|
|
|
}
|
|
|
|
|
2023-09-03 06:35:10 +02:00
|
|
|
func NewOidcProvider(ctx context.Context, clientID, clientSecret, redirectURL, discoveryEndpoint string) (*oidcProvider, error) {
|
|
|
|
provider, err := oidc.NewProvider(ctx, discoveryEndpoint)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return &oidcProvider{clientID: clientID, clientSecret: clientSecret, redirectURL: redirectURL, provider: provider}, nil
|
|
|
|
}
|
|
|
|
|
2020-12-22 06:14:10 +01:00
|
|
|
func (o *oidcProvider) GetUserExtraKey() string {
|
|
|
|
return "openid_connect_id"
|
2020-03-08 03:45:19 +01:00
|
|
|
}
|
|
|
|
|
2023-09-03 06:35:10 +02:00
|
|
|
func (o *oidcProvider) GetConfig() *oauth2.Config {
|
|
|
|
return &oauth2.Config{
|
|
|
|
RedirectURL: o.redirectURL,
|
|
|
|
ClientID: o.clientID,
|
|
|
|
ClientSecret: o.clientSecret,
|
|
|
|
Scopes: []string{"openid", "email"},
|
|
|
|
Endpoint: o.provider.Endpoint(),
|
|
|
|
}
|
2020-03-08 03:45:19 +01:00
|
|
|
}
|
|
|
|
|
2023-09-03 06:35:10 +02:00
|
|
|
func (o *oidcProvider) GetProfile(ctx context.Context, code, codeVerifier string) (*Profile, error) {
|
|
|
|
conf := o.GetConfig()
|
|
|
|
token, err := conf.Exchange(ctx, code, oauth2.SetAuthURLParam("code_verifier", codeVerifier))
|
2020-03-08 03:45:19 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
userInfo, err := o.provider.UserInfo(ctx, oauth2.StaticTokenSource(token))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
profile := &Profile{Key: o.GetUserExtraKey(), ID: userInfo.Subject, Username: userInfo.Email}
|
|
|
|
return profile, nil
|
|
|
|
}
|
|
|
|
|
2021-01-04 06:20:21 +01:00
|
|
|
func (o *oidcProvider) PopulateUserCreationWithProfileID(user *model.UserCreationRequest, profile *Profile) {
|
|
|
|
user.OpenIDConnectID = profile.ID
|
|
|
|
}
|
|
|
|
|
2020-12-22 06:14:10 +01:00
|
|
|
func (o *oidcProvider) PopulateUserWithProfileID(user *model.User, profile *Profile) {
|
|
|
|
user.OpenIDConnectID = profile.ID
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o *oidcProvider) UnsetUserProfileID(user *model.User) {
|
|
|
|
user.OpenIDConnectID = ""
|
|
|
|
}
|