1
0
Fork 0
miniflux/oauth2/provider.go

21 lines
606 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
2018-08-25 00:51:50 -04:00
package oauth2 // import "miniflux.app/oauth2"
import (
"context"
"miniflux.app/model"
)
2017-11-23 01:22:33 -05:00
// Provider is an interface for OAuth2 providers.
type Provider interface {
2017-11-24 19:09:10 -05:00
GetUserExtraKey() string
2017-11-23 01:22:33 -05:00
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)
2017-11-23 01:22:33 -05:00
}