open-vault/vendor/golang.org/x/oauth2/internal/transport.go

34 lines
923 B
Go
Raw Normal View History

2015-10-23 13:14:09 +00:00
// Copyright 2014 The Go Authors. All rights reserved.
2015-04-27 23:19:51 +00:00
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package internal
import (
"context"
2015-04-27 23:19:51 +00:00
"net/http"
)
// HTTPClient is the context key to use with golang.org/x/net/context's
// WithValue function to associate an *http.Client value with a context.
var HTTPClient ContextKey
// ContextKey is just an empty struct. It exists so HTTPClient can be
// an immutable public variable with a unique type. It's immutable
// because nobody else can create a ContextKey, being unexported.
type ContextKey struct{}
2018-01-26 23:51:00 +00:00
var appengineClientHook func(context.Context) *http.Client
2015-04-27 23:19:51 +00:00
2018-01-26 23:51:00 +00:00
func ContextClient(ctx context.Context) *http.Client {
if ctx != nil {
if hc, ok := ctx.Value(HTTPClient).(*http.Client); ok {
2018-01-26 23:51:00 +00:00
return hc
}
}
2018-01-26 23:51:00 +00:00
if appengineClientHook != nil {
return appengineClientHook(ctx)
2015-04-27 23:19:51 +00:00
}
2018-01-26 23:51:00 +00:00
return http.DefaultClient
2015-04-27 23:19:51 +00:00
}