@@ -52,28 +52,21 @@ var reservedHeaders = map[string]struct{}{
52
52
// Headers represents the configuration for HTTP headers.
53
53
type Headers struct {
54
54
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"`
63
55
}
64
56
65
57
func (h Headers ) MarshalJSON () ([]byte , error ) {
66
58
// Inline the Headers map when serializing JSON because json encoder doesn't support "inline" directive.
67
59
return json .Marshal (h .Headers )
68
60
}
69
61
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.
72
63
func (h * Headers ) SetDirectory (dir string ) {
73
64
if h == nil {
74
65
return
75
66
}
76
- h .dir = dir
67
+ for _ , h := range h .Headers {
68
+ h .SetDirectory (dir )
69
+ }
77
70
}
78
71
79
72
// Validate validates the Headers config.
@@ -86,6 +79,20 @@ func (h *Headers) Validate() error {
86
79
return nil
87
80
}
88
81
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
+
89
96
// NewHeadersRoundTripper returns a RoundTripper that sets HTTP headers on
90
97
// requests as configured.
91
98
func NewHeadersRoundTripper (config * Headers , next http.RoundTripper ) http.RoundTripper {
@@ -114,10 +121,9 @@ func (rt *headersRoundTripper) RoundTrip(req *http.Request) (*http.Response, err
114
121
req .Header .Add (n , string (v ))
115
122
}
116
123
for _ , v := range h .Files {
117
- f := JoinDir (rt .config .dir , v )
118
- b , err := os .ReadFile (f )
124
+ b , err := os .ReadFile (v )
119
125
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 )
121
127
}
122
128
req .Header .Add (n , strings .TrimSpace (string (b )))
123
129
}
0 commit comments