forked from drone/go-scm
-
Notifications
You must be signed in to change notification settings - Fork 83
/
auth.go
37 lines (31 loc) · 1.04 KB
/
auth.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
// Copyright 2018 Drone.IO Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package transport
import "net/http"
// Authorization is an http.RoundTripper that makes HTTP
// requests, wrapping a base RoundTripper and adding an
// Authorization header with credentials
type Authorization struct {
Base http.RoundTripper
Scheme string
Credentials string
}
// RoundTrip adds the Authorization header to the request.
func (t *Authorization) RoundTrip(r *http.Request) (*http.Response, error) {
// Do not overwrite the authorization header if exists.
if r.Header.Get("Authorization") != "" {
return t.base().RoundTrip(r)
}
r2 := cloneRequest(r)
r2.Header.Set("Authorization", t.Scheme+" "+t.Credentials)
return t.base().RoundTrip(r2)
}
// base returns the base transport. If no base transport
// is configured, the default transport is returned.
func (t *Authorization) base() http.RoundTripper {
if t.Base != nil {
return t.Base
}
return http.DefaultTransport
}