forked from drone/go-scm
-
Notifications
You must be signed in to change notification settings - Fork 84
/
bearer.go
36 lines (30 loc) · 1.02 KB
/
bearer.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
// 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"
// BearerToken is an http.RoundTripper that makes HTTP
// requests, wrapping a base RoundTripper and adding an
// Authorization header with the Bearer Token.
type BearerToken struct {
Base http.RoundTripper
Token string // Bearer token
}
// RoundTrip adds the Authorization header to the request.
func (t *BearerToken) 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", "Bearer "+t.Token)
return t.base().RoundTrip(r2)
}
// base returns the base transport. If no base transport
// is configured, the default transport is returned.
func (t *BearerToken) base() http.RoundTripper {
if t.Base != nil {
return t.Base
}
return http.DefaultTransport
}