@@ -52,47 +52,47 @@ 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.
80
73
func (h * Headers ) Validate () error {
81
- for n , header := range h .Headers {
74
+ for n := range h .Headers {
82
75
if _ , ok := reservedHeaders [http .CanonicalHeaderKey (n )]; ok {
83
76
return fmt .Errorf ("setting header %q is not allowed" , http .CanonicalHeaderKey (n ))
84
77
}
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
- }
92
78
}
93
79
return nil
94
80
}
95
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
+
96
96
// NewHeadersRoundTripper returns a RoundTripper that sets HTTP headers on
97
97
// requests as configured.
98
98
func NewHeadersRoundTripper (config * Headers , next http.RoundTripper ) http.RoundTripper {
@@ -121,10 +121,9 @@ func (rt *headersRoundTripper) RoundTrip(req *http.Request) (*http.Response, err
121
121
req .Header .Add (n , string (v ))
122
122
}
123
123
for _ , v := range h .Files {
124
- f := JoinDir (rt .config .dir , v )
125
- b , err := os .ReadFile (f )
124
+ b , err := os .ReadFile (v )
126
125
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 )
128
127
}
129
128
req .Header .Add (n , strings .TrimSpace (string (b )))
130
129
}
0 commit comments