This repository has been archived by the owner on Aug 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathcontroller.go
106 lines (89 loc) · 3.93 KB
/
controller.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
// Copyright (c) 2021 Red Hat, Inc.
// 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.
package oauth
import (
"context"
"errors"
"fmt"
"net/http"
"net/url"
"github.com/redhat-appstudio/service-provider-integration-operator/pkg/spi-shared/config"
"github.com/redhat-appstudio/service-provider-integration-operator/pkg/spi-shared/oauthstate"
"github.com/redhat-appstudio/service-provider-integration-operator/pkg/spi-shared/tokenstorage"
"sigs.k8s.io/controller-runtime/pkg/log"
)
// Controller implements the OAuth flow. There are specific implementations for each service provider type. These
// are usually instances of the commonController with service-provider-specific configuration.
type Controller interface {
// Authenticate handles the initial OAuth request. It should validate that the request is authenticated in Kubernetes
// compose the authenticated OAuth state and return a redirect to the service-provider OAuth endpoint with the state.
Authenticate(w http.ResponseWriter, r *http.Request, state *oauthstate.OAuthInfo)
// Callback finishes the OAuth flow. It handles the final redirect from the OAuth flow of the service provider.
Callback(ctx context.Context, w http.ResponseWriter, r *http.Request, state *oauthstate.OAuthInfo)
setSyncStrategy(strategy tokenDataSyncStrategy)
}
// oauthFinishResult is an enum listing the possible results of authentication during the commonController.finishOAuthExchange
// method.
type oauthFinishResult int
const (
oauthFinishAuthenticated oauthFinishResult = iota
oauthFinishK8sAuthRequired
oauthFinishError
)
var (
errMultipleConfigsForSameHost = errors.New("failed to initialize - multiple configurations for one service provider host")
)
func InitController(ctx context.Context, spType config.ServiceProviderType, cfg RouterConfiguration) (Controller, error) {
lg := log.FromContext(ctx)
// use the notifying token storage to automatically inform the cluster about changes in the token storage
ts := &tokenstorage.NotifyingTokenStorage{
ClientFactory: cfg.ClientFactory,
TokenStorage: cfg.TokenStorage,
}
controller := &commonController{
OAuthServiceConfiguration: cfg.OAuthServiceConfiguration,
ClientFactory: cfg.ClientFactory,
InClusterK8sClient: cfg.InClusterK8sClient,
TokenStorage: ts,
Authenticator: cfg.Authenticator,
StateStorage: cfg.StateStorage,
RedirectTemplate: cfg.RedirectTemplate,
ServiceProviderType: spType,
// setup SPI sync strategy as default
tokenDataSyncStrategy: SPIAccessTokenSyncStrategy{
ClientFactory: cfg.ClientFactory,
TokenStorage: ts,
},
}
initializedServiceProviders := map[string]bool{}
for _, sp := range cfg.ServiceProviders {
if sp.ServiceProviderType.Name != spType.Name {
continue
}
spHost := spType.DefaultHost
if sp.ServiceProviderBaseUrl != "" {
baseUrlParsed, parseUrlErr := url.Parse(sp.ServiceProviderBaseUrl)
if parseUrlErr != nil {
return nil, fmt.Errorf("failed to parse service provider url: %w", parseUrlErr)
}
spHost = baseUrlParsed.Host
}
if _, alreadyInitialized := initializedServiceProviders[spHost]; alreadyInitialized {
return nil, fmt.Errorf("%w '%s' base url '%s'", errMultipleConfigsForSameHost, spType.Name, spHost)
} else {
initializedServiceProviders[spHost] = true
lg.Info("initializing service provider controller", "type", sp.ServiceProviderType.Name, "url", spHost)
}
}
return controller, nil
}