chore: switch to go modules
This commit is contained in:
parent
c015ff9539
commit
8b191e85f2
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,3 +1,5 @@
|
|||||||
|
vendor/**/.travis.yml
|
||||||
|
|
||||||
/protoc-gen-gotemplate
|
/protoc-gen-gotemplate
|
||||||
|
|
||||||
# Compiled Object files, Static and Dynamic libs (Shared Objects)
|
# Compiled Object files, Static and Dynamic libs (Shared Objects)
|
||||||
|
@ -57,7 +57,7 @@ func generate(w http.ResponseWriter, r *http.Request) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// read output
|
// read output
|
||||||
content, err := ioutil.ReadFile(filepath.Join(dir, "example.output"))
|
content, err := ioutil.ReadFile(filepath.Join(dir, "example.output")) // #nosec
|
||||||
if err != nil {
|
if err != nil {
|
||||||
returnError(w, err)
|
returnError(w, err)
|
||||||
return
|
return
|
||||||
|
0
examples/go.mod
Normal file
0
examples/go.mod
Normal file
27
go.mod
Normal file
27
go.mod
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
module moul.io/protoc-gen-gotemplate
|
||||||
|
|
||||||
|
require (
|
||||||
|
github.com/Masterminds/semver v1.2.2 // indirect
|
||||||
|
github.com/Masterminds/sprig v2.14.1+incompatible
|
||||||
|
github.com/aokoli/goutils v0.0.0-20170502144750-e57d01ace047 // indirect
|
||||||
|
github.com/dgrijalva/jwt-go v0.0.0-20160621201154-c9eaceb2896d // indirect
|
||||||
|
github.com/go-kit/kit v0.0.0-20161109000648-9f5c614cd1e7 // indirect
|
||||||
|
github.com/go-logfmt/logfmt v0.3.0 // indirect
|
||||||
|
github.com/go-stack/stack v1.5.3 // indirect
|
||||||
|
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect
|
||||||
|
github.com/golang/protobuf v0.0.0-20161117033126-8ee79997227b
|
||||||
|
github.com/gorilla/context v0.0.0-20160226214623-1ea25387ff6f // indirect
|
||||||
|
github.com/gorilla/handlers v0.0.0-20161028133215-e1b2144f2167
|
||||||
|
github.com/gorilla/mux v1.5.0
|
||||||
|
github.com/grpc-ecosystem/grpc-gateway v1.2.2
|
||||||
|
github.com/huandu/xstrings v0.0.0-20151130125119-3959339b3335
|
||||||
|
github.com/imdario/mergo v0.0.0-20171009183408-7fe0c75c13ab // indirect
|
||||||
|
github.com/kr/fs v0.0.0-20131111012553-2788f0dbd169 // indirect
|
||||||
|
github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515 // indirect
|
||||||
|
github.com/satori/go.uuid v1.1.0 // indirect
|
||||||
|
golang.org/x/crypto v0.0.0-20170516161655-0fe963104e9d // indirect
|
||||||
|
golang.org/x/net v0.0.0-20170108160505-da2b4fa28524 // indirect
|
||||||
|
golang.org/x/text v0.0.0-20161216064924-a49bea13b776 // indirect
|
||||||
|
google.golang.org/genproto v0.0.0-20170517234824-bb3573be0c48
|
||||||
|
google.golang.org/grpc v1.0.4 // indirect
|
||||||
|
)
|
37
go.sum
Normal file
37
go.sum
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
github.com/Masterminds/semver v1.2.2 h1:ptelpryog9A0pR4TGFvIAvw2c8SaNrYkFtfrxhSviss=
|
||||||
|
github.com/Masterminds/semver v1.2.2/go.mod h1:MB6lktGJrhw8PrUyiEoblNEGEQ+RzHPF078ddwwvV3Y=
|
||||||
|
github.com/Masterminds/sprig v2.14.1+incompatible h1:rTHERm50Xp1Cbb8x7xBCeDp//jMMqqR44EWw7KwSXUQ=
|
||||||
|
github.com/Masterminds/sprig v2.14.1+incompatible/go.mod h1:y6hNFY5UBTIWBxnzTeuNhlNS5hqE0NB0E6fgfo2Br3o=
|
||||||
|
github.com/aokoli/goutils v0.0.0-20170502144750-e57d01ace047 h1:Bn0iqJ/349f606hR0juIGyheAI6+hyg9XUOLhN9udLo=
|
||||||
|
github.com/aokoli/goutils v0.0.0-20170502144750-e57d01ace047/go.mod h1:SijmP0QR8LtwsmDs8Yii5Z/S4trXFGFC2oO5g9DP+DQ=
|
||||||
|
github.com/dgrijalva/jwt-go v0.0.0-20160621201154-c9eaceb2896d/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ=
|
||||||
|
github.com/go-kit/kit v0.0.0-20161109000648-9f5c614cd1e7/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as=
|
||||||
|
github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE=
|
||||||
|
github.com/go-stack/stack v1.5.3/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY=
|
||||||
|
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58=
|
||||||
|
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q=
|
||||||
|
github.com/golang/protobuf v0.0.0-20161117033126-8ee79997227b h1:fE/yi9pibxGEc0gSJuEShcsBXE2d5FW3OudsjE9tKzQ=
|
||||||
|
github.com/golang/protobuf v0.0.0-20161117033126-8ee79997227b/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
|
||||||
|
github.com/gorilla/context v0.0.0-20160226214623-1ea25387ff6f h1:9oNbS1z4rVpbnkHBdPZU4jo9bSmrLpII768arSyMFgk=
|
||||||
|
github.com/gorilla/context v0.0.0-20160226214623-1ea25387ff6f/go.mod h1:kBGZzfjB9CEq2AlWe17Uuf7NDRt0dE0s8S51q0aT7Yg=
|
||||||
|
github.com/gorilla/handlers v0.0.0-20161028133215-e1b2144f2167 h1:uANqGlSIT3JwuQVokEBcvc9WAu5+v4cVD5szF5k+iIU=
|
||||||
|
github.com/gorilla/handlers v0.0.0-20161028133215-e1b2144f2167/go.mod h1:Qkdc/uu4tH4g6mTK6auzZ766c4CA0Ng8+o/OAirnOIQ=
|
||||||
|
github.com/gorilla/mux v1.5.0 h1:mq8bRov+5x+pZNR/uAHyUEgovR9gLgYFwDQIeuYi9TM=
|
||||||
|
github.com/gorilla/mux v1.5.0/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs=
|
||||||
|
github.com/grpc-ecosystem/grpc-gateway v1.2.2 h1:oR2ZMoJtQccW6NIJ9yFxRqAr2rkmcNsCaZKT66A9zt4=
|
||||||
|
github.com/grpc-ecosystem/grpc-gateway v1.2.2/go.mod h1:RSKVYQBd5MCa4OVpNdGskqpgL2+G+NZTnrVHpWWfpdw=
|
||||||
|
github.com/huandu/xstrings v0.0.0-20151130125119-3959339b3335 h1:KZOP9q7J/P4eMBibPuVwuloXgd2dTbLAHRPqxw7NXOw=
|
||||||
|
github.com/huandu/xstrings v0.0.0-20151130125119-3959339b3335/go.mod h1:4qWG/gcEcfX4z/mBDHJ++3ReCw9ibxbsNJbcucJdbSo=
|
||||||
|
github.com/imdario/mergo v0.0.0-20171009183408-7fe0c75c13ab h1:k/Biv+LJL35wkk0Hveko1nj7as4tSHkHdZaNlzn/gcQ=
|
||||||
|
github.com/imdario/mergo v0.0.0-20171009183408-7fe0c75c13ab/go.mod h1:2EnlNZ0deacrJVfApfmtdGgDfMuh/nq6Ok1EcJh5FfA=
|
||||||
|
github.com/kr/fs v0.0.0-20131111012553-2788f0dbd169/go.mod h1:glhvuHOU9Hy7/8PwwdtnarXqLagOX0b/TbZx2zLMqEg=
|
||||||
|
github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc=
|
||||||
|
github.com/satori/go.uuid v1.1.0 h1:B9KXyj+GzIpJbV7gmr873NsY6zpbxNy24CBtGrk7jHo=
|
||||||
|
github.com/satori/go.uuid v1.1.0/go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0=
|
||||||
|
golang.org/x/crypto v0.0.0-20170516161655-0fe963104e9d h1:qjfFh1YMn6m60QTGoG+IlwUMhNlXJbDyCa6EkHM/N2w=
|
||||||
|
golang.org/x/crypto v0.0.0-20170516161655-0fe963104e9d/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=
|
||||||
|
golang.org/x/net v0.0.0-20170108160505-da2b4fa28524/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
||||||
|
golang.org/x/text v0.0.0-20161216064924-a49bea13b776/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||||
|
google.golang.org/genproto v0.0.0-20170517234824-bb3573be0c48 h1:xfoW+Di7qQQUnjptcGb4/rpc701e3RvfNmaywfMxQVI=
|
||||||
|
google.golang.org/genproto v0.0.0-20170517234824-bb3573be0c48/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc=
|
||||||
|
google.golang.org/grpc v1.0.4/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw=
|
2
vendor/github.com/Masterminds/sprig/.gitignore
generated
vendored
Normal file
2
vendor/github.com/Masterminds/sprig/.gitignore
generated
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
vendor/
|
||||||
|
/.glide
|
8
vendor/github.com/dgrijalva/jwt-go/LICENSE
generated
vendored
8
vendor/github.com/dgrijalva/jwt-go/LICENSE
generated
vendored
@ -1,8 +0,0 @@
|
|||||||
Copyright (c) 2012 Dave Grijalva
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
||||||
|
|
96
vendor/github.com/dgrijalva/jwt-go/MIGRATION_GUIDE.md
generated
vendored
96
vendor/github.com/dgrijalva/jwt-go/MIGRATION_GUIDE.md
generated
vendored
@ -1,96 +0,0 @@
|
|||||||
## Migration Guide from v2 -> v3
|
|
||||||
|
|
||||||
Version 3 adds several new, frequently requested features. To do so, it introduces a few breaking changes. We've worked to keep these as minimal as possible. This guide explains the breaking changes and how you can quickly update your code.
|
|
||||||
|
|
||||||
### `Token.Claims` is now an interface type
|
|
||||||
|
|
||||||
The most requested feature from the 2.0 verison of this library was the ability to provide a custom type to the JSON parser for claims. This was implemented by introducing a new interface, `Claims`, to replace `map[string]interface{}`. We also included two concrete implementations of `Claims`: `MapClaims` and `StandardClaims`.
|
|
||||||
|
|
||||||
`MapClaims` is an alias for `map[string]interface{}` with built in validation behavior. It is the default claims type when using `Parse`. The usage is unchanged except you must type cast the claims property.
|
|
||||||
|
|
||||||
The old example for parsing a token looked like this..
|
|
||||||
|
|
||||||
```go
|
|
||||||
if token, err := jwt.Parse(tokenString, keyLookupFunc); err == nil {
|
|
||||||
fmt.Printf("Token for user %v expires %v", token.Claims["user"], token.Claims["exp"])
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
is now directly mapped to...
|
|
||||||
|
|
||||||
```go
|
|
||||||
if token, err := jwt.Parse(tokenString, keyLookupFunc); err == nil {
|
|
||||||
claims := token.Claims.(jwt.MapClaims)
|
|
||||||
fmt.Printf("Token for user %v expires %v", claims["user"], claims["exp"])
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
`StandardClaims` is designed to be embedded in your custom type. You can supply a custom claims type with the new `ParseWithClaims` function. Here's an example of using a custom claims type.
|
|
||||||
|
|
||||||
```go
|
|
||||||
type MyCustomClaims struct {
|
|
||||||
User string
|
|
||||||
*StandardClaims
|
|
||||||
}
|
|
||||||
|
|
||||||
if token, err := jwt.ParseWithClaims(tokenString, &MyCustomClaims{}, keyLookupFunc); err == nil {
|
|
||||||
claims := token.Claims.(*MyCustomClaims)
|
|
||||||
fmt.Printf("Token for user %v expires %v", claims.User, claims.StandardClaims.ExpiresAt)
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### `ParseFromRequest` has been moved
|
|
||||||
|
|
||||||
To keep this library focused on the tokens without becoming overburdened with complex request processing logic, `ParseFromRequest` and its new companion `ParseFromRequestWithClaims` have been moved to a subpackage, `request`. The method signatues have also been augmented to receive a new argument: `Extractor`.
|
|
||||||
|
|
||||||
`Extractors` do the work of picking the token string out of a request. The interface is simple and composable.
|
|
||||||
|
|
||||||
This simple parsing example:
|
|
||||||
|
|
||||||
```go
|
|
||||||
if token, err := jwt.ParseFromRequest(tokenString, req, keyLookupFunc); err == nil {
|
|
||||||
fmt.Printf("Token for user %v expires %v", token.Claims["user"], token.Claims["exp"])
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
is directly mapped to:
|
|
||||||
|
|
||||||
```go
|
|
||||||
if token, err := request.ParseFromRequest(tokenString, request.OAuth2Extractor, req, keyLookupFunc); err == nil {
|
|
||||||
fmt.Printf("Token for user %v expires %v", token.Claims["user"], token.Claims["exp"])
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
There are several concrete `Extractor` types provided for your convenience:
|
|
||||||
|
|
||||||
* `HeaderExtractor` will search a list of headers until one contains content.
|
|
||||||
* `ArgumentExtractor` will search a list of keys in request query and form arguments until one contains content.
|
|
||||||
* `MultiExtractor` will try a list of `Extractors` in order until one returns content.
|
|
||||||
* `AuthorizationHeaderExtractor` will look in the `Authorization` header for a `Bearer` token.
|
|
||||||
* `OAuth2Extractor` searches the places an OAuth2 token would be specified (per the spec): `Authorization` header and `access_token` argument
|
|
||||||
* `PostExtractionFilter` wraps an `Extractor`, allowing you to process the content before it's parsed. A simple example is stripping the `Bearer ` text from a header
|
|
||||||
|
|
||||||
|
|
||||||
### RSA signing methods no longer accept `[]byte` keys
|
|
||||||
|
|
||||||
Due to a [critical vulnerability](https://auth0.com/blog/2015/03/31/critical-vulnerabilities-in-json-web-token-libraries/), we've decided the convenience of accepting `[]byte` instead of `rsa.PublicKey` or `rsa.PrivateKey` isn't worth the risk of misuse.
|
|
||||||
|
|
||||||
To replace this behavior, we've added two helper methods: `ParseRSAPrivateKeyFromPEM(key []byte) (*rsa.PrivateKey, error)` and `ParseRSAPublicKeyFromPEM(key []byte) (*rsa.PublicKey, error)`. These are just simple helpers for unpacking PEM encoded PKCS1 and PKCS8 keys. If your keys are encoded any other way, all you need to do is convert them to the `crypto/rsa` package's types.
|
|
||||||
|
|
||||||
```go
|
|
||||||
func keyLookupFunc(*Token) (interface{}, error) {
|
|
||||||
// Don't forget to validate the alg is what you expect:
|
|
||||||
if _, ok := token.Method.(*jwt.SigningMethodRSA); !ok {
|
|
||||||
return nil, fmt.Errorf("Unexpected signing method: %v", token.Header["alg"])
|
|
||||||
}
|
|
||||||
|
|
||||||
// Look up key
|
|
||||||
key, err := lookupPublicKey(token.Header["kid"])
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
// Unpack key from PEM encoded PKCS8
|
|
||||||
return jwt.ParseRSAPublicKeyFromPEM(key)
|
|
||||||
}
|
|
||||||
```
|
|
85
vendor/github.com/dgrijalva/jwt-go/README.md
generated
vendored
85
vendor/github.com/dgrijalva/jwt-go/README.md
generated
vendored
@ -1,85 +0,0 @@
|
|||||||
A [go](http://www.golang.org) (or 'golang' for search engine friendliness) implementation of [JSON Web Tokens](http://self-issued.info/docs/draft-ietf-oauth-json-web-token.html)
|
|
||||||
|
|
||||||
[![Build Status](https://travis-ci.org/dgrijalva/jwt-go.svg?branch=master)](https://travis-ci.org/dgrijalva/jwt-go)
|
|
||||||
|
|
||||||
**BREAKING CHANGES:*** Version 3.0.0 is here. It includes _a lot_ of changes including a few that break the API. We've tried to break as few things as possible, so there should just be a few type signature changes. A full list of breaking changes is available in `VERSION_HISTORY.md`. See `MIGRATION_GUIDE.md` for more information on updating your code.
|
|
||||||
|
|
||||||
**NOTICE:** A vulnerability in JWT was [recently published](https://auth0.com/blog/2015/03/31/critical-vulnerabilities-in-json-web-token-libraries/). As this library doesn't force users to validate the `alg` is what they expected, it's possible your usage is effected. There will be an update soon to remedy this, and it will likey require backwards-incompatible changes to the API. In the short term, please make sure your implementation verifies the `alg` is what you expect.
|
|
||||||
|
|
||||||
|
|
||||||
## What the heck is a JWT?
|
|
||||||
|
|
||||||
JWT.io has [a great introduction](https://jwt.io/introduction) to JSON Web Tokens.
|
|
||||||
|
|
||||||
In short, it's a signed JSON object that does something useful (for example, authentication). It's commonly used for `Bearer` tokens in Oauth 2. A token is made of three parts, separated by `.`'s. The first two parts are JSON objects, that have been [base64url](http://tools.ietf.org/html/rfc4648) encoded. The last part is the signature, encoded the same way.
|
|
||||||
|
|
||||||
The first part is called the header. It contains the necessary information for verifying the last part, the signature. For example, which encryption method was used for signing and what key was used.
|
|
||||||
|
|
||||||
The part in the middle is the interesting bit. It's called the Claims and contains the actual stuff you care about. Refer to [the RFC](http://self-issued.info/docs/draft-jones-json-web-token.html) for information about reserved keys and the proper way to add your own.
|
|
||||||
|
|
||||||
## What's in the box?
|
|
||||||
|
|
||||||
This library supports the parsing and verification as well as the generation and signing of JWTs. Current supported signing algorithms are HMAC SHA, RSA, RSA-PSS, and ECDSA, though hooks are present for adding your own.
|
|
||||||
|
|
||||||
## Examples
|
|
||||||
|
|
||||||
See [the project documentation](https://godoc.org/github.com/dgrijalva/jwt-go) for examples of usage:
|
|
||||||
|
|
||||||
* [Simple example of parsing and validating a token](https://godoc.org/github.com/dgrijalva/jwt-go#example-Parse--Hmac)
|
|
||||||
* [Simple example of building and signing a token](https://godoc.org/github.com/dgrijalva/jwt-go#example-New--Hmac)
|
|
||||||
* [Directory of Examples](https://godoc.org/github.com/dgrijalva/jwt-go#pkg-examples)
|
|
||||||
|
|
||||||
## Extensions
|
|
||||||
|
|
||||||
This library publishes all the necessary components for adding your own signing methods. Simply implement the `SigningMethod` interface and register a factory method using `RegisterSigningMethod`.
|
|
||||||
|
|
||||||
Here's an example of an extension that integrates with the Google App Engine signing tools: https://github.com/someone1/gcp-jwt-go
|
|
||||||
|
|
||||||
## Compliance
|
|
||||||
|
|
||||||
This library was last reviewed to comply with [RTF 7519](http://www.rfc-editor.org/info/rfc7519) dated May 2015 with a few notable differences:
|
|
||||||
|
|
||||||
* In order to protect against accidental use of [Unsecured JWTs](http://self-issued.info/docs/draft-ietf-oauth-json-web-token.html#UnsecuredJWT), tokens using `alg=none` will only be accepted if the constant `jwt.UnsafeAllowNoneSignatureType` is provided as the key.
|
|
||||||
|
|
||||||
## Project Status & Versioning
|
|
||||||
|
|
||||||
This library is considered production ready. Feedback and feature requests are appreciated. The API should be considered stable. There should be very few backwards-incompatible changes outside of major version updates (and only with good reason).
|
|
||||||
|
|
||||||
This project uses [Semantic Versioning 2.0.0](http://semver.org). Accepted pull requests will land on `master`. Periodically, versions will be tagged from `master`. You can find all the releases on [the project releases page](https://github.com/dgrijalva/jwt-go/releases).
|
|
||||||
|
|
||||||
While we try to make it obvious when we make breaking changes, there isn't a great mechanism for pushing announcements out to users. You may want to use this alternative package include: `gopkg.in/dgrijalva/jwt-go.v2`. It will do the right thing WRT semantic versioning.
|
|
||||||
|
|
||||||
## Usage Tips
|
|
||||||
|
|
||||||
### Signing vs Encryption
|
|
||||||
|
|
||||||
A token is simply a JSON object that is signed by its author. this tells you exactly two things about the data:
|
|
||||||
|
|
||||||
* The author of the token was in the possession of the signing secret
|
|
||||||
* The data has not been modified since it was signed
|
|
||||||
|
|
||||||
It's important to know that JWT does not provide encryption, which means anyone who has access to the token can read its contents. If you need to protect (encrypt) the data, there is a companion spec, `JWE`, that provides this functionality. JWE is currently outside the scope of this library.
|
|
||||||
|
|
||||||
### Choosing a Signing Method
|
|
||||||
|
|
||||||
There are several signing methods available, and you should probably take the time to learn about the various options before choosing one. The principal design decision is most likely going to be symmetric vs asymmetric.
|
|
||||||
|
|
||||||
Symmetric signing methods, such as HSA, use only a single secret. This is probably the simplest signing method to use since any `[]byte` can be used as a valid secret. They are also slightly computationally faster to use, though this rarely is enough to matter. Symmetric signing methods work the best when both producers and consumers of tokens are trusted, or even the same system. Since the same secret is used to both sign and validate tokens, you can't easily distribute the key for validation.
|
|
||||||
|
|
||||||
Asymmetric signing methods, such as RSA, use different keys for signing and verifying tokens. This makes it possible to produce tokens with a private key, and allow any consumer to access the public key for verification.
|
|
||||||
|
|
||||||
### JWT and OAuth
|
|
||||||
|
|
||||||
It's worth mentioning that OAuth and JWT are not the same thing. A JWT token is simply a signed JSON object. It can be used anywhere such a thing is useful. There is some confusion, though, as JWT is the most common type of bearer token used in OAuth2 authentication.
|
|
||||||
|
|
||||||
Without going too far down the rabbit hole, here's a description of the interaction of these technologies:
|
|
||||||
|
|
||||||
* OAuth is a protocol for allowing an identity provider to be separate from the service a user is logging in to. For example, whenever you use Facebook to log into a different service (Yelp, Spotify, etc), you are using OAuth.
|
|
||||||
* OAuth defines several options for passing around authentication data. One popular method is called a "bearer token". A bearer token is simply a string that _should_ only be held by an authenticated user. Thus, simply presenting this token proves your identity. You can probably derive from here why a JWT might make a good bearer token.
|
|
||||||
* Because bearer tokens are used for authentication, it's important they're kept secret. This is why transactions that use bearer tokens typically happen over SSL.
|
|
||||||
|
|
||||||
## More
|
|
||||||
|
|
||||||
Documentation can be found [on godoc.org](http://godoc.org/github.com/dgrijalva/jwt-go).
|
|
||||||
|
|
||||||
The command line utility included in this project (cmd/jwt) provides a straightforward example of token creation and parsing as well as a useful tool for debugging your own integration. You'll also find several implementation examples in to documentation.
|
|
105
vendor/github.com/dgrijalva/jwt-go/VERSION_HISTORY.md
generated
vendored
105
vendor/github.com/dgrijalva/jwt-go/VERSION_HISTORY.md
generated
vendored
@ -1,105 +0,0 @@
|
|||||||
## `jwt-go` Version History
|
|
||||||
|
|
||||||
#### 3.0.0
|
|
||||||
|
|
||||||
* **Compatibility Breaking Changes**: See MIGRATION_GUIDE.md for tips on updating your code
|
|
||||||
* Dropped support for `[]byte` keys when using RSA signing methods. This convenience feature could contribute to security vulnerabilities involving mismatched key types with signing methods.
|
|
||||||
* `ParseFromRequest` has been moved to `request` subpackage and usage has changed
|
|
||||||
* The `Claims` property on `Token` is now type `Claims` instead of `map[string]interface{}`. The default value is type `MapClaims`, which is an alias to `map[string]interface{}`. This makes it possible to use a custom type when decoding claims.
|
|
||||||
* Other Additions and Changes
|
|
||||||
* Added `Claims` interface type to allow users to decode the claims into a custom type
|
|
||||||
* Added `ParseWithClaims`, which takes a third argument of type `Claims`. Use this function instead of `Parse` if you have a custom type you'd like to decode into.
|
|
||||||
* Dramatically improved the functionality and flexibility of `ParseFromRequest`, which is now in the `request` subpackage
|
|
||||||
* Added `ParseFromRequestWithClaims` which is the `FromRequest` equivalent of `ParseWithClaims`
|
|
||||||
* Added new interface type `Extractor`, which is used for extracting JWT strings from http requests. Used with `ParseFromRequest` and `ParseFromRequestWithClaims`.
|
|
||||||
* Added several new, more specific, validation errors to error type bitmask
|
|
||||||
* Moved examples from README to executable example files
|
|
||||||
* Signing method registry is now thread safe
|
|
||||||
* Added new property to `ValidationError`, which contains the raw error returned by calls made by parse/verify (such as those returned by keyfunc or json parser)
|
|
||||||
|
|
||||||
#### 2.7.0
|
|
||||||
|
|
||||||
This will likely be the last backwards compatible release before 3.0.0, excluding essential bug fixes.
|
|
||||||
|
|
||||||
* Added new option `-show` to the `jwt` command that will just output the decoded token without verifying
|
|
||||||
* Error text for expired tokens includes how long it's been expired
|
|
||||||
* Fixed incorrect error returned from `ParseRSAPublicKeyFromPEM`
|
|
||||||
* Documentation updates
|
|
||||||
|
|
||||||
#### 2.6.0
|
|
||||||
|
|
||||||
* Exposed inner error within ValidationError
|
|
||||||
* Fixed validation errors when using UseJSONNumber flag
|
|
||||||
* Added several unit tests
|
|
||||||
|
|
||||||
#### 2.5.0
|
|
||||||
|
|
||||||
* Added support for signing method none. You shouldn't use this. The API tries to make this clear.
|
|
||||||
* Updated/fixed some documentation
|
|
||||||
* Added more helpful error message when trying to parse tokens that begin with `BEARER `
|
|
||||||
|
|
||||||
#### 2.4.0
|
|
||||||
|
|
||||||
* Added new type, Parser, to allow for configuration of various parsing parameters
|
|
||||||
* You can now specify a list of valid signing methods. Anything outside this set will be rejected.
|
|
||||||
* You can now opt to use the `json.Number` type instead of `float64` when parsing token JSON
|
|
||||||
* Added support for [Travis CI](https://travis-ci.org/dgrijalva/jwt-go)
|
|
||||||
* Fixed some bugs with ECDSA parsing
|
|
||||||
|
|
||||||
#### 2.3.0
|
|
||||||
|
|
||||||
* Added support for ECDSA signing methods
|
|
||||||
* Added support for RSA PSS signing methods (requires go v1.4)
|
|
||||||
|
|
||||||
#### 2.2.0
|
|
||||||
|
|
||||||
* Gracefully handle a `nil` `Keyfunc` being passed to `Parse`. Result will now be the parsed token and an error, instead of a panic.
|
|
||||||
|
|
||||||
#### 2.1.0
|
|
||||||
|
|
||||||
Backwards compatible API change that was missed in 2.0.0.
|
|
||||||
|
|
||||||
* The `SignedString` method on `Token` now takes `interface{}` instead of `[]byte`
|
|
||||||
|
|
||||||
#### 2.0.0
|
|
||||||
|
|
||||||
There were two major reasons for breaking backwards compatibility with this update. The first was a refactor required to expand the width of the RSA and HMAC-SHA signing implementations. There will likely be no required code changes to support this change.
|
|
||||||
|
|
||||||
The second update, while unfortunately requiring a small change in integration, is required to open up this library to other signing methods. Not all keys used for all signing methods have a single standard on-disk representation. Requiring `[]byte` as the type for all keys proved too limiting. Additionally, this implementation allows for pre-parsed tokens to be reused, which might matter in an application that parses a high volume of tokens with a small set of keys. Backwards compatibilty has been maintained for passing `[]byte` to the RSA signing methods, but they will also accept `*rsa.PublicKey` and `*rsa.PrivateKey`.
|
|
||||||
|
|
||||||
It is likely the only integration change required here will be to change `func(t *jwt.Token) ([]byte, error)` to `func(t *jwt.Token) (interface{}, error)` when calling `Parse`.
|
|
||||||
|
|
||||||
* **Compatibility Breaking Changes**
|
|
||||||
* `SigningMethodHS256` is now `*SigningMethodHMAC` instead of `type struct`
|
|
||||||
* `SigningMethodRS256` is now `*SigningMethodRSA` instead of `type struct`
|
|
||||||
* `KeyFunc` now returns `interface{}` instead of `[]byte`
|
|
||||||
* `SigningMethod.Sign` now takes `interface{}` instead of `[]byte` for the key
|
|
||||||
* `SigningMethod.Verify` now takes `interface{}` instead of `[]byte` for the key
|
|
||||||
* Renamed type `SigningMethodHS256` to `SigningMethodHMAC`. Specific sizes are now just instances of this type.
|
|
||||||
* Added public package global `SigningMethodHS256`
|
|
||||||
* Added public package global `SigningMethodHS384`
|
|
||||||
* Added public package global `SigningMethodHS512`
|
|
||||||
* Renamed type `SigningMethodRS256` to `SigningMethodRSA`. Specific sizes are now just instances of this type.
|
|
||||||
* Added public package global `SigningMethodRS256`
|
|
||||||
* Added public package global `SigningMethodRS384`
|
|
||||||
* Added public package global `SigningMethodRS512`
|
|
||||||
* Moved sample private key for HMAC tests from an inline value to a file on disk. Value is unchanged.
|
|
||||||
* Refactored the RSA implementation to be easier to read
|
|
||||||
* Exposed helper methods `ParseRSAPrivateKeyFromPEM` and `ParseRSAPublicKeyFromPEM`
|
|
||||||
|
|
||||||
#### 1.0.2
|
|
||||||
|
|
||||||
* Fixed bug in parsing public keys from certificates
|
|
||||||
* Added more tests around the parsing of keys for RS256
|
|
||||||
* Code refactoring in RS256 implementation. No functional changes
|
|
||||||
|
|
||||||
#### 1.0.1
|
|
||||||
|
|
||||||
* Fixed panic if RS256 signing method was passed an invalid key
|
|
||||||
|
|
||||||
#### 1.0.0
|
|
||||||
|
|
||||||
* First versioned release
|
|
||||||
* API stabilized
|
|
||||||
* Supports creating, signing, parsing, and validating JWT tokens
|
|
||||||
* Supports RS256 and HS256 signing methods
|
|
134
vendor/github.com/dgrijalva/jwt-go/claims.go
generated
vendored
134
vendor/github.com/dgrijalva/jwt-go/claims.go
generated
vendored
@ -1,134 +0,0 @@
|
|||||||
package jwt
|
|
||||||
|
|
||||||
import (
|
|
||||||
"crypto/subtle"
|
|
||||||
"fmt"
|
|
||||||
"time"
|
|
||||||
)
|
|
||||||
|
|
||||||
// For a type to be a Claims object, it must just have a Valid method that determines
|
|
||||||
// if the token is invalid for any supported reason
|
|
||||||
type Claims interface {
|
|
||||||
Valid() error
|
|
||||||
}
|
|
||||||
|
|
||||||
// Structured version of Claims Section, as referenced at
|
|
||||||
// https://tools.ietf.org/html/rfc7519#section-4.1
|
|
||||||
// See examples for how to use this with your own claim types
|
|
||||||
type StandardClaims struct {
|
|
||||||
Audience string `json:"aud,omitempty"`
|
|
||||||
ExpiresAt int64 `json:"exp,omitempty"`
|
|
||||||
Id string `json:"jti,omitempty"`
|
|
||||||
IssuedAt int64 `json:"iat,omitempty"`
|
|
||||||
Issuer string `json:"iss,omitempty"`
|
|
||||||
NotBefore int64 `json:"nbf,omitempty"`
|
|
||||||
Subject string `json:"sub,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// Validates time based claims "exp, iat, nbf".
|
|
||||||
// There is no accounting for clock skew.
|
|
||||||
// As well, if any of the above claims are not in the token, it will still
|
|
||||||
// be considered a valid claim.
|
|
||||||
func (c StandardClaims) Valid() error {
|
|
||||||
vErr := new(ValidationError)
|
|
||||||
now := TimeFunc().Unix()
|
|
||||||
|
|
||||||
// The claims below are optional, by default, so if they are set to the
|
|
||||||
// default value in Go, let's not fail the verification for them.
|
|
||||||
if c.VerifyExpiresAt(now, false) == false {
|
|
||||||
delta := time.Unix(now, 0).Sub(time.Unix(c.ExpiresAt, 0))
|
|
||||||
vErr.Inner = fmt.Errorf("token is expired by %v", delta)
|
|
||||||
vErr.Errors |= ValidationErrorExpired
|
|
||||||
}
|
|
||||||
|
|
||||||
if c.VerifyIssuedAt(now, false) == false {
|
|
||||||
vErr.Inner = fmt.Errorf("Token used before issued")
|
|
||||||
vErr.Errors |= ValidationErrorIssuedAt
|
|
||||||
}
|
|
||||||
|
|
||||||
if c.VerifyNotBefore(now, false) == false {
|
|
||||||
vErr.Inner = fmt.Errorf("token is not valid yet")
|
|
||||||
vErr.Errors |= ValidationErrorNotValidYet
|
|
||||||
}
|
|
||||||
|
|
||||||
if vErr.valid() {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
return vErr
|
|
||||||
}
|
|
||||||
|
|
||||||
// Compares the aud claim against cmp.
|
|
||||||
// If required is false, this method will return true if the value matches or is unset
|
|
||||||
func (c *StandardClaims) VerifyAudience(cmp string, req bool) bool {
|
|
||||||
return verifyAud(c.Audience, cmp, req)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Compares the exp claim against cmp.
|
|
||||||
// If required is false, this method will return true if the value matches or is unset
|
|
||||||
func (c *StandardClaims) VerifyExpiresAt(cmp int64, req bool) bool {
|
|
||||||
return verifyExp(c.ExpiresAt, cmp, req)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Compares the iat claim against cmp.
|
|
||||||
// If required is false, this method will return true if the value matches or is unset
|
|
||||||
func (c *StandardClaims) VerifyIssuedAt(cmp int64, req bool) bool {
|
|
||||||
return verifyIat(c.IssuedAt, cmp, req)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Compares the iss claim against cmp.
|
|
||||||
// If required is false, this method will return true if the value matches or is unset
|
|
||||||
func (c *StandardClaims) VerifyIssuer(cmp string, req bool) bool {
|
|
||||||
return verifyIss(c.Issuer, cmp, req)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Compares the nbf claim against cmp.
|
|
||||||
// If required is false, this method will return true if the value matches or is unset
|
|
||||||
func (c *StandardClaims) VerifyNotBefore(cmp int64, req bool) bool {
|
|
||||||
return verifyNbf(c.NotBefore, cmp, req)
|
|
||||||
}
|
|
||||||
|
|
||||||
// ----- helpers
|
|
||||||
|
|
||||||
func verifyAud(aud string, cmp string, required bool) bool {
|
|
||||||
if aud == "" {
|
|
||||||
return !required
|
|
||||||
}
|
|
||||||
if subtle.ConstantTimeCompare([]byte(aud), []byte(cmp)) != 0 {
|
|
||||||
return true
|
|
||||||
} else {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func verifyExp(exp int64, now int64, required bool) bool {
|
|
||||||
if exp == 0 {
|
|
||||||
return !required
|
|
||||||
}
|
|
||||||
return now <= exp
|
|
||||||
}
|
|
||||||
|
|
||||||
func verifyIat(iat int64, now int64, required bool) bool {
|
|
||||||
if iat == 0 {
|
|
||||||
return !required
|
|
||||||
}
|
|
||||||
return now >= iat
|
|
||||||
}
|
|
||||||
|
|
||||||
func verifyIss(iss string, cmp string, required bool) bool {
|
|
||||||
if iss == "" {
|
|
||||||
return !required
|
|
||||||
}
|
|
||||||
if subtle.ConstantTimeCompare([]byte(iss), []byte(cmp)) != 0 {
|
|
||||||
return true
|
|
||||||
} else {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func verifyNbf(nbf int64, now int64, required bool) bool {
|
|
||||||
if nbf == 0 {
|
|
||||||
return !required
|
|
||||||
}
|
|
||||||
return now >= nbf
|
|
||||||
}
|
|
4
vendor/github.com/dgrijalva/jwt-go/doc.go
generated
vendored
4
vendor/github.com/dgrijalva/jwt-go/doc.go
generated
vendored
@ -1,4 +0,0 @@
|
|||||||
// Package jwt is a Go implementation of JSON Web Tokens: http://self-issued.info/docs/draft-jones-json-web-token.html
|
|
||||||
//
|
|
||||||
// See README.md for more info.
|
|
||||||
package jwt
|
|
147
vendor/github.com/dgrijalva/jwt-go/ecdsa.go
generated
vendored
147
vendor/github.com/dgrijalva/jwt-go/ecdsa.go
generated
vendored
@ -1,147 +0,0 @@
|
|||||||
package jwt
|
|
||||||
|
|
||||||
import (
|
|
||||||
"crypto"
|
|
||||||
"crypto/ecdsa"
|
|
||||||
"crypto/rand"
|
|
||||||
"errors"
|
|
||||||
"math/big"
|
|
||||||
)
|
|
||||||
|
|
||||||
var (
|
|
||||||
// Sadly this is missing from crypto/ecdsa compared to crypto/rsa
|
|
||||||
ErrECDSAVerification = errors.New("crypto/ecdsa: verification error")
|
|
||||||
)
|
|
||||||
|
|
||||||
// Implements the ECDSA family of signing methods signing methods
|
|
||||||
type SigningMethodECDSA struct {
|
|
||||||
Name string
|
|
||||||
Hash crypto.Hash
|
|
||||||
KeySize int
|
|
||||||
CurveBits int
|
|
||||||
}
|
|
||||||
|
|
||||||
// Specific instances for EC256 and company
|
|
||||||
var (
|
|
||||||
SigningMethodES256 *SigningMethodECDSA
|
|
||||||
SigningMethodES384 *SigningMethodECDSA
|
|
||||||
SigningMethodES512 *SigningMethodECDSA
|
|
||||||
)
|
|
||||||
|
|
||||||
func init() {
|
|
||||||
// ES256
|
|
||||||
SigningMethodES256 = &SigningMethodECDSA{"ES256", crypto.SHA256, 32, 256}
|
|
||||||
RegisterSigningMethod(SigningMethodES256.Alg(), func() SigningMethod {
|
|
||||||
return SigningMethodES256
|
|
||||||
})
|
|
||||||
|
|
||||||
// ES384
|
|
||||||
SigningMethodES384 = &SigningMethodECDSA{"ES384", crypto.SHA384, 48, 384}
|
|
||||||
RegisterSigningMethod(SigningMethodES384.Alg(), func() SigningMethod {
|
|
||||||
return SigningMethodES384
|
|
||||||
})
|
|
||||||
|
|
||||||
// ES512
|
|
||||||
SigningMethodES512 = &SigningMethodECDSA{"ES512", crypto.SHA512, 66, 521}
|
|
||||||
RegisterSigningMethod(SigningMethodES512.Alg(), func() SigningMethod {
|
|
||||||
return SigningMethodES512
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *SigningMethodECDSA) Alg() string {
|
|
||||||
return m.Name
|
|
||||||
}
|
|
||||||
|
|
||||||
// Implements the Verify method from SigningMethod
|
|
||||||
// For this verify method, key must be an ecdsa.PublicKey struct
|
|
||||||
func (m *SigningMethodECDSA) Verify(signingString, signature string, key interface{}) error {
|
|
||||||
var err error
|
|
||||||
|
|
||||||
// Decode the signature
|
|
||||||
var sig []byte
|
|
||||||
if sig, err = DecodeSegment(signature); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get the key
|
|
||||||
var ecdsaKey *ecdsa.PublicKey
|
|
||||||
switch k := key.(type) {
|
|
||||||
case *ecdsa.PublicKey:
|
|
||||||
ecdsaKey = k
|
|
||||||
default:
|
|
||||||
return ErrInvalidKeyType
|
|
||||||
}
|
|
||||||
|
|
||||||
if len(sig) != 2*m.KeySize {
|
|
||||||
return ErrECDSAVerification
|
|
||||||
}
|
|
||||||
|
|
||||||
r := big.NewInt(0).SetBytes(sig[:m.KeySize])
|
|
||||||
s := big.NewInt(0).SetBytes(sig[m.KeySize:])
|
|
||||||
|
|
||||||
// Create hasher
|
|
||||||
if !m.Hash.Available() {
|
|
||||||
return ErrHashUnavailable
|
|
||||||
}
|
|
||||||
hasher := m.Hash.New()
|
|
||||||
hasher.Write([]byte(signingString))
|
|
||||||
|
|
||||||
// Verify the signature
|
|
||||||
if verifystatus := ecdsa.Verify(ecdsaKey, hasher.Sum(nil), r, s); verifystatus == true {
|
|
||||||
return nil
|
|
||||||
} else {
|
|
||||||
return ErrECDSAVerification
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Implements the Sign method from SigningMethod
|
|
||||||
// For this signing method, key must be an ecdsa.PrivateKey struct
|
|
||||||
func (m *SigningMethodECDSA) Sign(signingString string, key interface{}) (string, error) {
|
|
||||||
// Get the key
|
|
||||||
var ecdsaKey *ecdsa.PrivateKey
|
|
||||||
switch k := key.(type) {
|
|
||||||
case *ecdsa.PrivateKey:
|
|
||||||
ecdsaKey = k
|
|
||||||
default:
|
|
||||||
return "", ErrInvalidKeyType
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create the hasher
|
|
||||||
if !m.Hash.Available() {
|
|
||||||
return "", ErrHashUnavailable
|
|
||||||
}
|
|
||||||
|
|
||||||
hasher := m.Hash.New()
|
|
||||||
hasher.Write([]byte(signingString))
|
|
||||||
|
|
||||||
// Sign the string and return r, s
|
|
||||||
if r, s, err := ecdsa.Sign(rand.Reader, ecdsaKey, hasher.Sum(nil)); err == nil {
|
|
||||||
curveBits := ecdsaKey.Curve.Params().BitSize
|
|
||||||
|
|
||||||
if m.CurveBits != curveBits {
|
|
||||||
return "", ErrInvalidKey
|
|
||||||
}
|
|
||||||
|
|
||||||
keyBytes := curveBits / 8
|
|
||||||
if curveBits%8 > 0 {
|
|
||||||
keyBytes += 1
|
|
||||||
}
|
|
||||||
|
|
||||||
// We serialize the outpus (r and s) into big-endian byte arrays and pad
|
|
||||||
// them with zeros on the left to make sure the sizes work out. Both arrays
|
|
||||||
// must be keyBytes long, and the output must be 2*keyBytes long.
|
|
||||||
rBytes := r.Bytes()
|
|
||||||
rBytesPadded := make([]byte, keyBytes)
|
|
||||||
copy(rBytesPadded[keyBytes-len(rBytes):], rBytes)
|
|
||||||
|
|
||||||
sBytes := s.Bytes()
|
|
||||||
sBytesPadded := make([]byte, keyBytes)
|
|
||||||
copy(sBytesPadded[keyBytes-len(sBytes):], sBytes)
|
|
||||||
|
|
||||||
out := append(rBytesPadded, sBytesPadded...)
|
|
||||||
|
|
||||||
return EncodeSegment(out), nil
|
|
||||||
} else {
|
|
||||||
return "", err
|
|
||||||
}
|
|
||||||
}
|
|
67
vendor/github.com/dgrijalva/jwt-go/ecdsa_utils.go
generated
vendored
67
vendor/github.com/dgrijalva/jwt-go/ecdsa_utils.go
generated
vendored
@ -1,67 +0,0 @@
|
|||||||
package jwt
|
|
||||||
|
|
||||||
import (
|
|
||||||
"crypto/ecdsa"
|
|
||||||
"crypto/x509"
|
|
||||||
"encoding/pem"
|
|
||||||
"errors"
|
|
||||||
)
|
|
||||||
|
|
||||||
var (
|
|
||||||
ErrNotECPublicKey = errors.New("Key is not a valid ECDSA public key")
|
|
||||||
ErrNotECPrivateKey = errors.New("Key is not a valid ECDSA private key")
|
|
||||||
)
|
|
||||||
|
|
||||||
// Parse PEM encoded Elliptic Curve Private Key Structure
|
|
||||||
func ParseECPrivateKeyFromPEM(key []byte) (*ecdsa.PrivateKey, error) {
|
|
||||||
var err error
|
|
||||||
|
|
||||||
// Parse PEM block
|
|
||||||
var block *pem.Block
|
|
||||||
if block, _ = pem.Decode(key); block == nil {
|
|
||||||
return nil, ErrKeyMustBePEMEncoded
|
|
||||||
}
|
|
||||||
|
|
||||||
// Parse the key
|
|
||||||
var parsedKey interface{}
|
|
||||||
if parsedKey, err = x509.ParseECPrivateKey(block.Bytes); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
var pkey *ecdsa.PrivateKey
|
|
||||||
var ok bool
|
|
||||||
if pkey, ok = parsedKey.(*ecdsa.PrivateKey); !ok {
|
|
||||||
return nil, ErrNotECPrivateKey
|
|
||||||
}
|
|
||||||
|
|
||||||
return pkey, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// Parse PEM encoded PKCS1 or PKCS8 public key
|
|
||||||
func ParseECPublicKeyFromPEM(key []byte) (*ecdsa.PublicKey, error) {
|
|
||||||
var err error
|
|
||||||
|
|
||||||
// Parse PEM block
|
|
||||||
var block *pem.Block
|
|
||||||
if block, _ = pem.Decode(key); block == nil {
|
|
||||||
return nil, ErrKeyMustBePEMEncoded
|
|
||||||
}
|
|
||||||
|
|
||||||
// Parse the key
|
|
||||||
var parsedKey interface{}
|
|
||||||
if parsedKey, err = x509.ParsePKIXPublicKey(block.Bytes); err != nil {
|
|
||||||
if cert, err := x509.ParseCertificate(block.Bytes); err == nil {
|
|
||||||
parsedKey = cert.PublicKey
|
|
||||||
} else {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var pkey *ecdsa.PublicKey
|
|
||||||
var ok bool
|
|
||||||
if pkey, ok = parsedKey.(*ecdsa.PublicKey); !ok {
|
|
||||||
return nil, ErrNotECPublicKey
|
|
||||||
}
|
|
||||||
|
|
||||||
return pkey, nil
|
|
||||||
}
|
|
63
vendor/github.com/dgrijalva/jwt-go/errors.go
generated
vendored
63
vendor/github.com/dgrijalva/jwt-go/errors.go
generated
vendored
@ -1,63 +0,0 @@
|
|||||||
package jwt
|
|
||||||
|
|
||||||
import (
|
|
||||||
"errors"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Error constants
|
|
||||||
var (
|
|
||||||
ErrInvalidKey = errors.New("key is invalid")
|
|
||||||
ErrInvalidKeyType = errors.New("key is of invalid type")
|
|
||||||
ErrHashUnavailable = errors.New("the requested hash function is unavailable")
|
|
||||||
)
|
|
||||||
|
|
||||||
// The errors that might occur when parsing and validating a token
|
|
||||||
const (
|
|
||||||
ValidationErrorMalformed uint32 = 1 << iota // Token is malformed
|
|
||||||
ValidationErrorUnverifiable // Token could not be verified because of signing problems
|
|
||||||
ValidationErrorSignatureInvalid // Signature validation failed
|
|
||||||
|
|
||||||
// Standard Claim validation errors
|
|
||||||
ValidationErrorAudience // AUD validation failed
|
|
||||||
ValidationErrorExpired // EXP validation failed
|
|
||||||
ValidationErrorIssuedAt // IAT validation failed
|
|
||||||
ValidationErrorIssuer // ISS validation failed
|
|
||||||
ValidationErrorNotValidYet // NBF validation failed
|
|
||||||
ValidationErrorId // JTI validation failed
|
|
||||||
ValidationErrorClaimsInvalid // Generic claims validation error
|
|
||||||
)
|
|
||||||
|
|
||||||
// Helper for constructing a ValidationError with a string error message
|
|
||||||
func NewValidationError(errorText string, errorFlags uint32) *ValidationError {
|
|
||||||
return &ValidationError{
|
|
||||||
text: errorText,
|
|
||||||
Errors: errorFlags,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// The error from Parse if token is not valid
|
|
||||||
type ValidationError struct {
|
|
||||||
Inner error // stores the error returned by external dependencies, i.e.: KeyFunc
|
|
||||||
Errors uint32 // bitfield. see ValidationError... constants
|
|
||||||
text string // errors that do not have a valid error just have text
|
|
||||||
}
|
|
||||||
|
|
||||||
// Validation error is an error type
|
|
||||||
func (e ValidationError) Error() string {
|
|
||||||
if e.Inner != nil {
|
|
||||||
return e.Inner.Error()
|
|
||||||
} else if e.text != "" {
|
|
||||||
return e.text
|
|
||||||
} else {
|
|
||||||
return "token is invalid"
|
|
||||||
}
|
|
||||||
return e.Inner.Error()
|
|
||||||
}
|
|
||||||
|
|
||||||
// No errors
|
|
||||||
func (e *ValidationError) valid() bool {
|
|
||||||
if e.Errors > 0 {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
return true
|
|
||||||
}
|
|
94
vendor/github.com/dgrijalva/jwt-go/hmac.go
generated
vendored
94
vendor/github.com/dgrijalva/jwt-go/hmac.go
generated
vendored
@ -1,94 +0,0 @@
|
|||||||
package jwt
|
|
||||||
|
|
||||||
import (
|
|
||||||
"crypto"
|
|
||||||
"crypto/hmac"
|
|
||||||
"errors"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Implements the HMAC-SHA family of signing methods signing methods
|
|
||||||
type SigningMethodHMAC struct {
|
|
||||||
Name string
|
|
||||||
Hash crypto.Hash
|
|
||||||
}
|
|
||||||
|
|
||||||
// Specific instances for HS256 and company
|
|
||||||
var (
|
|
||||||
SigningMethodHS256 *SigningMethodHMAC
|
|
||||||
SigningMethodHS384 *SigningMethodHMAC
|
|
||||||
SigningMethodHS512 *SigningMethodHMAC
|
|
||||||
ErrSignatureInvalid = errors.New("signature is invalid")
|
|
||||||
)
|
|
||||||
|
|
||||||
func init() {
|
|
||||||
// HS256
|
|
||||||
SigningMethodHS256 = &SigningMethodHMAC{"HS256", crypto.SHA256}
|
|
||||||
RegisterSigningMethod(SigningMethodHS256.Alg(), func() SigningMethod {
|
|
||||||
return SigningMethodHS256
|
|
||||||
})
|
|
||||||
|
|
||||||
// HS384
|
|
||||||
SigningMethodHS384 = &SigningMethodHMAC{"HS384", crypto.SHA384}
|
|
||||||
RegisterSigningMethod(SigningMethodHS384.Alg(), func() SigningMethod {
|
|
||||||
return SigningMethodHS384
|
|
||||||
})
|
|
||||||
|
|
||||||
// HS512
|
|
||||||
SigningMethodHS512 = &SigningMethodHMAC{"HS512", crypto.SHA512}
|
|
||||||
RegisterSigningMethod(SigningMethodHS512.Alg(), func() SigningMethod {
|
|
||||||
return SigningMethodHS512
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *SigningMethodHMAC) Alg() string {
|
|
||||||
return m.Name
|
|
||||||
}
|
|
||||||
|
|
||||||
// Verify the signature of HSXXX tokens. Returns nil if the signature is valid.
|
|
||||||
func (m *SigningMethodHMAC) Verify(signingString, signature string, key interface{}) error {
|
|
||||||
// Verify the key is the right type
|
|
||||||
keyBytes, ok := key.([]byte)
|
|
||||||
if !ok {
|
|
||||||
return ErrInvalidKeyType
|
|
||||||
}
|
|
||||||
|
|
||||||
// Decode signature, for comparison
|
|
||||||
sig, err := DecodeSegment(signature)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
// Can we use the specified hashing method?
|
|
||||||
if !m.Hash.Available() {
|
|
||||||
return ErrHashUnavailable
|
|
||||||
}
|
|
||||||
|
|
||||||
// This signing method is symmetric, so we validate the signature
|
|
||||||
// by reproducing the signature from the signing string and key, then
|
|
||||||
// comparing that against the provided signature.
|
|
||||||
hasher := hmac.New(m.Hash.New, keyBytes)
|
|
||||||
hasher.Write([]byte(signingString))
|
|
||||||
if !hmac.Equal(sig, hasher.Sum(nil)) {
|
|
||||||
return ErrSignatureInvalid
|
|
||||||
}
|
|
||||||
|
|
||||||
// No validation errors. Signature is good.
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// Implements the Sign method from SigningMethod for this signing method.
|
|
||||||
// Key must be []byte
|
|
||||||
func (m *SigningMethodHMAC) Sign(signingString string, key interface{}) (string, error) {
|
|
||||||
if keyBytes, ok := key.([]byte); ok {
|
|
||||||
if !m.Hash.Available() {
|
|
||||||
return "", ErrHashUnavailable
|
|
||||||
}
|
|
||||||
|
|
||||||
hasher := hmac.New(m.Hash.New, keyBytes)
|
|
||||||
hasher.Write([]byte(signingString))
|
|
||||||
|
|
||||||
return EncodeSegment(hasher.Sum(nil)), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
return "", ErrInvalidKey
|
|
||||||
}
|
|
94
vendor/github.com/dgrijalva/jwt-go/map_claims.go
generated
vendored
94
vendor/github.com/dgrijalva/jwt-go/map_claims.go
generated
vendored
@ -1,94 +0,0 @@
|
|||||||
package jwt
|
|
||||||
|
|
||||||
import (
|
|
||||||
"encoding/json"
|
|
||||||
"errors"
|
|
||||||
// "fmt"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Claims type that uses the map[string]interface{} for JSON decoding
|
|
||||||
// This is the default claims type if you don't supply one
|
|
||||||
type MapClaims map[string]interface{}
|
|
||||||
|
|
||||||
// Compares the aud claim against cmp.
|
|
||||||
// If required is false, this method will return true if the value matches or is unset
|
|
||||||
func (m MapClaims) VerifyAudience(cmp string, req bool) bool {
|
|
||||||
aud, _ := m["aud"].(string)
|
|
||||||
return verifyAud(aud, cmp, req)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Compares the exp claim against cmp.
|
|
||||||
// If required is false, this method will return true if the value matches or is unset
|
|
||||||
func (m MapClaims) VerifyExpiresAt(cmp int64, req bool) bool {
|
|
||||||
switch exp := m["exp"].(type) {
|
|
||||||
case float64:
|
|
||||||
return verifyExp(int64(exp), cmp, req)
|
|
||||||
case json.Number:
|
|
||||||
v, _ := exp.Int64()
|
|
||||||
return verifyExp(v, cmp, req)
|
|
||||||
}
|
|
||||||
return req == false
|
|
||||||
}
|
|
||||||
|
|
||||||
// Compares the iat claim against cmp.
|
|
||||||
// If required is false, this method will return true if the value matches or is unset
|
|
||||||
func (m MapClaims) VerifyIssuedAt(cmp int64, req bool) bool {
|
|
||||||
switch iat := m["iat"].(type) {
|
|
||||||
case float64:
|
|
||||||
return verifyIat(int64(iat), cmp, req)
|
|
||||||
case json.Number:
|
|
||||||
v, _ := iat.Int64()
|
|
||||||
return verifyIat(v, cmp, req)
|
|
||||||
}
|
|
||||||
return req == false
|
|
||||||
}
|
|
||||||
|
|
||||||
// Compares the iss claim against cmp.
|
|
||||||
// If required is false, this method will return true if the value matches or is unset
|
|
||||||
func (m MapClaims) VerifyIssuer(cmp string, req bool) bool {
|
|
||||||
iss, _ := m["iss"].(string)
|
|
||||||
return verifyIss(iss, cmp, req)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Compares the nbf claim against cmp.
|
|
||||||
// If required is false, this method will return true if the value matches or is unset
|
|
||||||
func (m MapClaims) VerifyNotBefore(cmp int64, req bool) bool {
|
|
||||||
switch nbf := m["nbf"].(type) {
|
|
||||||
case float64:
|
|
||||||
return verifyNbf(int64(nbf), cmp, req)
|
|
||||||
case json.Number:
|
|
||||||
v, _ := nbf.Int64()
|
|
||||||
return verifyNbf(v, cmp, req)
|
|
||||||
}
|
|
||||||
return req == false
|
|
||||||
}
|
|
||||||
|
|
||||||
// Validates time based claims "exp, iat, nbf".
|
|
||||||
// There is no accounting for clock skew.
|
|
||||||
// As well, if any of the above claims are not in the token, it will still
|
|
||||||
// be considered a valid claim.
|
|
||||||
func (m MapClaims) Valid() error {
|
|
||||||
vErr := new(ValidationError)
|
|
||||||
now := TimeFunc().Unix()
|
|
||||||
|
|
||||||
if m.VerifyExpiresAt(now, false) == false {
|
|
||||||
vErr.Inner = errors.New("Token is expired")
|
|
||||||
vErr.Errors |= ValidationErrorExpired
|
|
||||||
}
|
|
||||||
|
|
||||||
if m.VerifyIssuedAt(now, false) == false {
|
|
||||||
vErr.Inner = errors.New("Token used before issued")
|
|
||||||
vErr.Errors |= ValidationErrorIssuedAt
|
|
||||||
}
|
|
||||||
|
|
||||||
if m.VerifyNotBefore(now, false) == false {
|
|
||||||
vErr.Inner = errors.New("Token is not valid yet")
|
|
||||||
vErr.Errors |= ValidationErrorNotValidYet
|
|
||||||
}
|
|
||||||
|
|
||||||
if vErr.valid() {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
return vErr
|
|
||||||
}
|
|
52
vendor/github.com/dgrijalva/jwt-go/none.go
generated
vendored
52
vendor/github.com/dgrijalva/jwt-go/none.go
generated
vendored
@ -1,52 +0,0 @@
|
|||||||
package jwt
|
|
||||||
|
|
||||||
// Implements the none signing method. This is required by the spec
|
|
||||||
// but you probably should never use it.
|
|
||||||
var SigningMethodNone *signingMethodNone
|
|
||||||
|
|
||||||
const UnsafeAllowNoneSignatureType unsafeNoneMagicConstant = "none signing method allowed"
|
|
||||||
|
|
||||||
var NoneSignatureTypeDisallowedError error
|
|
||||||
|
|
||||||
type signingMethodNone struct{}
|
|
||||||
type unsafeNoneMagicConstant string
|
|
||||||
|
|
||||||
func init() {
|
|
||||||
SigningMethodNone = &signingMethodNone{}
|
|
||||||
NoneSignatureTypeDisallowedError = NewValidationError("'none' signature type is not allowed", ValidationErrorSignatureInvalid)
|
|
||||||
|
|
||||||
RegisterSigningMethod(SigningMethodNone.Alg(), func() SigningMethod {
|
|
||||||
return SigningMethodNone
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *signingMethodNone) Alg() string {
|
|
||||||
return "none"
|
|
||||||
}
|
|
||||||
|
|
||||||
// Only allow 'none' alg type if UnsafeAllowNoneSignatureType is specified as the key
|
|
||||||
func (m *signingMethodNone) Verify(signingString, signature string, key interface{}) (err error) {
|
|
||||||
// Key must be UnsafeAllowNoneSignatureType to prevent accidentally
|
|
||||||
// accepting 'none' signing method
|
|
||||||
if _, ok := key.(unsafeNoneMagicConstant); !ok {
|
|
||||||
return NoneSignatureTypeDisallowedError
|
|
||||||
}
|
|
||||||
// If signing method is none, signature must be an empty string
|
|
||||||
if signature != "" {
|
|
||||||
return NewValidationError(
|
|
||||||
"'none' signing method with non-empty signature",
|
|
||||||
ValidationErrorSignatureInvalid,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Accept 'none' signing method.
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// Only allow 'none' signing if UnsafeAllowNoneSignatureType is specified as the key
|
|
||||||
func (m *signingMethodNone) Sign(signingString string, key interface{}) (string, error) {
|
|
||||||
if _, ok := key.(unsafeNoneMagicConstant); ok {
|
|
||||||
return "", nil
|
|
||||||
}
|
|
||||||
return "", NoneSignatureTypeDisallowedError
|
|
||||||
}
|
|
131
vendor/github.com/dgrijalva/jwt-go/parser.go
generated
vendored
131
vendor/github.com/dgrijalva/jwt-go/parser.go
generated
vendored
@ -1,131 +0,0 @@
|
|||||||
package jwt
|
|
||||||
|
|
||||||
import (
|
|
||||||
"bytes"
|
|
||||||
"encoding/json"
|
|
||||||
"fmt"
|
|
||||||
"strings"
|
|
||||||
)
|
|
||||||
|
|
||||||
type Parser struct {
|
|
||||||
ValidMethods []string // If populated, only these methods will be considered valid
|
|
||||||
UseJSONNumber bool // Use JSON Number format in JSON decoder
|
|
||||||
SkipClaimsValidation bool // Skip claims validation during token parsing
|
|
||||||
}
|
|
||||||
|
|
||||||
// Parse, validate, and return a token.
|
|
||||||
// keyFunc will receive the parsed token and should return the key for validating.
|
|
||||||
// If everything is kosher, err will be nil
|
|
||||||
func (p *Parser) Parse(tokenString string, keyFunc Keyfunc) (*Token, error) {
|
|
||||||
return p.ParseWithClaims(tokenString, MapClaims{}, keyFunc)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (p *Parser) ParseWithClaims(tokenString string, claims Claims, keyFunc Keyfunc) (*Token, error) {
|
|
||||||
parts := strings.Split(tokenString, ".")
|
|
||||||
if len(parts) != 3 {
|
|
||||||
return nil, NewValidationError("token contains an invalid number of segments", ValidationErrorMalformed)
|
|
||||||
}
|
|
||||||
|
|
||||||
var err error
|
|
||||||
token := &Token{Raw: tokenString}
|
|
||||||
|
|
||||||
// parse Header
|
|
||||||
var headerBytes []byte
|
|
||||||
if headerBytes, err = DecodeSegment(parts[0]); err != nil {
|
|
||||||
if strings.HasPrefix(strings.ToLower(tokenString), "bearer ") {
|
|
||||||
return token, NewValidationError("tokenstring should not contain 'bearer '", ValidationErrorMalformed)
|
|
||||||
}
|
|
||||||
return token, &ValidationError{Inner: err, Errors: ValidationErrorMalformed}
|
|
||||||
}
|
|
||||||
if err = json.Unmarshal(headerBytes, &token.Header); err != nil {
|
|
||||||
return token, &ValidationError{Inner: err, Errors: ValidationErrorMalformed}
|
|
||||||
}
|
|
||||||
|
|
||||||
// parse Claims
|
|
||||||
var claimBytes []byte
|
|
||||||
token.Claims = claims
|
|
||||||
|
|
||||||
if claimBytes, err = DecodeSegment(parts[1]); err != nil {
|
|
||||||
return token, &ValidationError{Inner: err, Errors: ValidationErrorMalformed}
|
|
||||||
}
|
|
||||||
dec := json.NewDecoder(bytes.NewBuffer(claimBytes))
|
|
||||||
if p.UseJSONNumber {
|
|
||||||
dec.UseNumber()
|
|
||||||
}
|
|
||||||
// JSON Decode. Special case for map type to avoid weird pointer behavior
|
|
||||||
if c, ok := token.Claims.(MapClaims); ok {
|
|
||||||
err = dec.Decode(&c)
|
|
||||||
} else {
|
|
||||||
err = dec.Decode(&claims)
|
|
||||||
}
|
|
||||||
// Handle decode error
|
|
||||||
if err != nil {
|
|
||||||
return token, &ValidationError{Inner: err, Errors: ValidationErrorMalformed}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Lookup signature method
|
|
||||||
if method, ok := token.Header["alg"].(string); ok {
|
|
||||||
if token.Method = GetSigningMethod(method); token.Method == nil {
|
|
||||||
return token, NewValidationError("signing method (alg) is unavailable.", ValidationErrorUnverifiable)
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
return token, NewValidationError("signing method (alg) is unspecified.", ValidationErrorUnverifiable)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Verify signing method is in the required set
|
|
||||||
if p.ValidMethods != nil {
|
|
||||||
var signingMethodValid = false
|
|
||||||
var alg = token.Method.Alg()
|
|
||||||
for _, m := range p.ValidMethods {
|
|
||||||
if m == alg {
|
|
||||||
signingMethodValid = true
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if !signingMethodValid {
|
|
||||||
// signing method is not in the listed set
|
|
||||||
return token, NewValidationError(fmt.Sprintf("signing method %v is invalid", alg), ValidationErrorSignatureInvalid)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Lookup key
|
|
||||||
var key interface{}
|
|
||||||
if keyFunc == nil {
|
|
||||||
// keyFunc was not provided. short circuiting validation
|
|
||||||
return token, NewValidationError("no Keyfunc was provided.", ValidationErrorUnverifiable)
|
|
||||||
}
|
|
||||||
if key, err = keyFunc(token); err != nil {
|
|
||||||
// keyFunc returned an error
|
|
||||||
return token, &ValidationError{Inner: err, Errors: ValidationErrorUnverifiable}
|
|
||||||
}
|
|
||||||
|
|
||||||
vErr := &ValidationError{}
|
|
||||||
|
|
||||||
// Validate Claims
|
|
||||||
if !p.SkipClaimsValidation {
|
|
||||||
if err := token.Claims.Valid(); err != nil {
|
|
||||||
|
|
||||||
// If the Claims Valid returned an error, check if it is a validation error,
|
|
||||||
// If it was another error type, create a ValidationError with a generic ClaimsInvalid flag set
|
|
||||||
if e, ok := err.(*ValidationError); !ok {
|
|
||||||
vErr = &ValidationError{Inner: err, Errors: ValidationErrorClaimsInvalid}
|
|
||||||
} else {
|
|
||||||
vErr = e
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Perform validation
|
|
||||||
token.Signature = parts[2]
|
|
||||||
if err = token.Method.Verify(strings.Join(parts[0:2], "."), token.Signature, key); err != nil {
|
|
||||||
vErr.Inner = err
|
|
||||||
vErr.Errors |= ValidationErrorSignatureInvalid
|
|
||||||
}
|
|
||||||
|
|
||||||
if vErr.valid() {
|
|
||||||
token.Valid = true
|
|
||||||
return token, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
return token, vErr
|
|
||||||
}
|
|
100
vendor/github.com/dgrijalva/jwt-go/rsa.go
generated
vendored
100
vendor/github.com/dgrijalva/jwt-go/rsa.go
generated
vendored
@ -1,100 +0,0 @@
|
|||||||
package jwt
|
|
||||||
|
|
||||||
import (
|
|
||||||
"crypto"
|
|
||||||
"crypto/rand"
|
|
||||||
"crypto/rsa"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Implements the RSA family of signing methods signing methods
|
|
||||||
type SigningMethodRSA struct {
|
|
||||||
Name string
|
|
||||||
Hash crypto.Hash
|
|
||||||
}
|
|
||||||
|
|
||||||
// Specific instances for RS256 and company
|
|
||||||
var (
|
|
||||||
SigningMethodRS256 *SigningMethodRSA
|
|
||||||
SigningMethodRS384 *SigningMethodRSA
|
|
||||||
SigningMethodRS512 *SigningMethodRSA
|
|
||||||
)
|
|
||||||
|
|
||||||
func init() {
|
|
||||||
// RS256
|
|
||||||
SigningMethodRS256 = &SigningMethodRSA{"RS256", crypto.SHA256}
|
|
||||||
RegisterSigningMethod(SigningMethodRS256.Alg(), func() SigningMethod {
|
|
||||||
return SigningMethodRS256
|
|
||||||
})
|
|
||||||
|
|
||||||
// RS384
|
|
||||||
SigningMethodRS384 = &SigningMethodRSA{"RS384", crypto.SHA384}
|
|
||||||
RegisterSigningMethod(SigningMethodRS384.Alg(), func() SigningMethod {
|
|
||||||
return SigningMethodRS384
|
|
||||||
})
|
|
||||||
|
|
||||||
// RS512
|
|
||||||
SigningMethodRS512 = &SigningMethodRSA{"RS512", crypto.SHA512}
|
|
||||||
RegisterSigningMethod(SigningMethodRS512.Alg(), func() SigningMethod {
|
|
||||||
return SigningMethodRS512
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *SigningMethodRSA) Alg() string {
|
|
||||||
return m.Name
|
|
||||||
}
|
|
||||||
|
|
||||||
// Implements the Verify method from SigningMethod
|
|
||||||
// For this signing method, must be an rsa.PublicKey structure.
|
|
||||||
func (m *SigningMethodRSA) Verify(signingString, signature string, key interface{}) error {
|
|
||||||
var err error
|
|
||||||
|
|
||||||
// Decode the signature
|
|
||||||
var sig []byte
|
|
||||||
if sig, err = DecodeSegment(signature); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
var rsaKey *rsa.PublicKey
|
|
||||||
var ok bool
|
|
||||||
|
|
||||||
if rsaKey, ok = key.(*rsa.PublicKey); !ok {
|
|
||||||
return ErrInvalidKeyType
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create hasher
|
|
||||||
if !m.Hash.Available() {
|
|
||||||
return ErrHashUnavailable
|
|
||||||
}
|
|
||||||
hasher := m.Hash.New()
|
|
||||||
hasher.Write([]byte(signingString))
|
|
||||||
|
|
||||||
// Verify the signature
|
|
||||||
return rsa.VerifyPKCS1v15(rsaKey, m.Hash, hasher.Sum(nil), sig)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Implements the Sign method from SigningMethod
|
|
||||||
// For this signing method, must be an rsa.PrivateKey structure.
|
|
||||||
func (m *SigningMethodRSA) Sign(signingString string, key interface{}) (string, error) {
|
|
||||||
var rsaKey *rsa.PrivateKey
|
|
||||||
var ok bool
|
|
||||||
|
|
||||||
// Validate type of key
|
|
||||||
if rsaKey, ok = key.(*rsa.PrivateKey); !ok {
|
|
||||||
return "", ErrInvalidKey
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create the hasher
|
|
||||||
if !m.Hash.Available() {
|
|
||||||
return "", ErrHashUnavailable
|
|
||||||
}
|
|
||||||
|
|
||||||
hasher := m.Hash.New()
|
|
||||||
hasher.Write([]byte(signingString))
|
|
||||||
|
|
||||||
// Sign the string and return the encoded bytes
|
|
||||||
if sigBytes, err := rsa.SignPKCS1v15(rand.Reader, rsaKey, m.Hash, hasher.Sum(nil)); err == nil {
|
|
||||||
return EncodeSegment(sigBytes), nil
|
|
||||||
} else {
|
|
||||||
return "", err
|
|
||||||
}
|
|
||||||
}
|
|
126
vendor/github.com/dgrijalva/jwt-go/rsa_pss.go
generated
vendored
126
vendor/github.com/dgrijalva/jwt-go/rsa_pss.go
generated
vendored
@ -1,126 +0,0 @@
|
|||||||
// +build go1.4
|
|
||||||
|
|
||||||
package jwt
|
|
||||||
|
|
||||||
import (
|
|
||||||
"crypto"
|
|
||||||
"crypto/rand"
|
|
||||||
"crypto/rsa"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Implements the RSAPSS family of signing methods signing methods
|
|
||||||
type SigningMethodRSAPSS struct {
|
|
||||||
*SigningMethodRSA
|
|
||||||
Options *rsa.PSSOptions
|
|
||||||
}
|
|
||||||
|
|
||||||
// Specific instances for RS/PS and company
|
|
||||||
var (
|
|
||||||
SigningMethodPS256 *SigningMethodRSAPSS
|
|
||||||
SigningMethodPS384 *SigningMethodRSAPSS
|
|
||||||
SigningMethodPS512 *SigningMethodRSAPSS
|
|
||||||
)
|
|
||||||
|
|
||||||
func init() {
|
|
||||||
// PS256
|
|
||||||
SigningMethodPS256 = &SigningMethodRSAPSS{
|
|
||||||
&SigningMethodRSA{
|
|
||||||
Name: "PS256",
|
|
||||||
Hash: crypto.SHA256,
|
|
||||||
},
|
|
||||||
&rsa.PSSOptions{
|
|
||||||
SaltLength: rsa.PSSSaltLengthAuto,
|
|
||||||
Hash: crypto.SHA256,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
RegisterSigningMethod(SigningMethodPS256.Alg(), func() SigningMethod {
|
|
||||||
return SigningMethodPS256
|
|
||||||
})
|
|
||||||
|
|
||||||
// PS384
|
|
||||||
SigningMethodPS384 = &SigningMethodRSAPSS{
|
|
||||||
&SigningMethodRSA{
|
|
||||||
Name: "PS384",
|
|
||||||
Hash: crypto.SHA384,
|
|
||||||
},
|
|
||||||
&rsa.PSSOptions{
|
|
||||||
SaltLength: rsa.PSSSaltLengthAuto,
|
|
||||||
Hash: crypto.SHA384,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
RegisterSigningMethod(SigningMethodPS384.Alg(), func() SigningMethod {
|
|
||||||
return SigningMethodPS384
|
|
||||||
})
|
|
||||||
|
|
||||||
// PS512
|
|
||||||
SigningMethodPS512 = &SigningMethodRSAPSS{
|
|
||||||
&SigningMethodRSA{
|
|
||||||
Name: "PS512",
|
|
||||||
Hash: crypto.SHA512,
|
|
||||||
},
|
|
||||||
&rsa.PSSOptions{
|
|
||||||
SaltLength: rsa.PSSSaltLengthAuto,
|
|
||||||
Hash: crypto.SHA512,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
RegisterSigningMethod(SigningMethodPS512.Alg(), func() SigningMethod {
|
|
||||||
return SigningMethodPS512
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
// Implements the Verify method from SigningMethod
|
|
||||||
// For this verify method, key must be an rsa.PublicKey struct
|
|
||||||
func (m *SigningMethodRSAPSS) Verify(signingString, signature string, key interface{}) error {
|
|
||||||
var err error
|
|
||||||
|
|
||||||
// Decode the signature
|
|
||||||
var sig []byte
|
|
||||||
if sig, err = DecodeSegment(signature); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
var rsaKey *rsa.PublicKey
|
|
||||||
switch k := key.(type) {
|
|
||||||
case *rsa.PublicKey:
|
|
||||||
rsaKey = k
|
|
||||||
default:
|
|
||||||
return ErrInvalidKey
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create hasher
|
|
||||||
if !m.Hash.Available() {
|
|
||||||
return ErrHashUnavailable
|
|
||||||
}
|
|
||||||
hasher := m.Hash.New()
|
|
||||||
hasher.Write([]byte(signingString))
|
|
||||||
|
|
||||||
return rsa.VerifyPSS(rsaKey, m.Hash, hasher.Sum(nil), sig, m.Options)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Implements the Sign method from SigningMethod
|
|
||||||
// For this signing method, key must be an rsa.PrivateKey struct
|
|
||||||
func (m *SigningMethodRSAPSS) Sign(signingString string, key interface{}) (string, error) {
|
|
||||||
var rsaKey *rsa.PrivateKey
|
|
||||||
|
|
||||||
switch k := key.(type) {
|
|
||||||
case *rsa.PrivateKey:
|
|
||||||
rsaKey = k
|
|
||||||
default:
|
|
||||||
return "", ErrInvalidKeyType
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create the hasher
|
|
||||||
if !m.Hash.Available() {
|
|
||||||
return "", ErrHashUnavailable
|
|
||||||
}
|
|
||||||
|
|
||||||
hasher := m.Hash.New()
|
|
||||||
hasher.Write([]byte(signingString))
|
|
||||||
|
|
||||||
// Sign the string and return the encoded bytes
|
|
||||||
if sigBytes, err := rsa.SignPSS(rand.Reader, rsaKey, m.Hash, hasher.Sum(nil), m.Options); err == nil {
|
|
||||||
return EncodeSegment(sigBytes), nil
|
|
||||||
} else {
|
|
||||||
return "", err
|
|
||||||
}
|
|
||||||
}
|
|
69
vendor/github.com/dgrijalva/jwt-go/rsa_utils.go
generated
vendored
69
vendor/github.com/dgrijalva/jwt-go/rsa_utils.go
generated
vendored
@ -1,69 +0,0 @@
|
|||||||
package jwt
|
|
||||||
|
|
||||||
import (
|
|
||||||
"crypto/rsa"
|
|
||||||
"crypto/x509"
|
|
||||||
"encoding/pem"
|
|
||||||
"errors"
|
|
||||||
)
|
|
||||||
|
|
||||||
var (
|
|
||||||
ErrKeyMustBePEMEncoded = errors.New("Invalid Key: Key must be PEM encoded PKCS1 or PKCS8 private key")
|
|
||||||
ErrNotRSAPrivateKey = errors.New("Key is not a valid RSA private key")
|
|
||||||
ErrNotRSAPublicKey = errors.New("Key is not a valid RSA public key")
|
|
||||||
)
|
|
||||||
|
|
||||||
// Parse PEM encoded PKCS1 or PKCS8 private key
|
|
||||||
func ParseRSAPrivateKeyFromPEM(key []byte) (*rsa.PrivateKey, error) {
|
|
||||||
var err error
|
|
||||||
|
|
||||||
// Parse PEM block
|
|
||||||
var block *pem.Block
|
|
||||||
if block, _ = pem.Decode(key); block == nil {
|
|
||||||
return nil, ErrKeyMustBePEMEncoded
|
|
||||||
}
|
|
||||||
|
|
||||||
var parsedKey interface{}
|
|
||||||
if parsedKey, err = x509.ParsePKCS1PrivateKey(block.Bytes); err != nil {
|
|
||||||
if parsedKey, err = x509.ParsePKCS8PrivateKey(block.Bytes); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var pkey *rsa.PrivateKey
|
|
||||||
var ok bool
|
|
||||||
if pkey, ok = parsedKey.(*rsa.PrivateKey); !ok {
|
|
||||||
return nil, ErrNotRSAPrivateKey
|
|
||||||
}
|
|
||||||
|
|
||||||
return pkey, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// Parse PEM encoded PKCS1 or PKCS8 public key
|
|
||||||
func ParseRSAPublicKeyFromPEM(key []byte) (*rsa.PublicKey, error) {
|
|
||||||
var err error
|
|
||||||
|
|
||||||
// Parse PEM block
|
|
||||||
var block *pem.Block
|
|
||||||
if block, _ = pem.Decode(key); block == nil {
|
|
||||||
return nil, ErrKeyMustBePEMEncoded
|
|
||||||
}
|
|
||||||
|
|
||||||
// Parse the key
|
|
||||||
var parsedKey interface{}
|
|
||||||
if parsedKey, err = x509.ParsePKIXPublicKey(block.Bytes); err != nil {
|
|
||||||
if cert, err := x509.ParseCertificate(block.Bytes); err == nil {
|
|
||||||
parsedKey = cert.PublicKey
|
|
||||||
} else {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var pkey *rsa.PublicKey
|
|
||||||
var ok bool
|
|
||||||
if pkey, ok = parsedKey.(*rsa.PublicKey); !ok {
|
|
||||||
return nil, ErrNotRSAPublicKey
|
|
||||||
}
|
|
||||||
|
|
||||||
return pkey, nil
|
|
||||||
}
|
|
35
vendor/github.com/dgrijalva/jwt-go/signing_method.go
generated
vendored
35
vendor/github.com/dgrijalva/jwt-go/signing_method.go
generated
vendored
@ -1,35 +0,0 @@
|
|||||||
package jwt
|
|
||||||
|
|
||||||
import (
|
|
||||||
"sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
var signingMethods = map[string]func() SigningMethod{}
|
|
||||||
var signingMethodLock = new(sync.RWMutex)
|
|
||||||
|
|
||||||
// Implement SigningMethod to add new methods for signing or verifying tokens.
|
|
||||||
type SigningMethod interface {
|
|
||||||
Verify(signingString, signature string, key interface{}) error // Returns nil if signature is valid
|
|
||||||
Sign(signingString string, key interface{}) (string, error) // Returns encoded signature or error
|
|
||||||
Alg() string // returns the alg identifier for this method (example: 'HS256')
|
|
||||||
}
|
|
||||||
|
|
||||||
// Register the "alg" name and a factory function for signing method.
|
|
||||||
// This is typically done during init() in the method's implementation
|
|
||||||
func RegisterSigningMethod(alg string, f func() SigningMethod) {
|
|
||||||
signingMethodLock.Lock()
|
|
||||||
defer signingMethodLock.Unlock()
|
|
||||||
|
|
||||||
signingMethods[alg] = f
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get a signing method from an "alg" string
|
|
||||||
func GetSigningMethod(alg string) (method SigningMethod) {
|
|
||||||
signingMethodLock.RLock()
|
|
||||||
defer signingMethodLock.RUnlock()
|
|
||||||
|
|
||||||
if methodF, ok := signingMethods[alg]; ok {
|
|
||||||
method = methodF()
|
|
||||||
}
|
|
||||||
return
|
|
||||||
}
|
|
108
vendor/github.com/dgrijalva/jwt-go/token.go
generated
vendored
108
vendor/github.com/dgrijalva/jwt-go/token.go
generated
vendored
@ -1,108 +0,0 @@
|
|||||||
package jwt
|
|
||||||
|
|
||||||
import (
|
|
||||||
"encoding/base64"
|
|
||||||
"encoding/json"
|
|
||||||
"strings"
|
|
||||||
"time"
|
|
||||||
)
|
|
||||||
|
|
||||||
// TimeFunc provides the current time when parsing token to validate "exp" claim (expiration time).
|
|
||||||
// You can override it to use another time value. This is useful for testing or if your
|
|
||||||
// server uses a different time zone than your tokens.
|
|
||||||
var TimeFunc = time.Now
|
|
||||||
|
|
||||||
// Parse methods use this callback function to supply
|
|
||||||
// the key for verification. The function receives the parsed,
|
|
||||||
// but unverified Token. This allows you to use properties in the
|
|
||||||
// Header of the token (such as `kid`) to identify which key to use.
|
|
||||||
type Keyfunc func(*Token) (interface{}, error)
|
|
||||||
|
|
||||||
// A JWT Token. Different fields will be used depending on whether you're
|
|
||||||
// creating or parsing/verifying a token.
|
|
||||||
type Token struct {
|
|
||||||
Raw string // The raw token. Populated when you Parse a token
|
|
||||||
Method SigningMethod // The signing method used or to be used
|
|
||||||
Header map[string]interface{} // The first segment of the token
|
|
||||||
Claims Claims // The second segment of the token
|
|
||||||
Signature string // The third segment of the token. Populated when you Parse a token
|
|
||||||
Valid bool // Is the token valid? Populated when you Parse/Verify a token
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create a new Token. Takes a signing method
|
|
||||||
func New(method SigningMethod) *Token {
|
|
||||||
return NewWithClaims(method, MapClaims{})
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewWithClaims(method SigningMethod, claims Claims) *Token {
|
|
||||||
return &Token{
|
|
||||||
Header: map[string]interface{}{
|
|
||||||
"typ": "JWT",
|
|
||||||
"alg": method.Alg(),
|
|
||||||
},
|
|
||||||
Claims: claims,
|
|
||||||
Method: method,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get the complete, signed token
|
|
||||||
func (t *Token) SignedString(key interface{}) (string, error) {
|
|
||||||
var sig, sstr string
|
|
||||||
var err error
|
|
||||||
if sstr, err = t.SigningString(); err != nil {
|
|
||||||
return "", err
|
|
||||||
}
|
|
||||||
if sig, err = t.Method.Sign(sstr, key); err != nil {
|
|
||||||
return "", err
|
|
||||||
}
|
|
||||||
return strings.Join([]string{sstr, sig}, "."), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// Generate the signing string. This is the
|
|
||||||
// most expensive part of the whole deal. Unless you
|
|
||||||
// need this for something special, just go straight for
|
|
||||||
// the SignedString.
|
|
||||||
func (t *Token) SigningString() (string, error) {
|
|
||||||
var err error
|
|
||||||
parts := make([]string, 2)
|
|
||||||
for i, _ := range parts {
|
|
||||||
var jsonValue []byte
|
|
||||||
if i == 0 {
|
|
||||||
if jsonValue, err = json.Marshal(t.Header); err != nil {
|
|
||||||
return "", err
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if jsonValue, err = json.Marshal(t.Claims); err != nil {
|
|
||||||
return "", err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
parts[i] = EncodeSegment(jsonValue)
|
|
||||||
}
|
|
||||||
return strings.Join(parts, "."), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// Parse, validate, and return a token.
|
|
||||||
// keyFunc will receive the parsed token and should return the key for validating.
|
|
||||||
// If everything is kosher, err will be nil
|
|
||||||
func Parse(tokenString string, keyFunc Keyfunc) (*Token, error) {
|
|
||||||
return new(Parser).Parse(tokenString, keyFunc)
|
|
||||||
}
|
|
||||||
|
|
||||||
func ParseWithClaims(tokenString string, claims Claims, keyFunc Keyfunc) (*Token, error) {
|
|
||||||
return new(Parser).ParseWithClaims(tokenString, claims, keyFunc)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Encode JWT specific base64url encoding with padding stripped
|
|
||||||
func EncodeSegment(seg []byte) string {
|
|
||||||
return strings.TrimRight(base64.URLEncoding.EncodeToString(seg), "=")
|
|
||||||
}
|
|
||||||
|
|
||||||
// Decode JWT specific base64url encoding with padding stripped
|
|
||||||
func DecodeSegment(seg string) ([]byte, error) {
|
|
||||||
if l := len(seg) % 4; l > 0 {
|
|
||||||
seg += strings.Repeat("=", 4-l)
|
|
||||||
}
|
|
||||||
|
|
||||||
return base64.URLEncoding.DecodeString(seg)
|
|
||||||
}
|
|
18
vendor/github.com/go-kit/kit/CONTRIBUTING.md
generated
vendored
18
vendor/github.com/go-kit/kit/CONTRIBUTING.md
generated
vendored
@ -1,18 +0,0 @@
|
|||||||
# Contributing
|
|
||||||
|
|
||||||
First, thank you for contributing! We love and encourage pull requests from everyone.
|
|
||||||
|
|
||||||
Before submitting major changes, here are a few guidelines to follow:
|
|
||||||
|
|
||||||
1. Check the [open issues][issues] and [pull requests][prs] for existing discussions.
|
|
||||||
1. Open an [issue][issues] first, to discuss a new feature or enhancement.
|
|
||||||
1. Write tests, and make sure the test suite passes locally and on CI.
|
|
||||||
1. Open a pull request, and reference the relevant issue(s).
|
|
||||||
1. After receiving feedback, [squash your commits][squash] and add a [great commit message][message].
|
|
||||||
1. Have fun!
|
|
||||||
|
|
||||||
[issues]: https://github.com/go-kit/kit/issues
|
|
||||||
[prs]: https://github.com/go-kit/kit/pulls
|
|
||||||
[squash]: http://gitready.com/advanced/2009/02/10/squashing-commits-with-rebase.html
|
|
||||||
[message]: http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
|
|
||||||
|
|
22
vendor/github.com/go-kit/kit/LICENSE
generated
vendored
22
vendor/github.com/go-kit/kit/LICENSE
generated
vendored
@ -1,22 +0,0 @@
|
|||||||
The MIT License (MIT)
|
|
||||||
|
|
||||||
Copyright (c) 2015 Peter Bourgon
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
|
||||||
copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
SOFTWARE.
|
|
||||||
|
|
117
vendor/github.com/go-kit/kit/README.md
generated
vendored
117
vendor/github.com/go-kit/kit/README.md
generated
vendored
@ -1,117 +0,0 @@
|
|||||||
# Go kit [![Circle CI](https://circleci.com/gh/go-kit/kit.svg?style=svg)](https://circleci.com/gh/go-kit/kit) [![Drone.io](https://drone.io/github.com/go-kit/kit/status.png)](https://drone.io/github.com/go-kit/kit/latest) [![Travis CI](https://travis-ci.org/go-kit/kit.svg?branch=master)](https://travis-ci.org/go-kit/kit) [![GoDoc](https://godoc.org/github.com/go-kit/kit?status.svg)](https://godoc.org/github.com/go-kit/kit) [![Coverage Status](https://coveralls.io/repos/go-kit/kit/badge.svg?branch=master&service=github)](https://coveralls.io/github/go-kit/kit?branch=master) [![Go Report Card](https://goreportcard.com/badge/go-kit/kit)](https://goreportcard.com/report/go-kit/kit)
|
|
||||||
|
|
||||||
**Go kit** is a **distributed programming toolkit** for building microservices
|
|
||||||
in large organizations. We solve common problems in distributed systems, so
|
|
||||||
you can focus on your business logic.
|
|
||||||
|
|
||||||
- Website: [gokit.io](https://gokit.io)
|
|
||||||
- Mailing list: [go-kit](https://groups.google.com/forum/#!forum/go-kit)
|
|
||||||
- Slack: [gophers.slack.com](https://gophers.slack.com) **#go-kit** ([invite](https://gophersinvite.herokuapp.com/))
|
|
||||||
|
|
||||||
## Motivation
|
|
||||||
|
|
||||||
Go has emerged as the language of the server, but it remains underrepresented
|
|
||||||
in large, consumer-focused tech companies like Facebook, Twitter, Netflix, and
|
|
||||||
SoundCloud. These organizations have largely adopted JVM-based stacks for
|
|
||||||
their business logic, owing in large part to libraries and ecosystems that
|
|
||||||
directly support their microservice architectures.
|
|
||||||
|
|
||||||
To reach its next level of success, Go needs more than simple primitives and
|
|
||||||
idioms. It needs a comprehensive toolkit, for coherent distributed programming
|
|
||||||
in the large. Go kit is a set of packages and best practices, which provide a
|
|
||||||
comprehensive, robust, and trustable way of building microservices for
|
|
||||||
organizations of any size.
|
|
||||||
|
|
||||||
For more details, see
|
|
||||||
[the website](https://gokit.io),
|
|
||||||
[the motivating blog post](http://peter.bourgon.org/go-kit/) and
|
|
||||||
[the video of the talk](https://www.youtube.com/watch?v=iFR_7AKkJFU).
|
|
||||||
See also the
|
|
||||||
[Go kit talk at GopherCon 2015](https://www.youtube.com/watch?v=1AjaZi4QuGo).
|
|
||||||
|
|
||||||
## Goals
|
|
||||||
|
|
||||||
- Operate in a heterogeneous SOA — expect to interact with mostly non-Go-kit services
|
|
||||||
- RPC as the primary messaging pattern
|
|
||||||
- Pluggable serialization and transport — not just JSON over HTTP
|
|
||||||
- Operate within existing infrastructures — no mandates for specific tools or technologies
|
|
||||||
|
|
||||||
## Non-goals
|
|
||||||
|
|
||||||
- Supporting messaging patterns other than RPC (for now) — e.g. MPI, pub/sub, CQRS, etc.
|
|
||||||
- Re-implementing functionality that can be provided by adapting existing software
|
|
||||||
- Having opinions on operational concerns: deployment, configuration, process supervision, orchestration, etc.
|
|
||||||
|
|
||||||
## Contributing
|
|
||||||
|
|
||||||
Please see [CONTRIBUTING.md](/CONTRIBUTING.md).
|
|
||||||
Thank you, [contributors](https://github.com/go-kit/kit/graphs/contributors)!
|
|
||||||
|
|
||||||
## Dependency management
|
|
||||||
|
|
||||||
Go kit is a library, designed to be imported into a binary package.
|
|
||||||
Vendoring is currently the best way for binary package authors
|
|
||||||
to ensure reliable, reproducible builds.
|
|
||||||
Therefore, we strongly recommend our users use vendoring for all of their dependencies,
|
|
||||||
including Go kit.
|
|
||||||
To avoid compatibility and availability issues,
|
|
||||||
Go kit doesn't vendor its own dependencies,
|
|
||||||
and doesn't recommend use of third-party import proxies.
|
|
||||||
|
|
||||||
There are several tools which make vendoring easier, including
|
|
||||||
[gb](http://getgb.io),
|
|
||||||
[glide](https://github.com/Masterminds/glide),
|
|
||||||
[gvt](https://github.com/FiloSottile/gvt),
|
|
||||||
[govendor](https://github.com/kardianos/govendor), and
|
|
||||||
[vendetta](https://github.com/dpw/vendetta).
|
|
||||||
In addition, Go kit uses a variety of continuous integration providers
|
|
||||||
to find and fix compatibility problems as soon as they occur.
|
|
||||||
|
|
||||||
## Related projects
|
|
||||||
|
|
||||||
Projects with a ★ have had particular influence on Go kit's design (or vice-versa).
|
|
||||||
|
|
||||||
### Service frameworks
|
|
||||||
|
|
||||||
- [gizmo](https://github.com/nytimes/gizmo), a microservice toolkit from The New York Times ★
|
|
||||||
- [go-micro](https://github.com/myodc/go-micro), a microservices client/server library ★
|
|
||||||
- [h2](https://github.com/hailocab/h2), a microservices framework ★
|
|
||||||
- [gotalk](https://github.com/rsms/gotalk), async peer communication protocol & library
|
|
||||||
- [Kite](https://github.com/koding/kite), a micro-service framework
|
|
||||||
- [gocircuit](https://github.com/gocircuit/circuit), dynamic cloud orchestration
|
|
||||||
|
|
||||||
### Individual components
|
|
||||||
|
|
||||||
- [afex/hystrix-go](https://github.com/afex/hystrix-go), client-side latency and fault tolerance library
|
|
||||||
- [armon/go-metrics](https://github.com/armon/go-metrics), library for exporting performance and runtime metrics to external metrics systems
|
|
||||||
- [codahale/lunk](https://github.com/codahale/lunk), structured logging in the style of Google's Dapper or Twitter's Zipkin
|
|
||||||
- [eapache/go-resiliency](https://github.com/eapache/go-resiliency), resiliency patterns
|
|
||||||
- [sasbury/logging](https://github.com/sasbury/logging), a tagged style of logging
|
|
||||||
- [grpc/grpc-go](https://github.com/grpc/grpc-go), HTTP/2 based RPC
|
|
||||||
- [inconshreveable/log15](https://github.com/inconshreveable/log15), simple, powerful logging for Go ★
|
|
||||||
- [mailgun/vulcand](https://github.com/vulcand/vulcand), programmatic load balancer backed by etcd
|
|
||||||
- [mattheath/phosphor](https://github.com/mondough/phosphor), distributed system tracing
|
|
||||||
- [pivotal-golang/lager](https://github.com/pivotal-golang/lager), an opinionated logging library
|
|
||||||
- [rubyist/circuitbreaker](https://github.com/rubyist/circuitbreaker), circuit breaker library
|
|
||||||
- [Sirupsen/logrus](https://github.com/Sirupsen/logrus), structured, pluggable logging for Go ★
|
|
||||||
- [sourcegraph/appdash](https://github.com/sourcegraph/appdash), application tracing system based on Google's Dapper
|
|
||||||
- [spacemonkeygo/monitor](https://github.com/spacemonkeygo/monitor), data collection, monitoring, instrumentation, and Zipkin client library
|
|
||||||
- [streadway/handy](https://github.com/streadway/handy), net/http handler filters
|
|
||||||
- [vitess/rpcplus](https://godoc.org/github.com/youtube/vitess/go/rpcplus), package rpc + context.Context
|
|
||||||
- [gdamore/mangos](https://github.com/gdamore/mangos), nanomsg implementation in pure Go
|
|
||||||
|
|
||||||
### Web frameworks
|
|
||||||
|
|
||||||
- [Gorilla](http://www.gorillatoolkit.org)
|
|
||||||
- [Gin](https://gin-gonic.github.io/gin/)
|
|
||||||
- [Negroni](https://github.com/codegangsta/negroni)
|
|
||||||
- [Goji](https://github.com/zenazn/goji)
|
|
||||||
- [Martini](https://github.com/go-martini/martini)
|
|
||||||
- [Beego](http://beego.me/)
|
|
||||||
- [Revel](https://revel.github.io/) (considered harmful)
|
|
||||||
|
|
||||||
## Additional reading
|
|
||||||
|
|
||||||
- [Architecting for the Cloud](http://fr.slideshare.net/stonse/architecting-for-the-cloud-using-netflixoss-codemash-workshop-29852233) — Netflix
|
|
||||||
- [Dapper, a Large-Scale Distributed Systems Tracing Infrastructure](http://research.google.com/pubs/pub36356.html) — Google
|
|
||||||
- [Your Server as a Function](http://monkey.org/~marius/funsrv.pdf) (PDF) — Twitter
|
|
17
vendor/github.com/go-kit/kit/ROADMAP.md
generated
vendored
17
vendor/github.com/go-kit/kit/ROADMAP.md
generated
vendored
@ -1,17 +0,0 @@
|
|||||||
# Roadmap
|
|
||||||
|
|
||||||
This is a coarse-grained roadmap of Go kit development direction in the short
|
|
||||||
to mid-term future. It will be kept reasonably up-to-date by the project
|
|
||||||
maintainers. Suggest new ideas, enhancements, and features using the standard
|
|
||||||
[issues](https://github.com/go-kit/kit/issues) model.
|
|
||||||
|
|
||||||
## Prioritized
|
|
||||||
|
|
||||||
1. kitgen code generation (#308, #70)
|
|
||||||
1. package pubsub (#298, #295)
|
|
||||||
|
|
||||||
## Unprioritized
|
|
||||||
|
|
||||||
- package log/levels refactor (#250, #269, #252)
|
|
||||||
- package auth/jwt (#255)
|
|
||||||
|
|
122
vendor/github.com/go-kit/kit/auth/jwt/README.md
generated
vendored
122
vendor/github.com/go-kit/kit/auth/jwt/README.md
generated
vendored
@ -1,122 +0,0 @@
|
|||||||
# package auth/jwt
|
|
||||||
|
|
||||||
`package auth/jwt` provides a set of interfaces for service authorization
|
|
||||||
through [JSON Web Tokens](https://jwt.io/).
|
|
||||||
|
|
||||||
## Usage
|
|
||||||
|
|
||||||
NewParser takes a key function and an expected signing method and returns an
|
|
||||||
`endpoint.Middleware`. The middleware will parse a token passed into the
|
|
||||||
context via the `jwt.JWTTokenContextKey`. If the token is valid, any claims
|
|
||||||
will be added to the context via the `jwt.JWTClaimsContextKey`.
|
|
||||||
|
|
||||||
```go
|
|
||||||
import (
|
|
||||||
stdjwt "github.com/dgrijalva/jwt-go"
|
|
||||||
|
|
||||||
"github.com/go-kit/kit/auth/jwt"
|
|
||||||
"github.com/go-kit/kit/endpoint"
|
|
||||||
)
|
|
||||||
|
|
||||||
func main() {
|
|
||||||
var exampleEndpoint endpoint.Endpoint
|
|
||||||
{
|
|
||||||
kf := func(token *stdjwt.Token) (interface{}, error) { return []byte("SigningString"), nil }
|
|
||||||
exampleEndpoint = MakeExampleEndpoint(service)
|
|
||||||
exampleEndpoint = jwt.NewParser(kf, stdjwt.SigningMethodHS256)(exampleEndpoint)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
NewSigner takes a JWT key ID header, the signing key, signing method, and a
|
|
||||||
claims object. It returns an `endpoint.Middleware`. The middleware will build
|
|
||||||
the token string and add it to the context via the `jwt.JWTTokenContextKey`.
|
|
||||||
|
|
||||||
```go
|
|
||||||
import (
|
|
||||||
stdjwt "github.com/dgrijalva/jwt-go"
|
|
||||||
|
|
||||||
"github.com/go-kit/kit/auth/jwt"
|
|
||||||
"github.com/go-kit/kit/endpoint"
|
|
||||||
)
|
|
||||||
|
|
||||||
func main() {
|
|
||||||
var exampleEndpoint endpoint.Endpoint
|
|
||||||
{
|
|
||||||
exampleEndpoint = grpctransport.NewClient(...).Endpoint()
|
|
||||||
exampleEndpoint = jwt.NewSigner(
|
|
||||||
"kid-header",
|
|
||||||
[]byte("SigningString"),
|
|
||||||
stdjwt.SigningMethodHS256,
|
|
||||||
jwt.Claims{},
|
|
||||||
)(exampleEndpoint)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
In order for the parser and the signer to work, the authorization headers need
|
|
||||||
to be passed between the request and the context. `ToHTTPContext()`,
|
|
||||||
`FromHTTPContext()`, `ToGRPCContext()`, and `FromGRPCContext()` are given as
|
|
||||||
helpers to do this. These functions implement the correlating transport's
|
|
||||||
RequestFunc interface and can be passed as ClientBefore or ServerBefore
|
|
||||||
options.
|
|
||||||
|
|
||||||
Example of use in a client:
|
|
||||||
|
|
||||||
```go
|
|
||||||
import (
|
|
||||||
stdjwt "github.com/dgrijalva/jwt-go"
|
|
||||||
|
|
||||||
grpctransport "github.com/go-kit/kit/transport/grpc"
|
|
||||||
"github.com/go-kit/kit/auth/jwt"
|
|
||||||
"github.com/go-kit/kit/endpoint"
|
|
||||||
)
|
|
||||||
|
|
||||||
func main() {
|
|
||||||
|
|
||||||
options := []httptransport.ClientOption{}
|
|
||||||
var exampleEndpoint endpoint.Endpoint
|
|
||||||
{
|
|
||||||
exampleEndpoint = grpctransport.NewClient(..., grpctransport.ClientBefore(jwt.FromGRPCContext())).Endpoint()
|
|
||||||
exampleEndpoint = jwt.NewSigner(
|
|
||||||
"kid-header",
|
|
||||||
[]byte("SigningString"),
|
|
||||||
stdjwt.SigningMethodHS256,
|
|
||||||
jwt.Claims{},
|
|
||||||
)(exampleEndpoint)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
Example of use in a server:
|
|
||||||
|
|
||||||
```go
|
|
||||||
import (
|
|
||||||
"golang.org/x/net/context"
|
|
||||||
|
|
||||||
"github.com/go-kit/kit/auth/jwt"
|
|
||||||
"github.com/go-kit/kit/log"
|
|
||||||
grpctransport "github.com/go-kit/kit/transport/grpc"
|
|
||||||
)
|
|
||||||
|
|
||||||
func MakeGRPCServer(ctx context.Context, endpoints Endpoints, logger log.Logger) pb.ExampleServer {
|
|
||||||
options := []grpctransport.ServerOption{grpctransport.ServerErrorLogger(logger)}
|
|
||||||
|
|
||||||
return &grpcServer{
|
|
||||||
createUser: grpctransport.NewServer(
|
|
||||||
ctx,
|
|
||||||
endpoints.CreateUserEndpoint,
|
|
||||||
DecodeGRPCCreateUserRequest,
|
|
||||||
EncodeGRPCCreateUserResponse,
|
|
||||||
append(options, grpctransport.ServerBefore(jwt.ToGRPCContext()))...,
|
|
||||||
),
|
|
||||||
getUser: grpctransport.NewServer(
|
|
||||||
ctx,
|
|
||||||
endpoints.GetUserEndpoint,
|
|
||||||
DecodeGRPCGetUserRequest,
|
|
||||||
EncodeGRPCGetUserResponse,
|
|
||||||
options...,
|
|
||||||
),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
122
vendor/github.com/go-kit/kit/auth/jwt/middleware.go
generated
vendored
122
vendor/github.com/go-kit/kit/auth/jwt/middleware.go
generated
vendored
@ -1,122 +0,0 @@
|
|||||||
package jwt
|
|
||||||
|
|
||||||
import (
|
|
||||||
"errors"
|
|
||||||
|
|
||||||
jwt "github.com/dgrijalva/jwt-go"
|
|
||||||
"golang.org/x/net/context"
|
|
||||||
|
|
||||||
"github.com/go-kit/kit/endpoint"
|
|
||||||
)
|
|
||||||
|
|
||||||
type contextKey string
|
|
||||||
|
|
||||||
const (
|
|
||||||
// JWTTokenContextKey holds the key used to store a JWT Token in the
|
|
||||||
// context.
|
|
||||||
JWTTokenContextKey contextKey = "JWTToken"
|
|
||||||
// JWTClaimsContxtKey holds the key used to store the JWT Claims in the
|
|
||||||
// context.
|
|
||||||
JWTClaimsContextKey contextKey = "JWTClaims"
|
|
||||||
)
|
|
||||||
|
|
||||||
var (
|
|
||||||
// ErrTokenContextMissing denotes a token was not passed into the parsing
|
|
||||||
// middleware's context.
|
|
||||||
ErrTokenContextMissing = errors.New("token up for parsing was not passed through the context")
|
|
||||||
// ErrTokenInvalid denotes a token was not able to be validated.
|
|
||||||
ErrTokenInvalid = errors.New("JWT Token was invalid")
|
|
||||||
// ErrTokenExpired denotes a token's expire header (exp) has since passed.
|
|
||||||
ErrTokenExpired = errors.New("JWT Token is expired")
|
|
||||||
// ErrTokenMalformed denotes a token was not formatted as a JWT token.
|
|
||||||
ErrTokenMalformed = errors.New("JWT Token is malformed")
|
|
||||||
// ErrTokenNotActive denotes a token's not before header (nbf) is in the
|
|
||||||
// future.
|
|
||||||
ErrTokenNotActive = errors.New("token is not valid yet")
|
|
||||||
// ErrUncesptedSigningMethod denotes a token was signed with an unexpected
|
|
||||||
// signing method.
|
|
||||||
ErrUnexpectedSigningMethod = errors.New("unexpected signing method")
|
|
||||||
)
|
|
||||||
|
|
||||||
type Claims map[string]interface{}
|
|
||||||
|
|
||||||
// NewSigner creates a new JWT token generating middleware, specifying key ID,
|
|
||||||
// signing string, signing method and the claims you would like it to contain.
|
|
||||||
// Tokens are signed with a Key ID header (kid) which is useful for determining
|
|
||||||
// the key to use for parsing. Particularly useful for clients.
|
|
||||||
func NewSigner(kid string, key []byte, method jwt.SigningMethod, claims Claims) endpoint.Middleware {
|
|
||||||
return func(next endpoint.Endpoint) endpoint.Endpoint {
|
|
||||||
return func(ctx context.Context, request interface{}) (response interface{}, err error) {
|
|
||||||
token := jwt.NewWithClaims(method, jwt.MapClaims(claims))
|
|
||||||
token.Header["kid"] = kid
|
|
||||||
|
|
||||||
// Sign and get the complete encoded token as a string using the secret
|
|
||||||
tokenString, err := token.SignedString(key)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
ctx = context.WithValue(ctx, JWTTokenContextKey, tokenString)
|
|
||||||
|
|
||||||
return next(ctx, request)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// NewParser creates a new JWT token parsing middleware, specifying a
|
|
||||||
// jwt.Keyfunc interface and the signing method. NewParser adds the resulting
|
|
||||||
// claims to endpoint context or returns error on invalid token. Particularly
|
|
||||||
// useful for servers.
|
|
||||||
func NewParser(keyFunc jwt.Keyfunc, method jwt.SigningMethod) endpoint.Middleware {
|
|
||||||
return func(next endpoint.Endpoint) endpoint.Endpoint {
|
|
||||||
return func(ctx context.Context, request interface{}) (response interface{}, err error) {
|
|
||||||
// tokenString is stored in the context from the transport handlers.
|
|
||||||
tokenString, ok := ctx.Value(JWTTokenContextKey).(string)
|
|
||||||
if !ok {
|
|
||||||
return nil, ErrTokenContextMissing
|
|
||||||
}
|
|
||||||
|
|
||||||
// Parse takes the token string and a function for looking up the
|
|
||||||
// key. The latter is especially useful if you use multiple keys
|
|
||||||
// for your application. The standard is to use 'kid' in the head
|
|
||||||
// of the token to identify which key to use, but the parsed token
|
|
||||||
// (head and claims) is provided to the callback, providing
|
|
||||||
// flexibility.
|
|
||||||
token, err := jwt.Parse(tokenString, func(token *jwt.Token) (interface{}, error) {
|
|
||||||
// Don't forget to validate the alg is what you expect:
|
|
||||||
if token.Method != method {
|
|
||||||
return nil, ErrUnexpectedSigningMethod
|
|
||||||
}
|
|
||||||
|
|
||||||
return keyFunc(token)
|
|
||||||
})
|
|
||||||
if err != nil {
|
|
||||||
if e, ok := err.(*jwt.ValidationError); ok && e.Inner != nil {
|
|
||||||
if e.Errors&jwt.ValidationErrorMalformed != 0 {
|
|
||||||
// Token is malformed
|
|
||||||
return nil, ErrTokenMalformed
|
|
||||||
} else if e.Errors&jwt.ValidationErrorExpired != 0 {
|
|
||||||
// Token is expired
|
|
||||||
return nil, ErrTokenExpired
|
|
||||||
} else if e.Errors&jwt.ValidationErrorNotValidYet != 0 {
|
|
||||||
// Token is not active yet
|
|
||||||
return nil, ErrTokenNotActive
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil, e.Inner
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
if !token.Valid {
|
|
||||||
return nil, ErrTokenInvalid
|
|
||||||
}
|
|
||||||
|
|
||||||
if claims, ok := token.Claims.(jwt.MapClaims); ok {
|
|
||||||
ctx = context.WithValue(ctx, JWTClaimsContextKey, Claims(claims))
|
|
||||||
}
|
|
||||||
|
|
||||||
return next(ctx, request)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
89
vendor/github.com/go-kit/kit/auth/jwt/transport.go
generated
vendored
89
vendor/github.com/go-kit/kit/auth/jwt/transport.go
generated
vendored
@ -1,89 +0,0 @@
|
|||||||
package jwt
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
stdhttp "net/http"
|
|
||||||
"strings"
|
|
||||||
|
|
||||||
"golang.org/x/net/context"
|
|
||||||
"google.golang.org/grpc/metadata"
|
|
||||||
|
|
||||||
"github.com/go-kit/kit/transport/grpc"
|
|
||||||
"github.com/go-kit/kit/transport/http"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
bearer string = "bearer"
|
|
||||||
bearerFormat string = "Bearer %s"
|
|
||||||
)
|
|
||||||
|
|
||||||
// ToHTTPContext moves JWT token from request header to context. Particularly
|
|
||||||
// useful for servers.
|
|
||||||
func ToHTTPContext() http.RequestFunc {
|
|
||||||
return func(ctx context.Context, r *stdhttp.Request) context.Context {
|
|
||||||
token, ok := extractTokenFromAuthHeader(r.Header.Get("Authorization"))
|
|
||||||
if !ok {
|
|
||||||
return ctx
|
|
||||||
}
|
|
||||||
|
|
||||||
return context.WithValue(ctx, JWTTokenContextKey, token)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// FromHTTPContext moves JWT token from context to request header. Particularly
|
|
||||||
// useful for clients.
|
|
||||||
func FromHTTPContext() http.RequestFunc {
|
|
||||||
return func(ctx context.Context, r *stdhttp.Request) context.Context {
|
|
||||||
token, ok := ctx.Value(JWTTokenContextKey).(string)
|
|
||||||
if ok {
|
|
||||||
r.Header.Add("Authorization", generateAuthHeaderFromToken(token))
|
|
||||||
}
|
|
||||||
return ctx
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ToGRPCContext moves JWT token from grpc metadata to context. Particularly
|
|
||||||
// userful for servers.
|
|
||||||
func ToGRPCContext() grpc.RequestFunc {
|
|
||||||
return func(ctx context.Context, md *metadata.MD) context.Context {
|
|
||||||
// capital "Key" is illegal in HTTP/2.
|
|
||||||
authHeader, ok := (*md)["authorization"]
|
|
||||||
if !ok {
|
|
||||||
return ctx
|
|
||||||
}
|
|
||||||
|
|
||||||
token, ok := extractTokenFromAuthHeader(authHeader[0])
|
|
||||||
if ok {
|
|
||||||
ctx = context.WithValue(ctx, JWTTokenContextKey, token)
|
|
||||||
}
|
|
||||||
|
|
||||||
return ctx
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// FromGRPCContext moves JWT token from context to grpc metadata. Particularly
|
|
||||||
// useful for clients.
|
|
||||||
func FromGRPCContext() grpc.RequestFunc {
|
|
||||||
return func(ctx context.Context, md *metadata.MD) context.Context {
|
|
||||||
token, ok := ctx.Value(JWTTokenContextKey).(string)
|
|
||||||
if ok {
|
|
||||||
// capital "Key" is illegal in HTTP/2.
|
|
||||||
(*md)["authorization"] = []string{generateAuthHeaderFromToken(token)}
|
|
||||||
}
|
|
||||||
|
|
||||||
return ctx
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func extractTokenFromAuthHeader(val string) (token string, ok bool) {
|
|
||||||
authHeaderParts := strings.Split(val, " ")
|
|
||||||
if len(authHeaderParts) != 2 || strings.ToLower(authHeaderParts[0]) != bearer {
|
|
||||||
return "", false
|
|
||||||
}
|
|
||||||
|
|
||||||
return authHeaderParts[1], true
|
|
||||||
}
|
|
||||||
|
|
||||||
func generateAuthHeaderFromToken(token string) string {
|
|
||||||
return fmt.Sprintf(bearerFormat, token)
|
|
||||||
}
|
|
47
vendor/github.com/go-kit/kit/coverage.bash
generated
vendored
47
vendor/github.com/go-kit/kit/coverage.bash
generated
vendored
@ -1,47 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
# This script runs the cover tool on all packages with test files. If you set a
|
|
||||||
# WEB environment variable, it will additionally open the web-based coverage
|
|
||||||
# visualizer for each package.
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
function go_files { find . -name '*_test.go' ; }
|
|
||||||
function filter { grep -v '/_' ; }
|
|
||||||
function remove_relative_prefix { sed -e 's/^\.\///g' ; }
|
|
||||||
|
|
||||||
function directories {
|
|
||||||
go_files | filter | remove_relative_prefix | while read f
|
|
||||||
do
|
|
||||||
dirname $f
|
|
||||||
done
|
|
||||||
}
|
|
||||||
|
|
||||||
function unique_directories { directories | sort | uniq ; }
|
|
||||||
|
|
||||||
PATHS=${1:-$(unique_directories)}
|
|
||||||
|
|
||||||
function report {
|
|
||||||
for path in $PATHS
|
|
||||||
do
|
|
||||||
go test -coverprofile=$path/cover.coverprofile ./$path
|
|
||||||
done
|
|
||||||
}
|
|
||||||
|
|
||||||
function combine {
|
|
||||||
gover
|
|
||||||
}
|
|
||||||
|
|
||||||
function clean {
|
|
||||||
find . -name cover.coverprofile | xargs rm
|
|
||||||
}
|
|
||||||
|
|
||||||
report
|
|
||||||
combine
|
|
||||||
clean
|
|
||||||
|
|
||||||
if [ -n "${WEB+x}" ]
|
|
||||||
then
|
|
||||||
go tool cover -html=gover.coverprofile
|
|
||||||
fi
|
|
||||||
|
|
5
vendor/github.com/go-kit/kit/endpoint/doc.go
generated
vendored
5
vendor/github.com/go-kit/kit/endpoint/doc.go
generated
vendored
@ -1,5 +0,0 @@
|
|||||||
// Package endpoint defines an abstraction for RPCs.
|
|
||||||
//
|
|
||||||
// Endpoints are a fundamental building block for many Go kit components.
|
|
||||||
// Endpoints are implemented by servers, and called by clients.
|
|
||||||
package endpoint
|
|
28
vendor/github.com/go-kit/kit/endpoint/endpoint.go
generated
vendored
28
vendor/github.com/go-kit/kit/endpoint/endpoint.go
generated
vendored
@ -1,28 +0,0 @@
|
|||||||
package endpoint
|
|
||||||
|
|
||||||
import (
|
|
||||||
"golang.org/x/net/context"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Endpoint is the fundamental building block of servers and clients.
|
|
||||||
// It represents a single RPC method.
|
|
||||||
type Endpoint func(ctx context.Context, request interface{}) (response interface{}, err error)
|
|
||||||
|
|
||||||
// Nop is an endpoint that does nothing and returns a nil error.
|
|
||||||
// Useful for tests.
|
|
||||||
func Nop(context.Context, interface{}) (interface{}, error) { return struct{}{}, nil }
|
|
||||||
|
|
||||||
// Middleware is a chainable behavior modifier for endpoints.
|
|
||||||
type Middleware func(Endpoint) Endpoint
|
|
||||||
|
|
||||||
// Chain is a helper function for composing middlewares. Requests will
|
|
||||||
// traverse them in the order they're declared. That is, the first middleware
|
|
||||||
// is treated as the outermost middleware.
|
|
||||||
func Chain(outer Middleware, others ...Middleware) Middleware {
|
|
||||||
return func(next Endpoint) Endpoint {
|
|
||||||
for i := len(others) - 1; i >= 0; i-- { // reverse
|
|
||||||
next = others[i](next)
|
|
||||||
}
|
|
||||||
return outer(next)
|
|
||||||
}
|
|
||||||
}
|
|
26
vendor/github.com/go-kit/kit/lint
generated
vendored
26
vendor/github.com/go-kit/kit/lint
generated
vendored
@ -1,26 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
set -o errexit
|
|
||||||
set -o nounset
|
|
||||||
set -o pipefail
|
|
||||||
|
|
||||||
if [ ! $(command -v gometalinter) ]
|
|
||||||
then
|
|
||||||
go get github.com/alecthomas/gometalinter
|
|
||||||
gometalinter --update --install
|
|
||||||
fi
|
|
||||||
|
|
||||||
time gometalinter \
|
|
||||||
--exclude='error return value not checked.*(Close|Log|Print).*\(errcheck\)$' \
|
|
||||||
--exclude='.*_test\.go:.*error return value not checked.*\(errcheck\)$' \
|
|
||||||
--exclude='/thrift/' \
|
|
||||||
--exclude='/pb/' \
|
|
||||||
--exclude='no args in Log call \(vet\)' \
|
|
||||||
--disable=dupl \
|
|
||||||
--disable=aligncheck \
|
|
||||||
--disable=gotype \
|
|
||||||
--cyclo-over=20 \
|
|
||||||
--tests \
|
|
||||||
--concurrency=2 \
|
|
||||||
--deadline=300s \
|
|
||||||
./...
|
|
148
vendor/github.com/go-kit/kit/log/README.md
generated
vendored
148
vendor/github.com/go-kit/kit/log/README.md
generated
vendored
@ -1,148 +0,0 @@
|
|||||||
# package log
|
|
||||||
|
|
||||||
`package log` provides a minimal interface for structured logging in services.
|
|
||||||
It may be wrapped to encode conventions, enforce type-safety, provide leveled logging, and so on.
|
|
||||||
It can be used for both typical application log events, and log-structured data streams.
|
|
||||||
|
|
||||||
## Structured logging
|
|
||||||
|
|
||||||
Structured logging is, basically, conceding to the reality that logs are _data_,
|
|
||||||
and warrant some level of schematic rigor.
|
|
||||||
Using a stricter, key/value-oriented message format for our logs,
|
|
||||||
containing contextual and semantic information,
|
|
||||||
makes it much easier to get insight into the operational activity of the systems we build.
|
|
||||||
Consequently, `package log` is of the strong belief that
|
|
||||||
"[the benefits of structured logging outweigh the minimal effort involved](https://www.thoughtworks.com/radar/techniques/structured-logging)".
|
|
||||||
|
|
||||||
Migrating from unstructured to structured logging is probably a lot easier than you'd expect.
|
|
||||||
|
|
||||||
```go
|
|
||||||
// Unstructured
|
|
||||||
log.Printf("HTTP server listening on %s", addr)
|
|
||||||
|
|
||||||
// Structured
|
|
||||||
logger.Log("transport", "HTTP", "addr", addr, "msg", "listening")
|
|
||||||
```
|
|
||||||
|
|
||||||
## Usage
|
|
||||||
|
|
||||||
### Typical application logging
|
|
||||||
|
|
||||||
```go
|
|
||||||
w := log.NewSyncWriter(os.Stderr)
|
|
||||||
logger := log.NewLogfmtLogger(w)
|
|
||||||
logger.Log("question", "what is the meaning of life?", "answer", 42)
|
|
||||||
|
|
||||||
// Output:
|
|
||||||
// question="what is the meaning of life?" answer=42
|
|
||||||
```
|
|
||||||
|
|
||||||
### Log contexts
|
|
||||||
|
|
||||||
```go
|
|
||||||
func main() {
|
|
||||||
var logger log.Logger
|
|
||||||
logger = log.NewLogfmtLogger(log.NewSyncWriter(os.Stderr))
|
|
||||||
logger = log.NewContext(logger).With("instance_id", 123)
|
|
||||||
|
|
||||||
logger.Log("msg", "starting")
|
|
||||||
NewWorker(log.NewContext(logger).With("component", "worker")).Run()
|
|
||||||
NewSlacker(log.NewContext(logger).With("component", "slacker")).Run()
|
|
||||||
}
|
|
||||||
|
|
||||||
// Output:
|
|
||||||
// instance_id=123 msg=starting
|
|
||||||
// instance_id=123 component=worker msg=running
|
|
||||||
// instance_id=123 component=slacker msg=running
|
|
||||||
```
|
|
||||||
|
|
||||||
### Interact with stdlib logger
|
|
||||||
|
|
||||||
Redirect stdlib logger to Go kit logger.
|
|
||||||
|
|
||||||
```go
|
|
||||||
import (
|
|
||||||
"os"
|
|
||||||
stdlog "log"
|
|
||||||
kitlog "github.com/go-kit/kit/log"
|
|
||||||
)
|
|
||||||
|
|
||||||
func main() {
|
|
||||||
logger := kitlog.NewJSONLogger(kitlog.NewSyncWriter(os.Stdout))
|
|
||||||
stdlog.SetOutput(kitlog.NewStdlibAdapter(logger))
|
|
||||||
stdlog.Print("I sure like pie")
|
|
||||||
}
|
|
||||||
|
|
||||||
// Output:
|
|
||||||
// {"msg":"I sure like pie","ts":"2016/01/01 12:34:56"}
|
|
||||||
```
|
|
||||||
|
|
||||||
Or, if, for legacy reasons,
|
|
||||||
you need to pipe all of your logging through the stdlib log package,
|
|
||||||
you can redirect Go kit logger to the stdlib logger.
|
|
||||||
|
|
||||||
```go
|
|
||||||
logger := kitlog.NewLogfmtLogger(kitlog.StdlibWriter{})
|
|
||||||
logger.Log("legacy", true, "msg", "at least it's something")
|
|
||||||
|
|
||||||
// Output:
|
|
||||||
// 2016/01/01 12:34:56 legacy=true msg="at least it's something"
|
|
||||||
```
|
|
||||||
|
|
||||||
### Timestamps and callers
|
|
||||||
|
|
||||||
```go
|
|
||||||
var logger log.Logger
|
|
||||||
logger = log.NewLogfmtLogger(log.NewSyncWriter(os.Stderr))
|
|
||||||
logger = log.NewContext(logger).With("ts", log.DefaultTimestampUTC, "caller", log.DefaultCaller)
|
|
||||||
|
|
||||||
logger.Log("msg", "hello")
|
|
||||||
|
|
||||||
// Output:
|
|
||||||
// ts=2016-01-01T12:34:56Z caller=main.go:15 msg=hello
|
|
||||||
```
|
|
||||||
|
|
||||||
## Supported output formats
|
|
||||||
|
|
||||||
- [Logfmt](https://brandur.org/logfmt)
|
|
||||||
- JSON
|
|
||||||
|
|
||||||
## Enhancements
|
|
||||||
|
|
||||||
`package log` is centered on the one-method Logger interface.
|
|
||||||
|
|
||||||
```go
|
|
||||||
type Logger interface {
|
|
||||||
Log(keyvals ...interface{}) error
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
This interface, and its supporting code like [log.Context](https://godoc.org/github.com/go-kit/kit/log#Context),
|
|
||||||
is the product of much iteration and evaluation.
|
|
||||||
For more details on the evolution of the Logger interface,
|
|
||||||
see [The Hunt for a Logger Interface](http://go-talks.appspot.com/github.com/ChrisHines/talks/structured-logging/structured-logging.slide#1),
|
|
||||||
a talk by [Chris Hines](https://github.com/ChrisHines).
|
|
||||||
Also, please see
|
|
||||||
[#63](https://github.com/go-kit/kit/issues/63),
|
|
||||||
[#76](https://github.com/go-kit/kit/pull/76),
|
|
||||||
[#131](https://github.com/go-kit/kit/issues/131),
|
|
||||||
[#157](https://github.com/go-kit/kit/pull/157),
|
|
||||||
[#164](https://github.com/go-kit/kit/issues/164), and
|
|
||||||
[#252](https://github.com/go-kit/kit/pull/252)
|
|
||||||
to review historical conversations about package log and the Logger interface.
|
|
||||||
|
|
||||||
Value-add packages and suggestions,
|
|
||||||
like improvements to [the leveled logger](https://godoc.org/github.com/go-kit/kit/log/levels),
|
|
||||||
are of course welcome.
|
|
||||||
Good proposals should
|
|
||||||
|
|
||||||
- Be composable with [log.Context](https://godoc.org/github.com/go-kit/kit/log#Context),
|
|
||||||
- Not break the behavior of [log.Caller](https://godoc.org/github.com/go-kit/kit/log#Caller) in any wrapped context, and
|
|
||||||
- Be friendly to packages that accept only an unadorned log.Logger.
|
|
||||||
|
|
||||||
## Benchmarks & comparisons
|
|
||||||
|
|
||||||
There are a few Go logging benchmarks and comparisons that include Go kit's package log.
|
|
||||||
|
|
||||||
- [imkira/go-loggers-bench](https://github.com/imkira/go-loggers-bench) includes kit/log
|
|
||||||
- [uber-common/zap](https://github.com/uber-common/zap), a zero-alloc logging library, includes a comparison with kit/log
|
|
93
vendor/github.com/go-kit/kit/log/doc.go
generated
vendored
93
vendor/github.com/go-kit/kit/log/doc.go
generated
vendored
@ -1,93 +0,0 @@
|
|||||||
// Package log provides a structured logger.
|
|
||||||
//
|
|
||||||
// Structured logging produces logs easily consumed later by humans or
|
|
||||||
// machines. Humans might be interested in debugging errors, or tracing
|
|
||||||
// specific requests. Machines might be interested in counting interesting
|
|
||||||
// events, or aggregating information for off-line processing. In both cases,
|
|
||||||
// it is important that the log messages are structured and actionable.
|
|
||||||
// Package log is designed to encourage both of these best practices.
|
|
||||||
//
|
|
||||||
// Basic Usage
|
|
||||||
//
|
|
||||||
// The fundamental interface is Logger. Loggers create log events from
|
|
||||||
// key/value data. The Logger interface has a single method, Log, which
|
|
||||||
// accepts a sequence of alternating key/value pairs, which this package names
|
|
||||||
// keyvals.
|
|
||||||
//
|
|
||||||
// type Logger interface {
|
|
||||||
// Log(keyvals ...interface{}) error
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// Here is an example of a function using a Logger to create log events.
|
|
||||||
//
|
|
||||||
// func RunTask(task Task, logger log.Logger) string {
|
|
||||||
// logger.Log("taskID", task.ID, "event", "starting task")
|
|
||||||
// ...
|
|
||||||
// logger.Log("taskID", task.ID, "event", "task complete")
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// The keys in the above example are "taskID" and "event". The values are
|
|
||||||
// task.ID, "starting task", and "task complete". Every key is followed
|
|
||||||
// immediately by its value.
|
|
||||||
//
|
|
||||||
// Keys are usually plain strings. Values may be any type that has a sensible
|
|
||||||
// encoding in the chosen log format. With structured logging it is a good
|
|
||||||
// idea to log simple values without formatting them. This practice allows
|
|
||||||
// the chosen logger to encode values in the most appropriate way.
|
|
||||||
//
|
|
||||||
// Log Context
|
|
||||||
//
|
|
||||||
// A log context stores keyvals that it includes in all log events. Building
|
|
||||||
// appropriate log contexts reduces repetition and aids consistency in the
|
|
||||||
// resulting log output. We can use a context to improve the RunTask example.
|
|
||||||
//
|
|
||||||
// func RunTask(task Task, logger log.Logger) string {
|
|
||||||
// logger = log.NewContext(logger).With("taskID", task.ID)
|
|
||||||
// logger.Log("event", "starting task")
|
|
||||||
// ...
|
|
||||||
// taskHelper(task.Cmd, logger)
|
|
||||||
// ...
|
|
||||||
// logger.Log("event", "task complete")
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// The improved version emits the same log events as the original for the
|
|
||||||
// first and last calls to Log. The call to taskHelper highlights that a
|
|
||||||
// context may be passed as a logger to other functions. Each log event
|
|
||||||
// created by the called function will include the task.ID even though the
|
|
||||||
// function does not have access to that value. Using log contexts this way
|
|
||||||
// simplifies producing log output that enables tracing the life cycle of
|
|
||||||
// individual tasks. (See the Context example for the full code of the
|
|
||||||
// above snippet.)
|
|
||||||
//
|
|
||||||
// Dynamic Context Values
|
|
||||||
//
|
|
||||||
// A Valuer function stored in a log context generates a new value each time
|
|
||||||
// the context logs an event. The Valuer example demonstrates how this
|
|
||||||
// feature works.
|
|
||||||
//
|
|
||||||
// Valuers provide the basis for consistently logging timestamps and source
|
|
||||||
// code location. The log package defines several valuers for that purpose.
|
|
||||||
// See Timestamp, DefaultTimestamp, DefaultTimestampUTC, Caller, and
|
|
||||||
// DefaultCaller. A common logger initialization sequence that ensures all log
|
|
||||||
// entries contain a timestamp and source location looks like this:
|
|
||||||
//
|
|
||||||
// logger := log.NewLogfmtLogger(log.NewSyncWriter(os.Stdout))
|
|
||||||
// logger = log.NewContext(logger).With("ts", log.DefaultTimestampUTC, "caller", log.DefaultCaller)
|
|
||||||
//
|
|
||||||
// Concurrent Safety
|
|
||||||
//
|
|
||||||
// Applications with multiple goroutines want each log event written to the
|
|
||||||
// same logger to remain separate from other log events. Package log provides
|
|
||||||
// two simple solutions for concurrent safe logging.
|
|
||||||
//
|
|
||||||
// NewSyncWriter wraps an io.Writer and serializes each call to its Write
|
|
||||||
// method. Using a SyncWriter has the benefit that the smallest practical
|
|
||||||
// portion of the logging logic is performed within a mutex, but it requires
|
|
||||||
// the formatting Logger to make only one call to Write per log event.
|
|
||||||
//
|
|
||||||
// NewSyncLogger wraps any Logger and serializes each call to its Log method.
|
|
||||||
// Using a SyncLogger has the benefit that it guarantees each log event is
|
|
||||||
// handled atomically within the wrapped logger, but it typically serializes
|
|
||||||
// both the formatting and output logic. Use a SyncLogger if the formatting
|
|
||||||
// logger may perform multiple writes per log event.
|
|
||||||
package log
|
|
92
vendor/github.com/go-kit/kit/log/json_logger.go
generated
vendored
92
vendor/github.com/go-kit/kit/log/json_logger.go
generated
vendored
@ -1,92 +0,0 @@
|
|||||||
package log
|
|
||||||
|
|
||||||
import (
|
|
||||||
"encoding"
|
|
||||||
"encoding/json"
|
|
||||||
"fmt"
|
|
||||||
"io"
|
|
||||||
"reflect"
|
|
||||||
)
|
|
||||||
|
|
||||||
type jsonLogger struct {
|
|
||||||
io.Writer
|
|
||||||
}
|
|
||||||
|
|
||||||
// NewJSONLogger returns a Logger that encodes keyvals to the Writer as a
|
|
||||||
// single JSON object. Each log event produces no more than one call to
|
|
||||||
// w.Write. The passed Writer must be safe for concurrent use by multiple
|
|
||||||
// goroutines if the returned Logger will be used concurrently.
|
|
||||||
func NewJSONLogger(w io.Writer) Logger {
|
|
||||||
return &jsonLogger{w}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (l *jsonLogger) Log(keyvals ...interface{}) error {
|
|
||||||
n := (len(keyvals) + 1) / 2 // +1 to handle case when len is odd
|
|
||||||
m := make(map[string]interface{}, n)
|
|
||||||
for i := 0; i < len(keyvals); i += 2 {
|
|
||||||
k := keyvals[i]
|
|
||||||
var v interface{} = ErrMissingValue
|
|
||||||
if i+1 < len(keyvals) {
|
|
||||||
v = keyvals[i+1]
|
|
||||||
}
|
|
||||||
merge(m, k, v)
|
|
||||||
}
|
|
||||||
return json.NewEncoder(l.Writer).Encode(m)
|
|
||||||
}
|
|
||||||
|
|
||||||
func merge(dst map[string]interface{}, k, v interface{}) {
|
|
||||||
var key string
|
|
||||||
switch x := k.(type) {
|
|
||||||
case string:
|
|
||||||
key = x
|
|
||||||
case fmt.Stringer:
|
|
||||||
key = safeString(x)
|
|
||||||
default:
|
|
||||||
key = fmt.Sprint(x)
|
|
||||||
}
|
|
||||||
if x, ok := v.(error); ok {
|
|
||||||
v = safeError(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// We want json.Marshaler and encoding.TextMarshaller to take priority over
|
|
||||||
// err.Error() and v.String(). But json.Marshall (called later) does that by
|
|
||||||
// default so we force a no-op if it's one of those 2 case.
|
|
||||||
switch x := v.(type) {
|
|
||||||
case json.Marshaler:
|
|
||||||
case encoding.TextMarshaler:
|
|
||||||
case error:
|
|
||||||
v = safeError(x)
|
|
||||||
case fmt.Stringer:
|
|
||||||
v = safeString(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
dst[key] = v
|
|
||||||
}
|
|
||||||
|
|
||||||
func safeString(str fmt.Stringer) (s string) {
|
|
||||||
defer func() {
|
|
||||||
if panicVal := recover(); panicVal != nil {
|
|
||||||
if v := reflect.ValueOf(str); v.Kind() == reflect.Ptr && v.IsNil() {
|
|
||||||
s = "NULL"
|
|
||||||
} else {
|
|
||||||
panic(panicVal)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
s = str.String()
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
func safeError(err error) (s interface{}) {
|
|
||||||
defer func() {
|
|
||||||
if panicVal := recover(); panicVal != nil {
|
|
||||||
if v := reflect.ValueOf(err); v.Kind() == reflect.Ptr && v.IsNil() {
|
|
||||||
s = nil
|
|
||||||
} else {
|
|
||||||
panic(panicVal)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
s = err.Error()
|
|
||||||
return
|
|
||||||
}
|
|
144
vendor/github.com/go-kit/kit/log/log.go
generated
vendored
144
vendor/github.com/go-kit/kit/log/log.go
generated
vendored
@ -1,144 +0,0 @@
|
|||||||
package log
|
|
||||||
|
|
||||||
import "errors"
|
|
||||||
|
|
||||||
// Logger is the fundamental interface for all log operations. Log creates a
|
|
||||||
// log event from keyvals, a variadic sequence of alternating keys and values.
|
|
||||||
// Implementations must be safe for concurrent use by multiple goroutines. In
|
|
||||||
// particular, any implementation of Logger that appends to keyvals or
|
|
||||||
// modifies any of its elements must make a copy first.
|
|
||||||
type Logger interface {
|
|
||||||
Log(keyvals ...interface{}) error
|
|
||||||
}
|
|
||||||
|
|
||||||
// ErrMissingValue is appended to keyvals slices with odd length to substitute
|
|
||||||
// the missing value.
|
|
||||||
var ErrMissingValue = errors.New("(MISSING)")
|
|
||||||
|
|
||||||
// NewContext returns a new Context that logs to logger.
|
|
||||||
func NewContext(logger Logger) *Context {
|
|
||||||
if c, ok := logger.(*Context); ok {
|
|
||||||
return c
|
|
||||||
}
|
|
||||||
return &Context{logger: logger}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Context must always have the same number of stack frames between calls to
|
|
||||||
// its Log method and the eventual binding of Valuers to their value. This
|
|
||||||
// requirement comes from the functional requirement to allow a context to
|
|
||||||
// resolve application call site information for a log.Caller stored in the
|
|
||||||
// context. To do this we must be able to predict the number of logging
|
|
||||||
// functions on the stack when bindValues is called.
|
|
||||||
//
|
|
||||||
// Three implementation details provide the needed stack depth consistency.
|
|
||||||
// The first two of these details also result in better amortized performance,
|
|
||||||
// and thus make sense even without the requirements regarding stack depth.
|
|
||||||
// The third detail, however, is subtle and tied to the implementation of the
|
|
||||||
// Go compiler.
|
|
||||||
//
|
|
||||||
// 1. NewContext avoids introducing an additional layer when asked to
|
|
||||||
// wrap another Context.
|
|
||||||
// 2. With avoids introducing an additional layer by returning a newly
|
|
||||||
// constructed Context with a merged keyvals rather than simply
|
|
||||||
// wrapping the existing Context.
|
|
||||||
// 3. All of Context's methods take pointer receivers even though they
|
|
||||||
// do not mutate the Context.
|
|
||||||
//
|
|
||||||
// Before explaining the last detail, first some background. The Go compiler
|
|
||||||
// generates wrapper methods to implement the auto dereferencing behavior when
|
|
||||||
// calling a value method through a pointer variable. These wrapper methods
|
|
||||||
// are also used when calling a value method through an interface variable
|
|
||||||
// because interfaces store a pointer to the underlying concrete value.
|
|
||||||
// Calling a pointer receiver through an interface does not require generating
|
|
||||||
// an additional function.
|
|
||||||
//
|
|
||||||
// If Context had value methods then calling Context.Log through a variable
|
|
||||||
// with type Logger would have an extra stack frame compared to calling
|
|
||||||
// Context.Log through a variable with type Context. Using pointer receivers
|
|
||||||
// avoids this problem.
|
|
||||||
|
|
||||||
// A Context wraps a Logger and holds keyvals that it includes in all log
|
|
||||||
// events. When logging, a Context replaces all value elements (odd indexes)
|
|
||||||
// containing a Valuer with their generated value for each call to its Log
|
|
||||||
// method.
|
|
||||||
type Context struct {
|
|
||||||
logger Logger
|
|
||||||
keyvals []interface{}
|
|
||||||
hasValuer bool
|
|
||||||
}
|
|
||||||
|
|
||||||
// Log replaces all value elements (odd indexes) containing a Valuer in the
|
|
||||||
// stored context with their generated value, appends keyvals, and passes the
|
|
||||||
// result to the wrapped Logger.
|
|
||||||
func (l *Context) Log(keyvals ...interface{}) error {
|
|
||||||
kvs := append(l.keyvals, keyvals...)
|
|
||||||
if len(kvs)%2 != 0 {
|
|
||||||
kvs = append(kvs, ErrMissingValue)
|
|
||||||
}
|
|
||||||
if l.hasValuer {
|
|
||||||
// If no keyvals were appended above then we must copy l.keyvals so
|
|
||||||
// that future log events will reevaluate the stored Valuers.
|
|
||||||
if len(keyvals) == 0 {
|
|
||||||
kvs = append([]interface{}{}, l.keyvals...)
|
|
||||||
}
|
|
||||||
bindValues(kvs[:len(l.keyvals)])
|
|
||||||
}
|
|
||||||
return l.logger.Log(kvs...)
|
|
||||||
}
|
|
||||||
|
|
||||||
// With returns a new Context with keyvals appended to those of the receiver.
|
|
||||||
func (l *Context) With(keyvals ...interface{}) *Context {
|
|
||||||
if len(keyvals) == 0 {
|
|
||||||
return l
|
|
||||||
}
|
|
||||||
kvs := append(l.keyvals, keyvals...)
|
|
||||||
if len(kvs)%2 != 0 {
|
|
||||||
kvs = append(kvs, ErrMissingValue)
|
|
||||||
}
|
|
||||||
return &Context{
|
|
||||||
logger: l.logger,
|
|
||||||
// Limiting the capacity of the stored keyvals ensures that a new
|
|
||||||
// backing array is created if the slice must grow in Log or With.
|
|
||||||
// Using the extra capacity without copying risks a data race that
|
|
||||||
// would violate the Logger interface contract.
|
|
||||||
keyvals: kvs[:len(kvs):len(kvs)],
|
|
||||||
hasValuer: l.hasValuer || containsValuer(keyvals),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// WithPrefix returns a new Context with keyvals prepended to those of the
|
|
||||||
// receiver.
|
|
||||||
func (l *Context) WithPrefix(keyvals ...interface{}) *Context {
|
|
||||||
if len(keyvals) == 0 {
|
|
||||||
return l
|
|
||||||
}
|
|
||||||
// Limiting the capacity of the stored keyvals ensures that a new
|
|
||||||
// backing array is created if the slice must grow in Log or With.
|
|
||||||
// Using the extra capacity without copying risks a data race that
|
|
||||||
// would violate the Logger interface contract.
|
|
||||||
n := len(l.keyvals) + len(keyvals)
|
|
||||||
if len(keyvals)%2 != 0 {
|
|
||||||
n++
|
|
||||||
}
|
|
||||||
kvs := make([]interface{}, 0, n)
|
|
||||||
kvs = append(kvs, keyvals...)
|
|
||||||
if len(kvs)%2 != 0 {
|
|
||||||
kvs = append(kvs, ErrMissingValue)
|
|
||||||
}
|
|
||||||
kvs = append(kvs, l.keyvals...)
|
|
||||||
return &Context{
|
|
||||||
logger: l.logger,
|
|
||||||
keyvals: kvs,
|
|
||||||
hasValuer: l.hasValuer || containsValuer(keyvals),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// LoggerFunc is an adapter to allow use of ordinary functions as Loggers. If
|
|
||||||
// f is a function with the appropriate signature, LoggerFunc(f) is a Logger
|
|
||||||
// object that calls f.
|
|
||||||
type LoggerFunc func(...interface{}) error
|
|
||||||
|
|
||||||
// Log implements Logger by calling f(keyvals...).
|
|
||||||
func (f LoggerFunc) Log(keyvals ...interface{}) error {
|
|
||||||
return f(keyvals...)
|
|
||||||
}
|
|
62
vendor/github.com/go-kit/kit/log/logfmt_logger.go
generated
vendored
62
vendor/github.com/go-kit/kit/log/logfmt_logger.go
generated
vendored
@ -1,62 +0,0 @@
|
|||||||
package log
|
|
||||||
|
|
||||||
import (
|
|
||||||
"bytes"
|
|
||||||
"io"
|
|
||||||
"sync"
|
|
||||||
|
|
||||||
"github.com/go-logfmt/logfmt"
|
|
||||||
)
|
|
||||||
|
|
||||||
type logfmtEncoder struct {
|
|
||||||
*logfmt.Encoder
|
|
||||||
buf bytes.Buffer
|
|
||||||
}
|
|
||||||
|
|
||||||
func (l *logfmtEncoder) Reset() {
|
|
||||||
l.Encoder.Reset()
|
|
||||||
l.buf.Reset()
|
|
||||||
}
|
|
||||||
|
|
||||||
var logfmtEncoderPool = sync.Pool{
|
|
||||||
New: func() interface{} {
|
|
||||||
var enc logfmtEncoder
|
|
||||||
enc.Encoder = logfmt.NewEncoder(&enc.buf)
|
|
||||||
return &enc
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
type logfmtLogger struct {
|
|
||||||
w io.Writer
|
|
||||||
}
|
|
||||||
|
|
||||||
// NewLogfmtLogger returns a logger that encodes keyvals to the Writer in
|
|
||||||
// logfmt format. Each log event produces no more than one call to w.Write.
|
|
||||||
// The passed Writer must be safe for concurrent use by multiple goroutines if
|
|
||||||
// the returned Logger will be used concurrently.
|
|
||||||
func NewLogfmtLogger(w io.Writer) Logger {
|
|
||||||
return &logfmtLogger{w}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (l logfmtLogger) Log(keyvals ...interface{}) error {
|
|
||||||
enc := logfmtEncoderPool.Get().(*logfmtEncoder)
|
|
||||||
enc.Reset()
|
|
||||||
defer logfmtEncoderPool.Put(enc)
|
|
||||||
|
|
||||||
if err := enc.EncodeKeyvals(keyvals...); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
// Add newline to the end of the buffer
|
|
||||||
if err := enc.EndRecord(); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
// The Logger interface requires implementations to be safe for concurrent
|
|
||||||
// use by multiple goroutines. For this implementation that means making
|
|
||||||
// only one call to l.w.Write() for each call to Log.
|
|
||||||
if _, err := l.w.Write(enc.buf.Bytes()); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
8
vendor/github.com/go-kit/kit/log/nop_logger.go
generated
vendored
8
vendor/github.com/go-kit/kit/log/nop_logger.go
generated
vendored
@ -1,8 +0,0 @@
|
|||||||
package log
|
|
||||||
|
|
||||||
type nopLogger struct{}
|
|
||||||
|
|
||||||
// NewNopLogger returns a logger that doesn't do anything.
|
|
||||||
func NewNopLogger() Logger { return nopLogger{} }
|
|
||||||
|
|
||||||
func (nopLogger) Log(...interface{}) error { return nil }
|
|
116
vendor/github.com/go-kit/kit/log/stdlib.go
generated
vendored
116
vendor/github.com/go-kit/kit/log/stdlib.go
generated
vendored
@ -1,116 +0,0 @@
|
|||||||
package log
|
|
||||||
|
|
||||||
import (
|
|
||||||
"io"
|
|
||||||
"log"
|
|
||||||
"regexp"
|
|
||||||
"strings"
|
|
||||||
)
|
|
||||||
|
|
||||||
// StdlibWriter implements io.Writer by invoking the stdlib log.Print. It's
|
|
||||||
// designed to be passed to a Go kit logger as the writer, for cases where
|
|
||||||
// it's necessary to redirect all Go kit log output to the stdlib logger.
|
|
||||||
//
|
|
||||||
// If you have any choice in the matter, you shouldn't use this. Prefer to
|
|
||||||
// redirect the stdlib log to the Go kit logger via NewStdlibAdapter.
|
|
||||||
type StdlibWriter struct{}
|
|
||||||
|
|
||||||
// Write implements io.Writer.
|
|
||||||
func (w StdlibWriter) Write(p []byte) (int, error) {
|
|
||||||
log.Print(strings.TrimSpace(string(p)))
|
|
||||||
return len(p), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// StdlibAdapter wraps a Logger and allows it to be passed to the stdlib
|
|
||||||
// logger's SetOutput. It will extract date/timestamps, filenames, and
|
|
||||||
// messages, and place them under relevant keys.
|
|
||||||
type StdlibAdapter struct {
|
|
||||||
Logger
|
|
||||||
timestampKey string
|
|
||||||
fileKey string
|
|
||||||
messageKey string
|
|
||||||
}
|
|
||||||
|
|
||||||
// StdlibAdapterOption sets a parameter for the StdlibAdapter.
|
|
||||||
type StdlibAdapterOption func(*StdlibAdapter)
|
|
||||||
|
|
||||||
// TimestampKey sets the key for the timestamp field. By default, it's "ts".
|
|
||||||
func TimestampKey(key string) StdlibAdapterOption {
|
|
||||||
return func(a *StdlibAdapter) { a.timestampKey = key }
|
|
||||||
}
|
|
||||||
|
|
||||||
// FileKey sets the key for the file and line field. By default, it's "file".
|
|
||||||
func FileKey(key string) StdlibAdapterOption {
|
|
||||||
return func(a *StdlibAdapter) { a.fileKey = key }
|
|
||||||
}
|
|
||||||
|
|
||||||
// MessageKey sets the key for the actual log message. By default, it's "msg".
|
|
||||||
func MessageKey(key string) StdlibAdapterOption {
|
|
||||||
return func(a *StdlibAdapter) { a.messageKey = key }
|
|
||||||
}
|
|
||||||
|
|
||||||
// NewStdlibAdapter returns a new StdlibAdapter wrapper around the passed
|
|
||||||
// logger. It's designed to be passed to log.SetOutput.
|
|
||||||
func NewStdlibAdapter(logger Logger, options ...StdlibAdapterOption) io.Writer {
|
|
||||||
a := StdlibAdapter{
|
|
||||||
Logger: logger,
|
|
||||||
timestampKey: "ts",
|
|
||||||
fileKey: "file",
|
|
||||||
messageKey: "msg",
|
|
||||||
}
|
|
||||||
for _, option := range options {
|
|
||||||
option(&a)
|
|
||||||
}
|
|
||||||
return a
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a StdlibAdapter) Write(p []byte) (int, error) {
|
|
||||||
result := subexps(p)
|
|
||||||
keyvals := []interface{}{}
|
|
||||||
var timestamp string
|
|
||||||
if date, ok := result["date"]; ok && date != "" {
|
|
||||||
timestamp = date
|
|
||||||
}
|
|
||||||
if time, ok := result["time"]; ok && time != "" {
|
|
||||||
if timestamp != "" {
|
|
||||||
timestamp += " "
|
|
||||||
}
|
|
||||||
timestamp += time
|
|
||||||
}
|
|
||||||
if timestamp != "" {
|
|
||||||
keyvals = append(keyvals, a.timestampKey, timestamp)
|
|
||||||
}
|
|
||||||
if file, ok := result["file"]; ok && file != "" {
|
|
||||||
keyvals = append(keyvals, a.fileKey, file)
|
|
||||||
}
|
|
||||||
if msg, ok := result["msg"]; ok {
|
|
||||||
keyvals = append(keyvals, a.messageKey, msg)
|
|
||||||
}
|
|
||||||
if err := a.Logger.Log(keyvals...); err != nil {
|
|
||||||
return 0, err
|
|
||||||
}
|
|
||||||
return len(p), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
const (
|
|
||||||
logRegexpDate = `(?P<date>[0-9]{4}/[0-9]{2}/[0-9]{2})?[ ]?`
|
|
||||||
logRegexpTime = `(?P<time>[0-9]{2}:[0-9]{2}:[0-9]{2}(\.[0-9]+)?)?[ ]?`
|
|
||||||
logRegexpFile = `(?P<file>.+?:[0-9]+)?`
|
|
||||||
logRegexpMsg = `(: )?(?P<msg>.*)`
|
|
||||||
)
|
|
||||||
|
|
||||||
var (
|
|
||||||
logRegexp = regexp.MustCompile(logRegexpDate + logRegexpTime + logRegexpFile + logRegexpMsg)
|
|
||||||
)
|
|
||||||
|
|
||||||
func subexps(line []byte) map[string]string {
|
|
||||||
m := logRegexp.FindSubmatch(line)
|
|
||||||
if len(m) < len(logRegexp.SubexpNames()) {
|
|
||||||
return map[string]string{}
|
|
||||||
}
|
|
||||||
result := map[string]string{}
|
|
||||||
for i, name := range logRegexp.SubexpNames() {
|
|
||||||
result[name] = string(m[i])
|
|
||||||
}
|
|
||||||
return result
|
|
||||||
}
|
|
81
vendor/github.com/go-kit/kit/log/sync.go
generated
vendored
81
vendor/github.com/go-kit/kit/log/sync.go
generated
vendored
@ -1,81 +0,0 @@
|
|||||||
package log
|
|
||||||
|
|
||||||
import (
|
|
||||||
"io"
|
|
||||||
"sync"
|
|
||||||
"sync/atomic"
|
|
||||||
)
|
|
||||||
|
|
||||||
// SwapLogger wraps another logger that may be safely replaced while other
|
|
||||||
// goroutines use the SwapLogger concurrently. The zero value for a SwapLogger
|
|
||||||
// will discard all log events without error.
|
|
||||||
//
|
|
||||||
// SwapLogger serves well as a package global logger that can be changed by
|
|
||||||
// importers.
|
|
||||||
type SwapLogger struct {
|
|
||||||
logger atomic.Value
|
|
||||||
}
|
|
||||||
|
|
||||||
type loggerStruct struct {
|
|
||||||
Logger
|
|
||||||
}
|
|
||||||
|
|
||||||
// Log implements the Logger interface by forwarding keyvals to the currently
|
|
||||||
// wrapped logger. It does not log anything if the wrapped logger is nil.
|
|
||||||
func (l *SwapLogger) Log(keyvals ...interface{}) error {
|
|
||||||
s, ok := l.logger.Load().(loggerStruct)
|
|
||||||
if !ok || s.Logger == nil {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
return s.Log(keyvals...)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Swap replaces the currently wrapped logger with logger. Swap may be called
|
|
||||||
// concurrently with calls to Log from other goroutines.
|
|
||||||
func (l *SwapLogger) Swap(logger Logger) {
|
|
||||||
l.logger.Store(loggerStruct{logger})
|
|
||||||
}
|
|
||||||
|
|
||||||
// SyncWriter synchronizes concurrent writes to an io.Writer.
|
|
||||||
type SyncWriter struct {
|
|
||||||
mu sync.Mutex
|
|
||||||
w io.Writer
|
|
||||||
}
|
|
||||||
|
|
||||||
// NewSyncWriter returns a new SyncWriter. The returned writer is safe for
|
|
||||||
// concurrent use by multiple goroutines.
|
|
||||||
func NewSyncWriter(w io.Writer) *SyncWriter {
|
|
||||||
return &SyncWriter{w: w}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Write writes p to the underlying io.Writer. If another write is already in
|
|
||||||
// progress, the calling goroutine blocks until the SyncWriter is available.
|
|
||||||
func (w *SyncWriter) Write(p []byte) (n int, err error) {
|
|
||||||
w.mu.Lock()
|
|
||||||
n, err = w.w.Write(p)
|
|
||||||
w.mu.Unlock()
|
|
||||||
return n, err
|
|
||||||
}
|
|
||||||
|
|
||||||
// syncLogger provides concurrent safe logging for another Logger.
|
|
||||||
type syncLogger struct {
|
|
||||||
mu sync.Mutex
|
|
||||||
logger Logger
|
|
||||||
}
|
|
||||||
|
|
||||||
// NewSyncLogger returns a logger that synchronizes concurrent use of the
|
|
||||||
// wrapped logger. When multiple goroutines use the SyncLogger concurrently
|
|
||||||
// only one goroutine will be allowed to log to the wrapped logger at a time.
|
|
||||||
// The other goroutines will block until the logger is available.
|
|
||||||
func NewSyncLogger(logger Logger) Logger {
|
|
||||||
return &syncLogger{logger: logger}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Log logs keyvals to the underlying Logger. If another log is already in
|
|
||||||
// progress, the calling goroutine blocks until the syncLogger is available.
|
|
||||||
func (l *syncLogger) Log(keyvals ...interface{}) error {
|
|
||||||
l.mu.Lock()
|
|
||||||
err := l.logger.Log(keyvals...)
|
|
||||||
l.mu.Unlock()
|
|
||||||
return err
|
|
||||||
}
|
|
62
vendor/github.com/go-kit/kit/log/value.go
generated
vendored
62
vendor/github.com/go-kit/kit/log/value.go
generated
vendored
@ -1,62 +0,0 @@
|
|||||||
package log
|
|
||||||
|
|
||||||
import (
|
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/go-stack/stack"
|
|
||||||
)
|
|
||||||
|
|
||||||
// A Valuer generates a log value. When passed to Context.With in a value
|
|
||||||
// element (odd indexes), it represents a dynamic value which is re-evaluated
|
|
||||||
// with each log event.
|
|
||||||
type Valuer func() interface{}
|
|
||||||
|
|
||||||
// bindValues replaces all value elements (odd indexes) containing a Valuer
|
|
||||||
// with their generated value.
|
|
||||||
func bindValues(keyvals []interface{}) {
|
|
||||||
for i := 1; i < len(keyvals); i += 2 {
|
|
||||||
if v, ok := keyvals[i].(Valuer); ok {
|
|
||||||
keyvals[i] = v()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// containsValuer returns true if any of the value elements (odd indexes)
|
|
||||||
// contain a Valuer.
|
|
||||||
func containsValuer(keyvals []interface{}) bool {
|
|
||||||
for i := 1; i < len(keyvals); i += 2 {
|
|
||||||
if _, ok := keyvals[i].(Valuer); ok {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
// Timestamp returns a Valuer that invokes the underlying function when bound,
|
|
||||||
// returning a time.Time. Users will probably want to use DefaultTimestamp or
|
|
||||||
// DefaultTimestampUTC.
|
|
||||||
func Timestamp(t func() time.Time) Valuer {
|
|
||||||
return func() interface{} { return t() }
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
// DefaultTimestamp is a Valuer that returns the current wallclock time,
|
|
||||||
// respecting time zones, when bound.
|
|
||||||
DefaultTimestamp Valuer = func() interface{} { return time.Now().Format(time.RFC3339) }
|
|
||||||
|
|
||||||
// DefaultTimestampUTC is a Valuer that returns the current time in UTC
|
|
||||||
// when bound.
|
|
||||||
DefaultTimestampUTC Valuer = func() interface{} { return time.Now().UTC().Format(time.RFC3339) }
|
|
||||||
)
|
|
||||||
|
|
||||||
// Caller returns a Valuer that returns a file and line from a specified depth
|
|
||||||
// in the callstack. Users will probably want to use DefaultCaller.
|
|
||||||
func Caller(depth int) Valuer {
|
|
||||||
return func() interface{} { return stack.Caller(depth) }
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
// DefaultCaller is a Valuer that returns the file and line where the Log
|
|
||||||
// method was invoked. It can only be used with log.With.
|
|
||||||
DefaultCaller = Caller(3)
|
|
||||||
)
|
|
37
vendor/github.com/go-kit/kit/transport/grpc/README.md
generated
vendored
37
vendor/github.com/go-kit/kit/transport/grpc/README.md
generated
vendored
@ -1,37 +0,0 @@
|
|||||||
# grpc
|
|
||||||
|
|
||||||
[gRPC](http://www.grpc.io/) is an excellent, modern IDL and transport for microservices.
|
|
||||||
If you're starting a greenfield project, Go kit strongly recommends gRPC as your default transport.
|
|
||||||
And using gRPC and Go kit together is very simple.
|
|
||||||
|
|
||||||
First, define your service using protobuf3.
|
|
||||||
This is explained [in gRPC documentation](http://www.grpc.io/docs/#defining-a-service).
|
|
||||||
See [add.proto](https://github.com/go-kit/kit/blob/ec8b02591ee873433565a1ae9d317353412d1d27/examples/addsvc/pb/add.proto) for an example.
|
|
||||||
Make sure the proto definition matches your service's Go kit (interface) definition.
|
|
||||||
|
|
||||||
Next, get the protoc compiler.
|
|
||||||
Unfortunately, this needs to be done from source.
|
|
||||||
Fortunately, it's pretty straightforward.
|
|
||||||
|
|
||||||
```
|
|
||||||
brew install autoconf automake libtool
|
|
||||||
git clone https://github.com/google/protobuf
|
|
||||||
cd protobuf
|
|
||||||
./autogen.sh ; ./configure ; make ; make install
|
|
||||||
```
|
|
||||||
|
|
||||||
Then, compile your service definition, from .proto to .go.
|
|
||||||
|
|
||||||
```
|
|
||||||
protoc add.proto --go_out=plugins=grpc:.
|
|
||||||
```
|
|
||||||
|
|
||||||
Finally, write a tiny binding from your service definition to the gRPC definition.
|
|
||||||
It's a simple conversion from one domain to another.
|
|
||||||
See [grpc_binding.go](https://github.com/go-kit/kit/blob/ec8b02591ee873433565a1ae9d317353412d1d27/examples/addsvc/grpc_binding.go) for an example.
|
|
||||||
|
|
||||||
That's it!
|
|
||||||
The gRPC binding can be bound to a listener and serve normal gRPC requests.
|
|
||||||
And within your service, you can use standard Go kit components and idioms.
|
|
||||||
See [addsvc](https://github.com/go-kit/kit/tree/master/examples/addsvc) for a complete working example with gRPC support.
|
|
||||||
And remember: Go kit services can support multiple transports simultaneously.
|
|
102
vendor/github.com/go-kit/kit/transport/grpc/client.go
generated
vendored
102
vendor/github.com/go-kit/kit/transport/grpc/client.go
generated
vendored
@ -1,102 +0,0 @@
|
|||||||
package grpc
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
"reflect"
|
|
||||||
"strings"
|
|
||||||
|
|
||||||
"golang.org/x/net/context"
|
|
||||||
"google.golang.org/grpc"
|
|
||||||
"google.golang.org/grpc/metadata"
|
|
||||||
|
|
||||||
"github.com/go-kit/kit/endpoint"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Client wraps a gRPC connection and provides a method that implements
|
|
||||||
// endpoint.Endpoint.
|
|
||||||
type Client struct {
|
|
||||||
client *grpc.ClientConn
|
|
||||||
serviceName string
|
|
||||||
method string
|
|
||||||
enc EncodeRequestFunc
|
|
||||||
dec DecodeResponseFunc
|
|
||||||
grpcReply reflect.Type
|
|
||||||
before []RequestFunc
|
|
||||||
}
|
|
||||||
|
|
||||||
// NewClient constructs a usable Client for a single remote endpoint.
|
|
||||||
// Pass an zero-value protobuf message of the RPC response type as
|
|
||||||
// the grpcReply argument.
|
|
||||||
func NewClient(
|
|
||||||
cc *grpc.ClientConn,
|
|
||||||
serviceName string,
|
|
||||||
method string,
|
|
||||||
enc EncodeRequestFunc,
|
|
||||||
dec DecodeResponseFunc,
|
|
||||||
grpcReply interface{},
|
|
||||||
options ...ClientOption,
|
|
||||||
) *Client {
|
|
||||||
if strings.IndexByte(serviceName, '.') == -1 {
|
|
||||||
serviceName = "pb." + serviceName
|
|
||||||
}
|
|
||||||
c := &Client{
|
|
||||||
client: cc,
|
|
||||||
method: fmt.Sprintf("/%s/%s", serviceName, method),
|
|
||||||
enc: enc,
|
|
||||||
dec: dec,
|
|
||||||
// We are using reflect.Indirect here to allow both reply structs and
|
|
||||||
// pointers to these reply structs. New consumers of the client should
|
|
||||||
// use structs directly, while existing consumers will not break if they
|
|
||||||
// remain to use pointers to structs.
|
|
||||||
grpcReply: reflect.TypeOf(
|
|
||||||
reflect.Indirect(
|
|
||||||
reflect.ValueOf(grpcReply),
|
|
||||||
).Interface(),
|
|
||||||
),
|
|
||||||
before: []RequestFunc{},
|
|
||||||
}
|
|
||||||
for _, option := range options {
|
|
||||||
option(c)
|
|
||||||
}
|
|
||||||
return c
|
|
||||||
}
|
|
||||||
|
|
||||||
// ClientOption sets an optional parameter for clients.
|
|
||||||
type ClientOption func(*Client)
|
|
||||||
|
|
||||||
// ClientBefore sets the RequestFuncs that are applied to the outgoing gRPC
|
|
||||||
// request before it's invoked.
|
|
||||||
func ClientBefore(before ...RequestFunc) ClientOption {
|
|
||||||
return func(c *Client) { c.before = before }
|
|
||||||
}
|
|
||||||
|
|
||||||
// Endpoint returns a usable endpoint that will invoke the gRPC specified by the
|
|
||||||
// client.
|
|
||||||
func (c Client) Endpoint() endpoint.Endpoint {
|
|
||||||
return func(ctx context.Context, request interface{}) (interface{}, error) {
|
|
||||||
ctx, cancel := context.WithCancel(ctx)
|
|
||||||
defer cancel()
|
|
||||||
|
|
||||||
req, err := c.enc(ctx, request)
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("Encode: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
md := &metadata.MD{}
|
|
||||||
for _, f := range c.before {
|
|
||||||
ctx = f(ctx, md)
|
|
||||||
}
|
|
||||||
ctx = metadata.NewContext(ctx, *md)
|
|
||||||
|
|
||||||
grpcReply := reflect.New(c.grpcReply).Interface()
|
|
||||||
if err = grpc.Invoke(ctx, c.method, req, grpcReply, c.client); err != nil {
|
|
||||||
return nil, fmt.Errorf("Invoke: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
response, err := c.dec(ctx, grpcReply)
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("Decode: %v", err)
|
|
||||||
}
|
|
||||||
return response, nil
|
|
||||||
}
|
|
||||||
}
|
|
2
vendor/github.com/go-kit/kit/transport/grpc/doc.go
generated
vendored
2
vendor/github.com/go-kit/kit/transport/grpc/doc.go
generated
vendored
@ -1,2 +0,0 @@
|
|||||||
// Package grpc provides a gRPC binding for endpoints.
|
|
||||||
package grpc
|
|
27
vendor/github.com/go-kit/kit/transport/grpc/encode_decode.go
generated
vendored
27
vendor/github.com/go-kit/kit/transport/grpc/encode_decode.go
generated
vendored
@ -1,27 +0,0 @@
|
|||||||
package grpc
|
|
||||||
|
|
||||||
import "golang.org/x/net/context"
|
|
||||||
|
|
||||||
// DecodeRequestFunc extracts a user-domain request object from a gRPC request.
|
|
||||||
// It's designed to be used in gRPC servers, for server-side endpoints. One
|
|
||||||
// straightforward DecodeRequestFunc could be something that
|
|
||||||
// decodes from the gRPC request message to the concrete request type.
|
|
||||||
type DecodeRequestFunc func(context.Context, interface{}) (request interface{}, err error)
|
|
||||||
|
|
||||||
// EncodeRequestFunc encodes the passed request object into the gRPC request
|
|
||||||
// object. It's designed to be used in gRPC clients, for client-side
|
|
||||||
// endpoints. One straightforward EncodeRequestFunc could something that
|
|
||||||
// encodes the object directly to the gRPC request message.
|
|
||||||
type EncodeRequestFunc func(context.Context, interface{}) (request interface{}, err error)
|
|
||||||
|
|
||||||
// EncodeResponseFunc encodes the passed response object to the gRPC response
|
|
||||||
// message. It's designed to be used in gRPC servers, for server-side
|
|
||||||
// endpoints. One straightforward EncodeResponseFunc could be something that
|
|
||||||
// encodes the object directly to the gRPC response message.
|
|
||||||
type EncodeResponseFunc func(context.Context, interface{}) (response interface{}, err error)
|
|
||||||
|
|
||||||
// DecodeResponseFunc extracts a user-domain response object from a gRPC
|
|
||||||
// response object. It's designed to be used in gRPC clients, for client-side
|
|
||||||
// endpoints. One straightforward DecodeResponseFunc could be something that
|
|
||||||
// decodes from the gRPC response message to the concrete response type.
|
|
||||||
type DecodeResponseFunc func(context.Context, interface{}) (response interface{}, err error)
|
|
53
vendor/github.com/go-kit/kit/transport/grpc/request_response_funcs.go
generated
vendored
53
vendor/github.com/go-kit/kit/transport/grpc/request_response_funcs.go
generated
vendored
@ -1,53 +0,0 @@
|
|||||||
package grpc
|
|
||||||
|
|
||||||
import (
|
|
||||||
"encoding/base64"
|
|
||||||
"strings"
|
|
||||||
|
|
||||||
"golang.org/x/net/context"
|
|
||||||
"google.golang.org/grpc/metadata"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
binHdrSuffix = "-bin"
|
|
||||||
)
|
|
||||||
|
|
||||||
// RequestFunc may take information from an gRPC request and put it into a
|
|
||||||
// request context. In Servers, BeforeFuncs are executed prior to invoking the
|
|
||||||
// endpoint. In Clients, BeforeFuncs are executed after creating the request
|
|
||||||
// but prior to invoking the gRPC client.
|
|
||||||
type RequestFunc func(context.Context, *metadata.MD) context.Context
|
|
||||||
|
|
||||||
// ResponseFunc may take information from a request context and use it to
|
|
||||||
// manipulate the gRPC metadata header. ResponseFuncs are only executed in
|
|
||||||
// servers, after invoking the endpoint but prior to writing a response.
|
|
||||||
type ResponseFunc func(context.Context, *metadata.MD)
|
|
||||||
|
|
||||||
// SetResponseHeader returns a ResponseFunc that sets the specified metadata
|
|
||||||
// key-value pair.
|
|
||||||
func SetResponseHeader(key, val string) ResponseFunc {
|
|
||||||
return func(_ context.Context, md *metadata.MD) {
|
|
||||||
key, val := EncodeKeyValue(key, val)
|
|
||||||
(*md)[key] = append((*md)[key], val)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// SetRequestHeader returns a RequestFunc that sets the specified metadata
|
|
||||||
// key-value pair.
|
|
||||||
func SetRequestHeader(key, val string) RequestFunc {
|
|
||||||
return func(ctx context.Context, md *metadata.MD) context.Context {
|
|
||||||
key, val := EncodeKeyValue(key, val)
|
|
||||||
(*md)[key] = append((*md)[key], val)
|
|
||||||
return ctx
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// EncodeKeyValue sanitizes a key-value pair for use in gRPC metadata headers.
|
|
||||||
func EncodeKeyValue(key, val string) (string, string) {
|
|
||||||
key = strings.ToLower(key)
|
|
||||||
if strings.HasSuffix(key, binHdrSuffix) {
|
|
||||||
v := base64.StdEncoding.EncodeToString([]byte(val))
|
|
||||||
val = string(v)
|
|
||||||
}
|
|
||||||
return key, val
|
|
||||||
}
|
|
128
vendor/github.com/go-kit/kit/transport/grpc/server.go
generated
vendored
128
vendor/github.com/go-kit/kit/transport/grpc/server.go
generated
vendored
@ -1,128 +0,0 @@
|
|||||||
package grpc
|
|
||||||
|
|
||||||
import (
|
|
||||||
"golang.org/x/net/context"
|
|
||||||
"google.golang.org/grpc/metadata"
|
|
||||||
|
|
||||||
"github.com/go-kit/kit/endpoint"
|
|
||||||
"github.com/go-kit/kit/log"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Handler which should be called from the grpc binding of the service
|
|
||||||
// implementation. The incoming request parameter, and returned response
|
|
||||||
// parameter, are both gRPC types, not user-domain.
|
|
||||||
type Handler interface {
|
|
||||||
ServeGRPC(ctx context.Context, request interface{}) (context.Context, interface{}, error)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Server wraps an endpoint and implements grpc.Handler.
|
|
||||||
type Server struct {
|
|
||||||
ctx context.Context
|
|
||||||
e endpoint.Endpoint
|
|
||||||
dec DecodeRequestFunc
|
|
||||||
enc EncodeResponseFunc
|
|
||||||
before []RequestFunc
|
|
||||||
after []ResponseFunc
|
|
||||||
logger log.Logger
|
|
||||||
}
|
|
||||||
|
|
||||||
// NewServer constructs a new server, which implements wraps the provided
|
|
||||||
// endpoint and implements the Handler interface. Consumers should write
|
|
||||||
// bindings that adapt the concrete gRPC methods from their compiled protobuf
|
|
||||||
// definitions to individual handlers. Request and response objects are from the
|
|
||||||
// caller business domain, not gRPC request and reply types.
|
|
||||||
func NewServer(
|
|
||||||
ctx context.Context,
|
|
||||||
e endpoint.Endpoint,
|
|
||||||
dec DecodeRequestFunc,
|
|
||||||
enc EncodeResponseFunc,
|
|
||||||
options ...ServerOption,
|
|
||||||
) *Server {
|
|
||||||
s := &Server{
|
|
||||||
ctx: ctx,
|
|
||||||
e: e,
|
|
||||||
dec: dec,
|
|
||||||
enc: enc,
|
|
||||||
logger: log.NewNopLogger(),
|
|
||||||
}
|
|
||||||
for _, option := range options {
|
|
||||||
option(s)
|
|
||||||
}
|
|
||||||
return s
|
|
||||||
}
|
|
||||||
|
|
||||||
// ServerOption sets an optional parameter for servers.
|
|
||||||
type ServerOption func(*Server)
|
|
||||||
|
|
||||||
// ServerBefore functions are executed on the HTTP request object before the
|
|
||||||
// request is decoded.
|
|
||||||
func ServerBefore(before ...RequestFunc) ServerOption {
|
|
||||||
return func(s *Server) { s.before = before }
|
|
||||||
}
|
|
||||||
|
|
||||||
// ServerAfter functions are executed on the HTTP response writer after the
|
|
||||||
// endpoint is invoked, but before anything is written to the client.
|
|
||||||
func ServerAfter(after ...ResponseFunc) ServerOption {
|
|
||||||
return func(s *Server) { s.after = after }
|
|
||||||
}
|
|
||||||
|
|
||||||
// ServerErrorLogger is used to log non-terminal errors. By default, no errors
|
|
||||||
// are logged.
|
|
||||||
func ServerErrorLogger(logger log.Logger) ServerOption {
|
|
||||||
return func(s *Server) { s.logger = logger }
|
|
||||||
}
|
|
||||||
|
|
||||||
// ServeGRPC implements the Handler interface.
|
|
||||||
func (s Server) ServeGRPC(grpcCtx context.Context, req interface{}) (context.Context, interface{}, error) {
|
|
||||||
ctx := s.ctx
|
|
||||||
|
|
||||||
// Retrieve gRPC metadata.
|
|
||||||
md, ok := metadata.FromContext(grpcCtx)
|
|
||||||
if !ok {
|
|
||||||
md = metadata.MD{}
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, f := range s.before {
|
|
||||||
ctx = f(ctx, &md)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Store potentially updated metadata in the gRPC context.
|
|
||||||
grpcCtx = metadata.NewContext(grpcCtx, md)
|
|
||||||
|
|
||||||
request, err := s.dec(grpcCtx, req)
|
|
||||||
if err != nil {
|
|
||||||
s.logger.Log("err", err)
|
|
||||||
return grpcCtx, nil, BadRequestError{err}
|
|
||||||
}
|
|
||||||
|
|
||||||
response, err := s.e(ctx, request)
|
|
||||||
if err != nil {
|
|
||||||
s.logger.Log("err", err)
|
|
||||||
return grpcCtx, nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, f := range s.after {
|
|
||||||
f(ctx, &md)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Store potentially updated metadata in the gRPC context.
|
|
||||||
grpcCtx = metadata.NewContext(grpcCtx, md)
|
|
||||||
|
|
||||||
grpcResp, err := s.enc(grpcCtx, response)
|
|
||||||
if err != nil {
|
|
||||||
s.logger.Log("err", err)
|
|
||||||
return grpcCtx, nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
return grpcCtx, grpcResp, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// BadRequestError is an error in decoding the request.
|
|
||||||
type BadRequestError struct {
|
|
||||||
Err error
|
|
||||||
}
|
|
||||||
|
|
||||||
// Error implements the error interface.
|
|
||||||
func (err BadRequestError) Error() string {
|
|
||||||
return err.Err.Error()
|
|
||||||
}
|
|
115
vendor/github.com/go-kit/kit/transport/http/client.go
generated
vendored
115
vendor/github.com/go-kit/kit/transport/http/client.go
generated
vendored
@ -1,115 +0,0 @@
|
|||||||
package http
|
|
||||||
|
|
||||||
import (
|
|
||||||
"net/http"
|
|
||||||
"net/url"
|
|
||||||
|
|
||||||
"golang.org/x/net/context"
|
|
||||||
"golang.org/x/net/context/ctxhttp"
|
|
||||||
|
|
||||||
"github.com/go-kit/kit/endpoint"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Client wraps a URL and provides a method that implements endpoint.Endpoint.
|
|
||||||
type Client struct {
|
|
||||||
client *http.Client
|
|
||||||
method string
|
|
||||||
tgt *url.URL
|
|
||||||
enc EncodeRequestFunc
|
|
||||||
dec DecodeResponseFunc
|
|
||||||
before []RequestFunc
|
|
||||||
after []ClientResponseFunc
|
|
||||||
bufferedStream bool
|
|
||||||
}
|
|
||||||
|
|
||||||
// NewClient constructs a usable Client for a single remote method.
|
|
||||||
func NewClient(
|
|
||||||
method string,
|
|
||||||
tgt *url.URL,
|
|
||||||
enc EncodeRequestFunc,
|
|
||||||
dec DecodeResponseFunc,
|
|
||||||
options ...ClientOption,
|
|
||||||
) *Client {
|
|
||||||
c := &Client{
|
|
||||||
client: http.DefaultClient,
|
|
||||||
method: method,
|
|
||||||
tgt: tgt,
|
|
||||||
enc: enc,
|
|
||||||
dec: dec,
|
|
||||||
before: []RequestFunc{},
|
|
||||||
after: []ClientResponseFunc{},
|
|
||||||
bufferedStream: false,
|
|
||||||
}
|
|
||||||
for _, option := range options {
|
|
||||||
option(c)
|
|
||||||
}
|
|
||||||
return c
|
|
||||||
}
|
|
||||||
|
|
||||||
// ClientOption sets an optional parameter for clients.
|
|
||||||
type ClientOption func(*Client)
|
|
||||||
|
|
||||||
// SetClient sets the underlying HTTP client used for requests.
|
|
||||||
// By default, http.DefaultClient is used.
|
|
||||||
func SetClient(client *http.Client) ClientOption {
|
|
||||||
return func(c *Client) { c.client = client }
|
|
||||||
}
|
|
||||||
|
|
||||||
// ClientBefore sets the RequestFuncs that are applied to the outgoing HTTP
|
|
||||||
// request before it's invoked.
|
|
||||||
func ClientBefore(before ...RequestFunc) ClientOption {
|
|
||||||
return func(c *Client) { c.before = before }
|
|
||||||
}
|
|
||||||
|
|
||||||
// ClientAfter sets the ClientResponseFuncs applied to the incoming HTTP
|
|
||||||
// request prior to it being decoded. This is useful for obtaining anything off
|
|
||||||
// of the response and adding onto the context prior to decoding.
|
|
||||||
func ClientAfter(after ...ClientResponseFunc) ClientOption {
|
|
||||||
return func(c *Client) { c.after = after }
|
|
||||||
}
|
|
||||||
|
|
||||||
// BufferedStream sets whether the Response.Body is left open, allowing it
|
|
||||||
// to be read from later. Useful for transporting a file as a buffered stream.
|
|
||||||
func BufferedStream(buffered bool) ClientOption {
|
|
||||||
return func(c *Client) { c.bufferedStream = buffered }
|
|
||||||
}
|
|
||||||
|
|
||||||
// Endpoint returns a usable endpoint that invokes the remote endpoint.
|
|
||||||
func (c Client) Endpoint() endpoint.Endpoint {
|
|
||||||
return func(ctx context.Context, request interface{}) (interface{}, error) {
|
|
||||||
ctx, cancel := context.WithCancel(ctx)
|
|
||||||
defer cancel()
|
|
||||||
|
|
||||||
req, err := http.NewRequest(c.method, c.tgt.String(), nil)
|
|
||||||
if err != nil {
|
|
||||||
return nil, Error{Domain: DomainNewRequest, Err: err}
|
|
||||||
}
|
|
||||||
|
|
||||||
if err = c.enc(ctx, req, request); err != nil {
|
|
||||||
return nil, Error{Domain: DomainEncode, Err: err}
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, f := range c.before {
|
|
||||||
ctx = f(ctx, req)
|
|
||||||
}
|
|
||||||
|
|
||||||
resp, err := ctxhttp.Do(ctx, c.client, req)
|
|
||||||
if err != nil {
|
|
||||||
return nil, Error{Domain: DomainDo, Err: err}
|
|
||||||
}
|
|
||||||
if !c.bufferedStream {
|
|
||||||
defer resp.Body.Close()
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, f := range c.after {
|
|
||||||
ctx = f(ctx, resp)
|
|
||||||
}
|
|
||||||
|
|
||||||
response, err := c.dec(ctx, resp)
|
|
||||||
if err != nil {
|
|
||||||
return nil, Error{Domain: DomainDecode, Err: err}
|
|
||||||
}
|
|
||||||
|
|
||||||
return response, nil
|
|
||||||
}
|
|
||||||
}
|
|
2
vendor/github.com/go-kit/kit/transport/http/doc.go
generated
vendored
2
vendor/github.com/go-kit/kit/transport/http/doc.go
generated
vendored
@ -1,2 +0,0 @@
|
|||||||
// Package http provides a general purpose HTTP binding for endpoints.
|
|
||||||
package http
|
|
31
vendor/github.com/go-kit/kit/transport/http/encode_decode.go
generated
vendored
31
vendor/github.com/go-kit/kit/transport/http/encode_decode.go
generated
vendored
@ -1,31 +0,0 @@
|
|||||||
package http
|
|
||||||
|
|
||||||
import (
|
|
||||||
"net/http"
|
|
||||||
|
|
||||||
"golang.org/x/net/context"
|
|
||||||
)
|
|
||||||
|
|
||||||
// DecodeRequestFunc extracts a user-domain request object from an HTTP
|
|
||||||
// request object. It's designed to be used in HTTP servers, for server-side
|
|
||||||
// endpoints. One straightforward DecodeRequestFunc could be something that
|
|
||||||
// JSON decodes from the request body to the concrete response type.
|
|
||||||
type DecodeRequestFunc func(context.Context, *http.Request) (request interface{}, err error)
|
|
||||||
|
|
||||||
// EncodeRequestFunc encodes the passed request object into the HTTP request
|
|
||||||
// object. It's designed to be used in HTTP clients, for client-side
|
|
||||||
// endpoints. One straightforward EncodeRequestFunc could something that JSON
|
|
||||||
// encodes the object directly to the request body.
|
|
||||||
type EncodeRequestFunc func(context.Context, *http.Request, interface{}) error
|
|
||||||
|
|
||||||
// EncodeResponseFunc encodes the passed response object to the HTTP response
|
|
||||||
// writer. It's designed to be used in HTTP servers, for server-side
|
|
||||||
// endpoints. One straightforward EncodeResponseFunc could be something that
|
|
||||||
// JSON encodes the object directly to the response body.
|
|
||||||
type EncodeResponseFunc func(context.Context, http.ResponseWriter, interface{}) error
|
|
||||||
|
|
||||||
// DecodeResponseFunc extracts a user-domain response object from an HTTP
|
|
||||||
// response object. It's designed to be used in HTTP clients, for client-side
|
|
||||||
// endpoints. One straightforward DecodeResponseFunc could be something that
|
|
||||||
// JSON decodes from the response body to the concrete response type.
|
|
||||||
type DecodeResponseFunc func(context.Context, *http.Response) (response interface{}, err error)
|
|
33
vendor/github.com/go-kit/kit/transport/http/err.go
generated
vendored
33
vendor/github.com/go-kit/kit/transport/http/err.go
generated
vendored
@ -1,33 +0,0 @@
|
|||||||
package http
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// DomainNewRequest is an error during request generation.
|
|
||||||
DomainNewRequest = "NewRequest"
|
|
||||||
|
|
||||||
// DomainEncode is an error during request or response encoding.
|
|
||||||
DomainEncode = "Encode"
|
|
||||||
|
|
||||||
// DomainDo is an error during the execution phase of the request.
|
|
||||||
DomainDo = "Do"
|
|
||||||
|
|
||||||
// DomainDecode is an error during request or response decoding.
|
|
||||||
DomainDecode = "Decode"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Error is an error that occurred at some phase within the transport.
|
|
||||||
type Error struct {
|
|
||||||
// Domain is the phase in which the error was generated.
|
|
||||||
Domain string
|
|
||||||
|
|
||||||
// Err is the concrete error.
|
|
||||||
Err error
|
|
||||||
}
|
|
||||||
|
|
||||||
// Error implements the error interface.
|
|
||||||
func (e Error) Error() string {
|
|
||||||
return fmt.Sprintf("%s: %s", e.Domain, e.Err)
|
|
||||||
}
|
|
45
vendor/github.com/go-kit/kit/transport/http/request_response_funcs.go
generated
vendored
45
vendor/github.com/go-kit/kit/transport/http/request_response_funcs.go
generated
vendored
@ -1,45 +0,0 @@
|
|||||||
package http
|
|
||||||
|
|
||||||
import (
|
|
||||||
"net/http"
|
|
||||||
|
|
||||||
"golang.org/x/net/context"
|
|
||||||
)
|
|
||||||
|
|
||||||
// RequestFunc may take information from an HTTP request and put it into a
|
|
||||||
// request context. In Servers, RequestFuncs are executed prior to invoking the
|
|
||||||
// endpoint. In Clients, RequestFuncs are executed after creating the request
|
|
||||||
// but prior to invoking the HTTP client.
|
|
||||||
type RequestFunc func(context.Context, *http.Request) context.Context
|
|
||||||
|
|
||||||
// ServerResponseFunc may take information from a request context and use it to
|
|
||||||
// manipulate a ResponseWriter. ServerResponseFuncs are only executed in
|
|
||||||
// servers, after invoking the endpoint but prior to writing a response.
|
|
||||||
type ServerResponseFunc func(context.Context, http.ResponseWriter) context.Context
|
|
||||||
|
|
||||||
// ClientResponseFunc may take information from an HTTP request and make the
|
|
||||||
// response available for consumption. ClientResponseFuncs are only executed in
|
|
||||||
// clients, after a request has been made, but prior to it being decoded.
|
|
||||||
type ClientResponseFunc func(context.Context, *http.Response) context.Context
|
|
||||||
|
|
||||||
// SetContentType returns a ResponseFunc that sets the Content-Type header to
|
|
||||||
// the provided value.
|
|
||||||
func SetContentType(contentType string) ServerResponseFunc {
|
|
||||||
return SetResponseHeader("Content-Type", contentType)
|
|
||||||
}
|
|
||||||
|
|
||||||
// SetResponseHeader returns a ResponseFunc that sets the specified header.
|
|
||||||
func SetResponseHeader(key, val string) ServerResponseFunc {
|
|
||||||
return func(ctx context.Context, w http.ResponseWriter) context.Context {
|
|
||||||
w.Header().Set(key, val)
|
|
||||||
return ctx
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// SetRequestHeader returns a RequestFunc that sets the specified header.
|
|
||||||
func SetRequestHeader(key, val string) RequestFunc {
|
|
||||||
return func(ctx context.Context, r *http.Request) context.Context {
|
|
||||||
r.Header.Set(key, val)
|
|
||||||
return ctx
|
|
||||||
}
|
|
||||||
}
|
|
133
vendor/github.com/go-kit/kit/transport/http/server.go
generated
vendored
133
vendor/github.com/go-kit/kit/transport/http/server.go
generated
vendored
@ -1,133 +0,0 @@
|
|||||||
package http
|
|
||||||
|
|
||||||
import (
|
|
||||||
"net/http"
|
|
||||||
|
|
||||||
"golang.org/x/net/context"
|
|
||||||
|
|
||||||
"github.com/go-kit/kit/endpoint"
|
|
||||||
"github.com/go-kit/kit/log"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Server wraps an endpoint and implements http.Handler.
|
|
||||||
type Server struct {
|
|
||||||
ctx context.Context
|
|
||||||
e endpoint.Endpoint
|
|
||||||
dec DecodeRequestFunc
|
|
||||||
enc EncodeResponseFunc
|
|
||||||
before []RequestFunc
|
|
||||||
after []ServerResponseFunc
|
|
||||||
errorEncoder ErrorEncoder
|
|
||||||
logger log.Logger
|
|
||||||
}
|
|
||||||
|
|
||||||
// NewServer constructs a new server, which implements http.Server and wraps
|
|
||||||
// the provided endpoint.
|
|
||||||
func NewServer(
|
|
||||||
ctx context.Context,
|
|
||||||
e endpoint.Endpoint,
|
|
||||||
dec DecodeRequestFunc,
|
|
||||||
enc EncodeResponseFunc,
|
|
||||||
options ...ServerOption,
|
|
||||||
) *Server {
|
|
||||||
s := &Server{
|
|
||||||
ctx: ctx,
|
|
||||||
e: e,
|
|
||||||
dec: dec,
|
|
||||||
enc: enc,
|
|
||||||
errorEncoder: defaultErrorEncoder,
|
|
||||||
logger: log.NewNopLogger(),
|
|
||||||
}
|
|
||||||
for _, option := range options {
|
|
||||||
option(s)
|
|
||||||
}
|
|
||||||
return s
|
|
||||||
}
|
|
||||||
|
|
||||||
// ServerOption sets an optional parameter for servers.
|
|
||||||
type ServerOption func(*Server)
|
|
||||||
|
|
||||||
// ServerBefore functions are executed on the HTTP request object before the
|
|
||||||
// request is decoded.
|
|
||||||
func ServerBefore(before ...RequestFunc) ServerOption {
|
|
||||||
return func(s *Server) { s.before = before }
|
|
||||||
}
|
|
||||||
|
|
||||||
// ServerAfter functions are executed on the HTTP response writer after the
|
|
||||||
// endpoint is invoked, but before anything is written to the client.
|
|
||||||
func ServerAfter(after ...ServerResponseFunc) ServerOption {
|
|
||||||
return func(s *Server) { s.after = after }
|
|
||||||
}
|
|
||||||
|
|
||||||
// ServerErrorEncoder is used to encode errors to the http.ResponseWriter
|
|
||||||
// whenever they're encountered in the processing of a request. Clients can
|
|
||||||
// use this to provide custom error formatting and response codes. By default,
|
|
||||||
// errors will be written as plain text with an appropriate, if generic,
|
|
||||||
// status code.
|
|
||||||
func ServerErrorEncoder(ee ErrorEncoder) ServerOption {
|
|
||||||
return func(s *Server) { s.errorEncoder = ee }
|
|
||||||
}
|
|
||||||
|
|
||||||
// ServerErrorLogger is used to log non-terminal errors. By default, no errors
|
|
||||||
// are logged.
|
|
||||||
func ServerErrorLogger(logger log.Logger) ServerOption {
|
|
||||||
return func(s *Server) { s.logger = logger }
|
|
||||||
}
|
|
||||||
|
|
||||||
// ServeHTTP implements http.Handler.
|
|
||||||
func (s Server) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
||||||
ctx := s.ctx
|
|
||||||
|
|
||||||
for _, f := range s.before {
|
|
||||||
ctx = f(ctx, r)
|
|
||||||
}
|
|
||||||
|
|
||||||
request, err := s.dec(ctx, r)
|
|
||||||
if err != nil {
|
|
||||||
s.logger.Log("err", err)
|
|
||||||
s.errorEncoder(ctx, Error{Domain: DomainDecode, Err: err}, w)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
response, err := s.e(ctx, request)
|
|
||||||
if err != nil {
|
|
||||||
s.logger.Log("err", err)
|
|
||||||
s.errorEncoder(ctx, Error{Domain: DomainDo, Err: err}, w)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, f := range s.after {
|
|
||||||
ctx = f(ctx, w)
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := s.enc(ctx, w, response); err != nil {
|
|
||||||
s.logger.Log("err", err)
|
|
||||||
s.errorEncoder(ctx, Error{Domain: DomainEncode, Err: err}, w)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ErrorEncoder is responsible for encoding an error to the ResponseWriter.
|
|
||||||
//
|
|
||||||
// In the server implementation, only kit/transport/http.Error values are ever
|
|
||||||
// passed to this function, so you might be tempted to have this function take
|
|
||||||
// one of those directly. But, users are encouraged to use custom ErrorEncoders
|
|
||||||
// to encode all HTTP errors to their clients, and so may want to pass and check
|
|
||||||
// for their own error types. See the example shipping/handling service.
|
|
||||||
type ErrorEncoder func(ctx context.Context, err error, w http.ResponseWriter)
|
|
||||||
|
|
||||||
func defaultErrorEncoder(_ context.Context, err error, w http.ResponseWriter) {
|
|
||||||
switch e := err.(type) {
|
|
||||||
case Error:
|
|
||||||
switch e.Domain {
|
|
||||||
case DomainDecode:
|
|
||||||
http.Error(w, err.Error(), http.StatusBadRequest)
|
|
||||||
case DomainDo:
|
|
||||||
http.Error(w, err.Error(), http.StatusServiceUnavailable) // too aggressive?
|
|
||||||
default:
|
|
||||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
||||||
}
|
|
||||||
default:
|
|
||||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
||||||
}
|
|
||||||
}
|
|
28
vendor/github.com/go-kit/kit/update_deps.bash
generated
vendored
28
vendor/github.com/go-kit/kit/update_deps.bash
generated
vendored
@ -1,28 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
# This script updates each non-stdlib, non-Go-kit dependency to its most recent
|
|
||||||
# commit. It can be invoked to aid in debugging after a dependency-related
|
|
||||||
# failure on continuous integration.
|
|
||||||
|
|
||||||
function deps {
|
|
||||||
go list -f '{{join .Deps "\n"}}' ./...
|
|
||||||
}
|
|
||||||
|
|
||||||
function not_stdlib {
|
|
||||||
xargs go list -f '{{if not .Standard}}{{.ImportPath}}{{end}}'
|
|
||||||
}
|
|
||||||
|
|
||||||
function not_gokit {
|
|
||||||
grep -v 'go-kit/kit'
|
|
||||||
}
|
|
||||||
|
|
||||||
function go_get_update {
|
|
||||||
while read d
|
|
||||||
do
|
|
||||||
echo $d
|
|
||||||
go get -u $d
|
|
||||||
done
|
|
||||||
}
|
|
||||||
|
|
||||||
deps | not_stdlib | not_gokit | go_get_update
|
|
||||||
|
|
22
vendor/github.com/go-logfmt/logfmt/LICENSE
generated
vendored
22
vendor/github.com/go-logfmt/logfmt/LICENSE
generated
vendored
@ -1,22 +0,0 @@
|
|||||||
The MIT License (MIT)
|
|
||||||
|
|
||||||
Copyright (c) 2015 go-logfmt
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
|
||||||
copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
SOFTWARE.
|
|
||||||
|
|
33
vendor/github.com/go-logfmt/logfmt/README.md
generated
vendored
33
vendor/github.com/go-logfmt/logfmt/README.md
generated
vendored
@ -1,33 +0,0 @@
|
|||||||
[![GoDoc](https://godoc.org/github.com/go-logfmt/logfmt?status.svg)](https://godoc.org/github.com/go-logfmt/logfmt)
|
|
||||||
[![Go Report Card](https://goreportcard.com/badge/go-logfmt/logfmt)](https://goreportcard.com/report/go-logfmt/logfmt)
|
|
||||||
[![TravisCI](https://travis-ci.org/go-logfmt/logfmt.svg?branch=master)](https://travis-ci.org/go-logfmt/logfmt)
|
|
||||||
[![Coverage Status](https://coveralls.io/repos/github/go-logfmt/logfmt/badge.svg?branch=master)](https://coveralls.io/github/go-logfmt/logfmt?branch=master)
|
|
||||||
|
|
||||||
# logfmt
|
|
||||||
|
|
||||||
Package logfmt implements utilities to marshal and unmarshal data in the [logfmt
|
|
||||||
format](https://brandur.org/logfmt). It provides an API similar to
|
|
||||||
[encoding/json](http://golang.org/pkg/encoding/json/) and
|
|
||||||
[encoding/xml](http://golang.org/pkg/encoding/xml/).
|
|
||||||
|
|
||||||
The logfmt format was first documented by Brandur Leach in [this
|
|
||||||
article](https://brandur.org/logfmt). The format has not been formally
|
|
||||||
standardized. The most authoritative public specification to date has been the
|
|
||||||
documentation of a Go Language [package](http://godoc.org/github.com/kr/logfmt)
|
|
||||||
written by Blake Mizerany and Keith Rarick.
|
|
||||||
|
|
||||||
## Goals
|
|
||||||
|
|
||||||
This project attempts to conform as closely as possible to the prior art, while
|
|
||||||
also removing ambiguity where necessary to provide well behaved encoder and
|
|
||||||
decoder implementations.
|
|
||||||
|
|
||||||
## Non-goals
|
|
||||||
|
|
||||||
This project does not attempt to formally standardize the logfmt format. In the
|
|
||||||
event that logfmt is standardized this project would take conforming to the
|
|
||||||
standard as a goal.
|
|
||||||
|
|
||||||
## Versioning
|
|
||||||
|
|
||||||
Package logfmt publishes releases via [semver](http://semver.org/) compatible Git tags prefixed with a single 'v'.
|
|
237
vendor/github.com/go-logfmt/logfmt/decode.go
generated
vendored
237
vendor/github.com/go-logfmt/logfmt/decode.go
generated
vendored
@ -1,237 +0,0 @@
|
|||||||
package logfmt
|
|
||||||
|
|
||||||
import (
|
|
||||||
"bufio"
|
|
||||||
"bytes"
|
|
||||||
"fmt"
|
|
||||||
"io"
|
|
||||||
"unicode/utf8"
|
|
||||||
)
|
|
||||||
|
|
||||||
// A Decoder reads and decodes logfmt records from an input stream.
|
|
||||||
type Decoder struct {
|
|
||||||
pos int
|
|
||||||
key []byte
|
|
||||||
value []byte
|
|
||||||
lineNum int
|
|
||||||
s *bufio.Scanner
|
|
||||||
err error
|
|
||||||
}
|
|
||||||
|
|
||||||
// NewDecoder returns a new decoder that reads from r.
|
|
||||||
//
|
|
||||||
// The decoder introduces its own buffering and may read data from r beyond
|
|
||||||
// the logfmt records requested.
|
|
||||||
func NewDecoder(r io.Reader) *Decoder {
|
|
||||||
dec := &Decoder{
|
|
||||||
s: bufio.NewScanner(r),
|
|
||||||
}
|
|
||||||
return dec
|
|
||||||
}
|
|
||||||
|
|
||||||
// ScanRecord advances the Decoder to the next record, which can then be
|
|
||||||
// parsed with the ScanKeyval method. It returns false when decoding stops,
|
|
||||||
// either by reaching the end of the input or an error. After ScanRecord
|
|
||||||
// returns false, the Err method will return any error that occurred during
|
|
||||||
// decoding, except that if it was io.EOF, Err will return nil.
|
|
||||||
func (dec *Decoder) ScanRecord() bool {
|
|
||||||
if dec.err != nil {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
if !dec.s.Scan() {
|
|
||||||
dec.err = dec.s.Err()
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
dec.lineNum++
|
|
||||||
dec.pos = 0
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
// ScanKeyval advances the Decoder to the next key/value pair of the current
|
|
||||||
// record, which can then be retrieved with the Key and Value methods. It
|
|
||||||
// returns false when decoding stops, either by reaching the end of the
|
|
||||||
// current record or an error.
|
|
||||||
func (dec *Decoder) ScanKeyval() bool {
|
|
||||||
dec.key, dec.value = nil, nil
|
|
||||||
if dec.err != nil {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
line := dec.s.Bytes()
|
|
||||||
|
|
||||||
// garbage
|
|
||||||
for p, c := range line[dec.pos:] {
|
|
||||||
if c > ' ' {
|
|
||||||
dec.pos += p
|
|
||||||
goto key
|
|
||||||
}
|
|
||||||
}
|
|
||||||
dec.pos = len(line)
|
|
||||||
return false
|
|
||||||
|
|
||||||
key:
|
|
||||||
const invalidKeyError = "invalid key"
|
|
||||||
|
|
||||||
start, multibyte := dec.pos, false
|
|
||||||
for p, c := range line[dec.pos:] {
|
|
||||||
switch {
|
|
||||||
case c == '=':
|
|
||||||
dec.pos += p
|
|
||||||
if dec.pos > start {
|
|
||||||
dec.key = line[start:dec.pos]
|
|
||||||
if multibyte && bytes.IndexRune(dec.key, utf8.RuneError) != -1 {
|
|
||||||
dec.syntaxError(invalidKeyError)
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if dec.key == nil {
|
|
||||||
dec.unexpectedByte(c)
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
goto equal
|
|
||||||
case c == '"':
|
|
||||||
dec.pos += p
|
|
||||||
dec.unexpectedByte(c)
|
|
||||||
return false
|
|
||||||
case c <= ' ':
|
|
||||||
dec.pos += p
|
|
||||||
if dec.pos > start {
|
|
||||||
dec.key = line[start:dec.pos]
|
|
||||||
if multibyte && bytes.IndexRune(dec.key, utf8.RuneError) != -1 {
|
|
||||||
dec.syntaxError(invalidKeyError)
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true
|
|
||||||
case c >= utf8.RuneSelf:
|
|
||||||
multibyte = true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
dec.pos = len(line)
|
|
||||||
if dec.pos > start {
|
|
||||||
dec.key = line[start:dec.pos]
|
|
||||||
if multibyte && bytes.IndexRune(dec.key, utf8.RuneError) != -1 {
|
|
||||||
dec.syntaxError(invalidKeyError)
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true
|
|
||||||
|
|
||||||
equal:
|
|
||||||
dec.pos++
|
|
||||||
if dec.pos >= len(line) {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
switch c := line[dec.pos]; {
|
|
||||||
case c <= ' ':
|
|
||||||
return true
|
|
||||||
case c == '"':
|
|
||||||
goto qvalue
|
|
||||||
}
|
|
||||||
|
|
||||||
// value
|
|
||||||
start = dec.pos
|
|
||||||
for p, c := range line[dec.pos:] {
|
|
||||||
switch {
|
|
||||||
case c == '=' || c == '"':
|
|
||||||
dec.pos += p
|
|
||||||
dec.unexpectedByte(c)
|
|
||||||
return false
|
|
||||||
case c <= ' ':
|
|
||||||
dec.pos += p
|
|
||||||
if dec.pos > start {
|
|
||||||
dec.value = line[start:dec.pos]
|
|
||||||
}
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
dec.pos = len(line)
|
|
||||||
if dec.pos > start {
|
|
||||||
dec.value = line[start:dec.pos]
|
|
||||||
}
|
|
||||||
return true
|
|
||||||
|
|
||||||
qvalue:
|
|
||||||
const (
|
|
||||||
untermQuote = "unterminated quoted value"
|
|
||||||
invalidQuote = "invalid quoted value"
|
|
||||||
)
|
|
||||||
|
|
||||||
hasEsc, esc := false, false
|
|
||||||
start = dec.pos
|
|
||||||
for p, c := range line[dec.pos+1:] {
|
|
||||||
switch {
|
|
||||||
case esc:
|
|
||||||
esc = false
|
|
||||||
case c == '\\':
|
|
||||||
hasEsc, esc = true, true
|
|
||||||
case c == '"':
|
|
||||||
dec.pos += p + 2
|
|
||||||
if hasEsc {
|
|
||||||
v, ok := unquoteBytes(line[start:dec.pos])
|
|
||||||
if !ok {
|
|
||||||
dec.syntaxError(invalidQuote)
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
dec.value = v
|
|
||||||
} else {
|
|
||||||
start++
|
|
||||||
end := dec.pos - 1
|
|
||||||
if end > start {
|
|
||||||
dec.value = line[start:end]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
dec.pos = len(line)
|
|
||||||
dec.syntaxError(untermQuote)
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
// Key returns the most recent key found by a call to ScanKeyval. The returned
|
|
||||||
// slice may point to internal buffers and is only valid until the next call
|
|
||||||
// to ScanRecord. It does no allocation.
|
|
||||||
func (dec *Decoder) Key() []byte {
|
|
||||||
return dec.key
|
|
||||||
}
|
|
||||||
|
|
||||||
// Value returns the most recent value found by a call to ScanKeyval. The
|
|
||||||
// returned slice may point to internal buffers and is only valid until the
|
|
||||||
// next call to ScanRecord. It does no allocation when the value has no
|
|
||||||
// escape sequences.
|
|
||||||
func (dec *Decoder) Value() []byte {
|
|
||||||
return dec.value
|
|
||||||
}
|
|
||||||
|
|
||||||
// Err returns the first non-EOF error that was encountered by the Scanner.
|
|
||||||
func (dec *Decoder) Err() error {
|
|
||||||
return dec.err
|
|
||||||
}
|
|
||||||
|
|
||||||
func (dec *Decoder) syntaxError(msg string) {
|
|
||||||
dec.err = &SyntaxError{
|
|
||||||
Msg: msg,
|
|
||||||
Line: dec.lineNum,
|
|
||||||
Pos: dec.pos + 1,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (dec *Decoder) unexpectedByte(c byte) {
|
|
||||||
dec.err = &SyntaxError{
|
|
||||||
Msg: fmt.Sprintf("unexpected %q", c),
|
|
||||||
Line: dec.lineNum,
|
|
||||||
Pos: dec.pos + 1,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// A SyntaxError represents a syntax error in the logfmt input stream.
|
|
||||||
type SyntaxError struct {
|
|
||||||
Msg string
|
|
||||||
Line int
|
|
||||||
Pos int
|
|
||||||
}
|
|
||||||
|
|
||||||
func (e *SyntaxError) Error() string {
|
|
||||||
return fmt.Sprintf("logfmt syntax error at pos %d on line %d: %s", e.Pos, e.Line, e.Msg)
|
|
||||||
}
|
|
6
vendor/github.com/go-logfmt/logfmt/doc.go
generated
vendored
6
vendor/github.com/go-logfmt/logfmt/doc.go
generated
vendored
@ -1,6 +0,0 @@
|
|||||||
// Package logfmt implements utilities to marshal and unmarshal data in the
|
|
||||||
// logfmt format. The logfmt format records key/value pairs in a way that
|
|
||||||
// balances readability for humans and simplicity of computer parsing. It is
|
|
||||||
// most commonly used as a more human friendly alternative to JSON for
|
|
||||||
// structured logging.
|
|
||||||
package logfmt
|
|
321
vendor/github.com/go-logfmt/logfmt/encode.go
generated
vendored
321
vendor/github.com/go-logfmt/logfmt/encode.go
generated
vendored
@ -1,321 +0,0 @@
|
|||||||
package logfmt
|
|
||||||
|
|
||||||
import (
|
|
||||||
"bytes"
|
|
||||||
"encoding"
|
|
||||||
"errors"
|
|
||||||
"fmt"
|
|
||||||
"io"
|
|
||||||
"reflect"
|
|
||||||
"strings"
|
|
||||||
"unicode/utf8"
|
|
||||||
)
|
|
||||||
|
|
||||||
// MarshalKeyvals returns the logfmt encoding of keyvals, a variadic sequence
|
|
||||||
// of alternating keys and values.
|
|
||||||
func MarshalKeyvals(keyvals ...interface{}) ([]byte, error) {
|
|
||||||
buf := &bytes.Buffer{}
|
|
||||||
if err := NewEncoder(buf).EncodeKeyvals(keyvals...); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return buf.Bytes(), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// An Encoder writes logfmt data to an output stream.
|
|
||||||
type Encoder struct {
|
|
||||||
w io.Writer
|
|
||||||
scratch bytes.Buffer
|
|
||||||
needSep bool
|
|
||||||
}
|
|
||||||
|
|
||||||
// NewEncoder returns a new encoder that writes to w.
|
|
||||||
func NewEncoder(w io.Writer) *Encoder {
|
|
||||||
return &Encoder{
|
|
||||||
w: w,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
space = []byte(" ")
|
|
||||||
equals = []byte("=")
|
|
||||||
newline = []byte("\n")
|
|
||||||
null = []byte("null")
|
|
||||||
)
|
|
||||||
|
|
||||||
// EncodeKeyval writes the logfmt encoding of key and value to the stream. A
|
|
||||||
// single space is written before the second and subsequent keys in a record.
|
|
||||||
// Nothing is written if a non-nil error is returned.
|
|
||||||
func (enc *Encoder) EncodeKeyval(key, value interface{}) error {
|
|
||||||
enc.scratch.Reset()
|
|
||||||
if enc.needSep {
|
|
||||||
if _, err := enc.scratch.Write(space); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if err := writeKey(&enc.scratch, key); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
if _, err := enc.scratch.Write(equals); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
if err := writeValue(&enc.scratch, value); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
_, err := enc.w.Write(enc.scratch.Bytes())
|
|
||||||
enc.needSep = true
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
// EncodeKeyvals writes the logfmt encoding of keyvals to the stream. Keyvals
|
|
||||||
// is a variadic sequence of alternating keys and values. Keys of unsupported
|
|
||||||
// type are skipped along with their corresponding value. Values of
|
|
||||||
// unsupported type or that cause a MarshalerError are replaced by their error
|
|
||||||
// but do not cause EncodeKeyvals to return an error. If a non-nil error is
|
|
||||||
// returned some key/value pairs may not have be written.
|
|
||||||
func (enc *Encoder) EncodeKeyvals(keyvals ...interface{}) error {
|
|
||||||
if len(keyvals) == 0 {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
if len(keyvals)%2 == 1 {
|
|
||||||
keyvals = append(keyvals, nil)
|
|
||||||
}
|
|
||||||
for i := 0; i < len(keyvals); i += 2 {
|
|
||||||
k, v := keyvals[i], keyvals[i+1]
|
|
||||||
err := enc.EncodeKeyval(k, v)
|
|
||||||
if err == ErrUnsupportedKeyType {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
if _, ok := err.(*MarshalerError); ok || err == ErrUnsupportedValueType {
|
|
||||||
v = err
|
|
||||||
err = enc.EncodeKeyval(k, v)
|
|
||||||
}
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// MarshalerError represents an error encountered while marshaling a value.
|
|
||||||
type MarshalerError struct {
|
|
||||||
Type reflect.Type
|
|
||||||
Err error
|
|
||||||
}
|
|
||||||
|
|
||||||
func (e *MarshalerError) Error() string {
|
|
||||||
return "error marshaling value of type " + e.Type.String() + ": " + e.Err.Error()
|
|
||||||
}
|
|
||||||
|
|
||||||
// ErrNilKey is returned by Marshal functions and Encoder methods if a key is
|
|
||||||
// a nil interface or pointer value.
|
|
||||||
var ErrNilKey = errors.New("nil key")
|
|
||||||
|
|
||||||
// ErrInvalidKey is returned by Marshal functions and Encoder methods if a key
|
|
||||||
// contains an invalid character.
|
|
||||||
var ErrInvalidKey = errors.New("invalid key")
|
|
||||||
|
|
||||||
// ErrUnsupportedKeyType is returned by Encoder methods if a key has an
|
|
||||||
// unsupported type.
|
|
||||||
var ErrUnsupportedKeyType = errors.New("unsupported key type")
|
|
||||||
|
|
||||||
// ErrUnsupportedValueType is returned by Encoder methods if a value has an
|
|
||||||
// unsupported type.
|
|
||||||
var ErrUnsupportedValueType = errors.New("unsupported value type")
|
|
||||||
|
|
||||||
func writeKey(w io.Writer, key interface{}) error {
|
|
||||||
if key == nil {
|
|
||||||
return ErrNilKey
|
|
||||||
}
|
|
||||||
|
|
||||||
switch k := key.(type) {
|
|
||||||
case string:
|
|
||||||
return writeStringKey(w, k)
|
|
||||||
case []byte:
|
|
||||||
if k == nil {
|
|
||||||
return ErrNilKey
|
|
||||||
}
|
|
||||||
return writeBytesKey(w, k)
|
|
||||||
case encoding.TextMarshaler:
|
|
||||||
kb, err := safeMarshal(k)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
if kb == nil {
|
|
||||||
return ErrNilKey
|
|
||||||
}
|
|
||||||
return writeBytesKey(w, kb)
|
|
||||||
case fmt.Stringer:
|
|
||||||
ks, ok := safeString(k)
|
|
||||||
if !ok {
|
|
||||||
return ErrNilKey
|
|
||||||
}
|
|
||||||
return writeStringKey(w, ks)
|
|
||||||
default:
|
|
||||||
rkey := reflect.ValueOf(key)
|
|
||||||
switch rkey.Kind() {
|
|
||||||
case reflect.Array, reflect.Chan, reflect.Func, reflect.Map, reflect.Slice, reflect.Struct:
|
|
||||||
return ErrUnsupportedKeyType
|
|
||||||
case reflect.Ptr:
|
|
||||||
if rkey.IsNil() {
|
|
||||||
return ErrNilKey
|
|
||||||
}
|
|
||||||
return writeKey(w, rkey.Elem().Interface())
|
|
||||||
}
|
|
||||||
return writeStringKey(w, fmt.Sprint(k))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func invalidKeyRune(r rune) bool {
|
|
||||||
return r <= ' ' || r == '=' || r == '"' || r == utf8.RuneError
|
|
||||||
}
|
|
||||||
|
|
||||||
func invalidKeyString(key string) bool {
|
|
||||||
return len(key) == 0 || strings.IndexFunc(key, invalidKeyRune) != -1
|
|
||||||
}
|
|
||||||
|
|
||||||
func invalidKey(key []byte) bool {
|
|
||||||
return len(key) == 0 || bytes.IndexFunc(key, invalidKeyRune) != -1
|
|
||||||
}
|
|
||||||
|
|
||||||
func writeStringKey(w io.Writer, key string) error {
|
|
||||||
if invalidKeyString(key) {
|
|
||||||
return ErrInvalidKey
|
|
||||||
}
|
|
||||||
_, err := io.WriteString(w, key)
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
func writeBytesKey(w io.Writer, key []byte) error {
|
|
||||||
if invalidKey(key) {
|
|
||||||
return ErrInvalidKey
|
|
||||||
}
|
|
||||||
_, err := w.Write(key)
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
func writeValue(w io.Writer, value interface{}) error {
|
|
||||||
switch v := value.(type) {
|
|
||||||
case nil:
|
|
||||||
return writeBytesValue(w, null)
|
|
||||||
case string:
|
|
||||||
return writeStringValue(w, v, true)
|
|
||||||
case []byte:
|
|
||||||
return writeBytesValue(w, v)
|
|
||||||
case encoding.TextMarshaler:
|
|
||||||
vb, err := safeMarshal(v)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
if vb == nil {
|
|
||||||
vb = null
|
|
||||||
}
|
|
||||||
return writeBytesValue(w, vb)
|
|
||||||
case error:
|
|
||||||
se, ok := safeError(v)
|
|
||||||
return writeStringValue(w, se, ok)
|
|
||||||
case fmt.Stringer:
|
|
||||||
ss, ok := safeString(v)
|
|
||||||
return writeStringValue(w, ss, ok)
|
|
||||||
default:
|
|
||||||
rvalue := reflect.ValueOf(value)
|
|
||||||
switch rvalue.Kind() {
|
|
||||||
case reflect.Array, reflect.Chan, reflect.Func, reflect.Map, reflect.Slice, reflect.Struct:
|
|
||||||
return ErrUnsupportedValueType
|
|
||||||
case reflect.Ptr:
|
|
||||||
if rvalue.IsNil() {
|
|
||||||
return writeBytesValue(w, null)
|
|
||||||
}
|
|
||||||
return writeValue(w, rvalue.Elem().Interface())
|
|
||||||
}
|
|
||||||
return writeStringValue(w, fmt.Sprint(v), true)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func needsQuotedValueRune(r rune) bool {
|
|
||||||
return r <= ' ' || r == '=' || r == '"' || r == utf8.RuneError
|
|
||||||
}
|
|
||||||
|
|
||||||
func writeStringValue(w io.Writer, value string, ok bool) error {
|
|
||||||
var err error
|
|
||||||
if ok && value == "null" {
|
|
||||||
_, err = io.WriteString(w, `"null"`)
|
|
||||||
} else if strings.IndexFunc(value, needsQuotedValueRune) != -1 {
|
|
||||||
_, err = writeQuotedString(w, value)
|
|
||||||
} else {
|
|
||||||
_, err = io.WriteString(w, value)
|
|
||||||
}
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
func writeBytesValue(w io.Writer, value []byte) error {
|
|
||||||
var err error
|
|
||||||
if bytes.IndexFunc(value, needsQuotedValueRune) != -1 {
|
|
||||||
_, err = writeQuotedBytes(w, value)
|
|
||||||
} else {
|
|
||||||
_, err = w.Write(value)
|
|
||||||
}
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
// EndRecord writes a newline character to the stream and resets the encoder
|
|
||||||
// to the beginning of a new record.
|
|
||||||
func (enc *Encoder) EndRecord() error {
|
|
||||||
_, err := enc.w.Write(newline)
|
|
||||||
if err == nil {
|
|
||||||
enc.needSep = false
|
|
||||||
}
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
// Reset resets the encoder to the beginning of a new record.
|
|
||||||
func (enc *Encoder) Reset() {
|
|
||||||
enc.needSep = false
|
|
||||||
}
|
|
||||||
|
|
||||||
func safeError(err error) (s string, ok bool) {
|
|
||||||
defer func() {
|
|
||||||
if panicVal := recover(); panicVal != nil {
|
|
||||||
if v := reflect.ValueOf(err); v.Kind() == reflect.Ptr && v.IsNil() {
|
|
||||||
s, ok = "null", false
|
|
||||||
} else {
|
|
||||||
panic(panicVal)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
s, ok = err.Error(), true
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
func safeString(str fmt.Stringer) (s string, ok bool) {
|
|
||||||
defer func() {
|
|
||||||
if panicVal := recover(); panicVal != nil {
|
|
||||||
if v := reflect.ValueOf(str); v.Kind() == reflect.Ptr && v.IsNil() {
|
|
||||||
s, ok = "null", false
|
|
||||||
} else {
|
|
||||||
panic(panicVal)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
s, ok = str.String(), true
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
func safeMarshal(tm encoding.TextMarshaler) (b []byte, err error) {
|
|
||||||
defer func() {
|
|
||||||
if panicVal := recover(); panicVal != nil {
|
|
||||||
if v := reflect.ValueOf(tm); v.Kind() == reflect.Ptr && v.IsNil() {
|
|
||||||
b, err = nil, nil
|
|
||||||
} else {
|
|
||||||
panic(panicVal)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
b, err = tm.MarshalText()
|
|
||||||
if err != nil {
|
|
||||||
return nil, &MarshalerError{
|
|
||||||
Type: reflect.TypeOf(tm),
|
|
||||||
Err: err,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return
|
|
||||||
}
|
|
126
vendor/github.com/go-logfmt/logfmt/fuzz.go
generated
vendored
126
vendor/github.com/go-logfmt/logfmt/fuzz.go
generated
vendored
@ -1,126 +0,0 @@
|
|||||||
// +build gofuzz
|
|
||||||
|
|
||||||
package logfmt
|
|
||||||
|
|
||||||
import (
|
|
||||||
"bufio"
|
|
||||||
"bytes"
|
|
||||||
"fmt"
|
|
||||||
"io"
|
|
||||||
"reflect"
|
|
||||||
|
|
||||||
kr "github.com/kr/logfmt"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Fuzz checks reserialized data matches
|
|
||||||
func Fuzz(data []byte) int {
|
|
||||||
parsed, err := parse(data)
|
|
||||||
if err != nil {
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
var w1 bytes.Buffer
|
|
||||||
if err = write(parsed, &w1); err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
parsed, err = parse(w1.Bytes())
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
var w2 bytes.Buffer
|
|
||||||
if err = write(parsed, &w2); err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
if !bytes.Equal(w1.Bytes(), w2.Bytes()) {
|
|
||||||
panic(fmt.Sprintf("reserialized data does not match:\n%q\n%q\n", w1.Bytes(), w2.Bytes()))
|
|
||||||
}
|
|
||||||
return 1
|
|
||||||
}
|
|
||||||
|
|
||||||
// FuzzVsKR checks go-logfmt/logfmt against kr/logfmt
|
|
||||||
func FuzzVsKR(data []byte) int {
|
|
||||||
parsed, err := parse(data)
|
|
||||||
parsedKR, errKR := parseKR(data)
|
|
||||||
|
|
||||||
// github.com/go-logfmt/logfmt is a stricter parser. It returns errors for
|
|
||||||
// more inputs than github.com/kr/logfmt. Ignore any inputs that have a
|
|
||||||
// stict error.
|
|
||||||
if err != nil {
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
// Fail if the more forgiving parser finds an error not found by the
|
|
||||||
// stricter parser.
|
|
||||||
if errKR != nil {
|
|
||||||
panic(fmt.Sprintf("unmatched error: %v", errKR))
|
|
||||||
}
|
|
||||||
|
|
||||||
if !reflect.DeepEqual(parsed, parsedKR) {
|
|
||||||
panic(fmt.Sprintf("parsers disagree:\n%+v\n%+v\n", parsed, parsedKR))
|
|
||||||
}
|
|
||||||
return 1
|
|
||||||
}
|
|
||||||
|
|
||||||
type kv struct {
|
|
||||||
k, v []byte
|
|
||||||
}
|
|
||||||
|
|
||||||
func parse(data []byte) ([][]kv, error) {
|
|
||||||
var got [][]kv
|
|
||||||
dec := NewDecoder(bytes.NewReader(data))
|
|
||||||
for dec.ScanRecord() {
|
|
||||||
var kvs []kv
|
|
||||||
for dec.ScanKeyval() {
|
|
||||||
kvs = append(kvs, kv{dec.Key(), dec.Value()})
|
|
||||||
}
|
|
||||||
got = append(got, kvs)
|
|
||||||
}
|
|
||||||
return got, dec.Err()
|
|
||||||
}
|
|
||||||
|
|
||||||
func parseKR(data []byte) ([][]kv, error) {
|
|
||||||
var (
|
|
||||||
s = bufio.NewScanner(bytes.NewReader(data))
|
|
||||||
err error
|
|
||||||
h saveHandler
|
|
||||||
got [][]kv
|
|
||||||
)
|
|
||||||
for err == nil && s.Scan() {
|
|
||||||
h.kvs = nil
|
|
||||||
err = kr.Unmarshal(s.Bytes(), &h)
|
|
||||||
got = append(got, h.kvs)
|
|
||||||
}
|
|
||||||
if err == nil {
|
|
||||||
err = s.Err()
|
|
||||||
}
|
|
||||||
return got, err
|
|
||||||
}
|
|
||||||
|
|
||||||
type saveHandler struct {
|
|
||||||
kvs []kv
|
|
||||||
}
|
|
||||||
|
|
||||||
func (h *saveHandler) HandleLogfmt(key, val []byte) error {
|
|
||||||
if len(key) == 0 {
|
|
||||||
key = nil
|
|
||||||
}
|
|
||||||
if len(val) == 0 {
|
|
||||||
val = nil
|
|
||||||
}
|
|
||||||
h.kvs = append(h.kvs, kv{key, val})
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func write(recs [][]kv, w io.Writer) error {
|
|
||||||
enc := NewEncoder(w)
|
|
||||||
for _, rec := range recs {
|
|
||||||
for _, f := range rec {
|
|
||||||
if err := enc.EncodeKeyval(f.k, f.v); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if err := enc.EndRecord(); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
277
vendor/github.com/go-logfmt/logfmt/jsonstring.go
generated
vendored
277
vendor/github.com/go-logfmt/logfmt/jsonstring.go
generated
vendored
@ -1,277 +0,0 @@
|
|||||||
package logfmt
|
|
||||||
|
|
||||||
import (
|
|
||||||
"bytes"
|
|
||||||
"io"
|
|
||||||
"strconv"
|
|
||||||
"sync"
|
|
||||||
"unicode"
|
|
||||||
"unicode/utf16"
|
|
||||||
"unicode/utf8"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Taken from Go's encoding/json and modified for use here.
|
|
||||||
|
|
||||||
// Copyright 2010 The Go Authors. All rights reserved.
|
|
||||||
// Use of this source code is governed by a BSD-style
|
|
||||||
// license that can be found in the LICENSE file.
|
|
||||||
|
|
||||||
var hex = "0123456789abcdef"
|
|
||||||
|
|
||||||
var bufferPool = sync.Pool{
|
|
||||||
New: func() interface{} {
|
|
||||||
return &bytes.Buffer{}
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
func getBuffer() *bytes.Buffer {
|
|
||||||
return bufferPool.Get().(*bytes.Buffer)
|
|
||||||
}
|
|
||||||
|
|
||||||
func poolBuffer(buf *bytes.Buffer) {
|
|
||||||
buf.Reset()
|
|
||||||
bufferPool.Put(buf)
|
|
||||||
}
|
|
||||||
|
|
||||||
// NOTE: keep in sync with writeQuotedBytes below.
|
|
||||||
func writeQuotedString(w io.Writer, s string) (int, error) {
|
|
||||||
buf := getBuffer()
|
|
||||||
buf.WriteByte('"')
|
|
||||||
start := 0
|
|
||||||
for i := 0; i < len(s); {
|
|
||||||
if b := s[i]; b < utf8.RuneSelf {
|
|
||||||
if 0x20 <= b && b != '\\' && b != '"' {
|
|
||||||
i++
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
if start < i {
|
|
||||||
buf.WriteString(s[start:i])
|
|
||||||
}
|
|
||||||
switch b {
|
|
||||||
case '\\', '"':
|
|
||||||
buf.WriteByte('\\')
|
|
||||||
buf.WriteByte(b)
|
|
||||||
case '\n':
|
|
||||||
buf.WriteByte('\\')
|
|
||||||
buf.WriteByte('n')
|
|
||||||
case '\r':
|
|
||||||
buf.WriteByte('\\')
|
|
||||||
buf.WriteByte('r')
|
|
||||||
case '\t':
|
|
||||||
buf.WriteByte('\\')
|
|
||||||
buf.WriteByte('t')
|
|
||||||
default:
|
|
||||||
// This encodes bytes < 0x20 except for \n, \r, and \t.
|
|
||||||
buf.WriteString(`\u00`)
|
|
||||||
buf.WriteByte(hex[b>>4])
|
|
||||||
buf.WriteByte(hex[b&0xF])
|
|
||||||
}
|
|
||||||
i++
|
|
||||||
start = i
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
c, size := utf8.DecodeRuneInString(s[i:])
|
|
||||||
if c == utf8.RuneError {
|
|
||||||
if start < i {
|
|
||||||
buf.WriteString(s[start:i])
|
|
||||||
}
|
|
||||||
buf.WriteString(`\ufffd`)
|
|
||||||
i += size
|
|
||||||
start = i
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
i += size
|
|
||||||
}
|
|
||||||
if start < len(s) {
|
|
||||||
buf.WriteString(s[start:])
|
|
||||||
}
|
|
||||||
buf.WriteByte('"')
|
|
||||||
n, err := w.Write(buf.Bytes())
|
|
||||||
poolBuffer(buf)
|
|
||||||
return n, err
|
|
||||||
}
|
|
||||||
|
|
||||||
// NOTE: keep in sync with writeQuoteString above.
|
|
||||||
func writeQuotedBytes(w io.Writer, s []byte) (int, error) {
|
|
||||||
buf := getBuffer()
|
|
||||||
buf.WriteByte('"')
|
|
||||||
start := 0
|
|
||||||
for i := 0; i < len(s); {
|
|
||||||
if b := s[i]; b < utf8.RuneSelf {
|
|
||||||
if 0x20 <= b && b != '\\' && b != '"' {
|
|
||||||
i++
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
if start < i {
|
|
||||||
buf.Write(s[start:i])
|
|
||||||
}
|
|
||||||
switch b {
|
|
||||||
case '\\', '"':
|
|
||||||
buf.WriteByte('\\')
|
|
||||||
buf.WriteByte(b)
|
|
||||||
case '\n':
|
|
||||||
buf.WriteByte('\\')
|
|
||||||
buf.WriteByte('n')
|
|
||||||
case '\r':
|
|
||||||
buf.WriteByte('\\')
|
|
||||||
buf.WriteByte('r')
|
|
||||||
case '\t':
|
|
||||||
buf.WriteByte('\\')
|
|
||||||
buf.WriteByte('t')
|
|
||||||
default:
|
|
||||||
// This encodes bytes < 0x20 except for \n, \r, and \t.
|
|
||||||
buf.WriteString(`\u00`)
|
|
||||||
buf.WriteByte(hex[b>>4])
|
|
||||||
buf.WriteByte(hex[b&0xF])
|
|
||||||
}
|
|
||||||
i++
|
|
||||||
start = i
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
c, size := utf8.DecodeRune(s[i:])
|
|
||||||
if c == utf8.RuneError {
|
|
||||||
if start < i {
|
|
||||||
buf.Write(s[start:i])
|
|
||||||
}
|
|
||||||
buf.WriteString(`\ufffd`)
|
|
||||||
i += size
|
|
||||||
start = i
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
i += size
|
|
||||||
}
|
|
||||||
if start < len(s) {
|
|
||||||
buf.Write(s[start:])
|
|
||||||
}
|
|
||||||
buf.WriteByte('"')
|
|
||||||
n, err := w.Write(buf.Bytes())
|
|
||||||
poolBuffer(buf)
|
|
||||||
return n, err
|
|
||||||
}
|
|
||||||
|
|
||||||
// getu4 decodes \uXXXX from the beginning of s, returning the hex value,
|
|
||||||
// or it returns -1.
|
|
||||||
func getu4(s []byte) rune {
|
|
||||||
if len(s) < 6 || s[0] != '\\' || s[1] != 'u' {
|
|
||||||
return -1
|
|
||||||
}
|
|
||||||
r, err := strconv.ParseUint(string(s[2:6]), 16, 64)
|
|
||||||
if err != nil {
|
|
||||||
return -1
|
|
||||||
}
|
|
||||||
return rune(r)
|
|
||||||
}
|
|
||||||
|
|
||||||
func unquoteBytes(s []byte) (t []byte, ok bool) {
|
|
||||||
if len(s) < 2 || s[0] != '"' || s[len(s)-1] != '"' {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
s = s[1 : len(s)-1]
|
|
||||||
|
|
||||||
// Check for unusual characters. If there are none,
|
|
||||||
// then no unquoting is needed, so return a slice of the
|
|
||||||
// original bytes.
|
|
||||||
r := 0
|
|
||||||
for r < len(s) {
|
|
||||||
c := s[r]
|
|
||||||
if c == '\\' || c == '"' || c < ' ' {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
if c < utf8.RuneSelf {
|
|
||||||
r++
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
rr, size := utf8.DecodeRune(s[r:])
|
|
||||||
if rr == utf8.RuneError {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
r += size
|
|
||||||
}
|
|
||||||
if r == len(s) {
|
|
||||||
return s, true
|
|
||||||
}
|
|
||||||
|
|
||||||
b := make([]byte, len(s)+2*utf8.UTFMax)
|
|
||||||
w := copy(b, s[0:r])
|
|
||||||
for r < len(s) {
|
|
||||||
// Out of room? Can only happen if s is full of
|
|
||||||
// malformed UTF-8 and we're replacing each
|
|
||||||
// byte with RuneError.
|
|
||||||
if w >= len(b)-2*utf8.UTFMax {
|
|
||||||
nb := make([]byte, (len(b)+utf8.UTFMax)*2)
|
|
||||||
copy(nb, b[0:w])
|
|
||||||
b = nb
|
|
||||||
}
|
|
||||||
switch c := s[r]; {
|
|
||||||
case c == '\\':
|
|
||||||
r++
|
|
||||||
if r >= len(s) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
switch s[r] {
|
|
||||||
default:
|
|
||||||
return
|
|
||||||
case '"', '\\', '/', '\'':
|
|
||||||
b[w] = s[r]
|
|
||||||
r++
|
|
||||||
w++
|
|
||||||
case 'b':
|
|
||||||
b[w] = '\b'
|
|
||||||
r++
|
|
||||||
w++
|
|
||||||
case 'f':
|
|
||||||
b[w] = '\f'
|
|
||||||
r++
|
|
||||||
w++
|
|
||||||
case 'n':
|
|
||||||
b[w] = '\n'
|
|
||||||
r++
|
|
||||||
w++
|
|
||||||
case 'r':
|
|
||||||
b[w] = '\r'
|
|
||||||
r++
|
|
||||||
w++
|
|
||||||
case 't':
|
|
||||||
b[w] = '\t'
|
|
||||||
r++
|
|
||||||
w++
|
|
||||||
case 'u':
|
|
||||||
r--
|
|
||||||
rr := getu4(s[r:])
|
|
||||||
if rr < 0 {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
r += 6
|
|
||||||
if utf16.IsSurrogate(rr) {
|
|
||||||
rr1 := getu4(s[r:])
|
|
||||||
if dec := utf16.DecodeRune(rr, rr1); dec != unicode.ReplacementChar {
|
|
||||||
// A valid pair; consume.
|
|
||||||
r += 6
|
|
||||||
w += utf8.EncodeRune(b[w:], dec)
|
|
||||||
break
|
|
||||||
}
|
|
||||||
// Invalid surrogate; fall back to replacement rune.
|
|
||||||
rr = unicode.ReplacementChar
|
|
||||||
}
|
|
||||||
w += utf8.EncodeRune(b[w:], rr)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Quote, control characters are invalid.
|
|
||||||
case c == '"', c < ' ':
|
|
||||||
return
|
|
||||||
|
|
||||||
// ASCII
|
|
||||||
case c < utf8.RuneSelf:
|
|
||||||
b[w] = c
|
|
||||||
r++
|
|
||||||
w++
|
|
||||||
|
|
||||||
// Coerce to well-formed UTF-8.
|
|
||||||
default:
|
|
||||||
rr, size := utf8.DecodeRune(s[r:])
|
|
||||||
r += size
|
|
||||||
w += utf8.EncodeRune(b[w:], rr)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return b[0:w], true
|
|
||||||
}
|
|
21
vendor/github.com/go-stack/stack/LICENSE.md
generated
vendored
21
vendor/github.com/go-stack/stack/LICENSE.md
generated
vendored
@ -1,21 +0,0 @@
|
|||||||
The MIT License (MIT)
|
|
||||||
|
|
||||||
Copyright (c) 2014 Chris Hines
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
|
||||||
copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
SOFTWARE.
|
|
38
vendor/github.com/go-stack/stack/README.md
generated
vendored
38
vendor/github.com/go-stack/stack/README.md
generated
vendored
@ -1,38 +0,0 @@
|
|||||||
[![GoDoc](https://godoc.org/github.com/go-stack/stack?status.svg)](https://godoc.org/github.com/go-stack/stack)
|
|
||||||
[![Go Report Card](https://goreportcard.com/badge/go-stack/stack)](https://goreportcard.com/report/go-stack/stack)
|
|
||||||
[![TravisCI](https://travis-ci.org/go-stack/stack.svg?branch=master)](https://travis-ci.org/go-stack/stack)
|
|
||||||
[![Coverage Status](https://coveralls.io/repos/github/go-stack/stack/badge.svg?branch=master)](https://coveralls.io/github/go-stack/stack?branch=master)
|
|
||||||
|
|
||||||
# stack
|
|
||||||
|
|
||||||
Package stack implements utilities to capture, manipulate, and format call
|
|
||||||
stacks. It provides a simpler API than package runtime.
|
|
||||||
|
|
||||||
The implementation takes care of the minutia and special cases of interpreting
|
|
||||||
the program counter (pc) values returned by runtime.Callers.
|
|
||||||
|
|
||||||
## Versioning
|
|
||||||
|
|
||||||
Package stack publishes releases via [semver](http://semver.org/) compatible Git
|
|
||||||
tags prefixed with a single 'v'. The master branch always contains the latest
|
|
||||||
release. The develop branch contains unreleased commits.
|
|
||||||
|
|
||||||
## Formatting
|
|
||||||
|
|
||||||
Package stack's types implement fmt.Formatter, which provides a simple and
|
|
||||||
flexible way to declaratively configure formatting when used with logging or
|
|
||||||
error tracking packages.
|
|
||||||
|
|
||||||
```go
|
|
||||||
func DoTheThing() {
|
|
||||||
c := stack.Caller(0)
|
|
||||||
log.Print(c) // "source.go:10"
|
|
||||||
log.Printf("%+v", c) // "pkg/path/source.go:10"
|
|
||||||
log.Printf("%n", c) // "DoTheThing"
|
|
||||||
|
|
||||||
s := stack.Trace().TrimRuntime()
|
|
||||||
log.Print(s) // "[source.go:15 caller.go:42 main.go:14]"
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
See the docs for all of the supported formatting options.
|
|
349
vendor/github.com/go-stack/stack/stack.go
generated
vendored
349
vendor/github.com/go-stack/stack/stack.go
generated
vendored
@ -1,349 +0,0 @@
|
|||||||
// Package stack implements utilities to capture, manipulate, and format call
|
|
||||||
// stacks. It provides a simpler API than package runtime.
|
|
||||||
//
|
|
||||||
// The implementation takes care of the minutia and special cases of
|
|
||||||
// interpreting the program counter (pc) values returned by runtime.Callers.
|
|
||||||
//
|
|
||||||
// Package stack's types implement fmt.Formatter, which provides a simple and
|
|
||||||
// flexible way to declaratively configure formatting when used with logging
|
|
||||||
// or error tracking packages.
|
|
||||||
package stack
|
|
||||||
|
|
||||||
import (
|
|
||||||
"bytes"
|
|
||||||
"errors"
|
|
||||||
"fmt"
|
|
||||||
"io"
|
|
||||||
"runtime"
|
|
||||||
"strconv"
|
|
||||||
"strings"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Call records a single function invocation from a goroutine stack.
|
|
||||||
type Call struct {
|
|
||||||
fn *runtime.Func
|
|
||||||
pc uintptr
|
|
||||||
}
|
|
||||||
|
|
||||||
// Caller returns a Call from the stack of the current goroutine. The argument
|
|
||||||
// skip is the number of stack frames to ascend, with 0 identifying the
|
|
||||||
// calling function.
|
|
||||||
func Caller(skip int) Call {
|
|
||||||
var pcs [2]uintptr
|
|
||||||
n := runtime.Callers(skip+1, pcs[:])
|
|
||||||
|
|
||||||
var c Call
|
|
||||||
|
|
||||||
if n < 2 {
|
|
||||||
return c
|
|
||||||
}
|
|
||||||
|
|
||||||
c.pc = pcs[1]
|
|
||||||
if runtime.FuncForPC(pcs[0]) != sigpanic {
|
|
||||||
c.pc--
|
|
||||||
}
|
|
||||||
c.fn = runtime.FuncForPC(c.pc)
|
|
||||||
return c
|
|
||||||
}
|
|
||||||
|
|
||||||
// String implements fmt.Stinger. It is equivalent to fmt.Sprintf("%v", c).
|
|
||||||
func (c Call) String() string {
|
|
||||||
return fmt.Sprint(c)
|
|
||||||
}
|
|
||||||
|
|
||||||
// MarshalText implements encoding.TextMarshaler. It formats the Call the same
|
|
||||||
// as fmt.Sprintf("%v", c).
|
|
||||||
func (c Call) MarshalText() ([]byte, error) {
|
|
||||||
if c.fn == nil {
|
|
||||||
return nil, ErrNoFunc
|
|
||||||
}
|
|
||||||
buf := bytes.Buffer{}
|
|
||||||
fmt.Fprint(&buf, c)
|
|
||||||
return buf.Bytes(), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// ErrNoFunc means that the Call has a nil *runtime.Func. The most likely
|
|
||||||
// cause is a Call with the zero value.
|
|
||||||
var ErrNoFunc = errors.New("no call stack information")
|
|
||||||
|
|
||||||
// Format implements fmt.Formatter with support for the following verbs.
|
|
||||||
//
|
|
||||||
// %s source file
|
|
||||||
// %d line number
|
|
||||||
// %n function name
|
|
||||||
// %v equivalent to %s:%d
|
|
||||||
//
|
|
||||||
// It accepts the '+' and '#' flags for most of the verbs as follows.
|
|
||||||
//
|
|
||||||
// %+s path of source file relative to the compile time GOPATH
|
|
||||||
// %#s full path of source file
|
|
||||||
// %+n import path qualified function name
|
|
||||||
// %+v equivalent to %+s:%d
|
|
||||||
// %#v equivalent to %#s:%d
|
|
||||||
func (c Call) Format(s fmt.State, verb rune) {
|
|
||||||
if c.fn == nil {
|
|
||||||
fmt.Fprintf(s, "%%!%c(NOFUNC)", verb)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
switch verb {
|
|
||||||
case 's', 'v':
|
|
||||||
file, line := c.fn.FileLine(c.pc)
|
|
||||||
switch {
|
|
||||||
case s.Flag('#'):
|
|
||||||
// done
|
|
||||||
case s.Flag('+'):
|
|
||||||
file = file[pkgIndex(file, c.fn.Name()):]
|
|
||||||
default:
|
|
||||||
const sep = "/"
|
|
||||||
if i := strings.LastIndex(file, sep); i != -1 {
|
|
||||||
file = file[i+len(sep):]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
io.WriteString(s, file)
|
|
||||||
if verb == 'v' {
|
|
||||||
buf := [7]byte{':'}
|
|
||||||
s.Write(strconv.AppendInt(buf[:1], int64(line), 10))
|
|
||||||
}
|
|
||||||
|
|
||||||
case 'd':
|
|
||||||
_, line := c.fn.FileLine(c.pc)
|
|
||||||
buf := [6]byte{}
|
|
||||||
s.Write(strconv.AppendInt(buf[:0], int64(line), 10))
|
|
||||||
|
|
||||||
case 'n':
|
|
||||||
name := c.fn.Name()
|
|
||||||
if !s.Flag('+') {
|
|
||||||
const pathSep = "/"
|
|
||||||
if i := strings.LastIndex(name, pathSep); i != -1 {
|
|
||||||
name = name[i+len(pathSep):]
|
|
||||||
}
|
|
||||||
const pkgSep = "."
|
|
||||||
if i := strings.Index(name, pkgSep); i != -1 {
|
|
||||||
name = name[i+len(pkgSep):]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
io.WriteString(s, name)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// PC returns the program counter for this call frame; multiple frames may
|
|
||||||
// have the same PC value.
|
|
||||||
func (c Call) PC() uintptr {
|
|
||||||
return c.pc
|
|
||||||
}
|
|
||||||
|
|
||||||
// name returns the import path qualified name of the function containing the
|
|
||||||
// call.
|
|
||||||
func (c Call) name() string {
|
|
||||||
if c.fn == nil {
|
|
||||||
return "???"
|
|
||||||
}
|
|
||||||
return c.fn.Name()
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c Call) file() string {
|
|
||||||
if c.fn == nil {
|
|
||||||
return "???"
|
|
||||||
}
|
|
||||||
file, _ := c.fn.FileLine(c.pc)
|
|
||||||
return file
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c Call) line() int {
|
|
||||||
if c.fn == nil {
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
_, line := c.fn.FileLine(c.pc)
|
|
||||||
return line
|
|
||||||
}
|
|
||||||
|
|
||||||
// CallStack records a sequence of function invocations from a goroutine
|
|
||||||
// stack.
|
|
||||||
type CallStack []Call
|
|
||||||
|
|
||||||
// String implements fmt.Stinger. It is equivalent to fmt.Sprintf("%v", cs).
|
|
||||||
func (cs CallStack) String() string {
|
|
||||||
return fmt.Sprint(cs)
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
openBracketBytes = []byte("[")
|
|
||||||
closeBracketBytes = []byte("]")
|
|
||||||
spaceBytes = []byte(" ")
|
|
||||||
)
|
|
||||||
|
|
||||||
// MarshalText implements encoding.TextMarshaler. It formats the CallStack the
|
|
||||||
// same as fmt.Sprintf("%v", cs).
|
|
||||||
func (cs CallStack) MarshalText() ([]byte, error) {
|
|
||||||
buf := bytes.Buffer{}
|
|
||||||
buf.Write(openBracketBytes)
|
|
||||||
for i, pc := range cs {
|
|
||||||
if pc.fn == nil {
|
|
||||||
return nil, ErrNoFunc
|
|
||||||
}
|
|
||||||
if i > 0 {
|
|
||||||
buf.Write(spaceBytes)
|
|
||||||
}
|
|
||||||
fmt.Fprint(&buf, pc)
|
|
||||||
}
|
|
||||||
buf.Write(closeBracketBytes)
|
|
||||||
return buf.Bytes(), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// Format implements fmt.Formatter by printing the CallStack as square brackets
|
|
||||||
// ([, ]) surrounding a space separated list of Calls each formatted with the
|
|
||||||
// supplied verb and options.
|
|
||||||
func (cs CallStack) Format(s fmt.State, verb rune) {
|
|
||||||
s.Write(openBracketBytes)
|
|
||||||
for i, pc := range cs {
|
|
||||||
if i > 0 {
|
|
||||||
s.Write(spaceBytes)
|
|
||||||
}
|
|
||||||
pc.Format(s, verb)
|
|
||||||
}
|
|
||||||
s.Write(closeBracketBytes)
|
|
||||||
}
|
|
||||||
|
|
||||||
// findSigpanic intentionally executes faulting code to generate a stack trace
|
|
||||||
// containing an entry for runtime.sigpanic.
|
|
||||||
func findSigpanic() *runtime.Func {
|
|
||||||
var fn *runtime.Func
|
|
||||||
var p *int
|
|
||||||
func() int {
|
|
||||||
defer func() {
|
|
||||||
if p := recover(); p != nil {
|
|
||||||
var pcs [512]uintptr
|
|
||||||
n := runtime.Callers(2, pcs[:])
|
|
||||||
for _, pc := range pcs[:n] {
|
|
||||||
f := runtime.FuncForPC(pc)
|
|
||||||
if f.Name() == "runtime.sigpanic" {
|
|
||||||
fn = f
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
// intentional nil pointer dereference to trigger sigpanic
|
|
||||||
return *p
|
|
||||||
}()
|
|
||||||
return fn
|
|
||||||
}
|
|
||||||
|
|
||||||
var sigpanic = findSigpanic()
|
|
||||||
|
|
||||||
// Trace returns a CallStack for the current goroutine with element 0
|
|
||||||
// identifying the calling function.
|
|
||||||
func Trace() CallStack {
|
|
||||||
var pcs [512]uintptr
|
|
||||||
n := runtime.Callers(2, pcs[:])
|
|
||||||
cs := make([]Call, n)
|
|
||||||
|
|
||||||
for i, pc := range pcs[:n] {
|
|
||||||
pcFix := pc
|
|
||||||
if i > 0 && cs[i-1].fn != sigpanic {
|
|
||||||
pcFix--
|
|
||||||
}
|
|
||||||
cs[i] = Call{
|
|
||||||
fn: runtime.FuncForPC(pcFix),
|
|
||||||
pc: pcFix,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return cs
|
|
||||||
}
|
|
||||||
|
|
||||||
// TrimBelow returns a slice of the CallStack with all entries below c
|
|
||||||
// removed.
|
|
||||||
func (cs CallStack) TrimBelow(c Call) CallStack {
|
|
||||||
for len(cs) > 0 && cs[0].pc != c.pc {
|
|
||||||
cs = cs[1:]
|
|
||||||
}
|
|
||||||
return cs
|
|
||||||
}
|
|
||||||
|
|
||||||
// TrimAbove returns a slice of the CallStack with all entries above c
|
|
||||||
// removed.
|
|
||||||
func (cs CallStack) TrimAbove(c Call) CallStack {
|
|
||||||
for len(cs) > 0 && cs[len(cs)-1].pc != c.pc {
|
|
||||||
cs = cs[:len(cs)-1]
|
|
||||||
}
|
|
||||||
return cs
|
|
||||||
}
|
|
||||||
|
|
||||||
// pkgIndex returns the index that results in file[index:] being the path of
|
|
||||||
// file relative to the compile time GOPATH, and file[:index] being the
|
|
||||||
// $GOPATH/src/ portion of file. funcName must be the name of a function in
|
|
||||||
// file as returned by runtime.Func.Name.
|
|
||||||
func pkgIndex(file, funcName string) int {
|
|
||||||
// As of Go 1.6.2 there is no direct way to know the compile time GOPATH
|
|
||||||
// at runtime, but we can infer the number of path segments in the GOPATH.
|
|
||||||
// We note that runtime.Func.Name() returns the function name qualified by
|
|
||||||
// the import path, which does not include the GOPATH. Thus we can trim
|
|
||||||
// segments from the beginning of the file path until the number of path
|
|
||||||
// separators remaining is one more than the number of path separators in
|
|
||||||
// the function name. For example, given:
|
|
||||||
//
|
|
||||||
// GOPATH /home/user
|
|
||||||
// file /home/user/src/pkg/sub/file.go
|
|
||||||
// fn.Name() pkg/sub.Type.Method
|
|
||||||
//
|
|
||||||
// We want to produce:
|
|
||||||
//
|
|
||||||
// file[:idx] == /home/user/src/
|
|
||||||
// file[idx:] == pkg/sub/file.go
|
|
||||||
//
|
|
||||||
// From this we can easily see that fn.Name() has one less path separator
|
|
||||||
// than our desired result for file[idx:]. We count separators from the
|
|
||||||
// end of the file path until it finds two more than in the function name
|
|
||||||
// and then move one character forward to preserve the initial path
|
|
||||||
// segment without a leading separator.
|
|
||||||
const sep = "/"
|
|
||||||
i := len(file)
|
|
||||||
for n := strings.Count(funcName, sep) + 2; n > 0; n-- {
|
|
||||||
i = strings.LastIndex(file[:i], sep)
|
|
||||||
if i == -1 {
|
|
||||||
i = -len(sep)
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// get back to 0 or trim the leading separator
|
|
||||||
return i + len(sep)
|
|
||||||
}
|
|
||||||
|
|
||||||
var runtimePath string
|
|
||||||
|
|
||||||
func init() {
|
|
||||||
var pcs [1]uintptr
|
|
||||||
runtime.Callers(0, pcs[:])
|
|
||||||
fn := runtime.FuncForPC(pcs[0])
|
|
||||||
file, _ := fn.FileLine(pcs[0])
|
|
||||||
|
|
||||||
idx := pkgIndex(file, fn.Name())
|
|
||||||
|
|
||||||
runtimePath = file[:idx]
|
|
||||||
if runtime.GOOS == "windows" {
|
|
||||||
runtimePath = strings.ToLower(runtimePath)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func inGoroot(c Call) bool {
|
|
||||||
file := c.file()
|
|
||||||
if len(file) == 0 || file[0] == '?' {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
if runtime.GOOS == "windows" {
|
|
||||||
file = strings.ToLower(file)
|
|
||||||
}
|
|
||||||
return strings.HasPrefix(file, runtimePath) || strings.HasSuffix(file, "/_testmain.go")
|
|
||||||
}
|
|
||||||
|
|
||||||
// TrimRuntime returns a slice of the CallStack with the topmost entries from
|
|
||||||
// the go runtime removed. It considers any calls originating from unknown
|
|
||||||
// files, files under GOROOT, or _testmain.go as part of the runtime.
|
|
||||||
func (cs CallStack) TrimRuntime() CallStack {
|
|
||||||
for len(cs) > 0 && inGoroot(cs[len(cs)-1]) {
|
|
||||||
cs = cs[:len(cs)-1]
|
|
||||||
}
|
|
||||||
return cs
|
|
||||||
}
|
|
40
vendor/github.com/golang/protobuf/Make.protobuf
generated
vendored
40
vendor/github.com/golang/protobuf/Make.protobuf
generated
vendored
@ -1,40 +0,0 @@
|
|||||||
# Go support for Protocol Buffers - Google's data interchange format
|
|
||||||
#
|
|
||||||
# Copyright 2010 The Go Authors. All rights reserved.
|
|
||||||
# https://github.com/golang/protobuf
|
|
||||||
#
|
|
||||||
# Redistribution and use in source and binary forms, with or without
|
|
||||||
# modification, are permitted provided that the following conditions are
|
|
||||||
# met:
|
|
||||||
#
|
|
||||||
# * Redistributions of source code must retain the above copyright
|
|
||||||
# notice, this list of conditions and the following disclaimer.
|
|
||||||
# * Redistributions in binary form must reproduce the above
|
|
||||||
# copyright notice, this list of conditions and the following disclaimer
|
|
||||||
# in the documentation and/or other materials provided with the
|
|
||||||
# distribution.
|
|
||||||
# * Neither the name of Google Inc. nor the names of its
|
|
||||||
# contributors may be used to endorse or promote products derived from
|
|
||||||
# this software without specific prior written permission.
|
|
||||||
#
|
|
||||||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
||||||
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
||||||
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
||||||
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
|
|
||||||
# Includable Makefile to add a rule for generating .pb.go files from .proto files
|
|
||||||
# (Google protocol buffer descriptions).
|
|
||||||
# Typical use if myproto.proto is a file in package mypackage in this directory:
|
|
||||||
#
|
|
||||||
# include $(GOROOT)/src/pkg/github.com/golang/protobuf/Make.protobuf
|
|
||||||
|
|
||||||
%.pb.go: %.proto
|
|
||||||
protoc --go_out=. $<
|
|
||||||
|
|
55
vendor/github.com/golang/protobuf/Makefile
generated
vendored
55
vendor/github.com/golang/protobuf/Makefile
generated
vendored
@ -1,55 +0,0 @@
|
|||||||
# Go support for Protocol Buffers - Google's data interchange format
|
|
||||||
#
|
|
||||||
# Copyright 2010 The Go Authors. All rights reserved.
|
|
||||||
# https://github.com/golang/protobuf
|
|
||||||
#
|
|
||||||
# Redistribution and use in source and binary forms, with or without
|
|
||||||
# modification, are permitted provided that the following conditions are
|
|
||||||
# met:
|
|
||||||
#
|
|
||||||
# * Redistributions of source code must retain the above copyright
|
|
||||||
# notice, this list of conditions and the following disclaimer.
|
|
||||||
# * Redistributions in binary form must reproduce the above
|
|
||||||
# copyright notice, this list of conditions and the following disclaimer
|
|
||||||
# in the documentation and/or other materials provided with the
|
|
||||||
# distribution.
|
|
||||||
# * Neither the name of Google Inc. nor the names of its
|
|
||||||
# contributors may be used to endorse or promote products derived from
|
|
||||||
# this software without specific prior written permission.
|
|
||||||
#
|
|
||||||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
||||||
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
||||||
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
||||||
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
|
|
||||||
|
|
||||||
all: install
|
|
||||||
|
|
||||||
install:
|
|
||||||
go install ./proto ./jsonpb ./ptypes
|
|
||||||
go install ./protoc-gen-go
|
|
||||||
|
|
||||||
test:
|
|
||||||
go test ./proto ./jsonpb ./ptypes
|
|
||||||
make -C protoc-gen-go/testdata test
|
|
||||||
|
|
||||||
clean:
|
|
||||||
go clean ./...
|
|
||||||
|
|
||||||
nuke:
|
|
||||||
go clean -i ./...
|
|
||||||
|
|
||||||
regenerate:
|
|
||||||
make -C protoc-gen-go/descriptor regenerate
|
|
||||||
make -C protoc-gen-go/plugin regenerate
|
|
||||||
make -C protoc-gen-go/testdata regenerate
|
|
||||||
make -C proto/testdata regenerate
|
|
||||||
make -C jsonpb/jsonpb_test_proto regenerate
|
|
||||||
make -C _conformance regenerate
|
|
241
vendor/github.com/golang/protobuf/README.md
generated
vendored
241
vendor/github.com/golang/protobuf/README.md
generated
vendored
@ -1,241 +0,0 @@
|
|||||||
# Go support for Protocol Buffers
|
|
||||||
|
|
||||||
Google's data interchange format.
|
|
||||||
Copyright 2010 The Go Authors.
|
|
||||||
https://github.com/golang/protobuf
|
|
||||||
|
|
||||||
This package and the code it generates requires at least Go 1.4.
|
|
||||||
|
|
||||||
This software implements Go bindings for protocol buffers. For
|
|
||||||
information about protocol buffers themselves, see
|
|
||||||
https://developers.google.com/protocol-buffers/
|
|
||||||
|
|
||||||
## Installation ##
|
|
||||||
|
|
||||||
To use this software, you must:
|
|
||||||
- Install the standard C++ implementation of protocol buffers from
|
|
||||||
https://developers.google.com/protocol-buffers/
|
|
||||||
- Of course, install the Go compiler and tools from
|
|
||||||
https://golang.org/
|
|
||||||
See
|
|
||||||
https://golang.org/doc/install
|
|
||||||
for details or, if you are using gccgo, follow the instructions at
|
|
||||||
https://golang.org/doc/install/gccgo
|
|
||||||
- Grab the code from the repository and install the proto package.
|
|
||||||
The simplest way is to run `go get -u github.com/golang/protobuf/{proto,protoc-gen-go}`.
|
|
||||||
The compiler plugin, protoc-gen-go, will be installed in $GOBIN,
|
|
||||||
defaulting to $GOPATH/bin. It must be in your $PATH for the protocol
|
|
||||||
compiler, protoc, to find it.
|
|
||||||
|
|
||||||
This software has two parts: a 'protocol compiler plugin' that
|
|
||||||
generates Go source files that, once compiled, can access and manage
|
|
||||||
protocol buffers; and a library that implements run-time support for
|
|
||||||
encoding (marshaling), decoding (unmarshaling), and accessing protocol
|
|
||||||
buffers.
|
|
||||||
|
|
||||||
There is support for gRPC in Go using protocol buffers.
|
|
||||||
See the note at the bottom of this file for details.
|
|
||||||
|
|
||||||
There are no insertion points in the plugin.
|
|
||||||
|
|
||||||
|
|
||||||
## Using protocol buffers with Go ##
|
|
||||||
|
|
||||||
Once the software is installed, there are two steps to using it.
|
|
||||||
First you must compile the protocol buffer definitions and then import
|
|
||||||
them, with the support library, into your program.
|
|
||||||
|
|
||||||
To compile the protocol buffer definition, run protoc with the --go_out
|
|
||||||
parameter set to the directory you want to output the Go code to.
|
|
||||||
|
|
||||||
protoc --go_out=. *.proto
|
|
||||||
|
|
||||||
The generated files will be suffixed .pb.go. See the Test code below
|
|
||||||
for an example using such a file.
|
|
||||||
|
|
||||||
|
|
||||||
The package comment for the proto library contains text describing
|
|
||||||
the interface provided in Go for protocol buffers. Here is an edited
|
|
||||||
version.
|
|
||||||
|
|
||||||
==========
|
|
||||||
|
|
||||||
The proto package converts data structures to and from the
|
|
||||||
wire format of protocol buffers. It works in concert with the
|
|
||||||
Go source code generated for .proto files by the protocol compiler.
|
|
||||||
|
|
||||||
A summary of the properties of the protocol buffer interface
|
|
||||||
for a protocol buffer variable v:
|
|
||||||
|
|
||||||
- Names are turned from camel_case to CamelCase for export.
|
|
||||||
- There are no methods on v to set fields; just treat
|
|
||||||
them as structure fields.
|
|
||||||
- There are getters that return a field's value if set,
|
|
||||||
and return the field's default value if unset.
|
|
||||||
The getters work even if the receiver is a nil message.
|
|
||||||
- The zero value for a struct is its correct initialization state.
|
|
||||||
All desired fields must be set before marshaling.
|
|
||||||
- A Reset() method will restore a protobuf struct to its zero state.
|
|
||||||
- Non-repeated fields are pointers to the values; nil means unset.
|
|
||||||
That is, optional or required field int32 f becomes F *int32.
|
|
||||||
- Repeated fields are slices.
|
|
||||||
- Helper functions are available to aid the setting of fields.
|
|
||||||
Helpers for getting values are superseded by the
|
|
||||||
GetFoo methods and their use is deprecated.
|
|
||||||
msg.Foo = proto.String("hello") // set field
|
|
||||||
- Constants are defined to hold the default values of all fields that
|
|
||||||
have them. They have the form Default_StructName_FieldName.
|
|
||||||
Because the getter methods handle defaulted values,
|
|
||||||
direct use of these constants should be rare.
|
|
||||||
- Enums are given type names and maps from names to values.
|
|
||||||
Enum values are prefixed with the enum's type name. Enum types have
|
|
||||||
a String method, and a Enum method to assist in message construction.
|
|
||||||
- Nested groups and enums have type names prefixed with the name of
|
|
||||||
the surrounding message type.
|
|
||||||
- Extensions are given descriptor names that start with E_,
|
|
||||||
followed by an underscore-delimited list of the nested messages
|
|
||||||
that contain it (if any) followed by the CamelCased name of the
|
|
||||||
extension field itself. HasExtension, ClearExtension, GetExtension
|
|
||||||
and SetExtension are functions for manipulating extensions.
|
|
||||||
- Oneof field sets are given a single field in their message,
|
|
||||||
with distinguished wrapper types for each possible field value.
|
|
||||||
- Marshal and Unmarshal are functions to encode and decode the wire format.
|
|
||||||
|
|
||||||
When the .proto file specifies `syntax="proto3"`, there are some differences:
|
|
||||||
|
|
||||||
- Non-repeated fields of non-message type are values instead of pointers.
|
|
||||||
- Getters are only generated for message and oneof fields.
|
|
||||||
- Enum types do not get an Enum method.
|
|
||||||
|
|
||||||
Consider file test.proto, containing
|
|
||||||
|
|
||||||
```proto
|
|
||||||
package example;
|
|
||||||
|
|
||||||
enum FOO { X = 17; };
|
|
||||||
|
|
||||||
message Test {
|
|
||||||
required string label = 1;
|
|
||||||
optional int32 type = 2 [default=77];
|
|
||||||
repeated int64 reps = 3;
|
|
||||||
optional group OptionalGroup = 4 {
|
|
||||||
required string RequiredField = 5;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
To create and play with a Test object from the example package,
|
|
||||||
|
|
||||||
```go
|
|
||||||
package main
|
|
||||||
|
|
||||||
import (
|
|
||||||
"log"
|
|
||||||
|
|
||||||
"github.com/golang/protobuf/proto"
|
|
||||||
"path/to/example"
|
|
||||||
)
|
|
||||||
|
|
||||||
func main() {
|
|
||||||
test := &example.Test {
|
|
||||||
Label: proto.String("hello"),
|
|
||||||
Type: proto.Int32(17),
|
|
||||||
Reps: []int64{1, 2, 3},
|
|
||||||
Optionalgroup: &example.Test_OptionalGroup {
|
|
||||||
RequiredField: proto.String("good bye"),
|
|
||||||
},
|
|
||||||
}
|
|
||||||
data, err := proto.Marshal(test)
|
|
||||||
if err != nil {
|
|
||||||
log.Fatal("marshaling error: ", err)
|
|
||||||
}
|
|
||||||
newTest := &example.Test{}
|
|
||||||
err = proto.Unmarshal(data, newTest)
|
|
||||||
if err != nil {
|
|
||||||
log.Fatal("unmarshaling error: ", err)
|
|
||||||
}
|
|
||||||
// Now test and newTest contain the same data.
|
|
||||||
if test.GetLabel() != newTest.GetLabel() {
|
|
||||||
log.Fatalf("data mismatch %q != %q", test.GetLabel(), newTest.GetLabel())
|
|
||||||
}
|
|
||||||
// etc.
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
## Parameters ##
|
|
||||||
|
|
||||||
To pass extra parameters to the plugin, use a comma-separated
|
|
||||||
parameter list separated from the output directory by a colon:
|
|
||||||
|
|
||||||
|
|
||||||
protoc --go_out=plugins=grpc,import_path=mypackage:. *.proto
|
|
||||||
|
|
||||||
|
|
||||||
- `import_prefix=xxx` - a prefix that is added onto the beginning of
|
|
||||||
all imports. Useful for things like generating protos in a
|
|
||||||
subdirectory, or regenerating vendored protobufs in-place.
|
|
||||||
- `import_path=foo/bar` - used as the package if no input files
|
|
||||||
declare `go_package`. If it contains slashes, everything up to the
|
|
||||||
rightmost slash is ignored.
|
|
||||||
- `plugins=plugin1+plugin2` - specifies the list of sub-plugins to
|
|
||||||
load. The only plugin in this repo is `grpc`.
|
|
||||||
- `Mfoo/bar.proto=quux/shme` - declares that foo/bar.proto is
|
|
||||||
associated with Go package quux/shme. This is subject to the
|
|
||||||
import_prefix parameter.
|
|
||||||
|
|
||||||
## gRPC Support ##
|
|
||||||
|
|
||||||
If a proto file specifies RPC services, protoc-gen-go can be instructed to
|
|
||||||
generate code compatible with gRPC (http://www.grpc.io/). To do this, pass
|
|
||||||
the `plugins` parameter to protoc-gen-go; the usual way is to insert it into
|
|
||||||
the --go_out argument to protoc:
|
|
||||||
|
|
||||||
protoc --go_out=plugins=grpc:. *.proto
|
|
||||||
|
|
||||||
## Compatibility ##
|
|
||||||
|
|
||||||
The library and the generated code are expected to be stable over time.
|
|
||||||
However, we reserve the right to make breaking changes without notice for the
|
|
||||||
following reasons:
|
|
||||||
|
|
||||||
- Security. A security issue in the specification or implementation may come to
|
|
||||||
light whose resolution requires breaking compatibility. We reserve the right
|
|
||||||
to address such security issues.
|
|
||||||
- Unspecified behavior. There are some aspects of the Protocol Buffers
|
|
||||||
specification that are undefined. Programs that depend on such unspecified
|
|
||||||
behavior may break in future releases.
|
|
||||||
- Specification errors or changes. If it becomes necessary to address an
|
|
||||||
inconsistency, incompleteness, or change in the Protocol Buffers
|
|
||||||
specification, resolving the issue could affect the meaning or legality of
|
|
||||||
existing programs. We reserve the right to address such issues, including
|
|
||||||
updating the implementations.
|
|
||||||
- Bugs. If the library has a bug that violates the specification, a program
|
|
||||||
that depends on the buggy behavior may break if the bug is fixed. We reserve
|
|
||||||
the right to fix such bugs.
|
|
||||||
- Adding methods or fields to generated structs. These may conflict with field
|
|
||||||
names that already exist in a schema, causing applications to break. When the
|
|
||||||
code generator encounters a field in the schema that would collide with a
|
|
||||||
generated field or method name, the code generator will append an underscore
|
|
||||||
to the generated field or method name.
|
|
||||||
- Adding, removing, or changing methods or fields in generated structs that
|
|
||||||
start with `XXX`. These parts of the generated code are exported out of
|
|
||||||
necessity, but should not be considered part of the public API.
|
|
||||||
- Adding, removing, or changing unexported symbols in generated code.
|
|
||||||
|
|
||||||
Any breaking changes outside of these will be announced 6 months in advance to
|
|
||||||
protobuf@googlegroups.com.
|
|
||||||
|
|
||||||
You should, whenever possible, use generated code created by the `protoc-gen-go`
|
|
||||||
tool built at the same commit as the `proto` package. The `proto` package
|
|
||||||
declares package-level constants in the form `ProtoPackageIsVersionX`.
|
|
||||||
Application code and generated code may depend on one of these constants to
|
|
||||||
ensure that compilation will fail if the available version of the proto library
|
|
||||||
is too old. Whenever we make a change to the generated code that requires newer
|
|
||||||
library support, in the same commit we will increment the version number of the
|
|
||||||
generated code and declare a new package-level constant whose name incorporates
|
|
||||||
the latest version number. Removing a compatibility constant is considered a
|
|
||||||
breaking change and would be subject to the announcement policy stated above.
|
|
||||||
|
|
||||||
The `protoc-gen-go/generator` package exposes a plugin interface,
|
|
||||||
which is used by the gRPC code generation. This interface is not
|
|
||||||
supported and is subject to incompatible changes without notice.
|
|
127
vendor/github.com/golang/protobuf/ptypes/timestamp/timestamp.pb.go
generated
vendored
127
vendor/github.com/golang/protobuf/ptypes/timestamp/timestamp.pb.go
generated
vendored
@ -1,127 +0,0 @@
|
|||||||
// Code generated by protoc-gen-go.
|
|
||||||
// source: github.com/golang/protobuf/ptypes/timestamp/timestamp.proto
|
|
||||||
// DO NOT EDIT!
|
|
||||||
|
|
||||||
/*
|
|
||||||
Package timestamp is a generated protocol buffer package.
|
|
||||||
|
|
||||||
It is generated from these files:
|
|
||||||
github.com/golang/protobuf/ptypes/timestamp/timestamp.proto
|
|
||||||
|
|
||||||
It has these top-level messages:
|
|
||||||
Timestamp
|
|
||||||
*/
|
|
||||||
package timestamp
|
|
||||||
|
|
||||||
import proto "github.com/golang/protobuf/proto"
|
|
||||||
import fmt "fmt"
|
|
||||||
import math "math"
|
|
||||||
|
|
||||||
// Reference imports to suppress errors if they are not otherwise used.
|
|
||||||
var _ = proto.Marshal
|
|
||||||
var _ = fmt.Errorf
|
|
||||||
var _ = math.Inf
|
|
||||||
|
|
||||||
// This is a compile-time assertion to ensure that this generated file
|
|
||||||
// is compatible with the proto package it is being compiled against.
|
|
||||||
// A compilation error at this line likely means your copy of the
|
|
||||||
// proto package needs to be updated.
|
|
||||||
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
|
|
||||||
|
|
||||||
// A Timestamp represents a point in time independent of any time zone
|
|
||||||
// or calendar, represented as seconds and fractions of seconds at
|
|
||||||
// nanosecond resolution in UTC Epoch time. It is encoded using the
|
|
||||||
// Proleptic Gregorian Calendar which extends the Gregorian calendar
|
|
||||||
// backwards to year one. It is encoded assuming all minutes are 60
|
|
||||||
// seconds long, i.e. leap seconds are "smeared" so that no leap second
|
|
||||||
// table is needed for interpretation. Range is from
|
|
||||||
// 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z.
|
|
||||||
// By restricting to that range, we ensure that we can convert to
|
|
||||||
// and from RFC 3339 date strings.
|
|
||||||
// See [https://www.ietf.org/rfc/rfc3339.txt](https://www.ietf.org/rfc/rfc3339.txt).
|
|
||||||
//
|
|
||||||
// Example 1: Compute Timestamp from POSIX `time()`.
|
|
||||||
//
|
|
||||||
// Timestamp timestamp;
|
|
||||||
// timestamp.set_seconds(time(NULL));
|
|
||||||
// timestamp.set_nanos(0);
|
|
||||||
//
|
|
||||||
// Example 2: Compute Timestamp from POSIX `gettimeofday()`.
|
|
||||||
//
|
|
||||||
// struct timeval tv;
|
|
||||||
// gettimeofday(&tv, NULL);
|
|
||||||
//
|
|
||||||
// Timestamp timestamp;
|
|
||||||
// timestamp.set_seconds(tv.tv_sec);
|
|
||||||
// timestamp.set_nanos(tv.tv_usec * 1000);
|
|
||||||
//
|
|
||||||
// Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.
|
|
||||||
//
|
|
||||||
// FILETIME ft;
|
|
||||||
// GetSystemTimeAsFileTime(&ft);
|
|
||||||
// UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;
|
|
||||||
//
|
|
||||||
// // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z
|
|
||||||
// // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.
|
|
||||||
// Timestamp timestamp;
|
|
||||||
// timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));
|
|
||||||
// timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));
|
|
||||||
//
|
|
||||||
// Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.
|
|
||||||
//
|
|
||||||
// long millis = System.currentTimeMillis();
|
|
||||||
//
|
|
||||||
// Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)
|
|
||||||
// .setNanos((int) ((millis % 1000) * 1000000)).build();
|
|
||||||
//
|
|
||||||
//
|
|
||||||
// Example 5: Compute Timestamp from current time in Python.
|
|
||||||
//
|
|
||||||
// now = time.time()
|
|
||||||
// seconds = int(now)
|
|
||||||
// nanos = int((now - seconds) * 10**9)
|
|
||||||
// timestamp = Timestamp(seconds=seconds, nanos=nanos)
|
|
||||||
//
|
|
||||||
//
|
|
||||||
type Timestamp struct {
|
|
||||||
// Represents seconds of UTC time since Unix epoch
|
|
||||||
// 1970-01-01T00:00:00Z. Must be from from 0001-01-01T00:00:00Z to
|
|
||||||
// 9999-12-31T23:59:59Z inclusive.
|
|
||||||
Seconds int64 `protobuf:"varint,1,opt,name=seconds" json:"seconds,omitempty"`
|
|
||||||
// Non-negative fractions of a second at nanosecond resolution. Negative
|
|
||||||
// second values with fractions must still have non-negative nanos values
|
|
||||||
// that count forward in time. Must be from 0 to 999,999,999
|
|
||||||
// inclusive.
|
|
||||||
Nanos int32 `protobuf:"varint,2,opt,name=nanos" json:"nanos,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *Timestamp) Reset() { *m = Timestamp{} }
|
|
||||||
func (m *Timestamp) String() string { return proto.CompactTextString(m) }
|
|
||||||
func (*Timestamp) ProtoMessage() {}
|
|
||||||
func (*Timestamp) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
|
|
||||||
func (*Timestamp) XXX_WellKnownType() string { return "Timestamp" }
|
|
||||||
|
|
||||||
func init() {
|
|
||||||
proto.RegisterType((*Timestamp)(nil), "google.protobuf.Timestamp")
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() {
|
|
||||||
proto.RegisterFile("github.com/golang/protobuf/ptypes/timestamp/timestamp.proto", fileDescriptor0)
|
|
||||||
}
|
|
||||||
|
|
||||||
var fileDescriptor0 = []byte{
|
|
||||||
// 194 bytes of a gzipped FileDescriptorProto
|
|
||||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xe2, 0xb2, 0x4e, 0xcf, 0x2c, 0xc9,
|
|
||||||
0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x4f, 0xcf, 0xcf, 0x49, 0xcc, 0x4b, 0xd7, 0x2f, 0x28,
|
|
||||||
0xca, 0x2f, 0xc9, 0x4f, 0x2a, 0x4d, 0xd3, 0x2f, 0x28, 0xa9, 0x2c, 0x48, 0x2d, 0xd6, 0x2f, 0xc9,
|
|
||||||
0xcc, 0x4d, 0x2d, 0x2e, 0x49, 0xcc, 0x2d, 0x40, 0xb0, 0xf4, 0xc0, 0x6a, 0x84, 0xf8, 0xd3, 0xf3,
|
|
||||||
0xf3, 0xd3, 0x73, 0x52, 0xf5, 0x60, 0x3a, 0x94, 0xac, 0xb9, 0x38, 0x43, 0x60, 0x6a, 0x84, 0x24,
|
|
||||||
0xb8, 0xd8, 0x8b, 0x53, 0x93, 0xf3, 0xf3, 0x52, 0x8a, 0x25, 0x18, 0x15, 0x18, 0x35, 0x98, 0x83,
|
|
||||||
0x60, 0x5c, 0x21, 0x11, 0x2e, 0xd6, 0xbc, 0xc4, 0xbc, 0xfc, 0x62, 0x09, 0x26, 0x05, 0x46, 0x0d,
|
|
||||||
0xd6, 0x20, 0x08, 0xc7, 0xa9, 0x91, 0x91, 0x4b, 0x38, 0x39, 0x3f, 0x57, 0x0f, 0xcd, 0x50, 0x27,
|
|
||||||
0x3e, 0xb8, 0x91, 0x01, 0x20, 0xa1, 0x00, 0xc6, 0x28, 0x6d, 0x12, 0x1c, 0xbd, 0x80, 0x91, 0xf1,
|
|
||||||
0x07, 0x23, 0xe3, 0x22, 0x26, 0x66, 0xf7, 0x00, 0xa7, 0x55, 0x4c, 0x72, 0xee, 0x10, 0xc3, 0x03,
|
|
||||||
0xa0, 0xca, 0xf5, 0xc2, 0x53, 0x73, 0x72, 0xbc, 0xf3, 0xf2, 0xcb, 0xf3, 0x42, 0x40, 0xda, 0x92,
|
|
||||||
0xd8, 0xc0, 0xe6, 0x18, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0x17, 0x5f, 0xb7, 0xdc, 0x17, 0x01,
|
|
||||||
0x00, 0x00,
|
|
||||||
}
|
|
111
vendor/github.com/golang/protobuf/ptypes/timestamp/timestamp.proto
generated
vendored
111
vendor/github.com/golang/protobuf/ptypes/timestamp/timestamp.proto
generated
vendored
@ -1,111 +0,0 @@
|
|||||||
// Protocol Buffers - Google's data interchange format
|
|
||||||
// Copyright 2008 Google Inc. All rights reserved.
|
|
||||||
// https://developers.google.com/protocol-buffers/
|
|
||||||
//
|
|
||||||
// Redistribution and use in source and binary forms, with or without
|
|
||||||
// modification, are permitted provided that the following conditions are
|
|
||||||
// met:
|
|
||||||
//
|
|
||||||
// * Redistributions of source code must retain the above copyright
|
|
||||||
// notice, this list of conditions and the following disclaimer.
|
|
||||||
// * Redistributions in binary form must reproduce the above
|
|
||||||
// copyright notice, this list of conditions and the following disclaimer
|
|
||||||
// in the documentation and/or other materials provided with the
|
|
||||||
// distribution.
|
|
||||||
// * Neither the name of Google Inc. nor the names of its
|
|
||||||
// contributors may be used to endorse or promote products derived from
|
|
||||||
// this software without specific prior written permission.
|
|
||||||
//
|
|
||||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
||||||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
||||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
||||||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
|
|
||||||
syntax = "proto3";
|
|
||||||
|
|
||||||
package google.protobuf;
|
|
||||||
|
|
||||||
option csharp_namespace = "Google.Protobuf.WellKnownTypes";
|
|
||||||
option cc_enable_arenas = true;
|
|
||||||
option go_package = "github.com/golang/protobuf/ptypes/timestamp";
|
|
||||||
option java_package = "com.google.protobuf";
|
|
||||||
option java_outer_classname = "TimestampProto";
|
|
||||||
option java_multiple_files = true;
|
|
||||||
option java_generate_equals_and_hash = true;
|
|
||||||
option objc_class_prefix = "GPB";
|
|
||||||
|
|
||||||
// A Timestamp represents a point in time independent of any time zone
|
|
||||||
// or calendar, represented as seconds and fractions of seconds at
|
|
||||||
// nanosecond resolution in UTC Epoch time. It is encoded using the
|
|
||||||
// Proleptic Gregorian Calendar which extends the Gregorian calendar
|
|
||||||
// backwards to year one. It is encoded assuming all minutes are 60
|
|
||||||
// seconds long, i.e. leap seconds are "smeared" so that no leap second
|
|
||||||
// table is needed for interpretation. Range is from
|
|
||||||
// 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z.
|
|
||||||
// By restricting to that range, we ensure that we can convert to
|
|
||||||
// and from RFC 3339 date strings.
|
|
||||||
// See [https://www.ietf.org/rfc/rfc3339.txt](https://www.ietf.org/rfc/rfc3339.txt).
|
|
||||||
//
|
|
||||||
// Example 1: Compute Timestamp from POSIX `time()`.
|
|
||||||
//
|
|
||||||
// Timestamp timestamp;
|
|
||||||
// timestamp.set_seconds(time(NULL));
|
|
||||||
// timestamp.set_nanos(0);
|
|
||||||
//
|
|
||||||
// Example 2: Compute Timestamp from POSIX `gettimeofday()`.
|
|
||||||
//
|
|
||||||
// struct timeval tv;
|
|
||||||
// gettimeofday(&tv, NULL);
|
|
||||||
//
|
|
||||||
// Timestamp timestamp;
|
|
||||||
// timestamp.set_seconds(tv.tv_sec);
|
|
||||||
// timestamp.set_nanos(tv.tv_usec * 1000);
|
|
||||||
//
|
|
||||||
// Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.
|
|
||||||
//
|
|
||||||
// FILETIME ft;
|
|
||||||
// GetSystemTimeAsFileTime(&ft);
|
|
||||||
// UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;
|
|
||||||
//
|
|
||||||
// // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z
|
|
||||||
// // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.
|
|
||||||
// Timestamp timestamp;
|
|
||||||
// timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));
|
|
||||||
// timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));
|
|
||||||
//
|
|
||||||
// Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.
|
|
||||||
//
|
|
||||||
// long millis = System.currentTimeMillis();
|
|
||||||
//
|
|
||||||
// Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)
|
|
||||||
// .setNanos((int) ((millis % 1000) * 1000000)).build();
|
|
||||||
//
|
|
||||||
//
|
|
||||||
// Example 5: Compute Timestamp from current time in Python.
|
|
||||||
//
|
|
||||||
// now = time.time()
|
|
||||||
// seconds = int(now)
|
|
||||||
// nanos = int((now - seconds) * 10**9)
|
|
||||||
// timestamp = Timestamp(seconds=seconds, nanos=nanos)
|
|
||||||
//
|
|
||||||
//
|
|
||||||
message Timestamp {
|
|
||||||
|
|
||||||
// Represents seconds of UTC time since Unix epoch
|
|
||||||
// 1970-01-01T00:00:00Z. Must be from from 0001-01-01T00:00:00Z to
|
|
||||||
// 9999-12-31T23:59:59Z inclusive.
|
|
||||||
int64 seconds = 1;
|
|
||||||
|
|
||||||
// Non-negative fractions of a second at nanosecond resolution. Negative
|
|
||||||
// second values with fractions must still have non-negative nanos values
|
|
||||||
// that count forward in time. Must be from 0 to 999,999,999
|
|
||||||
// inclusive.
|
|
||||||
int32 nanos = 2;
|
|
||||||
}
|
|
169
vendor/github.com/grpc-ecosystem/grpc-gateway/CHANGELOG.md
generated
vendored
169
vendor/github.com/grpc-ecosystem/grpc-gateway/CHANGELOG.md
generated
vendored
@ -1,169 +0,0 @@
|
|||||||
# Change Log
|
|
||||||
|
|
||||||
## [v1.2.2](https://github.com/grpc-ecosystem/grpc-gateway/tree/v1.2.2) (2017-04-17)
|
|
||||||
**Merged pull requests:**
|
|
||||||
|
|
||||||
- metadata: fix properly and change to Outgoing [\#361](https://github.com/grpc-ecosystem/grpc-gateway/pull/361)
|
|
||||||
|
|
||||||
## [v1.2.1](https://github.com/grpc-ecosystem/grpc-gateway/tree/v1.2.1) (2017-04-17)
|
|
||||||
**Merged pull requests:**
|
|
||||||
|
|
||||||
- Add changelog for 1.2.1 [\#360](https://github.com/grpc-ecosystem/grpc-gateway/pull/360)
|
|
||||||
- bugfix: reflect upstream api change. [\#359](https://github.com/grpc-ecosystem/grpc-gateway/pull/359)
|
|
||||||
|
|
||||||
## [v1.2.0](https://github.com/grpc-ecosystem/grpc-gateway/tree/v1.2.0) (2017-03-31)
|
|
||||||
**Merged pull requests:**
|
|
||||||
|
|
||||||
- Add changelog for 1.2.0 [\#342](https://github.com/grpc-ecosystem/grpc-gateway/pull/342)
|
|
||||||
|
|
||||||
## [v1.2.0.rc1](https://github.com/grpc-ecosystem/grpc-gateway/tree/v1.2.0.rc1) (2017-03-24)
|
|
||||||
**Merged pull requests:**
|
|
||||||
|
|
||||||
- Update go\_out parameter to remove comma [\#333](https://github.com/grpc-ecosystem/grpc-gateway/pull/333)
|
|
||||||
- Update stale path in README [\#332](https://github.com/grpc-ecosystem/grpc-gateway/pull/332)
|
|
||||||
- improve documentation regarding external dependencies [\#330](https://github.com/grpc-ecosystem/grpc-gateway/pull/330)
|
|
||||||
- Return an error on invalid nested query parameters. [\#329](https://github.com/grpc-ecosystem/grpc-gateway/pull/329)
|
|
||||||
- Update upstream proto files and add google.golang.org/genproto support. [\#325](https://github.com/grpc-ecosystem/grpc-gateway/pull/325)
|
|
||||||
- Support oneof fields in query params [\#321](https://github.com/grpc-ecosystem/grpc-gateway/pull/321)
|
|
||||||
- Do not ignore the error coming from http.ListenAndServe in examples [\#319](https://github.com/grpc-ecosystem/grpc-gateway/pull/319)
|
|
||||||
- Look up enum value maps by their proto name [\#315](https://github.com/grpc-ecosystem/grpc-gateway/pull/315)
|
|
||||||
- enable parsing enums from query parameters [\#314](https://github.com/grpc-ecosystem/grpc-gateway/pull/314)
|
|
||||||
- Do not add imports from methods with no bindings. [\#312](https://github.com/grpc-ecosystem/grpc-gateway/pull/312)
|
|
||||||
- Convert the first letter of method name to upper [\#300](https://github.com/grpc-ecosystem/grpc-gateway/pull/300)
|
|
||||||
- write query parameters to swagger definition [\#297](https://github.com/grpc-ecosystem/grpc-gateway/pull/297)
|
|
||||||
- Bump swagger-client to 2.1.28 for examples/browser [\#290](https://github.com/grpc-ecosystem/grpc-gateway/pull/290)
|
|
||||||
- pin to version before es6ism [\#289](https://github.com/grpc-ecosystem/grpc-gateway/pull/289)
|
|
||||||
- Prevent lack of http bindings from generating non-building output [\#286](https://github.com/grpc-ecosystem/grpc-gateway/pull/286)
|
|
||||||
- Added support for Timestamp in URL. [\#281](https://github.com/grpc-ecosystem/grpc-gateway/pull/281)
|
|
||||||
- add plugin param 'allow\_delete\_body' [\#280](https://github.com/grpc-ecosystem/grpc-gateway/pull/280)
|
|
||||||
- Fix ruby gen command [\#275](https://github.com/grpc-ecosystem/grpc-gateway/pull/275)
|
|
||||||
- Make grpc-gateway support enum fields in path parameter [\#273](https://github.com/grpc-ecosystem/grpc-gateway/pull/273)
|
|
||||||
- remove unnecessary make\(\) [\#271](https://github.com/grpc-ecosystem/grpc-gateway/pull/271)
|
|
||||||
- preserve field order in swagger spec [\#270](https://github.com/grpc-ecosystem/grpc-gateway/pull/270)
|
|
||||||
- Merge \#228 [\#268](https://github.com/grpc-ecosystem/grpc-gateway/pull/268)
|
|
||||||
- Handle methods with no bindings more carefully [\#267](https://github.com/grpc-ecosystem/grpc-gateway/pull/267)
|
|
||||||
- describe default marshaler in README.md [\#266](https://github.com/grpc-ecosystem/grpc-gateway/pull/266)
|
|
||||||
- Add request\_context flag to utilize \(\*http.Request\).Context\(\) in handlers [\#265](https://github.com/grpc-ecosystem/grpc-gateway/pull/265)
|
|
||||||
- Regenerate examples [\#264](https://github.com/grpc-ecosystem/grpc-gateway/pull/264)
|
|
||||||
- Correct runtime.errorBody protobuf field tag [\#256](https://github.com/grpc-ecosystem/grpc-gateway/pull/256)
|
|
||||||
- Pass permanent HTTP request headers [\#252](https://github.com/grpc-ecosystem/grpc-gateway/pull/252)
|
|
||||||
- regenerate examples, fix tests for go tip [\#248](https://github.com/grpc-ecosystem/grpc-gateway/pull/248)
|
|
||||||
- Render the swagger request body properly [\#247](https://github.com/grpc-ecosystem/grpc-gateway/pull/247)
|
|
||||||
- Error output should have lowercase attribute names [\#244](https://github.com/grpc-ecosystem/grpc-gateway/pull/244)
|
|
||||||
- runtime - export prefix constants [\#236](https://github.com/grpc-ecosystem/grpc-gateway/pull/236)
|
|
||||||
- README - Add CoreOS example [\#231](https://github.com/grpc-ecosystem/grpc-gateway/pull/231)
|
|
||||||
- Docs - Add section about how HTTP maps to gRPC [\#227](https://github.com/grpc-ecosystem/grpc-gateway/pull/227)
|
|
||||||
- readme: added links to additional documentation [\#222](https://github.com/grpc-ecosystem/grpc-gateway/pull/222)
|
|
||||||
- Use a released version of protoc [\#216](https://github.com/grpc-ecosystem/grpc-gateway/pull/216)
|
|
||||||
- Add contribution guideline [\#210](https://github.com/grpc-ecosystem/grpc-gateway/pull/210)
|
|
||||||
- improve\(genswagger:template\):added support for google.protobuf.Timestamp [\#209](https://github.com/grpc-ecosystem/grpc-gateway/pull/209)
|
|
||||||
- Allowing unknown fields to be dropped instead of returning error from… [\#208](https://github.com/grpc-ecosystem/grpc-gateway/pull/208)
|
|
||||||
- Avoid Internal Server Error on zero-length input for bidi streaming [\#200](https://github.com/grpc-ecosystem/grpc-gateway/pull/200)
|
|
||||||
|
|
||||||
## [v1.1.0](https://github.com/grpc-ecosystem/grpc-gateway/tree/v1.1.0) (2016-07-23)
|
|
||||||
**Merged pull requests:**
|
|
||||||
|
|
||||||
- Rename packages to follow the repository transfer [\#192](https://github.com/grpc-ecosystem/grpc-gateway/pull/192)
|
|
||||||
- return err early if EOF to prevent logging in normal conditions [\#191](https://github.com/grpc-ecosystem/grpc-gateway/pull/191)
|
|
||||||
- send Trailer header on error [\#188](https://github.com/grpc-ecosystem/grpc-gateway/pull/188)
|
|
||||||
- generate swagger output for streaming endpoints with a basic note [\#183](https://github.com/grpc-ecosystem/grpc-gateway/pull/183)
|
|
||||||
|
|
||||||
## [v1.0.0](https://github.com/grpc-ecosystem/grpc-gateway/tree/v1.0.0) (2016-06-15)
|
|
||||||
**Merged pull requests:**
|
|
||||||
|
|
||||||
- Regenerate files with the latest protoc-gen-go [\#185](https://github.com/grpc-ecosystem/grpc-gateway/pull/185)
|
|
||||||
- Add browser examples [\#184](https://github.com/grpc-ecosystem/grpc-gateway/pull/184)
|
|
||||||
- Fix golint and go vet errors [\#182](https://github.com/grpc-ecosystem/grpc-gateway/pull/182)
|
|
||||||
- Add integration with clients generated by swagger-codegen [\#181](https://github.com/grpc-ecosystem/grpc-gateway/pull/181)
|
|
||||||
- Simplify example services [\#180](https://github.com/grpc-ecosystem/grpc-gateway/pull/180)
|
|
||||||
- Avoid errors when req.RemoteAddr is empty [\#178](https://github.com/grpc-ecosystem/grpc-gateway/pull/178)
|
|
||||||
- Feature/headers [\#176](https://github.com/grpc-ecosystem/grpc-gateway/pull/176)
|
|
||||||
- Include HTTP req.remoteAddr in gRPC ctx [\#174](https://github.com/grpc-ecosystem/grpc-gateway/pull/174)
|
|
||||||
- Update dependencies [\#171](https://github.com/grpc-ecosystem/grpc-gateway/pull/171)
|
|
||||||
- Add bidirectional streaming support by running Send\(\) and Recv\(\) concurrently [\#170](https://github.com/grpc-ecosystem/grpc-gateway/pull/170)
|
|
||||||
- make Authorization header check case-insensitive to comply with RFC 2616 4.2 [\#164](https://github.com/grpc-ecosystem/grpc-gateway/pull/164)
|
|
||||||
- jsonpb: avoid duplicating upstream's struct [\#158](https://github.com/grpc-ecosystem/grpc-gateway/pull/158)
|
|
||||||
- Generate Swagger description for service methods using proto comments. [\#156](https://github.com/grpc-ecosystem/grpc-gateway/pull/156)
|
|
||||||
- Implement gRPC timeout support for inbound HTTP headers [\#155](https://github.com/grpc-ecosystem/grpc-gateway/pull/155)
|
|
||||||
- Add more examples to marshalers [\#154](https://github.com/grpc-ecosystem/grpc-gateway/pull/154)
|
|
||||||
- custom marshaler: handle `Accept` headers correctly [\#152](https://github.com/grpc-ecosystem/grpc-gateway/pull/152)
|
|
||||||
- Simplify custom marshaler API [\#151](https://github.com/grpc-ecosystem/grpc-gateway/pull/151)
|
|
||||||
- Fix camel case path parameter handling in swagger [\#149](https://github.com/grpc-ecosystem/grpc-gateway/pull/149)
|
|
||||||
- Swagger dot in path template [\#148](https://github.com/grpc-ecosystem/grpc-gateway/pull/148)
|
|
||||||
- Support map types in swagger generator [\#147](https://github.com/grpc-ecosystem/grpc-gateway/pull/147)
|
|
||||||
- Cleanup custom marshaler [\#146](https://github.com/grpc-ecosystem/grpc-gateway/pull/146)
|
|
||||||
- Implement custom Marshaler support, add jsonpb implemention. [\#144](https://github.com/grpc-ecosystem/grpc-gateway/pull/144)
|
|
||||||
- Allow period in path URL templates when generating Swagger templates. [\#143](https://github.com/grpc-ecosystem/grpc-gateway/pull/143)
|
|
||||||
- Link to LICENSE.txt [\#142](https://github.com/grpc-ecosystem/grpc-gateway/pull/142)
|
|
||||||
- Support map types in swagger generator [\#141](https://github.com/grpc-ecosystem/grpc-gateway/pull/141)
|
|
||||||
- Conditionally stops checking if generated file are up-to-date [\#136](https://github.com/grpc-ecosystem/grpc-gateway/pull/136)
|
|
||||||
- Generate Swagger description for service methods using proto comments. [\#134](https://github.com/grpc-ecosystem/grpc-gateway/pull/134)
|
|
||||||
- Swagger definitions now have `type` set to `object`. [\#133](https://github.com/grpc-ecosystem/grpc-gateway/pull/133)
|
|
||||||
- go\_package option as go import path [\#129](https://github.com/grpc-ecosystem/grpc-gateway/pull/129)
|
|
||||||
- Fix govet errors [\#126](https://github.com/grpc-ecosystem/grpc-gateway/pull/126)
|
|
||||||
- Fix data-race in generated codes [\#125](https://github.com/grpc-ecosystem/grpc-gateway/pull/125)
|
|
||||||
- Fix \#119 - CloseNotify race with ServeHTTP [\#120](https://github.com/grpc-ecosystem/grpc-gateway/pull/120)
|
|
||||||
- Replace glog with grpclog [\#118](https://github.com/grpc-ecosystem/grpc-gateway/pull/118)
|
|
||||||
- Fix a goroutine-leak in HTTP keep-alive [\#116](https://github.com/grpc-ecosystem/grpc-gateway/pull/116)
|
|
||||||
- Fix camel case path parameter handling in swagger [\#114](https://github.com/grpc-ecosystem/grpc-gateway/pull/114)
|
|
||||||
- gofmt -s [\#112](https://github.com/grpc-ecosystem/grpc-gateway/pull/112)
|
|
||||||
- fix typo [\#111](https://github.com/grpc-ecosystem/grpc-gateway/pull/111)
|
|
||||||
- fix typo [\#110](https://github.com/grpc-ecosystem/grpc-gateway/pull/110)
|
|
||||||
- fixes missing swagger operation objects [\#109](https://github.com/grpc-ecosystem/grpc-gateway/pull/109)
|
|
||||||
- Add parser and swagger support for enum, no gengateway yet [\#108](https://github.com/grpc-ecosystem/grpc-gateway/pull/108)
|
|
||||||
- README: add protoc-gen-swagger too [\#105](https://github.com/grpc-ecosystem/grpc-gateway/pull/105)
|
|
||||||
- README: Suggest go get -u by default. [\#104](https://github.com/grpc-ecosystem/grpc-gateway/pull/104)
|
|
||||||
- Cancel context when HTTP connection is closed [\#102](https://github.com/grpc-ecosystem/grpc-gateway/pull/102)
|
|
||||||
- wait test server up [\#100](https://github.com/grpc-ecosystem/grpc-gateway/pull/100)
|
|
||||||
- Fix the swagger section of the README.md [\#98](https://github.com/grpc-ecosystem/grpc-gateway/pull/98)
|
|
||||||
- Add documentation for using Swagger [\#97](https://github.com/grpc-ecosystem/grpc-gateway/pull/97)
|
|
||||||
- Better compatibility to field names generated by protoc-gen-go [\#96](https://github.com/grpc-ecosystem/grpc-gateway/pull/96)
|
|
||||||
- Update protoc from 3.0.0-beta1 to 3.0.0-beta2 [\#95](https://github.com/grpc-ecosystem/grpc-gateway/pull/95)
|
|
||||||
- Better grpc error strings [\#94](https://github.com/grpc-ecosystem/grpc-gateway/pull/94)
|
|
||||||
- make available header and trailer metadata [\#93](https://github.com/grpc-ecosystem/grpc-gateway/pull/93)
|
|
||||||
- make grpc.DialOption configurable [\#89](https://github.com/grpc-ecosystem/grpc-gateway/pull/89)
|
|
||||||
- Add request in error handlers [\#88](https://github.com/grpc-ecosystem/grpc-gateway/pull/88)
|
|
||||||
- Improve PascalFromSnake behavior [\#85](https://github.com/grpc-ecosystem/grpc-gateway/pull/85)
|
|
||||||
- Typo grcp -\> grpc [\#81](https://github.com/grpc-ecosystem/grpc-gateway/pull/81)
|
|
||||||
- Add abstraction of code generator implementation [\#78](https://github.com/grpc-ecosystem/grpc-gateway/pull/78)
|
|
||||||
- Support multivalue of metadata [\#77](https://github.com/grpc-ecosystem/grpc-gateway/pull/77)
|
|
||||||
- Fix broken test [\#76](https://github.com/grpc-ecosystem/grpc-gateway/pull/76)
|
|
||||||
- Added missing instruction line in README [\#75](https://github.com/grpc-ecosystem/grpc-gateway/pull/75)
|
|
||||||
- Fix a complie error in generated go files [\#71](https://github.com/grpc-ecosystem/grpc-gateway/pull/71)
|
|
||||||
- Update generated .pb.go files in third\_party [\#69](https://github.com/grpc-ecosystem/grpc-gateway/pull/69)
|
|
||||||
- Add swagger support [\#68](https://github.com/grpc-ecosystem/grpc-gateway/pull/68)
|
|
||||||
- Bugfix/handling headers for `Authorization` and `Host` [\#65](https://github.com/grpc-ecosystem/grpc-gateway/pull/65)
|
|
||||||
- Fix `error` field always in chunk response [\#64](https://github.com/grpc-ecosystem/grpc-gateway/pull/64)
|
|
||||||
- Update .pb.go to latest version. [\#63](https://github.com/grpc-ecosystem/grpc-gateway/pull/63)
|
|
||||||
- Run more tests in Travis CI [\#60](https://github.com/grpc-ecosystem/grpc-gateway/pull/60)
|
|
||||||
- Added http error code and error status for responseStreamChunk error [\#59](https://github.com/grpc-ecosystem/grpc-gateway/pull/59)
|
|
||||||
- Fix parsing of verb and final path component. [\#55](https://github.com/grpc-ecosystem/grpc-gateway/pull/55)
|
|
||||||
- Add runtime.WithForwardResponseOption [\#53](https://github.com/grpc-ecosystem/grpc-gateway/pull/53)
|
|
||||||
- add grpc.WithInsecure\(\) as option for grpc.Dial call in template [\#52](https://github.com/grpc-ecosystem/grpc-gateway/pull/52)
|
|
||||||
- update .pb.go files for latest golang proto generation [\#51](https://github.com/grpc-ecosystem/grpc-gateway/pull/51)
|
|
||||||
- Fix a build error with the latest protoc-gen-go [\#50](https://github.com/grpc-ecosystem/grpc-gateway/pull/50)
|
|
||||||
- Configure Travis CI [\#49](https://github.com/grpc-ecosystem/grpc-gateway/pull/49)
|
|
||||||
- Follow a change of go package name convention in protoc-gen-go [\#48](https://github.com/grpc-ecosystem/grpc-gateway/pull/48)
|
|
||||||
- Consider tail segments after deep wildcard [\#47](https://github.com/grpc-ecosystem/grpc-gateway/pull/47)
|
|
||||||
- Fix typo in README [\#45](https://github.com/grpc-ecosystem/grpc-gateway/pull/45)
|
|
||||||
- Fix undefined variable error in generated codes [\#42](https://github.com/grpc-ecosystem/grpc-gateway/pull/42)
|
|
||||||
- Follow changes in protoc-gen-go and grpc-go [\#41](https://github.com/grpc-ecosystem/grpc-gateway/pull/41)
|
|
||||||
- Fixes \#4 [\#40](https://github.com/grpc-ecosystem/grpc-gateway/pull/40)
|
|
||||||
- fix examples to work with go1.5 [\#39](https://github.com/grpc-ecosystem/grpc-gateway/pull/39)
|
|
||||||
- rename internal to utilties for 1.5 compatibility [\#38](https://github.com/grpc-ecosystem/grpc-gateway/pull/38)
|
|
||||||
- Reflection fix of proto3 nested messages. [\#34](https://github.com/grpc-ecosystem/grpc-gateway/pull/34)
|
|
||||||
- \[Experimental\] Make the response forwarder function customizable [\#31](https://github.com/grpc-ecosystem/grpc-gateway/pull/31)
|
|
||||||
- Add f.Flush\(\) to runtime.ForwardResponseStream [\#30](https://github.com/grpc-ecosystem/grpc-gateway/pull/30)
|
|
||||||
- Format error message in JSON [\#29](https://github.com/grpc-ecosystem/grpc-gateway/pull/29)
|
|
||||||
- Update examples with HTTP header context annotation [\#28](https://github.com/grpc-ecosystem/grpc-gateway/pull/28)
|
|
||||||
- Report semantic errors in the source to protoc [\#27](https://github.com/grpc-ecosystem/grpc-gateway/pull/27)
|
|
||||||
- Add support for non-nullable nested messages. [\#21](https://github.com/grpc-ecosystem/grpc-gateway/pull/21)
|
|
||||||
- Receive GRPC metadata from HTTP headers. [\#18](https://github.com/grpc-ecosystem/grpc-gateway/pull/18)
|
|
||||||
- Implement detailed specs of google.api.http [\#14](https://github.com/grpc-ecosystem/grpc-gateway/pull/14)
|
|
||||||
- Configure travis CI [\#13](https://github.com/grpc-ecosystem/grpc-gateway/pull/13)
|
|
||||||
- Replace our own custom option with the one defined by Google [\#12](https://github.com/grpc-ecosystem/grpc-gateway/pull/12)
|
|
||||||
- Remove useless context setup [\#11](https://github.com/grpc-ecosystem/grpc-gateway/pull/11)
|
|
||||||
- Fix typo, path, missing semicolon. [\#10](https://github.com/grpc-ecosystem/grpc-gateway/pull/10)
|
|
||||||
- Use a globally unique id for the custom option [\#3](https://github.com/grpc-ecosystem/grpc-gateway/pull/3)
|
|
||||||
- implement ABitOfEverythingService [\#2](https://github.com/grpc-ecosystem/grpc-gateway/pull/2)
|
|
||||||
- support streaming API calls [\#1](https://github.com/grpc-ecosystem/grpc-gateway/pull/1)
|
|
20
vendor/github.com/grpc-ecosystem/grpc-gateway/CONTRIBUTING.md
generated
vendored
20
vendor/github.com/grpc-ecosystem/grpc-gateway/CONTRIBUTING.md
generated
vendored
@ -1,20 +0,0 @@
|
|||||||
# How to contribute
|
|
||||||
|
|
||||||
Thank you for your contribution to grpc-gateway.
|
|
||||||
Here's the recommended process of contribution.
|
|
||||||
|
|
||||||
1. `go get github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway`
|
|
||||||
2. `cd $GOPATH/src/github.com/grpc-ecosystem/grpc-gateway`
|
|
||||||
3. hack, hack, hack...
|
|
||||||
4. Make sure that your change follows best practices in Go
|
|
||||||
* [Effective Go](https://golang.org/doc/effective_go.html)
|
|
||||||
* [Go Code Review Comments](https://golang.org/wiki/CodeReviewComments)
|
|
||||||
5. Make sure that `make test` passes. (use swagger-codegen 2.1.6, not newer versions)
|
|
||||||
6. Sign [a Contributor License Agreement](https://cla.developers.google.com/clas)
|
|
||||||
7. Open a pull request in Github
|
|
||||||
|
|
||||||
When you work on a larger contribution, it is also recommended that you get in touch
|
|
||||||
with us through the issue tracker.
|
|
||||||
|
|
||||||
### Code reviews
|
|
||||||
All submissions, including submissions by project members, require review.
|
|
143
vendor/github.com/grpc-ecosystem/grpc-gateway/Makefile
generated
vendored
143
vendor/github.com/grpc-ecosystem/grpc-gateway/Makefile
generated
vendored
@ -1,143 +0,0 @@
|
|||||||
# This is a Makefile which maintains files automatically generated but to be
|
|
||||||
# shipped together with other files.
|
|
||||||
# You don't have to rebuild these targets by yourself unless you develop
|
|
||||||
# grpc-gateway itself.
|
|
||||||
|
|
||||||
PKG=github.com/grpc-ecosystem/grpc-gateway
|
|
||||||
GO_PLUGIN=bin/protoc-gen-go
|
|
||||||
GO_PLUGIN_PKG=github.com/golang/protobuf/protoc-gen-go
|
|
||||||
SWAGGER_PLUGIN=bin/protoc-gen-swagger
|
|
||||||
SWAGGER_PLUGIN_SRC= utilities/doc.go \
|
|
||||||
utilities/pattern.go \
|
|
||||||
utilities/trie.go \
|
|
||||||
protoc-gen-swagger/genswagger/generator.go \
|
|
||||||
protoc-gen-swagger/genswagger/template.go \
|
|
||||||
protoc-gen-swagger/main.go
|
|
||||||
SWAGGER_PLUGIN_PKG=$(PKG)/protoc-gen-swagger
|
|
||||||
GATEWAY_PLUGIN=bin/protoc-gen-grpc-gateway
|
|
||||||
GATEWAY_PLUGIN_PKG=$(PKG)/protoc-gen-grpc-gateway
|
|
||||||
GATEWAY_PLUGIN_SRC= utilities/doc.go \
|
|
||||||
utilities/pattern.go \
|
|
||||||
utilities/trie.go \
|
|
||||||
protoc-gen-grpc-gateway \
|
|
||||||
protoc-gen-grpc-gateway/descriptor \
|
|
||||||
protoc-gen-grpc-gateway/descriptor/registry.go \
|
|
||||||
protoc-gen-grpc-gateway/descriptor/services.go \
|
|
||||||
protoc-gen-grpc-gateway/descriptor/types.go \
|
|
||||||
protoc-gen-grpc-gateway/generator \
|
|
||||||
protoc-gen-grpc-gateway/generator/generator.go \
|
|
||||||
protoc-gen-grpc-gateway/gengateway \
|
|
||||||
protoc-gen-grpc-gateway/gengateway/doc.go \
|
|
||||||
protoc-gen-grpc-gateway/gengateway/generator.go \
|
|
||||||
protoc-gen-grpc-gateway/gengateway/template.go \
|
|
||||||
protoc-gen-grpc-gateway/httprule \
|
|
||||||
protoc-gen-grpc-gateway/httprule/compile.go \
|
|
||||||
protoc-gen-grpc-gateway/httprule/parse.go \
|
|
||||||
protoc-gen-grpc-gateway/httprule/types.go \
|
|
||||||
protoc-gen-grpc-gateway/main.go
|
|
||||||
GATEWAY_PLUGIN_FLAGS?=
|
|
||||||
|
|
||||||
GOOGLEAPIS_DIR=third_party/googleapis
|
|
||||||
OUTPUT_DIR=_output
|
|
||||||
|
|
||||||
RUNTIME_PROTO=runtime/internal/stream_chunk.proto
|
|
||||||
RUNTIME_GO=$(RUNTIME_PROTO:.proto=.pb.go)
|
|
||||||
|
|
||||||
PKGMAP=Mgoogle/protobuf/descriptor.proto=$(GO_PLUGIN_PKG)/descriptor,Mexamples/sub/message.proto=$(PKG)/examples/sub
|
|
||||||
ADDITIONAL_FLAGS=
|
|
||||||
ifneq "$(GATEWAY_PLUGIN_FLAGS)" ""
|
|
||||||
ADDITIONAL_FLAGS=,$(GATEWAY_PLUGIN_FLAGS)
|
|
||||||
endif
|
|
||||||
SWAGGER_EXAMPLES=examples/examplepb/echo_service.proto \
|
|
||||||
examples/examplepb/a_bit_of_everything.proto
|
|
||||||
EXAMPLES=examples/examplepb/echo_service.proto \
|
|
||||||
examples/examplepb/a_bit_of_everything.proto \
|
|
||||||
examples/examplepb/stream.proto \
|
|
||||||
examples/examplepb/flow_combination.proto
|
|
||||||
EXAMPLE_SVCSRCS=$(EXAMPLES:.proto=.pb.go)
|
|
||||||
EXAMPLE_GWSRCS=$(EXAMPLES:.proto=.pb.gw.go)
|
|
||||||
EXAMPLE_SWAGGERSRCS=$(EXAMPLES:.proto=.swagger.json)
|
|
||||||
EXAMPLE_DEPS=examples/sub/message.proto examples/sub2/message.proto
|
|
||||||
EXAMPLE_DEPSRCS=$(EXAMPLE_DEPS:.proto=.pb.go)
|
|
||||||
|
|
||||||
EXAMPLE_CLIENT_DIR=examples/clients
|
|
||||||
ECHO_EXAMPLE_SPEC=examples/examplepb/echo_service.swagger.json
|
|
||||||
ECHO_EXAMPLE_SRCS=$(EXAMPLE_CLIENT_DIR)/echo/EchoServiceApi.go \
|
|
||||||
$(EXAMPLE_CLIENT_DIR)/echo/ExamplepbSimpleMessage.go
|
|
||||||
ABE_EXAMPLE_SPEC=examples/examplepb/a_bit_of_everything.swagger.json
|
|
||||||
ABE_EXAMPLE_SRCS=$(EXAMPLE_CLIENT_DIR)/abe/ABitOfEverythingServiceApi.go \
|
|
||||||
$(EXAMPLE_CLIENT_DIR)/abe/ABitOfEverythingNested.go \
|
|
||||||
$(EXAMPLE_CLIENT_DIR)/abe/ExamplepbABitOfEverything.go \
|
|
||||||
$(EXAMPLE_CLIENT_DIR)/abe/ExamplepbNumericEnum.go \
|
|
||||||
$(EXAMPLE_CLIENT_DIR)/abe/ExamplepbIdMessage.go \
|
|
||||||
$(EXAMPLE_CLIENT_DIR)/abe/NestedDeepEnum.go \
|
|
||||||
$(EXAMPLE_CLIENT_DIR)/abe/ProtobufEmpty.go \
|
|
||||||
$(EXAMPLE_CLIENT_DIR)/abe/Sub2IdMessage.go \
|
|
||||||
$(EXAMPLE_CLIENT_DIR)/abe/SubStringMessage.go
|
|
||||||
EXAMPLE_CLIENT_SRCS=$(ECHO_EXAMPLE_SRCS) $(ABE_EXAMPLE_SRCS)
|
|
||||||
SWAGGER_CODEGEN=swagger-codegen
|
|
||||||
|
|
||||||
PROTOC_INC_PATH=$(dir $(shell which protoc))/../include
|
|
||||||
|
|
||||||
generate: $(RUNTIME_GO)
|
|
||||||
|
|
||||||
.SUFFIXES: .go .proto
|
|
||||||
|
|
||||||
$(GO_PLUGIN):
|
|
||||||
go get $(GO_PLUGIN_PKG)
|
|
||||||
go build -o $@ $(GO_PLUGIN_PKG)
|
|
||||||
|
|
||||||
$(RUNTIME_GO): $(RUNTIME_PROTO) $(GO_PLUGIN)
|
|
||||||
protoc -I $(PROTOC_INC_PATH) --plugin=$(GO_PLUGIN) -I. --go_out=$(PKGMAP):. $(RUNTIME_PROTO)
|
|
||||||
|
|
||||||
$(GATEWAY_PLUGIN): $(RUNTIME_GO) $(GATEWAY_PLUGIN_SRC)
|
|
||||||
go build -o $@ $(GATEWAY_PLUGIN_PKG)
|
|
||||||
|
|
||||||
$(SWAGGER_PLUGIN): $(SWAGGER_PLUGIN_SRC)
|
|
||||||
go build -o $@ $(SWAGGER_PLUGIN_PKG)
|
|
||||||
|
|
||||||
$(EXAMPLE_SVCSRCS): $(GO_PLUGIN) $(EXAMPLES)
|
|
||||||
protoc -I $(PROTOC_INC_PATH) -I. -I$(GOOGLEAPIS_DIR) --plugin=$(GO_PLUGIN) --go_out=$(PKGMAP),plugins=grpc:. $(EXAMPLES)
|
|
||||||
$(EXAMPLE_DEPSRCS): $(GO_PLUGIN) $(EXAMPLE_DEPS)
|
|
||||||
mkdir -p $(OUTPUT_DIR)
|
|
||||||
protoc -I $(PROTOC_INC_PATH) -I. --plugin=$(GO_PLUGIN) --go_out=$(PKGMAP),plugins=grpc:$(OUTPUT_DIR) $(@:.pb.go=.proto)
|
|
||||||
cp $(OUTPUT_DIR)/$(PKG)/$@ $@ || cp $(OUTPUT_DIR)/$@ $@
|
|
||||||
$(EXAMPLE_GWSRCS): $(GATEWAY_PLUGIN) $(EXAMPLES)
|
|
||||||
protoc -I $(PROTOC_INC_PATH) -I. -I$(GOOGLEAPIS_DIR) --plugin=$(GATEWAY_PLUGIN) --grpc-gateway_out=logtostderr=true,$(PKGMAP)$(ADDITIONAL_FLAGS):. $(EXAMPLES)
|
|
||||||
$(EXAMPLE_SWAGGERSRCS): $(SWAGGER_PLUGIN) $(SWAGGER_EXAMPLES)
|
|
||||||
protoc -I $(PROTOC_INC_PATH) -I. -I$(GOOGLEAPIS_DIR) --plugin=$(SWAGGER_PLUGIN) --swagger_out=logtostderr=true,$(PKGMAP):. $(SWAGGER_EXAMPLES)
|
|
||||||
|
|
||||||
$(ECHO_EXAMPLE_SRCS): $(ECHO_EXAMPLE_SPEC)
|
|
||||||
$(SWAGGER_CODEGEN) generate -i $(ECHO_EXAMPLE_SPEC) \
|
|
||||||
-l go -o examples/clients --additional-properties packageName=echo
|
|
||||||
@rm -f $(EXAMPLE_CLIENT_DIR)/README.md $(EXAMPLE_CLIENT_DIR)/git_push.sh $(EXAMPLE_CLIENT_DIR)/.gitignore
|
|
||||||
$(ABE_EXAMPLE_SRCS): $(ABE_EXAMPLE_SPEC)
|
|
||||||
$(SWAGGER_CODEGEN) generate -i $(ABE_EXAMPLE_SPEC) \
|
|
||||||
-l go -o examples/clients --additional-properties packageName=abe
|
|
||||||
@rm -f $(EXAMPLE_CLIENT_DIR)/README.md $(EXAMPLE_CLIENT_DIR)/git_push.sh $(EXAMPLE_CLIENT_DIR)/.gitignore
|
|
||||||
|
|
||||||
examples: $(EXAMPLE_SVCSRCS) $(EXAMPLE_GWSRCS) $(EXAMPLE_DEPSRCS) $(EXAMPLE_SWAGGERSRCS) $(EXAMPLE_CLIENT_SRCS)
|
|
||||||
test: examples
|
|
||||||
go test -race $(PKG)/...
|
|
||||||
|
|
||||||
lint:
|
|
||||||
golint --set_exit_status $(PKG)/runtime
|
|
||||||
golint --set_exit_status $(PKG)/utilities/...
|
|
||||||
golint --set_exit_status $(PKG)/protoc-gen-grpc-gateway/...
|
|
||||||
golint --set_exit_status $(PKG)/protoc-gen-swagger/...
|
|
||||||
go vet $(PKG)/runtime || true
|
|
||||||
go vet $(PKG)/utilities/...
|
|
||||||
go vet $(PKG)/protoc-gen-grpc-gateway/...
|
|
||||||
go vet $(PKG)/protoc-gen-swagger/...
|
|
||||||
|
|
||||||
clean distclean:
|
|
||||||
rm -f $(GATEWAY_PLUGIN)
|
|
||||||
realclean: distclean
|
|
||||||
rm -f $(EXAMPLE_SVCSRCS) $(EXAMPLE_DEPSRCS)
|
|
||||||
rm -f $(EXAMPLE_GWSRCS)
|
|
||||||
rm -f $(EXAMPLE_SWAGGERSRCS)
|
|
||||||
rm -f $(GO_PLUGIN)
|
|
||||||
rm -f $(SWAGGER_PLUGIN)
|
|
||||||
rm -f $(EXAMPLE_CLIENT_SRCS)
|
|
||||||
|
|
||||||
.PHONY: generate examples test lint clean distclean realclean
|
|
245
vendor/github.com/grpc-ecosystem/grpc-gateway/README.md
generated
vendored
245
vendor/github.com/grpc-ecosystem/grpc-gateway/README.md
generated
vendored
@ -1,245 +0,0 @@
|
|||||||
# grpc-gateway
|
|
||||||
|
|
||||||
[![Build Status](https://travis-ci.org/grpc-ecosystem/grpc-gateway.svg?branch=master)](https://travis-ci.org/grpc-ecosystem/grpc-gateway)
|
|
||||||
|
|
||||||
grpc-gateway is a plugin of [protoc](http://github.com/google/protobuf).
|
|
||||||
It reads [gRPC](http://github.com/grpc/grpc-common) service definition,
|
|
||||||
and generates a reverse-proxy server which translates a RESTful JSON API into gRPC.
|
|
||||||
This server is generated according to [custom options](https://cloud.google.com/service-management/reference/rpc/google.api#http) in your gRPC definition.
|
|
||||||
|
|
||||||
It helps you to provide your APIs in both gRPC and RESTful style at the same time.
|
|
||||||
|
|
||||||
![architecture introduction diagram](https://docs.google.com/drawings/d/12hp4CPqrNPFhattL_cIoJptFvlAqm5wLQ0ggqI5mkCg/pub?w=749&h=370)
|
|
||||||
|
|
||||||
## Background
|
|
||||||
gRPC is great -- it generates API clients and server stubs in many programming languages, it is fast, easy-to-use, bandwidth-efficient and its design is combat-proven by Google.
|
|
||||||
However, you might still want to provide a traditional RESTful API as well. Reasons can range from maintaining backwards-compatibility, supporting languages or clients not well supported by gRPC to simply maintaining the aesthetics and tooling involved with a RESTful architecture.
|
|
||||||
|
|
||||||
This project aims to provide that HTTP+JSON interface to your gRPC service. A small amount of configuration in your service to attach HTTP semantics is all that's needed to generate a reverse-proxy with this library.
|
|
||||||
|
|
||||||
## Installation
|
|
||||||
First you need to install ProtocolBuffers 3.0.0-beta-3 or later.
|
|
||||||
|
|
||||||
```sh
|
|
||||||
mkdir tmp
|
|
||||||
cd tmp
|
|
||||||
git clone https://github.com/google/protobuf
|
|
||||||
cd protobuf
|
|
||||||
./autogen.sh
|
|
||||||
./configure
|
|
||||||
make
|
|
||||||
make check
|
|
||||||
sudo make install
|
|
||||||
```
|
|
||||||
|
|
||||||
Then, `go get -u` as usual the following packages:
|
|
||||||
|
|
||||||
```sh
|
|
||||||
go get -u github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway
|
|
||||||
go get -u github.com/grpc-ecosystem/grpc-gateway/protoc-gen-swagger
|
|
||||||
go get -u github.com/golang/protobuf/protoc-gen-go
|
|
||||||
```
|
|
||||||
|
|
||||||
## Usage
|
|
||||||
Make sure that your `$GOPATH/bin` is in your `$PATH`.
|
|
||||||
|
|
||||||
1. Define your service in gRPC
|
|
||||||
|
|
||||||
your_service.proto:
|
|
||||||
```protobuf
|
|
||||||
syntax = "proto3";
|
|
||||||
package example;
|
|
||||||
message StringMessage {
|
|
||||||
string value = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
service YourService {
|
|
||||||
rpc Echo(StringMessage) returns (StringMessage) {}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
2. Add a [custom option](https://cloud.google.com/service-management/reference/rpc/google.api#http) to the .proto file
|
|
||||||
|
|
||||||
your_service.proto:
|
|
||||||
```diff
|
|
||||||
syntax = "proto3";
|
|
||||||
package example;
|
|
||||||
+
|
|
||||||
+import "google/api/annotations.proto";
|
|
||||||
+
|
|
||||||
message StringMessage {
|
|
||||||
string value = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
service YourService {
|
|
||||||
- rpc Echo(StringMessage) returns (StringMessage) {}
|
|
||||||
+ rpc Echo(StringMessage) returns (StringMessage) {
|
|
||||||
+ option (google.api.http) = {
|
|
||||||
+ post: "/v1/example/echo"
|
|
||||||
+ body: "*"
|
|
||||||
+ };
|
|
||||||
+ }
|
|
||||||
}
|
|
||||||
```
|
|
||||||
3. Generate gRPC stub
|
|
||||||
|
|
||||||
```sh
|
|
||||||
protoc -I/usr/local/include -I. \
|
|
||||||
-I$GOPATH/src \
|
|
||||||
-I$GOPATH/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis \
|
|
||||||
--go_out=plugins=grpc:. \
|
|
||||||
path/to/your_service.proto
|
|
||||||
```
|
|
||||||
|
|
||||||
It will generate a stub file `path/to/your_service.pb.go`.
|
|
||||||
4. Implement your service in gRPC as usual
|
|
||||||
1. (Optional) Generate gRPC stub in the language you want.
|
|
||||||
|
|
||||||
e.g.
|
|
||||||
```sh
|
|
||||||
protoc -I/usr/local/include -I. \
|
|
||||||
-I$GOPATH/src \
|
|
||||||
-I$GOPATH/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis \
|
|
||||||
--ruby_out=. \
|
|
||||||
path/to/your/service_proto
|
|
||||||
|
|
||||||
protoc -I/usr/local/include -I. \
|
|
||||||
-I$GOPATH/src \
|
|
||||||
-I$GOPATH/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis \
|
|
||||||
--plugin=protoc-gen-grpc=grpc_ruby_plugin \
|
|
||||||
--grpc-ruby_out=. \
|
|
||||||
path/to/your/service.proto
|
|
||||||
```
|
|
||||||
2. Add the googleapis-common-protos gem (or your language equivalent) as a dependency to your project.
|
|
||||||
3. Implement your service
|
|
||||||
|
|
||||||
5. Generate reverse-proxy
|
|
||||||
|
|
||||||
```sh
|
|
||||||
protoc -I/usr/local/include -I. \
|
|
||||||
-I$GOPATH/src \
|
|
||||||
-I$GOPATH/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis \
|
|
||||||
--grpc-gateway_out=logtostderr=true:. \
|
|
||||||
path/to/your_service.proto
|
|
||||||
```
|
|
||||||
|
|
||||||
It will generate a reverse proxy `path/to/your_service.pb.gw.go`.
|
|
||||||
|
|
||||||
Note: After generating the code for each of the stubs, in order to build the code, you will want to run ```go get .``` from the directory containing the stubs.
|
|
||||||
|
|
||||||
6. Write an entrypoint
|
|
||||||
|
|
||||||
Now you need to write an entrypoint of the proxy server.
|
|
||||||
```go
|
|
||||||
package main
|
|
||||||
|
|
||||||
import (
|
|
||||||
"flag"
|
|
||||||
"net/http"
|
|
||||||
|
|
||||||
"github.com/golang/glog"
|
|
||||||
"golang.org/x/net/context"
|
|
||||||
"github.com/grpc-ecosystem/grpc-gateway/runtime"
|
|
||||||
"google.golang.org/grpc"
|
|
||||||
|
|
||||||
gw "path/to/your_service_package"
|
|
||||||
)
|
|
||||||
|
|
||||||
var (
|
|
||||||
echoEndpoint = flag.String("echo_endpoint", "localhost:9090", "endpoint of YourService")
|
|
||||||
)
|
|
||||||
|
|
||||||
func run() error {
|
|
||||||
ctx := context.Background()
|
|
||||||
ctx, cancel := context.WithCancel(ctx)
|
|
||||||
defer cancel()
|
|
||||||
|
|
||||||
mux := runtime.NewServeMux()
|
|
||||||
opts := []grpc.DialOption{grpc.WithInsecure()}
|
|
||||||
err := gw.RegisterYourServiceHandlerFromEndpoint(ctx, mux, *echoEndpoint, opts)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
return http.ListenAndServe(":8080", mux)
|
|
||||||
}
|
|
||||||
|
|
||||||
func main() {
|
|
||||||
flag.Parse()
|
|
||||||
defer glog.Flush()
|
|
||||||
|
|
||||||
if err := run(); err != nil {
|
|
||||||
glog.Fatal(err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
7. (Optional) Generate swagger definitions
|
|
||||||
|
|
||||||
```sh
|
|
||||||
protoc -I/usr/local/include -I. \
|
|
||||||
-I$GOPATH/src \
|
|
||||||
-I$GOPATH/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis \
|
|
||||||
--swagger_out=logtostderr=true:. \
|
|
||||||
path/to/your_service.proto
|
|
||||||
```
|
|
||||||
|
|
||||||
## Parameters and flags
|
|
||||||
`protoc-gen-grpc-gateway` supports custom mapping from Protobuf `import` to Golang import path.
|
|
||||||
They are compatible to [the parameters with same names in `protoc-gen-go`](https://github.com/golang/protobuf#parameters).
|
|
||||||
|
|
||||||
In addition we also support the `request_context` parameter in order to use the `http.Request`'s Context (only for Go 1.7 and above).
|
|
||||||
This parameter can be useful to pass request scoped context between the gateway and the gRPC service.
|
|
||||||
|
|
||||||
`protoc-gen-grpc-gateway` also supports some more command line flags to control logging. You can give these flags together with parameters above. Run `protoc-gen-grpc-gateway --help` for more details about the flags.
|
|
||||||
|
|
||||||
## More Examples
|
|
||||||
More examples are available under `examples` directory.
|
|
||||||
* `examplepb/echo_service.proto`, `examplepb/a_bit_of_everything.proto`: service definition
|
|
||||||
* `examplepb/echo_service.pb.go`, `examplepb/a_bit_of_everything.pb.go`: [generated] stub of the service
|
|
||||||
* `examplepb/echo_service.pb.gw.go`, `examplepb/a_bit_of_everything.pb.gw.go`: [generated] reverse proxy for the service
|
|
||||||
* `server/main.go`: service implementation
|
|
||||||
* `main.go`: entrypoint of the generated reverse proxy
|
|
||||||
|
|
||||||
To use the same port for custom HTTP handlers (e.g. serving `swagger.json`), gRPC-gateway, and a gRPC server, see [this code example by CoreOS](https://github.com/philips/grpc-gateway-example/blob/master/cmd/serve.go) (and its accompanying [blog post](https://coreos.com/blog/gRPC-protobufs-swagger.html))
|
|
||||||
|
|
||||||
## Features
|
|
||||||
### Supported
|
|
||||||
* Generating JSON API handlers
|
|
||||||
* Method parameters in request body
|
|
||||||
* Method parameters in request path
|
|
||||||
* Method parameters in query string
|
|
||||||
* Enum fields in path parameter (including repeated enum fields).
|
|
||||||
* Mapping streaming APIs to newline-delimited JSON streams
|
|
||||||
* Mapping HTTP headers with `Grpc-Metadata-` prefix to gRPC metadata (prefixed with `grpcgateway-`)
|
|
||||||
* Optionally emitting API definition for [Swagger](http://swagger.io).
|
|
||||||
* Setting [gRPC timeouts](http://www.grpc.io/docs/guides/wire.html) through inbound HTTP `Grpc-Timeout` header.
|
|
||||||
|
|
||||||
### Want to support
|
|
||||||
But not yet.
|
|
||||||
* bytes fields in path parameter. #5
|
|
||||||
* Optionally generating the entrypoint. #8
|
|
||||||
* `import_path` parameter
|
|
||||||
|
|
||||||
### No plan to support
|
|
||||||
But patch is welcome.
|
|
||||||
* Method parameters in HTTP headers
|
|
||||||
* Handling trailer metadata
|
|
||||||
* Encoding request/response body in XML
|
|
||||||
* True bi-directional streaming. (Probably impossible?)
|
|
||||||
|
|
||||||
# Mapping gRPC to HTTP
|
|
||||||
|
|
||||||
* [How gRPC error codes map to HTTP status codes in the response](https://github.com/grpc-ecosystem/grpc-gateway/blob/master/runtime/errors.go#L15)
|
|
||||||
* HTTP request source IP is added as `X-Forwarded-For` gRPC request header
|
|
||||||
* HTTP request host is added as `X-Forwarded-Host` gRPC request header
|
|
||||||
* HTTP `Authorization` header is added as `authorization` gRPC request header
|
|
||||||
* Remaining Permanent HTTP header keys (as specified by the IANA [here](http://www.iana.org/assignments/message-headers/message-headers.xhtml) are prefixed with `grpcgateway-` and added with their values to gRPC request header
|
|
||||||
* HTTP headers that start with 'Grpc-Metadata-' are mapped to gRPC metadata (prefixed with `grpcgateway-`)
|
|
||||||
* While configurable, the default {un,}marshaling uses [jsonpb](https://godoc.org/github.com/golang/protobuf/jsonpb) with `OrigName: true`.
|
|
||||||
|
|
||||||
# Contribution
|
|
||||||
See [CONTRIBUTING.md](http://github.com/grpc-ecosystem/grpc-gateway/blob/master/CONTRIBUTING.md).
|
|
||||||
|
|
||||||
# License
|
|
||||||
grpc-gateway is licensed under the BSD 3-Clause License.
|
|
||||||
See [LICENSE.txt](https://github.com/grpc-ecosystem/grpc-gateway/blob/master/LICENSE.txt) for more details.
|
|
24
vendor/github.com/huandu/xstrings/.gitignore
generated
vendored
Normal file
24
vendor/github.com/huandu/xstrings/.gitignore
generated
vendored
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
# Compiled Object files, Static and Dynamic libs (Shared Objects)
|
||||||
|
*.o
|
||||||
|
*.a
|
||||||
|
*.so
|
||||||
|
|
||||||
|
# Folders
|
||||||
|
_obj
|
||||||
|
_test
|
||||||
|
|
||||||
|
# Architecture specific extensions/prefixes
|
||||||
|
*.[568vq]
|
||||||
|
[568vq].out
|
||||||
|
|
||||||
|
*.cgo1.go
|
||||||
|
*.cgo2.c
|
||||||
|
_cgo_defun.c
|
||||||
|
_cgo_gotypes.go
|
||||||
|
_cgo_export.*
|
||||||
|
|
||||||
|
_testmain.go
|
||||||
|
|
||||||
|
*.exe
|
||||||
|
*.test
|
||||||
|
*.prof
|
27
vendor/github.com/kr/fs/LICENSE
generated
vendored
27
vendor/github.com/kr/fs/LICENSE
generated
vendored
@ -1,27 +0,0 @@
|
|||||||
Copyright (c) 2012 The Go Authors. All rights reserved.
|
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
|
||||||
modification, are permitted provided that the following conditions are
|
|
||||||
met:
|
|
||||||
|
|
||||||
* Redistributions of source code must retain the above copyright
|
|
||||||
notice, this list of conditions and the following disclaimer.
|
|
||||||
* Redistributions in binary form must reproduce the above
|
|
||||||
copyright notice, this list of conditions and the following disclaimer
|
|
||||||
in the documentation and/or other materials provided with the
|
|
||||||
distribution.
|
|
||||||
* Neither the name of Google Inc. nor the names of its
|
|
||||||
contributors may be used to endorse or promote products derived from
|
|
||||||
this software without specific prior written permission.
|
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
||||||
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
||||||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
||||||
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3
vendor/github.com/kr/fs/Readme
generated
vendored
3
vendor/github.com/kr/fs/Readme
generated
vendored
@ -1,3 +0,0 @@
|
|||||||
Filesystem Package
|
|
||||||
|
|
||||||
http://godoc.org/github.com/kr/fs
|
|
36
vendor/github.com/kr/fs/filesystem.go
generated
vendored
36
vendor/github.com/kr/fs/filesystem.go
generated
vendored
@ -1,36 +0,0 @@
|
|||||||
package fs
|
|
||||||
|
|
||||||
import (
|
|
||||||
"io/ioutil"
|
|
||||||
"os"
|
|
||||||
"path/filepath"
|
|
||||||
)
|
|
||||||
|
|
||||||
// FileSystem defines the methods of an abstract filesystem.
|
|
||||||
type FileSystem interface {
|
|
||||||
|
|
||||||
// ReadDir reads the directory named by dirname and returns a
|
|
||||||
// list of directory entries.
|
|
||||||
ReadDir(dirname string) ([]os.FileInfo, error)
|
|
||||||
|
|
||||||
// Lstat returns a FileInfo describing the named file. If the file is a
|
|
||||||
// symbolic link, the returned FileInfo describes the symbolic link. Lstat
|
|
||||||
// makes no attempt to follow the link.
|
|
||||||
Lstat(name string) (os.FileInfo, error)
|
|
||||||
|
|
||||||
// Join joins any number of path elements into a single path, adding a
|
|
||||||
// separator if necessary. The result is Cleaned; in particular, all
|
|
||||||
// empty strings are ignored.
|
|
||||||
//
|
|
||||||
// The separator is FileSystem specific.
|
|
||||||
Join(elem ...string) string
|
|
||||||
}
|
|
||||||
|
|
||||||
// fs represents a FileSystem provided by the os package.
|
|
||||||
type fs struct{}
|
|
||||||
|
|
||||||
func (f *fs) ReadDir(dirname string) ([]os.FileInfo, error) { return ioutil.ReadDir(dirname) }
|
|
||||||
|
|
||||||
func (f *fs) Lstat(name string) (os.FileInfo, error) { return os.Lstat(name) }
|
|
||||||
|
|
||||||
func (f *fs) Join(elem ...string) string { return filepath.Join(elem...) }
|
|
95
vendor/github.com/kr/fs/walk.go
generated
vendored
95
vendor/github.com/kr/fs/walk.go
generated
vendored
@ -1,95 +0,0 @@
|
|||||||
// Package fs provides filesystem-related functions.
|
|
||||||
package fs
|
|
||||||
|
|
||||||
import (
|
|
||||||
"os"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Walker provides a convenient interface for iterating over the
|
|
||||||
// descendants of a filesystem path.
|
|
||||||
// Successive calls to the Step method will step through each
|
|
||||||
// file or directory in the tree, including the root. The files
|
|
||||||
// are walked in lexical order, which makes the output deterministic
|
|
||||||
// but means that for very large directories Walker can be inefficient.
|
|
||||||
// Walker does not follow symbolic links.
|
|
||||||
type Walker struct {
|
|
||||||
fs FileSystem
|
|
||||||
cur item
|
|
||||||
stack []item
|
|
||||||
descend bool
|
|
||||||
}
|
|
||||||
|
|
||||||
type item struct {
|
|
||||||
path string
|
|
||||||
info os.FileInfo
|
|
||||||
err error
|
|
||||||
}
|
|
||||||
|
|
||||||
// Walk returns a new Walker rooted at root.
|
|
||||||
func Walk(root string) *Walker {
|
|
||||||
return WalkFS(root, new(fs))
|
|
||||||
}
|
|
||||||
|
|
||||||
// WalkFS returns a new Walker rooted at root on the FileSystem fs.
|
|
||||||
func WalkFS(root string, fs FileSystem) *Walker {
|
|
||||||
info, err := fs.Lstat(root)
|
|
||||||
return &Walker{
|
|
||||||
fs: fs,
|
|
||||||
stack: []item{{root, info, err}},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Step advances the Walker to the next file or directory,
|
|
||||||
// which will then be available through the Path, Stat,
|
|
||||||
// and Err methods.
|
|
||||||
// It returns false when the walk stops at the end of the tree.
|
|
||||||
func (w *Walker) Step() bool {
|
|
||||||
if w.descend && w.cur.err == nil && w.cur.info.IsDir() {
|
|
||||||
list, err := w.fs.ReadDir(w.cur.path)
|
|
||||||
if err != nil {
|
|
||||||
w.cur.err = err
|
|
||||||
w.stack = append(w.stack, w.cur)
|
|
||||||
} else {
|
|
||||||
for i := len(list) - 1; i >= 0; i-- {
|
|
||||||
path := w.fs.Join(w.cur.path, list[i].Name())
|
|
||||||
w.stack = append(w.stack, item{path, list[i], nil})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if len(w.stack) == 0 {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
i := len(w.stack) - 1
|
|
||||||
w.cur = w.stack[i]
|
|
||||||
w.stack = w.stack[:i]
|
|
||||||
w.descend = true
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
// Path returns the path to the most recent file or directory
|
|
||||||
// visited by a call to Step. It contains the argument to Walk
|
|
||||||
// as a prefix; that is, if Walk is called with "dir", which is
|
|
||||||
// a directory containing the file "a", Path will return "dir/a".
|
|
||||||
func (w *Walker) Path() string {
|
|
||||||
return w.cur.path
|
|
||||||
}
|
|
||||||
|
|
||||||
// Stat returns info for the most recent file or directory
|
|
||||||
// visited by a call to Step.
|
|
||||||
func (w *Walker) Stat() os.FileInfo {
|
|
||||||
return w.cur.info
|
|
||||||
}
|
|
||||||
|
|
||||||
// Err returns the error, if any, for the most recent attempt
|
|
||||||
// by Step to visit a file or directory. If a directory has
|
|
||||||
// an error, w will not descend into that directory.
|
|
||||||
func (w *Walker) Err() error {
|
|
||||||
return w.cur.err
|
|
||||||
}
|
|
||||||
|
|
||||||
// SkipDir causes the currently visited directory to be skipped.
|
|
||||||
// If w is not on a directory, SkipDir has no effect.
|
|
||||||
func (w *Walker) SkipDir() {
|
|
||||||
w.descend = false
|
|
||||||
}
|
|
12
vendor/github.com/kr/logfmt/Readme
generated
vendored
12
vendor/github.com/kr/logfmt/Readme
generated
vendored
@ -1,12 +0,0 @@
|
|||||||
Go package for parsing (and, eventually, generating)
|
|
||||||
log lines in the logfmt style.
|
|
||||||
|
|
||||||
See http://godoc.org/github.com/kr/logfmt for format, and other documentation and examples.
|
|
||||||
|
|
||||||
Copyright (C) 2013 Keith Rarick, Blake Mizerany
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
184
vendor/github.com/kr/logfmt/decode.go
generated
vendored
184
vendor/github.com/kr/logfmt/decode.go
generated
vendored
@ -1,184 +0,0 @@
|
|||||||
// Package implements the decoding of logfmt key-value pairs.
|
|
||||||
//
|
|
||||||
// Example logfmt message:
|
|
||||||
//
|
|
||||||
// foo=bar a=14 baz="hello kitty" cool%story=bro f %^asdf
|
|
||||||
//
|
|
||||||
// Example result in JSON:
|
|
||||||
//
|
|
||||||
// { "foo": "bar", "a": 14, "baz": "hello kitty", "cool%story": "bro", "f": true, "%^asdf": true }
|
|
||||||
//
|
|
||||||
// EBNFish:
|
|
||||||
//
|
|
||||||
// ident_byte = any byte greater than ' ', excluding '=' and '"'
|
|
||||||
// string_byte = any byte excluding '"' and '\'
|
|
||||||
// garbage = !ident_byte
|
|
||||||
// ident = ident_byte, { ident byte }
|
|
||||||
// key = ident
|
|
||||||
// value = ident | '"', { string_byte | '\', '"' }, '"'
|
|
||||||
// pair = key, '=', value | key, '=' | key
|
|
||||||
// message = { garbage, pair }, garbage
|
|
||||||
package logfmt
|
|
||||||
|
|
||||||
import (
|
|
||||||
"reflect"
|
|
||||||
"strconv"
|
|
||||||
"strings"
|
|
||||||
"time"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Handler is the interface implemented by objects that accept logfmt
|
|
||||||
// key-value pairs. HandleLogfmt must copy the logfmt data if it
|
|
||||||
// wishes to retain the data after returning.
|
|
||||||
type Handler interface {
|
|
||||||
HandleLogfmt(key, val []byte) error
|
|
||||||
}
|
|
||||||
|
|
||||||
// The HandlerFunc type is an adapter to allow the use of ordinary functions as
|
|
||||||
// logfmt handlers. If f is a function with the appropriate signature,
|
|
||||||
// HandlerFunc(f) is a Handler object that calls f.
|
|
||||||
type HandlerFunc func(key, val []byte) error
|
|
||||||
|
|
||||||
func (f HandlerFunc) HandleLogfmt(key, val []byte) error {
|
|
||||||
return f(key, val)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Unmarshal parses the logfmt encoding data and stores the result in the value
|
|
||||||
// pointed to by v. If v is an Handler, HandleLogfmt will be called for each
|
|
||||||
// key-value pair.
|
|
||||||
//
|
|
||||||
// If v is not a Handler, it will pass v to NewStructHandler and use the
|
|
||||||
// returned StructHandler for decoding.
|
|
||||||
func Unmarshal(data []byte, v interface{}) (err error) {
|
|
||||||
h, ok := v.(Handler)
|
|
||||||
if !ok {
|
|
||||||
h, err = NewStructHandler(v)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return gotoScanner(data, h)
|
|
||||||
}
|
|
||||||
|
|
||||||
// StructHandler unmarshals logfmt into a struct. It matches incoming keys to
|
|
||||||
// the the struct's fields (either the struct field name or its tag, preferring
|
|
||||||
// an exact match but also accepting a case-insensitive match.
|
|
||||||
//
|
|
||||||
// Field types supported by StructHandler are:
|
|
||||||
//
|
|
||||||
// all numeric types (e.g. float32, int, etc.)
|
|
||||||
// []byte
|
|
||||||
// string
|
|
||||||
// bool - true if key is present, false otherwise (the value is ignored).
|
|
||||||
// time.Duration - uses time.ParseDuration
|
|
||||||
//
|
|
||||||
// If a field is a pointer to an above type, and a matching key is not present
|
|
||||||
// in the logfmt data, the pointer will be untouched.
|
|
||||||
//
|
|
||||||
// If v is not a pointer to an Handler or struct, Unmarshal will return an
|
|
||||||
// error.
|
|
||||||
type StructHandler struct {
|
|
||||||
rv reflect.Value
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewStructHandler(v interface{}) (Handler, error) {
|
|
||||||
rv := reflect.ValueOf(v)
|
|
||||||
if rv.Kind() != reflect.Ptr || rv.IsNil() {
|
|
||||||
return nil, &InvalidUnmarshalError{reflect.TypeOf(v)}
|
|
||||||
}
|
|
||||||
return &StructHandler{rv: rv}, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (h *StructHandler) HandleLogfmt(key, val []byte) error {
|
|
||||||
el := h.rv.Elem()
|
|
||||||
skey := string(key)
|
|
||||||
for i := 0; i < el.NumField(); i++ {
|
|
||||||
fv := el.Field(i)
|
|
||||||
ft := el.Type().Field(i)
|
|
||||||
switch {
|
|
||||||
case ft.Name == skey:
|
|
||||||
case ft.Tag.Get("logfmt") == skey:
|
|
||||||
case strings.EqualFold(ft.Name, skey):
|
|
||||||
default:
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
if fv.Kind() == reflect.Ptr {
|
|
||||||
if fv.IsNil() {
|
|
||||||
t := fv.Type().Elem()
|
|
||||||
v := reflect.New(t)
|
|
||||||
fv.Set(v)
|
|
||||||
fv = v
|
|
||||||
}
|
|
||||||
fv = fv.Elem()
|
|
||||||
}
|
|
||||||
switch fv.Interface().(type) {
|
|
||||||
case time.Duration:
|
|
||||||
d, err := time.ParseDuration(string(val))
|
|
||||||
if err != nil {
|
|
||||||
return &UnmarshalTypeError{string(val), fv.Type()}
|
|
||||||
}
|
|
||||||
fv.Set(reflect.ValueOf(d))
|
|
||||||
case string:
|
|
||||||
fv.SetString(string(val))
|
|
||||||
case []byte:
|
|
||||||
b := make([]byte, len(val))
|
|
||||||
copy(b, val)
|
|
||||||
fv.SetBytes(b)
|
|
||||||
case bool:
|
|
||||||
fv.SetBool(true)
|
|
||||||
default:
|
|
||||||
switch {
|
|
||||||
case reflect.Int <= fv.Kind() && fv.Kind() <= reflect.Int64:
|
|
||||||
v, err := strconv.ParseInt(string(val), 10, 64)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
fv.SetInt(v)
|
|
||||||
case reflect.Uint32 <= fv.Kind() && fv.Kind() <= reflect.Uint64:
|
|
||||||
v, err := strconv.ParseUint(string(val), 10, 64)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
fv.SetUint(v)
|
|
||||||
case reflect.Float32 <= fv.Kind() && fv.Kind() <= reflect.Float64:
|
|
||||||
v, err := strconv.ParseFloat(string(val), 10)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
fv.SetFloat(v)
|
|
||||||
default:
|
|
||||||
return &UnmarshalTypeError{string(val), fv.Type()}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// An InvalidUnmarshalError describes an invalid argument passed to Unmarshal.
|
|
||||||
// (The argument to Unmarshal must be a non-nil pointer.)
|
|
||||||
type InvalidUnmarshalError struct {
|
|
||||||
Type reflect.Type
|
|
||||||
}
|
|
||||||
|
|
||||||
func (e *InvalidUnmarshalError) Error() string {
|
|
||||||
if e.Type == nil {
|
|
||||||
return "logfmt: Unmarshal(nil)"
|
|
||||||
}
|
|
||||||
|
|
||||||
if e.Type.Kind() != reflect.Ptr {
|
|
||||||
return "logfmt: Unmarshal(non-pointer " + e.Type.String() + ")"
|
|
||||||
}
|
|
||||||
return "logfmt: Unmarshal(nil " + e.Type.String() + ")"
|
|
||||||
}
|
|
||||||
|
|
||||||
// An UnmarshalTypeError describes a logfmt value that was
|
|
||||||
// not appropriate for a value of a specific Go type.
|
|
||||||
type UnmarshalTypeError struct {
|
|
||||||
Value string // the logfmt value
|
|
||||||
Type reflect.Type // type of Go value it could not be assigned to
|
|
||||||
}
|
|
||||||
|
|
||||||
func (e *UnmarshalTypeError) Error() string {
|
|
||||||
return "logfmt: cannot unmarshal " + e.Value + " into Go value of type " + e.Type.String()
|
|
||||||
}
|
|
149
vendor/github.com/kr/logfmt/scanner.go
generated
vendored
149
vendor/github.com/kr/logfmt/scanner.go
generated
vendored
@ -1,149 +0,0 @@
|
|||||||
package logfmt
|
|
||||||
|
|
||||||
import (
|
|
||||||
"errors"
|
|
||||||
"fmt"
|
|
||||||
)
|
|
||||||
|
|
||||||
var ErrUnterminatedString = errors.New("logfmt: unterminated string")
|
|
||||||
|
|
||||||
func gotoScanner(data []byte, h Handler) (err error) {
|
|
||||||
saveError := func(e error) {
|
|
||||||
if err == nil {
|
|
||||||
err = e
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var c byte
|
|
||||||
var i int
|
|
||||||
var m int
|
|
||||||
var key []byte
|
|
||||||
var val []byte
|
|
||||||
var ok bool
|
|
||||||
var esc bool
|
|
||||||
|
|
||||||
garbage:
|
|
||||||
if i == len(data) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
c = data[i]
|
|
||||||
switch {
|
|
||||||
case c > ' ' && c != '"' && c != '=':
|
|
||||||
key, val = nil, nil
|
|
||||||
m = i
|
|
||||||
i++
|
|
||||||
goto key
|
|
||||||
default:
|
|
||||||
i++
|
|
||||||
goto garbage
|
|
||||||
}
|
|
||||||
|
|
||||||
key:
|
|
||||||
if i >= len(data) {
|
|
||||||
if m >= 0 {
|
|
||||||
key = data[m:i]
|
|
||||||
saveError(h.HandleLogfmt(key, nil))
|
|
||||||
}
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
c = data[i]
|
|
||||||
switch {
|
|
||||||
case c > ' ' && c != '"' && c != '=':
|
|
||||||
i++
|
|
||||||
goto key
|
|
||||||
case c == '=':
|
|
||||||
key = data[m:i]
|
|
||||||
i++
|
|
||||||
goto equal
|
|
||||||
default:
|
|
||||||
key = data[m:i]
|
|
||||||
i++
|
|
||||||
saveError(h.HandleLogfmt(key, nil))
|
|
||||||
goto garbage
|
|
||||||
}
|
|
||||||
|
|
||||||
equal:
|
|
||||||
if i >= len(data) {
|
|
||||||
if m >= 0 {
|
|
||||||
i--
|
|
||||||
key = data[m:i]
|
|
||||||
saveError(h.HandleLogfmt(key, nil))
|
|
||||||
}
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
c = data[i]
|
|
||||||
switch {
|
|
||||||
case c > ' ' && c != '"' && c != '=':
|
|
||||||
m = i
|
|
||||||
i++
|
|
||||||
goto ivalue
|
|
||||||
case c == '"':
|
|
||||||
m = i
|
|
||||||
i++
|
|
||||||
esc = false
|
|
||||||
goto qvalue
|
|
||||||
default:
|
|
||||||
if key != nil {
|
|
||||||
saveError(h.HandleLogfmt(key, val))
|
|
||||||
}
|
|
||||||
i++
|
|
||||||
goto garbage
|
|
||||||
}
|
|
||||||
|
|
||||||
ivalue:
|
|
||||||
if i >= len(data) {
|
|
||||||
if m >= 0 {
|
|
||||||
val = data[m:i]
|
|
||||||
saveError(h.HandleLogfmt(key, val))
|
|
||||||
}
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
c = data[i]
|
|
||||||
switch {
|
|
||||||
case c > ' ' && c != '"' && c != '=':
|
|
||||||
i++
|
|
||||||
goto ivalue
|
|
||||||
default:
|
|
||||||
val = data[m:i]
|
|
||||||
saveError(h.HandleLogfmt(key, val))
|
|
||||||
i++
|
|
||||||
goto garbage
|
|
||||||
}
|
|
||||||
|
|
||||||
qvalue:
|
|
||||||
if i >= len(data) {
|
|
||||||
if m >= 0 {
|
|
||||||
saveError(ErrUnterminatedString)
|
|
||||||
}
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
c = data[i]
|
|
||||||
switch c {
|
|
||||||
case '\\':
|
|
||||||
i += 2
|
|
||||||
esc = true
|
|
||||||
goto qvalue
|
|
||||||
case '"':
|
|
||||||
i++
|
|
||||||
val = data[m:i]
|
|
||||||
if esc {
|
|
||||||
val, ok = unquoteBytes(val)
|
|
||||||
if !ok {
|
|
||||||
saveError(fmt.Errorf("logfmt: error unquoting bytes %q", string(val)))
|
|
||||||
goto garbage
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
val = val[1 : len(val)-1]
|
|
||||||
}
|
|
||||||
saveError(h.HandleLogfmt(key, val))
|
|
||||||
goto garbage
|
|
||||||
default:
|
|
||||||
i++
|
|
||||||
goto qvalue
|
|
||||||
}
|
|
||||||
}
|
|
149
vendor/github.com/kr/logfmt/unquote.go
generated
vendored
149
vendor/github.com/kr/logfmt/unquote.go
generated
vendored
@ -1,149 +0,0 @@
|
|||||||
package logfmt
|
|
||||||
|
|
||||||
import (
|
|
||||||
"strconv"
|
|
||||||
"unicode"
|
|
||||||
"unicode/utf16"
|
|
||||||
"unicode/utf8"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Taken from Go's encoding/json
|
|
||||||
|
|
||||||
// Copyright 2010 The Go Authors. All rights reserved.
|
|
||||||
// Use of this source code is governed by a BSD-style
|
|
||||||
// license that can be found in the LICENSE file.
|
|
||||||
|
|
||||||
// getu4 decodes \uXXXX from the beginning of s, returning the hex value,
|
|
||||||
// or it returns -1.
|
|
||||||
func getu4(s []byte) rune {
|
|
||||||
if len(s) < 6 || s[0] != '\\' || s[1] != 'u' {
|
|
||||||
return -1
|
|
||||||
}
|
|
||||||
r, err := strconv.ParseUint(string(s[2:6]), 16, 64)
|
|
||||||
if err != nil {
|
|
||||||
return -1
|
|
||||||
}
|
|
||||||
return rune(r)
|
|
||||||
}
|
|
||||||
|
|
||||||
// unquote converts a quoted JSON string literal s into an actual string t.
|
|
||||||
// The rules are different than for Go, so cannot use strconv.Unquote.
|
|
||||||
func unquote(s []byte) (t string, ok bool) {
|
|
||||||
s, ok = unquoteBytes(s)
|
|
||||||
t = string(s)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
func unquoteBytes(s []byte) (t []byte, ok bool) {
|
|
||||||
if len(s) < 2 || s[0] != '"' || s[len(s)-1] != '"' {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
s = s[1 : len(s)-1]
|
|
||||||
|
|
||||||
// Check for unusual characters. If there are none,
|
|
||||||
// then no unquoting is needed, so return a slice of the
|
|
||||||
// original bytes.
|
|
||||||
r := 0
|
|
||||||
for r < len(s) {
|
|
||||||
c := s[r]
|
|
||||||
if c == '\\' || c == '"' || c < ' ' {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
if c < utf8.RuneSelf {
|
|
||||||
r++
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
rr, size := utf8.DecodeRune(s[r:])
|
|
||||||
if rr == utf8.RuneError && size == 1 {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
r += size
|
|
||||||
}
|
|
||||||
if r == len(s) {
|
|
||||||
return s, true
|
|
||||||
}
|
|
||||||
|
|
||||||
b := make([]byte, len(s)+2*utf8.UTFMax)
|
|
||||||
w := copy(b, s[0:r])
|
|
||||||
for r < len(s) {
|
|
||||||
// Out of room? Can only happen if s is full of
|
|
||||||
// malformed UTF-8 and we're replacing each
|
|
||||||
// byte with RuneError.
|
|
||||||
if w >= len(b)-2*utf8.UTFMax {
|
|
||||||
nb := make([]byte, (len(b)+utf8.UTFMax)*2)
|
|
||||||
copy(nb, b[0:w])
|
|
||||||
b = nb
|
|
||||||
}
|
|
||||||
switch c := s[r]; {
|
|
||||||
case c == '\\':
|
|
||||||
r++
|
|
||||||
if r >= len(s) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
switch s[r] {
|
|
||||||
default:
|
|
||||||
return
|
|
||||||
case '"', '\\', '/', '\'':
|
|
||||||
b[w] = s[r]
|
|
||||||
r++
|
|
||||||
w++
|
|
||||||
case 'b':
|
|
||||||
b[w] = '\b'
|
|
||||||
r++
|
|
||||||
w++
|
|
||||||
case 'f':
|
|
||||||
b[w] = '\f'
|
|
||||||
r++
|
|
||||||
w++
|
|
||||||
case 'n':
|
|
||||||
b[w] = '\n'
|
|
||||||
r++
|
|
||||||
w++
|
|
||||||
case 'r':
|
|
||||||
b[w] = '\r'
|
|
||||||
r++
|
|
||||||
w++
|
|
||||||
case 't':
|
|
||||||
b[w] = '\t'
|
|
||||||
r++
|
|
||||||
w++
|
|
||||||
case 'u':
|
|
||||||
r--
|
|
||||||
rr := getu4(s[r:])
|
|
||||||
if rr < 0 {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
r += 6
|
|
||||||
if utf16.IsSurrogate(rr) {
|
|
||||||
rr1 := getu4(s[r:])
|
|
||||||
if dec := utf16.DecodeRune(rr, rr1); dec != unicode.ReplacementChar {
|
|
||||||
// A valid pair; consume.
|
|
||||||
r += 6
|
|
||||||
w += utf8.EncodeRune(b[w:], dec)
|
|
||||||
break
|
|
||||||
}
|
|
||||||
// Invalid surrogate; fall back to replacement rune.
|
|
||||||
rr = unicode.ReplacementChar
|
|
||||||
}
|
|
||||||
w += utf8.EncodeRune(b[w:], rr)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Quote, control characters are invalid.
|
|
||||||
case c == '"', c < ' ':
|
|
||||||
return
|
|
||||||
|
|
||||||
// ASCII
|
|
||||||
case c < utf8.RuneSelf:
|
|
||||||
b[w] = c
|
|
||||||
r++
|
|
||||||
w++
|
|
||||||
|
|
||||||
// Coerce to well-formed UTF-8.
|
|
||||||
default:
|
|
||||||
rr, size := utf8.DecodeRune(s[r:])
|
|
||||||
r += size
|
|
||||||
w += utf8.EncodeRune(b[w:], rr)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return b[0:w], true
|
|
||||||
}
|
|
31
vendor/golang.org/x/crypto/CONTRIBUTING.md
generated
vendored
31
vendor/golang.org/x/crypto/CONTRIBUTING.md
generated
vendored
@ -1,31 +0,0 @@
|
|||||||
# Contributing to Go
|
|
||||||
|
|
||||||
Go is an open source project.
|
|
||||||
|
|
||||||
It is the work of hundreds of contributors. We appreciate your help!
|
|
||||||
|
|
||||||
|
|
||||||
## Filing issues
|
|
||||||
|
|
||||||
When [filing an issue](https://golang.org/issue/new), make sure to answer these five questions:
|
|
||||||
|
|
||||||
1. What version of Go are you using (`go version`)?
|
|
||||||
2. What operating system and processor architecture are you using?
|
|
||||||
3. What did you do?
|
|
||||||
4. What did you expect to see?
|
|
||||||
5. What did you see instead?
|
|
||||||
|
|
||||||
General questions should go to the [golang-nuts mailing list](https://groups.google.com/group/golang-nuts) instead of the issue tracker.
|
|
||||||
The gophers there will answer or ask you to file an issue if you've tripped over a bug.
|
|
||||||
|
|
||||||
## Contributing code
|
|
||||||
|
|
||||||
Please read the [Contribution Guidelines](https://golang.org/doc/contribute.html)
|
|
||||||
before sending patches.
|
|
||||||
|
|
||||||
**We do not accept GitHub pull requests**
|
|
||||||
(we use [Gerrit](https://code.google.com/p/gerrit/) instead for code review).
|
|
||||||
|
|
||||||
Unless otherwise noted, the Go source files are distributed under
|
|
||||||
the BSD-style license found in the LICENSE file.
|
|
||||||
|
|
3
vendor/golang.org/x/crypto/README
generated
vendored
3
vendor/golang.org/x/crypto/README
generated
vendored
@ -1,3 +0,0 @@
|
|||||||
This repository holds supplementary Go cryptography libraries.
|
|
||||||
|
|
||||||
To submit changes to this repository, see http://golang.org/doc/contribute.html.
|
|
1
vendor/golang.org/x/crypto/codereview.cfg
generated
vendored
1
vendor/golang.org/x/crypto/codereview.cfg
generated
vendored
@ -1 +0,0 @@
|
|||||||
issuerepo: golang/go
|
|
3
vendor/golang.org/x/net/AUTHORS
generated
vendored
3
vendor/golang.org/x/net/AUTHORS
generated
vendored
@ -1,3 +0,0 @@
|
|||||||
# This source code refers to The Go Authors for copyright purposes.
|
|
||||||
# The master list of authors is in the main Go distribution,
|
|
||||||
# visible at http://tip.golang.org/AUTHORS.
|
|
31
vendor/golang.org/x/net/CONTRIBUTING.md
generated
vendored
31
vendor/golang.org/x/net/CONTRIBUTING.md
generated
vendored
@ -1,31 +0,0 @@
|
|||||||
# Contributing to Go
|
|
||||||
|
|
||||||
Go is an open source project.
|
|
||||||
|
|
||||||
It is the work of hundreds of contributors. We appreciate your help!
|
|
||||||
|
|
||||||
|
|
||||||
## Filing issues
|
|
||||||
|
|
||||||
When [filing an issue](https://golang.org/issue/new), make sure to answer these five questions:
|
|
||||||
|
|
||||||
1. What version of Go are you using (`go version`)?
|
|
||||||
2. What operating system and processor architecture are you using?
|
|
||||||
3. What did you do?
|
|
||||||
4. What did you expect to see?
|
|
||||||
5. What did you see instead?
|
|
||||||
|
|
||||||
General questions should go to the [golang-nuts mailing list](https://groups.google.com/group/golang-nuts) instead of the issue tracker.
|
|
||||||
The gophers there will answer or ask you to file an issue if you've tripped over a bug.
|
|
||||||
|
|
||||||
## Contributing code
|
|
||||||
|
|
||||||
Please read the [Contribution Guidelines](https://golang.org/doc/contribute.html)
|
|
||||||
before sending patches.
|
|
||||||
|
|
||||||
**We do not accept GitHub pull requests**
|
|
||||||
(we use [Gerrit](https://code.google.com/p/gerrit/) instead for code review).
|
|
||||||
|
|
||||||
Unless otherwise noted, the Go source files are distributed under
|
|
||||||
the BSD-style license found in the LICENSE file.
|
|
||||||
|
|
3
vendor/golang.org/x/net/CONTRIBUTORS
generated
vendored
3
vendor/golang.org/x/net/CONTRIBUTORS
generated
vendored
@ -1,3 +0,0 @@
|
|||||||
# This source code was written by the Go contributors.
|
|
||||||
# The master list of contributors is in the main Go distribution,
|
|
||||||
# visible at http://tip.golang.org/CONTRIBUTORS.
|
|
27
vendor/golang.org/x/net/LICENSE
generated
vendored
27
vendor/golang.org/x/net/LICENSE
generated
vendored
@ -1,27 +0,0 @@
|
|||||||
Copyright (c) 2009 The Go Authors. All rights reserved.
|
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
|
||||||
modification, are permitted provided that the following conditions are
|
|
||||||
met:
|
|
||||||
|
|
||||||
* Redistributions of source code must retain the above copyright
|
|
||||||
notice, this list of conditions and the following disclaimer.
|
|
||||||
* Redistributions in binary form must reproduce the above
|
|
||||||
copyright notice, this list of conditions and the following disclaimer
|
|
||||||
in the documentation and/or other materials provided with the
|
|
||||||
distribution.
|
|
||||||
* Neither the name of Google Inc. nor the names of its
|
|
||||||
contributors may be used to endorse or promote products derived from
|
|
||||||
this software without specific prior written permission.
|
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
||||||
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
||||||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
||||||
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
22
vendor/golang.org/x/net/PATENTS
generated
vendored
22
vendor/golang.org/x/net/PATENTS
generated
vendored
@ -1,22 +0,0 @@
|
|||||||
Additional IP Rights Grant (Patents)
|
|
||||||
|
|
||||||
"This implementation" means the copyrightable works distributed by
|
|
||||||
Google as part of the Go project.
|
|
||||||
|
|
||||||
Google hereby grants to You a perpetual, worldwide, non-exclusive,
|
|
||||||
no-charge, royalty-free, irrevocable (except as stated in this section)
|
|
||||||
patent license to make, have made, use, offer to sell, sell, import,
|
|
||||||
transfer and otherwise run, modify and propagate the contents of this
|
|
||||||
implementation of Go, where such license applies only to those patent
|
|
||||||
claims, both currently owned or controlled by Google and acquired in
|
|
||||||
the future, licensable by Google that are necessarily infringed by this
|
|
||||||
implementation of Go. This grant does not include claims that would be
|
|
||||||
infringed only as a consequence of further modification of this
|
|
||||||
implementation. If you or your agent or exclusive licensee institute or
|
|
||||||
order or agree to the institution of patent litigation against any
|
|
||||||
entity (including a cross-claim or counterclaim in a lawsuit) alleging
|
|
||||||
that this implementation of Go or any code incorporated within this
|
|
||||||
implementation of Go constitutes direct or contributory patent
|
|
||||||
infringement, or inducement of patent infringement, then any patent
|
|
||||||
rights granted to you under this License for this implementation of Go
|
|
||||||
shall terminate as of the date such litigation is filed.
|
|
3
vendor/golang.org/x/net/README
generated
vendored
3
vendor/golang.org/x/net/README
generated
vendored
@ -1,3 +0,0 @@
|
|||||||
This repository holds supplementary Go networking libraries.
|
|
||||||
|
|
||||||
To submit changes to this repository, see http://golang.org/doc/contribute.html.
|
|
1
vendor/golang.org/x/net/codereview.cfg
generated
vendored
1
vendor/golang.org/x/net/codereview.cfg
generated
vendored
@ -1 +0,0 @@
|
|||||||
issuerepo: golang/go
|
|
156
vendor/golang.org/x/net/context/context.go
generated
vendored
156
vendor/golang.org/x/net/context/context.go
generated
vendored
@ -1,156 +0,0 @@
|
|||||||
// Copyright 2014 The Go Authors. All rights reserved.
|
|
||||||
// Use of this source code is governed by a BSD-style
|
|
||||||
// license that can be found in the LICENSE file.
|
|
||||||
|
|
||||||
// Package context defines the Context type, which carries deadlines,
|
|
||||||
// cancelation signals, and other request-scoped values across API boundaries
|
|
||||||
// and between processes.
|
|
||||||
//
|
|
||||||
// Incoming requests to a server should create a Context, and outgoing calls to
|
|
||||||
// servers should accept a Context. The chain of function calls between must
|
|
||||||
// propagate the Context, optionally replacing it with a modified copy created
|
|
||||||
// using WithDeadline, WithTimeout, WithCancel, or WithValue.
|
|
||||||
//
|
|
||||||
// Programs that use Contexts should follow these rules to keep interfaces
|
|
||||||
// consistent across packages and enable static analysis tools to check context
|
|
||||||
// propagation:
|
|
||||||
//
|
|
||||||
// Do not store Contexts inside a struct type; instead, pass a Context
|
|
||||||
// explicitly to each function that needs it. The Context should be the first
|
|
||||||
// parameter, typically named ctx:
|
|
||||||
//
|
|
||||||
// func DoSomething(ctx context.Context, arg Arg) error {
|
|
||||||
// // ... use ctx ...
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// Do not pass a nil Context, even if a function permits it. Pass context.TODO
|
|
||||||
// if you are unsure about which Context to use.
|
|
||||||
//
|
|
||||||
// Use context Values only for request-scoped data that transits processes and
|
|
||||||
// APIs, not for passing optional parameters to functions.
|
|
||||||
//
|
|
||||||
// The same Context may be passed to functions running in different goroutines;
|
|
||||||
// Contexts are safe for simultaneous use by multiple goroutines.
|
|
||||||
//
|
|
||||||
// See http://blog.golang.org/context for example code for a server that uses
|
|
||||||
// Contexts.
|
|
||||||
package context // import "golang.org/x/net/context"
|
|
||||||
|
|
||||||
import "time"
|
|
||||||
|
|
||||||
// A Context carries a deadline, a cancelation signal, and other values across
|
|
||||||
// API boundaries.
|
|
||||||
//
|
|
||||||
// Context's methods may be called by multiple goroutines simultaneously.
|
|
||||||
type Context interface {
|
|
||||||
// Deadline returns the time when work done on behalf of this context
|
|
||||||
// should be canceled. Deadline returns ok==false when no deadline is
|
|
||||||
// set. Successive calls to Deadline return the same results.
|
|
||||||
Deadline() (deadline time.Time, ok bool)
|
|
||||||
|
|
||||||
// Done returns a channel that's closed when work done on behalf of this
|
|
||||||
// context should be canceled. Done may return nil if this context can
|
|
||||||
// never be canceled. Successive calls to Done return the same value.
|
|
||||||
//
|
|
||||||
// WithCancel arranges for Done to be closed when cancel is called;
|
|
||||||
// WithDeadline arranges for Done to be closed when the deadline
|
|
||||||
// expires; WithTimeout arranges for Done to be closed when the timeout
|
|
||||||
// elapses.
|
|
||||||
//
|
|
||||||
// Done is provided for use in select statements:
|
|
||||||
//
|
|
||||||
// // Stream generates values with DoSomething and sends them to out
|
|
||||||
// // until DoSomething returns an error or ctx.Done is closed.
|
|
||||||
// func Stream(ctx context.Context, out chan<- Value) error {
|
|
||||||
// for {
|
|
||||||
// v, err := DoSomething(ctx)
|
|
||||||
// if err != nil {
|
|
||||||
// return err
|
|
||||||
// }
|
|
||||||
// select {
|
|
||||||
// case <-ctx.Done():
|
|
||||||
// return ctx.Err()
|
|
||||||
// case out <- v:
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// See http://blog.golang.org/pipelines for more examples of how to use
|
|
||||||
// a Done channel for cancelation.
|
|
||||||
Done() <-chan struct{}
|
|
||||||
|
|
||||||
// Err returns a non-nil error value after Done is closed. Err returns
|
|
||||||
// Canceled if the context was canceled or DeadlineExceeded if the
|
|
||||||
// context's deadline passed. No other values for Err are defined.
|
|
||||||
// After Done is closed, successive calls to Err return the same value.
|
|
||||||
Err() error
|
|
||||||
|
|
||||||
// Value returns the value associated with this context for key, or nil
|
|
||||||
// if no value is associated with key. Successive calls to Value with
|
|
||||||
// the same key returns the same result.
|
|
||||||
//
|
|
||||||
// Use context values only for request-scoped data that transits
|
|
||||||
// processes and API boundaries, not for passing optional parameters to
|
|
||||||
// functions.
|
|
||||||
//
|
|
||||||
// A key identifies a specific value in a Context. Functions that wish
|
|
||||||
// to store values in Context typically allocate a key in a global
|
|
||||||
// variable then use that key as the argument to context.WithValue and
|
|
||||||
// Context.Value. A key can be any type that supports equality;
|
|
||||||
// packages should define keys as an unexported type to avoid
|
|
||||||
// collisions.
|
|
||||||
//
|
|
||||||
// Packages that define a Context key should provide type-safe accessors
|
|
||||||
// for the values stores using that key:
|
|
||||||
//
|
|
||||||
// // Package user defines a User type that's stored in Contexts.
|
|
||||||
// package user
|
|
||||||
//
|
|
||||||
// import "golang.org/x/net/context"
|
|
||||||
//
|
|
||||||
// // User is the type of value stored in the Contexts.
|
|
||||||
// type User struct {...}
|
|
||||||
//
|
|
||||||
// // key is an unexported type for keys defined in this package.
|
|
||||||
// // This prevents collisions with keys defined in other packages.
|
|
||||||
// type key int
|
|
||||||
//
|
|
||||||
// // userKey is the key for user.User values in Contexts. It is
|
|
||||||
// // unexported; clients use user.NewContext and user.FromContext
|
|
||||||
// // instead of using this key directly.
|
|
||||||
// var userKey key = 0
|
|
||||||
//
|
|
||||||
// // NewContext returns a new Context that carries value u.
|
|
||||||
// func NewContext(ctx context.Context, u *User) context.Context {
|
|
||||||
// return context.WithValue(ctx, userKey, u)
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// // FromContext returns the User value stored in ctx, if any.
|
|
||||||
// func FromContext(ctx context.Context) (*User, bool) {
|
|
||||||
// u, ok := ctx.Value(userKey).(*User)
|
|
||||||
// return u, ok
|
|
||||||
// }
|
|
||||||
Value(key interface{}) interface{}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Background returns a non-nil, empty Context. It is never canceled, has no
|
|
||||||
// values, and has no deadline. It is typically used by the main function,
|
|
||||||
// initialization, and tests, and as the top-level Context for incoming
|
|
||||||
// requests.
|
|
||||||
func Background() Context {
|
|
||||||
return background
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO returns a non-nil, empty Context. Code should use context.TODO when
|
|
||||||
// it's unclear which Context to use or it is not yet available (because the
|
|
||||||
// surrounding function has not yet been extended to accept a Context
|
|
||||||
// parameter). TODO is recognized by static analysis tools that determine
|
|
||||||
// whether Contexts are propagated correctly in a program.
|
|
||||||
func TODO() Context {
|
|
||||||
return todo
|
|
||||||
}
|
|
||||||
|
|
||||||
// A CancelFunc tells an operation to abandon its work.
|
|
||||||
// A CancelFunc does not wait for the work to stop.
|
|
||||||
// After the first call, subsequent calls to a CancelFunc do nothing.
|
|
||||||
type CancelFunc func()
|
|
74
vendor/golang.org/x/net/context/ctxhttp/ctxhttp.go
generated
vendored
74
vendor/golang.org/x/net/context/ctxhttp/ctxhttp.go
generated
vendored
@ -1,74 +0,0 @@
|
|||||||
// Copyright 2016 The Go Authors. All rights reserved.
|
|
||||||
// Use of this source code is governed by a BSD-style
|
|
||||||
// license that can be found in the LICENSE file.
|
|
||||||
|
|
||||||
// +build go1.7
|
|
||||||
|
|
||||||
// Package ctxhttp provides helper functions for performing context-aware HTTP requests.
|
|
||||||
package ctxhttp // import "golang.org/x/net/context/ctxhttp"
|
|
||||||
|
|
||||||
import (
|
|
||||||
"io"
|
|
||||||
"net/http"
|
|
||||||
"net/url"
|
|
||||||
"strings"
|
|
||||||
|
|
||||||
"golang.org/x/net/context"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Do sends an HTTP request with the provided http.Client and returns
|
|
||||||
// an HTTP response.
|
|
||||||
//
|
|
||||||
// If the client is nil, http.DefaultClient is used.
|
|
||||||
//
|
|
||||||
// The provided ctx must be non-nil. If it is canceled or times out,
|
|
||||||
// ctx.Err() will be returned.
|
|
||||||
func Do(ctx context.Context, client *http.Client, req *http.Request) (*http.Response, error) {
|
|
||||||
if client == nil {
|
|
||||||
client = http.DefaultClient
|
|
||||||
}
|
|
||||||
resp, err := client.Do(req.WithContext(ctx))
|
|
||||||
// If we got an error, and the context has been canceled,
|
|
||||||
// the context's error is probably more useful.
|
|
||||||
if err != nil {
|
|
||||||
select {
|
|
||||||
case <-ctx.Done():
|
|
||||||
err = ctx.Err()
|
|
||||||
default:
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return resp, err
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get issues a GET request via the Do function.
|
|
||||||
func Get(ctx context.Context, client *http.Client, url string) (*http.Response, error) {
|
|
||||||
req, err := http.NewRequest("GET", url, nil)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return Do(ctx, client, req)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Head issues a HEAD request via the Do function.
|
|
||||||
func Head(ctx context.Context, client *http.Client, url string) (*http.Response, error) {
|
|
||||||
req, err := http.NewRequest("HEAD", url, nil)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return Do(ctx, client, req)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Post issues a POST request via the Do function.
|
|
||||||
func Post(ctx context.Context, client *http.Client, url string, bodyType string, body io.Reader) (*http.Response, error) {
|
|
||||||
req, err := http.NewRequest("POST", url, body)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
req.Header.Set("Content-Type", bodyType)
|
|
||||||
return Do(ctx, client, req)
|
|
||||||
}
|
|
||||||
|
|
||||||
// PostForm issues a POST request via the Do function.
|
|
||||||
func PostForm(ctx context.Context, client *http.Client, url string, data url.Values) (*http.Response, error) {
|
|
||||||
return Post(ctx, client, url, "application/x-www-form-urlencoded", strings.NewReader(data.Encode()))
|
|
||||||
}
|
|
147
vendor/golang.org/x/net/context/ctxhttp/ctxhttp_pre17.go
generated
vendored
147
vendor/golang.org/x/net/context/ctxhttp/ctxhttp_pre17.go
generated
vendored
@ -1,147 +0,0 @@
|
|||||||
// Copyright 2015 The Go Authors. All rights reserved.
|
|
||||||
// Use of this source code is governed by a BSD-style
|
|
||||||
// license that can be found in the LICENSE file.
|
|
||||||
|
|
||||||
// +build !go1.7
|
|
||||||
|
|
||||||
package ctxhttp // import "golang.org/x/net/context/ctxhttp"
|
|
||||||
|
|
||||||
import (
|
|
||||||
"io"
|
|
||||||
"net/http"
|
|
||||||
"net/url"
|
|
||||||
"strings"
|
|
||||||
|
|
||||||
"golang.org/x/net/context"
|
|
||||||
)
|
|
||||||
|
|
||||||
func nop() {}
|
|
||||||
|
|
||||||
var (
|
|
||||||
testHookContextDoneBeforeHeaders = nop
|
|
||||||
testHookDoReturned = nop
|
|
||||||
testHookDidBodyClose = nop
|
|
||||||
)
|
|
||||||
|
|
||||||
// Do sends an HTTP request with the provided http.Client and returns an HTTP response.
|
|
||||||
// If the client is nil, http.DefaultClient is used.
|
|
||||||
// If the context is canceled or times out, ctx.Err() will be returned.
|
|
||||||
func Do(ctx context.Context, client *http.Client, req *http.Request) (*http.Response, error) {
|
|
||||||
if client == nil {
|
|
||||||
client = http.DefaultClient
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO(djd): Respect any existing value of req.Cancel.
|
|
||||||
cancel := make(chan struct{})
|
|
||||||
req.Cancel = cancel
|
|
||||||
|
|
||||||
type responseAndError struct {
|
|
||||||
resp *http.Response
|
|
||||||
err error
|
|
||||||
}
|
|
||||||
result := make(chan responseAndError, 1)
|
|
||||||
|
|
||||||
// Make local copies of test hooks closed over by goroutines below.
|
|
||||||
// Prevents data races in tests.
|
|
||||||
testHookDoReturned := testHookDoReturned
|
|
||||||
testHookDidBodyClose := testHookDidBodyClose
|
|
||||||
|
|
||||||
go func() {
|
|
||||||
resp, err := client.Do(req)
|
|
||||||
testHookDoReturned()
|
|
||||||
result <- responseAndError{resp, err}
|
|
||||||
}()
|
|
||||||
|
|
||||||
var resp *http.Response
|
|
||||||
|
|
||||||
select {
|
|
||||||
case <-ctx.Done():
|
|
||||||
testHookContextDoneBeforeHeaders()
|
|
||||||
close(cancel)
|
|
||||||
// Clean up after the goroutine calling client.Do:
|
|
||||||
go func() {
|
|
||||||
if r := <-result; r.resp != nil {
|
|
||||||
testHookDidBodyClose()
|
|
||||||
r.resp.Body.Close()
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
return nil, ctx.Err()
|
|
||||||
case r := <-result:
|
|
||||||
var err error
|
|
||||||
resp, err = r.resp, r.err
|
|
||||||
if err != nil {
|
|
||||||
return resp, err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
c := make(chan struct{})
|
|
||||||
go func() {
|
|
||||||
select {
|
|
||||||
case <-ctx.Done():
|
|
||||||
close(cancel)
|
|
||||||
case <-c:
|
|
||||||
// The response's Body is closed.
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
resp.Body = ¬ifyingReader{resp.Body, c}
|
|
||||||
|
|
||||||
return resp, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get issues a GET request via the Do function.
|
|
||||||
func Get(ctx context.Context, client *http.Client, url string) (*http.Response, error) {
|
|
||||||
req, err := http.NewRequest("GET", url, nil)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return Do(ctx, client, req)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Head issues a HEAD request via the Do function.
|
|
||||||
func Head(ctx context.Context, client *http.Client, url string) (*http.Response, error) {
|
|
||||||
req, err := http.NewRequest("HEAD", url, nil)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return Do(ctx, client, req)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Post issues a POST request via the Do function.
|
|
||||||
func Post(ctx context.Context, client *http.Client, url string, bodyType string, body io.Reader) (*http.Response, error) {
|
|
||||||
req, err := http.NewRequest("POST", url, body)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
req.Header.Set("Content-Type", bodyType)
|
|
||||||
return Do(ctx, client, req)
|
|
||||||
}
|
|
||||||
|
|
||||||
// PostForm issues a POST request via the Do function.
|
|
||||||
func PostForm(ctx context.Context, client *http.Client, url string, data url.Values) (*http.Response, error) {
|
|
||||||
return Post(ctx, client, url, "application/x-www-form-urlencoded", strings.NewReader(data.Encode()))
|
|
||||||
}
|
|
||||||
|
|
||||||
// notifyingReader is an io.ReadCloser that closes the notify channel after
|
|
||||||
// Close is called or a Read fails on the underlying ReadCloser.
|
|
||||||
type notifyingReader struct {
|
|
||||||
io.ReadCloser
|
|
||||||
notify chan<- struct{}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (r *notifyingReader) Read(p []byte) (int, error) {
|
|
||||||
n, err := r.ReadCloser.Read(p)
|
|
||||||
if err != nil && r.notify != nil {
|
|
||||||
close(r.notify)
|
|
||||||
r.notify = nil
|
|
||||||
}
|
|
||||||
return n, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func (r *notifyingReader) Close() error {
|
|
||||||
err := r.ReadCloser.Close()
|
|
||||||
if r.notify != nil {
|
|
||||||
close(r.notify)
|
|
||||||
r.notify = nil
|
|
||||||
}
|
|
||||||
return err
|
|
||||||
}
|
|
72
vendor/golang.org/x/net/context/go17.go
generated
vendored
72
vendor/golang.org/x/net/context/go17.go
generated
vendored
@ -1,72 +0,0 @@
|
|||||||
// Copyright 2016 The Go Authors. All rights reserved.
|
|
||||||
// Use of this source code is governed by a BSD-style
|
|
||||||
// license that can be found in the LICENSE file.
|
|
||||||
|
|
||||||
// +build go1.7
|
|
||||||
|
|
||||||
package context
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context" // standard library's context, as of Go 1.7
|
|
||||||
"time"
|
|
||||||
)
|
|
||||||
|
|
||||||
var (
|
|
||||||
todo = context.TODO()
|
|
||||||
background = context.Background()
|
|
||||||
)
|
|
||||||
|
|
||||||
// Canceled is the error returned by Context.Err when the context is canceled.
|
|
||||||
var Canceled = context.Canceled
|
|
||||||
|
|
||||||
// DeadlineExceeded is the error returned by Context.Err when the context's
|
|
||||||
// deadline passes.
|
|
||||||
var DeadlineExceeded = context.DeadlineExceeded
|
|
||||||
|
|
||||||
// WithCancel returns a copy of parent with a new Done channel. The returned
|
|
||||||
// context's Done channel is closed when the returned cancel function is called
|
|
||||||
// or when the parent context's Done channel is closed, whichever happens first.
|
|
||||||
//
|
|
||||||
// Canceling this context releases resources associated with it, so code should
|
|
||||||
// call cancel as soon as the operations running in this Context complete.
|
|
||||||
func WithCancel(parent Context) (ctx Context, cancel CancelFunc) {
|
|
||||||
ctx, f := context.WithCancel(parent)
|
|
||||||
return ctx, CancelFunc(f)
|
|
||||||
}
|
|
||||||
|
|
||||||
// WithDeadline returns a copy of the parent context with the deadline adjusted
|
|
||||||
// to be no later than d. If the parent's deadline is already earlier than d,
|
|
||||||
// WithDeadline(parent, d) is semantically equivalent to parent. The returned
|
|
||||||
// context's Done channel is closed when the deadline expires, when the returned
|
|
||||||
// cancel function is called, or when the parent context's Done channel is
|
|
||||||
// closed, whichever happens first.
|
|
||||||
//
|
|
||||||
// Canceling this context releases resources associated with it, so code should
|
|
||||||
// call cancel as soon as the operations running in this Context complete.
|
|
||||||
func WithDeadline(parent Context, deadline time.Time) (Context, CancelFunc) {
|
|
||||||
ctx, f := context.WithDeadline(parent, deadline)
|
|
||||||
return ctx, CancelFunc(f)
|
|
||||||
}
|
|
||||||
|
|
||||||
// WithTimeout returns WithDeadline(parent, time.Now().Add(timeout)).
|
|
||||||
//
|
|
||||||
// Canceling this context releases resources associated with it, so code should
|
|
||||||
// call cancel as soon as the operations running in this Context complete:
|
|
||||||
//
|
|
||||||
// func slowOperationWithTimeout(ctx context.Context) (Result, error) {
|
|
||||||
// ctx, cancel := context.WithTimeout(ctx, 100*time.Millisecond)
|
|
||||||
// defer cancel() // releases resources if slowOperation completes before timeout elapses
|
|
||||||
// return slowOperation(ctx)
|
|
||||||
// }
|
|
||||||
func WithTimeout(parent Context, timeout time.Duration) (Context, CancelFunc) {
|
|
||||||
return WithDeadline(parent, time.Now().Add(timeout))
|
|
||||||
}
|
|
||||||
|
|
||||||
// WithValue returns a copy of parent in which the value associated with key is
|
|
||||||
// val.
|
|
||||||
//
|
|
||||||
// Use context Values only for request-scoped data that transits processes and
|
|
||||||
// APIs, not for passing optional parameters to functions.
|
|
||||||
func WithValue(parent Context, key interface{}, val interface{}) Context {
|
|
||||||
return context.WithValue(parent, key, val)
|
|
||||||
}
|
|
300
vendor/golang.org/x/net/context/pre_go17.go
generated
vendored
300
vendor/golang.org/x/net/context/pre_go17.go
generated
vendored
@ -1,300 +0,0 @@
|
|||||||
// Copyright 2014 The Go Authors. All rights reserved.
|
|
||||||
// Use of this source code is governed by a BSD-style
|
|
||||||
// license that can be found in the LICENSE file.
|
|
||||||
|
|
||||||
// +build !go1.7
|
|
||||||
|
|
||||||
package context
|
|
||||||
|
|
||||||
import (
|
|
||||||
"errors"
|
|
||||||
"fmt"
|
|
||||||
"sync"
|
|
||||||
"time"
|
|
||||||
)
|
|
||||||
|
|
||||||
// An emptyCtx is never canceled, has no values, and has no deadline. It is not
|
|
||||||
// struct{}, since vars of this type must have distinct addresses.
|
|
||||||
type emptyCtx int
|
|
||||||
|
|
||||||
func (*emptyCtx) Deadline() (deadline time.Time, ok bool) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*emptyCtx) Done() <-chan struct{} {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*emptyCtx) Err() error {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*emptyCtx) Value(key interface{}) interface{} {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (e *emptyCtx) String() string {
|
|
||||||
switch e {
|
|
||||||
case background:
|
|
||||||
return "context.Background"
|
|
||||||
case todo:
|
|
||||||
return "context.TODO"
|
|
||||||
}
|
|
||||||
return "unknown empty Context"
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
background = new(emptyCtx)
|
|
||||||
todo = new(emptyCtx)
|
|
||||||
)
|
|
||||||
|
|
||||||
// Canceled is the error returned by Context.Err when the context is canceled.
|
|
||||||
var Canceled = errors.New("context canceled")
|
|
||||||
|
|
||||||
// DeadlineExceeded is the error returned by Context.Err when the context's
|
|
||||||
// deadline passes.
|
|
||||||
var DeadlineExceeded = errors.New("context deadline exceeded")
|
|
||||||
|
|
||||||
// WithCancel returns a copy of parent with a new Done channel. The returned
|
|
||||||
// context's Done channel is closed when the returned cancel function is called
|
|
||||||
// or when the parent context's Done channel is closed, whichever happens first.
|
|
||||||
//
|
|
||||||
// Canceling this context releases resources associated with it, so code should
|
|
||||||
// call cancel as soon as the operations running in this Context complete.
|
|
||||||
func WithCancel(parent Context) (ctx Context, cancel CancelFunc) {
|
|
||||||
c := newCancelCtx(parent)
|
|
||||||
propagateCancel(parent, c)
|
|
||||||
return c, func() { c.cancel(true, Canceled) }
|
|
||||||
}
|
|
||||||
|
|
||||||
// newCancelCtx returns an initialized cancelCtx.
|
|
||||||
func newCancelCtx(parent Context) *cancelCtx {
|
|
||||||
return &cancelCtx{
|
|
||||||
Context: parent,
|
|
||||||
done: make(chan struct{}),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// propagateCancel arranges for child to be canceled when parent is.
|
|
||||||
func propagateCancel(parent Context, child canceler) {
|
|
||||||
if parent.Done() == nil {
|
|
||||||
return // parent is never canceled
|
|
||||||
}
|
|
||||||
if p, ok := parentCancelCtx(parent); ok {
|
|
||||||
p.mu.Lock()
|
|
||||||
if p.err != nil {
|
|
||||||
// parent has already been canceled
|
|
||||||
child.cancel(false, p.err)
|
|
||||||
} else {
|
|
||||||
if p.children == nil {
|
|
||||||
p.children = make(map[canceler]bool)
|
|
||||||
}
|
|
||||||
p.children[child] = true
|
|
||||||
}
|
|
||||||
p.mu.Unlock()
|
|
||||||
} else {
|
|
||||||
go func() {
|
|
||||||
select {
|
|
||||||
case <-parent.Done():
|
|
||||||
child.cancel(false, parent.Err())
|
|
||||||
case <-child.Done():
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// parentCancelCtx follows a chain of parent references until it finds a
|
|
||||||
// *cancelCtx. This function understands how each of the concrete types in this
|
|
||||||
// package represents its parent.
|
|
||||||
func parentCancelCtx(parent Context) (*cancelCtx, bool) {
|
|
||||||
for {
|
|
||||||
switch c := parent.(type) {
|
|
||||||
case *cancelCtx:
|
|
||||||
return c, true
|
|
||||||
case *timerCtx:
|
|
||||||
return c.cancelCtx, true
|
|
||||||
case *valueCtx:
|
|
||||||
parent = c.Context
|
|
||||||
default:
|
|
||||||
return nil, false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// removeChild removes a context from its parent.
|
|
||||||
func removeChild(parent Context, child canceler) {
|
|
||||||
p, ok := parentCancelCtx(parent)
|
|
||||||
if !ok {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
p.mu.Lock()
|
|
||||||
if p.children != nil {
|
|
||||||
delete(p.children, child)
|
|
||||||
}
|
|
||||||
p.mu.Unlock()
|
|
||||||
}
|
|
||||||
|
|
||||||
// A canceler is a context type that can be canceled directly. The
|
|
||||||
// implementations are *cancelCtx and *timerCtx.
|
|
||||||
type canceler interface {
|
|
||||||
cancel(removeFromParent bool, err error)
|
|
||||||
Done() <-chan struct{}
|
|
||||||
}
|
|
||||||
|
|
||||||
// A cancelCtx can be canceled. When canceled, it also cancels any children
|
|
||||||
// that implement canceler.
|
|
||||||
type cancelCtx struct {
|
|
||||||
Context
|
|
||||||
|
|
||||||
done chan struct{} // closed by the first cancel call.
|
|
||||||
|
|
||||||
mu sync.Mutex
|
|
||||||
children map[canceler]bool // set to nil by the first cancel call
|
|
||||||
err error // set to non-nil by the first cancel call
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c *cancelCtx) Done() <-chan struct{} {
|
|
||||||
return c.done
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c *cancelCtx) Err() error {
|
|
||||||
c.mu.Lock()
|
|
||||||
defer c.mu.Unlock()
|
|
||||||
return c.err
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c *cancelCtx) String() string {
|
|
||||||
return fmt.Sprintf("%v.WithCancel", c.Context)
|
|
||||||
}
|
|
||||||
|
|
||||||
// cancel closes c.done, cancels each of c's children, and, if
|
|
||||||
// removeFromParent is true, removes c from its parent's children.
|
|
||||||
func (c *cancelCtx) cancel(removeFromParent bool, err error) {
|
|
||||||
if err == nil {
|
|
||||||
panic("context: internal error: missing cancel error")
|
|
||||||
}
|
|
||||||
c.mu.Lock()
|
|
||||||
if c.err != nil {
|
|
||||||
c.mu.Unlock()
|
|
||||||
return // already canceled
|
|
||||||
}
|
|
||||||
c.err = err
|
|
||||||
close(c.done)
|
|
||||||
for child := range c.children {
|
|
||||||
// NOTE: acquiring the child's lock while holding parent's lock.
|
|
||||||
child.cancel(false, err)
|
|
||||||
}
|
|
||||||
c.children = nil
|
|
||||||
c.mu.Unlock()
|
|
||||||
|
|
||||||
if removeFromParent {
|
|
||||||
removeChild(c.Context, c)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// WithDeadline returns a copy of the parent context with the deadline adjusted
|
|
||||||
// to be no later than d. If the parent's deadline is already earlier than d,
|
|
||||||
// WithDeadline(parent, d) is semantically equivalent to parent. The returned
|
|
||||||
// context's Done channel is closed when the deadline expires, when the returned
|
|
||||||
// cancel function is called, or when the parent context's Done channel is
|
|
||||||
// closed, whichever happens first.
|
|
||||||
//
|
|
||||||
// Canceling this context releases resources associated with it, so code should
|
|
||||||
// call cancel as soon as the operations running in this Context complete.
|
|
||||||
func WithDeadline(parent Context, deadline time.Time) (Context, CancelFunc) {
|
|
||||||
if cur, ok := parent.Deadline(); ok && cur.Before(deadline) {
|
|
||||||
// The current deadline is already sooner than the new one.
|
|
||||||
return WithCancel(parent)
|
|
||||||
}
|
|
||||||
c := &timerCtx{
|
|
||||||
cancelCtx: newCancelCtx(parent),
|
|
||||||
deadline: deadline,
|
|
||||||
}
|
|
||||||
propagateCancel(parent, c)
|
|
||||||
d := deadline.Sub(time.Now())
|
|
||||||
if d <= 0 {
|
|
||||||
c.cancel(true, DeadlineExceeded) // deadline has already passed
|
|
||||||
return c, func() { c.cancel(true, Canceled) }
|
|
||||||
}
|
|
||||||
c.mu.Lock()
|
|
||||||
defer c.mu.Unlock()
|
|
||||||
if c.err == nil {
|
|
||||||
c.timer = time.AfterFunc(d, func() {
|
|
||||||
c.cancel(true, DeadlineExceeded)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
return c, func() { c.cancel(true, Canceled) }
|
|
||||||
}
|
|
||||||
|
|
||||||
// A timerCtx carries a timer and a deadline. It embeds a cancelCtx to
|
|
||||||
// implement Done and Err. It implements cancel by stopping its timer then
|
|
||||||
// delegating to cancelCtx.cancel.
|
|
||||||
type timerCtx struct {
|
|
||||||
*cancelCtx
|
|
||||||
timer *time.Timer // Under cancelCtx.mu.
|
|
||||||
|
|
||||||
deadline time.Time
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c *timerCtx) Deadline() (deadline time.Time, ok bool) {
|
|
||||||
return c.deadline, true
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c *timerCtx) String() string {
|
|
||||||
return fmt.Sprintf("%v.WithDeadline(%s [%s])", c.cancelCtx.Context, c.deadline, c.deadline.Sub(time.Now()))
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c *timerCtx) cancel(removeFromParent bool, err error) {
|
|
||||||
c.cancelCtx.cancel(false, err)
|
|
||||||
if removeFromParent {
|
|
||||||
// Remove this timerCtx from its parent cancelCtx's children.
|
|
||||||
removeChild(c.cancelCtx.Context, c)
|
|
||||||
}
|
|
||||||
c.mu.Lock()
|
|
||||||
if c.timer != nil {
|
|
||||||
c.timer.Stop()
|
|
||||||
c.timer = nil
|
|
||||||
}
|
|
||||||
c.mu.Unlock()
|
|
||||||
}
|
|
||||||
|
|
||||||
// WithTimeout returns WithDeadline(parent, time.Now().Add(timeout)).
|
|
||||||
//
|
|
||||||
// Canceling this context releases resources associated with it, so code should
|
|
||||||
// call cancel as soon as the operations running in this Context complete:
|
|
||||||
//
|
|
||||||
// func slowOperationWithTimeout(ctx context.Context) (Result, error) {
|
|
||||||
// ctx, cancel := context.WithTimeout(ctx, 100*time.Millisecond)
|
|
||||||
// defer cancel() // releases resources if slowOperation completes before timeout elapses
|
|
||||||
// return slowOperation(ctx)
|
|
||||||
// }
|
|
||||||
func WithTimeout(parent Context, timeout time.Duration) (Context, CancelFunc) {
|
|
||||||
return WithDeadline(parent, time.Now().Add(timeout))
|
|
||||||
}
|
|
||||||
|
|
||||||
// WithValue returns a copy of parent in which the value associated with key is
|
|
||||||
// val.
|
|
||||||
//
|
|
||||||
// Use context Values only for request-scoped data that transits processes and
|
|
||||||
// APIs, not for passing optional parameters to functions.
|
|
||||||
func WithValue(parent Context, key interface{}, val interface{}) Context {
|
|
||||||
return &valueCtx{parent, key, val}
|
|
||||||
}
|
|
||||||
|
|
||||||
// A valueCtx carries a key-value pair. It implements Value for that key and
|
|
||||||
// delegates all other calls to the embedded Context.
|
|
||||||
type valueCtx struct {
|
|
||||||
Context
|
|
||||||
key, val interface{}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c *valueCtx) String() string {
|
|
||||||
return fmt.Sprintf("%v.WithValue(%#v, %#v)", c.Context, c.key, c.val)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c *valueCtx) Value(key interface{}) interface{} {
|
|
||||||
if c.key == key {
|
|
||||||
return c.val
|
|
||||||
}
|
|
||||||
return c.Context.Value(key)
|
|
||||||
}
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user