miniflux-v2/internal/oauth2/provider.go

23 lines
659 B
Go
Raw Normal View History

// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
2017-11-23 07:22:33 +01:00
package oauth2 // import "miniflux.app/v2/internal/oauth2"
import (
"context"
2023-09-03 06:35:10 +02:00
"golang.org/x/oauth2"
"miniflux.app/v2/internal/model"
)
2017-11-23 07:22:33 +01:00
// Provider is an interface for OAuth2 providers.
type Provider interface {
2023-09-03 06:35:10 +02:00
GetConfig() *oauth2.Config
2017-11-25 01:09:10 +01:00
GetUserExtraKey() string
2023-09-03 06:35:10 +02:00
GetProfile(ctx context.Context, code, codeVerifier string) (*Profile, error)
PopulateUserCreationWithProfileID(user *model.UserCreationRequest, profile *Profile)
PopulateUserWithProfileID(user *model.User, profile *Profile)
UnsetUserProfileID(user *model.User)
2017-11-23 07:22:33 +01:00
}