-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoidcClient.go
163 lines (152 loc) · 4.91 KB
/
oidcClient.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
/*
* Copyright (c) 2021-2024. Devtron 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 client
import (
"crypto/sha256"
"encoding/base64"
"fmt"
"github.com/caarlos0/env/v6"
"github.com/devtron-labs/authenticator/oidc"
"net"
"net/http"
"net/url"
"path"
"sync"
"time"
)
func GetOidcClient(conf *DexConfig, userVerifier oidc.UserVerifier, RedirectUrlSanitiser oidc.RedirectUrlSanitiser) (*oidc.ClientApp, func(writer http.ResponseWriter, request *http.Request), error) {
settings, err := GetSettings(conf)
oidcClient, dexProxy, err := getOidcClient(conf.DexServerAddress, settings, userVerifier, RedirectUrlSanitiser)
return oidcClient, dexProxy, err
}
func GetSettings(conf *DexConfig) (*oidc.Settings, error) {
proxyUrl, err := conf.GetDexProxyUrl()
if err != nil {
return nil, err
}
settings := &oidc.Settings{
URL: conf.Url,
OIDCConfig: oidc.OIDCConfig{CLIClientID: conf.DexClientID,
ClientSecret: conf.DexClientSecret,
Issuer: proxyUrl,
ServerSecret: conf.ServerSecret},
UserSessionDuration: time.Duration(conf.UserSessionDurationSeconds) * time.Second,
AdminPasswordMtime: conf.AdminPasswordMtime,
}
return settings, nil
}
func getOidcClient(dexServerAddress string, settings *oidc.Settings, userVerifier oidc.UserVerifier, RedirectUrlSanitiser oidc.RedirectUrlSanitiser) (*oidc.ClientApp, func(writer http.ResponseWriter, request *http.Request), error) {
dexClient := &http.Client{
Transport: &http.Transport{
TLSClientConfig: nil,
Proxy: http.ProxyFromEnvironment,
Dial: (&net.Dialer{
Timeout: 30 * time.Second,
KeepAlive: 30 * time.Second,
}).Dial,
TLSHandshakeTimeout: 10 * time.Second,
ExpectContinueTimeout: 1 * time.Second,
},
}
dexProxy := oidc.NewDexHTTPReverseProxy(dexServerAddress, dexClient.Transport)
cacheStore := &oidc.Cache{OidcState: sync.Map{}}
oidcClient, err := oidc.NewClientApp(settings, cacheStore, "/", userVerifier, RedirectUrlSanitiser)
if err != nil {
return nil, nil, err
}
return oidcClient, dexProxy, err
}
const dexProxyUri = "api/dex"
type DexConfig struct {
DexHost string `env:"DEX_HOST" envDefault:"http://localhost"`
DexPort string `env:"DEX_PORT" envDefault:"5556"`
DexClientID string `env:"DEX_CLIENT_ID" envDefault:"argo-cd"`
DexServerAddress string
Url string
DexClientSecret string
ServerSecret string
// Specifies token expiration duration
UserSessionDurationSeconds int `env:"USER_SESSION_DURATION_SECONDS" envDefault:"86400"`
AdminPasswordMtime time.Time `json:"ADMIN_PASSWORD_MTIME"`
DexConfigRaw string
DevtronSecretName string `env:"DEVTRON_SECRET_NAME" envDefault:"devtron-secret"`
}
func (c *DexConfig) GetDexProxyUrl() (string, error) {
u, err := url.Parse(c.Url)
if err != nil {
return "", err
}
u.Path = path.Join(u.Path, dexProxyUri)
s := u.String()
return s, nil
}
func (c *DexConfig) RedirectURL() (string, error) {
return appendURLPath(c.Url, CallbackEndpoint)
}
func (c *DexConfig) DexRedirectURL() (string, error) {
return appendURLPath(c.Url, DexCallbackEndpoint)
}
func appendURLPath(inputURL string, inputPath string) (string, error) {
u, err := url.Parse(inputURL)
if err != nil {
return "", err
}
u.Path = path.Join(u.Path, inputPath)
return u.String(), nil
}
func (c *DexConfig) DexOAuth2ClientSecret() string {
h := sha256.New()
_, err := h.Write([]byte(c.ServerSecret))
if err != nil {
panic(err)
}
sha := h.Sum(nil)
return base64.URLEncoding.EncodeToString(sha)[:40]
}
func BuildDexConfig(k8sClient *K8sClient) (*DexConfig, error) {
dexConfig, err := DexConfigConfigFromEnv()
if err != nil {
return nil, err
}
settings, err := k8sClient.GetServerSettings()
if err != nil {
return nil, err
}
dexConfig.Url = settings.Url
dexConfig.ServerSecret = settings.ServerSecret
clientSecret, err := generateDexClientSecret(dexConfig.ServerSecret)
if err != nil {
return nil, err
}
dexConfig.DexClientSecret = clientSecret
dexConfig.DexServerAddress = fmt.Sprintf("%s:%s", dexConfig.DexHost, dexConfig.DexPort)
return dexConfig, nil
}
func generateDexClientSecret(serverSecret string) (string, error) {
h := sha256.New()
_, err := h.Write([]byte(serverSecret))
if err != nil {
return "", err
}
sha := h.Sum(nil)
s := base64.URLEncoding.EncodeToString(sha)[:40]
return s, nil
}
func DexConfigConfigFromEnv() (*DexConfig, error) {
cfg := &DexConfig{}
err := env.Parse(cfg)
return cfg, err
}