Commits on Source (4)
-
Lyuben Penkovski authored97f0db85
-
Lyuben Penkovski authored346feba7
-
Lyuben Penkovski authoredf511e1f5
-
Lyuben Penkovski authored
Use JWT auth middleware with configuration option Closes #1 See merge request gaia-x/data-infrastructure-federation-services/tsa/task!2
a339809d
Showing
- .gitlab-ci.yml 20 additions, 5 deletions.gitlab-ci.yml
- .golangci.yml 1 addition, 3 deletions.golangci.yml
- cmd/task/main.go 18 additions, 5 deletionscmd/task/main.go
- deployment/ci/Dockerfile 1 addition, 1 deletiondeployment/ci/Dockerfile
- deployment/compose/Dockerfile 1 addition, 1 deletiondeployment/compose/Dockerfile
- go.mod 10 additions, 2 deletionsgo.mod
- go.sum 22 additions, 4 deletionsgo.sum
- internal/config/config.go 7 additions, 0 deletionsinternal/config/config.go
- vendor/github.com/decred/dcrd/dcrec/secp256k1/v4/LICENSE 0 additions, 0 deletionsvendor/github.com/decred/dcrd/dcrec/secp256k1/v4/LICENSE
- vendor/github.com/decred/dcrd/dcrec/secp256k1/v4/README.md 0 additions, 0 deletionsvendor/github.com/decred/dcrd/dcrec/secp256k1/v4/README.md
- vendor/github.com/decred/dcrd/dcrec/secp256k1/v4/compressedbytepoints.go 0 additions, 0 deletions...om/decred/dcrd/dcrec/secp256k1/v4/compressedbytepoints.go
- vendor/github.com/decred/dcrd/dcrec/secp256k1/v4/curve.go 0 additions, 0 deletionsvendor/github.com/decred/dcrd/dcrec/secp256k1/v4/curve.go
- vendor/github.com/decred/dcrd/dcrec/secp256k1/v4/doc.go 0 additions, 0 deletionsvendor/github.com/decred/dcrd/dcrec/secp256k1/v4/doc.go
- vendor/github.com/decred/dcrd/dcrec/secp256k1/v4/ecdh.go 0 additions, 0 deletionsvendor/github.com/decred/dcrd/dcrec/secp256k1/v4/ecdh.go
- vendor/github.com/decred/dcrd/dcrec/secp256k1/v4/ellipticadaptor.go 0 additions, 0 deletions...hub.com/decred/dcrd/dcrec/secp256k1/v4/ellipticadaptor.go
- vendor/github.com/decred/dcrd/dcrec/secp256k1/v4/error.go 0 additions, 0 deletionsvendor/github.com/decred/dcrd/dcrec/secp256k1/v4/error.go
- vendor/github.com/decred/dcrd/dcrec/secp256k1/v4/field.go 0 additions, 0 deletionsvendor/github.com/decred/dcrd/dcrec/secp256k1/v4/field.go
- vendor/github.com/decred/dcrd/dcrec/secp256k1/v4/loadprecomputed.go 0 additions, 0 deletions...hub.com/decred/dcrd/dcrec/secp256k1/v4/loadprecomputed.go
- vendor/github.com/decred/dcrd/dcrec/secp256k1/v4/modnscalar.go 0 additions, 0 deletions...r/github.com/decred/dcrd/dcrec/secp256k1/v4/modnscalar.go
- vendor/github.com/decred/dcrd/dcrec/secp256k1/v4/nonce.go 0 additions, 0 deletionsvendor/github.com/decred/dcrd/dcrec/secp256k1/v4/nonce.go
... | ... | @@ -8,7 +8,7 @@ require ( |
github.com/kelseyhightower/envconfig v1.4.0 | ||
github.com/prometheus/client_golang v1.13.0 | ||
github.com/stretchr/testify v1.8.0 | ||
gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/golib v0.0.0-20220913103832-19b72aa5e623 | ||
gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/golib v1.1.1 | ||
go.mongodb.org/mongo-driver v1.8.4 | ||
go.uber.org/zap v1.21.0 | ||
goa.design/goa/v3 v3.8.5 | ||
... | ... | @@ -20,9 +20,11 @@ require ( |
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0 // indirect | ||
github.com/dimfeld/httppath v0.0.0-20170720192232-ee938bf73598 // indirect | ||
github.com/dimfeld/httptreemux/v5 v5.4.0 // indirect | ||
github.com/go-stack/stack v1.8.0 // indirect | ||
github.com/goccy/go-json v0.9.11 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/golang/snappy v0.0.1 // indirect | ||
github.com/gopherjs/gopherjs v0.0.0-20220221023154-0b2280d3ff96 // indirect | ||
... | ... | @@ -31,6 +33,12 @@ require ( |
github.com/hashicorp/go-multierror v1.1.1 // indirect | ||
github.com/jtolds/gls v4.20.0+incompatible // indirect | ||
github.com/klauspost/compress v1.13.6 // indirect | ||
github.com/lestrrat-go/blackmagic v1.0.1 // indirect | ||
github.com/lestrrat-go/httpcc v1.0.1 // indirect | ||
github.com/lestrrat-go/httprc v1.0.4 // indirect | ||
github.com/lestrrat-go/iter v1.0.2 // indirect | ||
github.com/lestrrat-go/jwx/v2 v2.0.6 // indirect | ||
github.com/lestrrat-go/option v1.0.0 // indirect | ||
github.com/manveru/faker v0.0.0-20171103152722-9fbc68a78c4d // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
... | ... | @@ -47,7 +55,7 @@ require ( |
github.com/zach-klippenstein/goregen v0.0.0-20160303162051-795b5e3961ea // indirect | ||
go.uber.org/atomic v1.7.0 // indirect | ||
go.uber.org/multierr v1.6.0 // indirect | ||
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect | ||
golang.org/x/crypto v0.0.0-20220427172511-eb4f295cb31f // indirect | ||
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect | ||
golang.org/x/net v0.0.0-20220802222814-0bcc04d9c69b // indirect | ||
golang.org/x/sys v0.0.0-20220803195053-6e608f9ce704 // indirect | ||
... | ... |
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.