identity_provider.go 1.9 KB
Newer Older
H
update  
hongming 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 *
 * Copyright 2020 The KubeSphere Authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * /
 */

19
package identityprovider
H
update  
hongming 已提交
20

H
update  
hongming 已提交
21 22 23 24 25
import (
	"errors"
	"k8s.io/apiserver/pkg/authentication/user"
	"kubesphere.io/kubesphere/pkg/apiserver/authentication/oauth"
)
H
update  
hongming 已提交
26

H
update  
hongming 已提交
27 28 29 30 31 32 33
var (
	ErrorIdentityProviderNotFound = errors.New("the identity provider was not found")
	ErrorAlreadyRegistered        = errors.New("the identity provider was not found")
	oauthProviderCodecs           = map[string]OAuthProviderCodec{}
)

type OAuthProvider interface {
34
	IdentityExchange(code string) (user.Info, error)
H
update  
hongming 已提交
35
}
H
update  
hongming 已提交
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63

type OAuthProviderCodec interface {
	Type() string
	Decode(options *oauth.DynamicOptions) (OAuthProvider, error)
	Encode(provider OAuthProvider) (*oauth.DynamicOptions, error)
}

func ResolveOAuthProvider(providerType string, options *oauth.DynamicOptions) (OAuthProvider, error) {
	if codec, ok := oauthProviderCodecs[providerType]; ok {
		return codec.Decode(options)
	}
	return nil, ErrorIdentityProviderNotFound
}

func ResolveOAuthOptions(providerType string, provider OAuthProvider) (*oauth.DynamicOptions, error) {
	if codec, ok := oauthProviderCodecs[providerType]; ok {
		return codec.Encode(provider)
	}
	return nil, ErrorIdentityProviderNotFound
}

func RegisterOAuthProviderCodec(codec OAuthProviderCodec) error {
	if _, ok := oauthProviderCodecs[codec.Type()]; ok {
		return ErrorAlreadyRegistered
	}
	oauthProviderCodecs[codec.Type()] = codec
	return nil
}