forked from louketo/louketo-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.go
170 lines (158 loc) · 5.69 KB
/
config.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
164
165
166
167
168
169
170
/*
Copyright 2015 All rights reserved.
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 main
import (
"errors"
"fmt"
"net/url"
"regexp"
"strings"
"time"
)
// newDefaultConfig returns a initialized config
func newDefaultConfig() *Config {
return &Config{
Tags: make(map[string]string, 0),
MatchClaims: make(map[string]string, 0),
Headers: make(map[string]string, 0),
UpstreamTimeout: time.Duration(10) * time.Second,
UpstreamKeepaliveTimeout: time.Duration(10) * time.Second,
EnableAuthorizationHeader: true,
CookieAccessName: "kc-access",
CookieRefreshName: "kc-state",
SecureCookie: true,
SkipUpstreamTLSVerify: true,
SkipOpenIDProviderTLSVerify: false,
}
}
// isValid validates if the config is valid
func (r *Config) isValid() error {
if r.Listen == "" {
return errors.New("you have not specified the listening interface")
}
if r.TLSCertificate != "" && r.TLSPrivateKey == "" {
return errors.New("you have not provided a private key")
}
if r.TLSPrivateKey != "" && r.TLSCertificate == "" {
return errors.New("you have not provided a certificate file")
}
if r.TLSCertificate != "" && !fileExists(r.TLSCertificate) {
return fmt.Errorf("the tls certificate %s does not exist", r.TLSCertificate)
}
if r.TLSPrivateKey != "" && !fileExists(r.TLSPrivateKey) {
return fmt.Errorf("the tls private key %s does not exist", r.TLSPrivateKey)
}
if r.TLSCaCertificate != "" && !fileExists(r.TLSCaCertificate) {
return fmt.Errorf("the tls ca certificate file %s does not exist", r.TLSCaCertificate)
}
if r.TLSClientCertificate != "" && !fileExists(r.TLSClientCertificate) {
return fmt.Errorf("the tls client certificate %s does not exist", r.TLSClientCertificate)
}
if r.EnableForwarding {
if r.ClientID == "" {
return errors.New("you have not specified the client id")
}
if r.DiscoveryURL == "" {
return errors.New("you have not specified the discovery url")
}
if r.ForwardingUsername == "" {
return errors.New("no forwarding username")
}
if r.ForwardingPassword == "" {
return errors.New("no forwarding password")
}
if r.TLSCertificate != "" {
return errors.New("you don't need to specify a tls-certificate, use tls-ca-certificate instead")
}
if r.TLSPrivateKey != "" {
return errors.New("you don't need to specify the tls-private-key, use tls-ca-key instead")
}
} else {
if r.Upstream == "" {
return errors.New("you have not specified an upstream endpoint to proxy to")
}
if _, err := url.Parse(r.Upstream); err != nil {
return fmt.Errorf("the upstream endpoint is invalid, %s", err)
}
// step: if the skip verification is off, we need the below
if !r.SkipTokenVerification {
if r.ClientID == "" {
return errors.New("you have not specified the client id")
}
if r.DiscoveryURL == "" {
return errors.New("you have not specified the discovery url")
}
if strings.HasSuffix(r.RedirectionURL, "/") {
r.RedirectionURL = strings.TrimSuffix(r.RedirectionURL, "/")
}
if !r.EnableSecurityFilter {
if r.EnableHTTPSRedirect {
return errors.New("the security filter must be switch on for this feature: http-redirect")
}
if r.EnableBrowserXSSFilter {
return errors.New("the security filter must be switch on for this feature: brower-xss-filter")
}
if r.EnableFrameDeny {
return errors.New("the security filter must be switch on for this feature: frame-deny-filter")
}
if r.ContentSecurityPolicy != "" {
return errors.New("the security filter must be switch on for this feature: content-security-policy")
}
if len(r.Hostnames) > 0 {
return errors.New("the security filter must be switch on for this feature: hostnames")
}
}
if r.EnableRefreshTokens && r.EncryptionKey == "" {
return errors.New("you have not specified a encryption key for encoding the session state")
}
if r.EnableRefreshTokens && (len(r.EncryptionKey) != 16 && len(r.EncryptionKey) != 32) {
return fmt.Errorf("the encryption key (%d) must be either 16 or 32 characters for AES-128/AES-256 selection", len(r.EncryptionKey))
}
if !r.NoRedirects && r.SecureCookie && !strings.HasPrefix(r.RedirectionURL, "https") {
return errors.New("the cookie is set to secure but your redirection url is non-tls")
}
if r.StoreURL != "" {
if _, err := url.Parse(r.StoreURL); err != nil {
return fmt.Errorf("the store url is invalid, error: %s", err)
}
}
}
// check: ensure each of the resource are valid
for _, resource := range r.Resources {
if err := resource.valid(); err != nil {
return err
}
}
// step: validate the claims are validate regex's
for k, claim := range r.MatchClaims {
if _, err := regexp.Compile(claim); err != nil {
return fmt.Errorf("the claim matcher: %s for claim: %s is not a valid regex", claim, k)
}
}
}
return nil
}
// hasCustomSignInPage checks if there is a custom sign in page
func (r *Config) hasCustomSignInPage() bool {
if r.SignInPage != "" {
return true
}
return false
}
// hasForbiddenPage checks if there is a custom forbidden page
func (r *Config) hasCustomForbiddenPage() bool {
if r.ForbiddenPage != "" {
return true
}
return false
}