c234903255
For reference: https://go.dev/ref/mod#major-version-suffixes
20 lines
612 B
Go
20 lines
612 B
Go
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package oauth2 // import "miniflux.app/v2/oauth2"
|
|
|
|
import (
|
|
"context"
|
|
|
|
"miniflux.app/v2/model"
|
|
)
|
|
|
|
// Provider is an interface for OAuth2 providers.
|
|
type Provider interface {
|
|
GetUserExtraKey() string
|
|
GetRedirectURL(state string) string
|
|
GetProfile(ctx context.Context, code string) (*Profile, error)
|
|
PopulateUserCreationWithProfileID(user *model.UserCreationRequest, profile *Profile)
|
|
PopulateUserWithProfileID(user *model.User, profile *Profile)
|
|
UnsetUserProfileID(user *model.User)
|
|
}
|