1
0
Fork 0
miniflux/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 01:22:33 -05:00
package oauth2 // import "miniflux.app/v2/internal/oauth2"
import (
"context"
2023-09-03 00:35:10 -04:00
"golang.org/x/oauth2"
"miniflux.app/v2/internal/model"
)
2017-11-23 01:22:33 -05:00
// Provider is an interface for OAuth2 providers.
type Provider interface {
2023-09-03 00:35:10 -04:00
GetConfig() *oauth2.Config
2017-11-24 19:09:10 -05:00
GetUserExtraKey() string
2023-09-03 00:35:10 -04: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 01:22:33 -05:00
}