Skip to content

Commit b1880d0

Browse files
authored
Merge pull request #687 from roidelapluie/checkheader
Remove secret file existence check in Validate for headers
2 parents 06c2425 + 334963d commit b1880d0

File tree

3 files changed

+23
-24
lines changed

3 files changed

+23
-24
lines changed

config/headers.go

+21-22
Original file line numberDiff line numberDiff line change
@@ -52,47 +52,47 @@ var reservedHeaders = map[string]struct{}{
5252
// Headers represents the configuration for HTTP headers.
5353
type Headers struct {
5454
Headers map[string]Header `yaml:",inline"`
55-
dir string
56-
}
57-
58-
// Header represents the configuration for a single HTTP header.
59-
type Header struct {
60-
Values []string `yaml:"values,omitempty" json:"values,omitempty"`
61-
Secrets []Secret `yaml:"secrets,omitempty" json:"secrets,omitempty"`
62-
Files []string `yaml:"files,omitempty" json:"files,omitempty"`
6355
}
6456

6557
func (h Headers) MarshalJSON() ([]byte, error) {
6658
// Inline the Headers map when serializing JSON because json encoder doesn't support "inline" directive.
6759
return json.Marshal(h.Headers)
6860
}
6961

70-
// SetDirectory records the directory to make headers file relative to the
71-
// configuration file.
62+
// SetDirectory make headers file relative to the configuration file.
7263
func (h *Headers) SetDirectory(dir string) {
7364
if h == nil {
7465
return
7566
}
76-
h.dir = dir
67+
for _, h := range h.Headers {
68+
h.SetDirectory(dir)
69+
}
7770
}
7871

7972
// Validate validates the Headers config.
8073
func (h *Headers) Validate() error {
81-
for n, header := range h.Headers {
74+
for n := range h.Headers {
8275
if _, ok := reservedHeaders[http.CanonicalHeaderKey(n)]; ok {
8376
return fmt.Errorf("setting header %q is not allowed", http.CanonicalHeaderKey(n))
8477
}
85-
for _, v := range header.Files {
86-
f := JoinDir(h.dir, v)
87-
_, err := os.ReadFile(f)
88-
if err != nil {
89-
return fmt.Errorf("unable to read header %q from file %s: %w", http.CanonicalHeaderKey(n), f, err)
90-
}
91-
}
9278
}
9379
return nil
9480
}
9581

82+
// Header represents the configuration for a single HTTP header.
83+
type Header struct {
84+
Values []string `yaml:"values,omitempty" json:"values,omitempty"`
85+
Secrets []Secret `yaml:"secrets,omitempty" json:"secrets,omitempty"`
86+
Files []string `yaml:"files,omitempty" json:"files,omitempty"`
87+
}
88+
89+
// SetDirectory makes headers file relative to the configuration file.
90+
func (h *Header) SetDirectory(dir string) {
91+
for i := range h.Files {
92+
h.Files[i] = JoinDir(dir, h.Files[i])
93+
}
94+
}
95+
9696
// NewHeadersRoundTripper returns a RoundTripper that sets HTTP headers on
9797
// requests as configured.
9898
func NewHeadersRoundTripper(config *Headers, next http.RoundTripper) http.RoundTripper {
@@ -121,10 +121,9 @@ func (rt *headersRoundTripper) RoundTrip(req *http.Request) (*http.Response, err
121121
req.Header.Add(n, string(v))
122122
}
123123
for _, v := range h.Files {
124-
f := JoinDir(rt.config.dir, v)
125-
b, err := os.ReadFile(f)
124+
b, err := os.ReadFile(v)
126125
if err != nil {
127-
return nil, fmt.Errorf("unable to read headers file %s: %w", f, err)
126+
return nil, fmt.Errorf("unable to read headers file %s: %w", v, err)
128127
}
129128
req.Header.Add(n, strings.TrimSpace(string(b)))
130129
}

config/http_config.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -828,7 +828,7 @@ type basicAuthRoundTripper struct {
828828

829829
// NewBasicAuthRoundTripper will apply a BASIC auth authorization header to a request unless it has
830830
// already been set.
831-
func NewBasicAuthRoundTripper(username SecretReader, password SecretReader, rt http.RoundTripper) http.RoundTripper {
831+
func NewBasicAuthRoundTripper(username, password SecretReader, rt http.RoundTripper) http.RoundTripper {
832832
return &basicAuthRoundTripper{username, password, rt}
833833
}
834834

config/http_config_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1107,7 +1107,7 @@ func getCertificateBlobs(t *testing.T) map[string][]byte {
11071107
return bs
11081108
}
11091109

1110-
func writeCertificate(bs map[string][]byte, src string, dst string) {
1110+
func writeCertificate(bs map[string][]byte, src, dst string) {
11111111
b, ok := bs[src]
11121112
if !ok {
11131113
panic(fmt.Sprintf("Couldn't find %q in bs", src))

0 commit comments

Comments
 (0)