Skip to content

Commit 334963d

Browse files
author
Julien
committed
Change the logic for SetDirectory
Signed-off-by: Julien <[email protected]>
1 parent d64a747 commit 334963d

File tree

1 file changed

+20
-14
lines changed

1 file changed

+20
-14
lines changed

config/headers.go

+20-14
Original file line numberDiff line numberDiff line change
@@ -52,28 +52,21 @@ 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.
@@ -86,6 +79,20 @@ func (h *Headers) Validate() error {
8679
return nil
8780
}
8881

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+
8996
// NewHeadersRoundTripper returns a RoundTripper that sets HTTP headers on
9097
// requests as configured.
9198
func NewHeadersRoundTripper(config *Headers, next http.RoundTripper) http.RoundTripper {
@@ -114,10 +121,9 @@ func (rt *headersRoundTripper) RoundTrip(req *http.Request) (*http.Response, err
114121
req.Header.Add(n, string(v))
115122
}
116123
for _, v := range h.Files {
117-
f := JoinDir(rt.config.dir, v)
118-
b, err := os.ReadFile(f)
124+
b, err := os.ReadFile(v)
119125
if err != nil {
120-
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)
121127
}
122128
req.Header.Add(n, strings.TrimSpace(string(b)))
123129
}

0 commit comments

Comments
 (0)