Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
infohub
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gaia-X
Trust Services API
infohub
Merge requests
!6
HTTP endpoint to import trusted data
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
HTTP endpoint to import trusted data
7-import-trusted-data
into
main
Overview
1
Commits
3
Pipelines
2
Changes
102
Merged
Lyuben Penkovski
requested to merge
7-import-trusted-data
into
main
2 years ago
Overview
1
Commits
3
Pipelines
2
Changes
102
Expand
First commit only updates
vendor
.
Second commit adds the new endpoint to Goa DSL.
Third commit is implementation.
@yordan.kinkov
@valerii.kalashnikov
Closes
#7 (closed)
Edited
2 years ago
by
Lyuben Penkovski
0
0
Merge request reports
Compare
main
version 1
f41553ef
2 years ago
main (base)
and
latest version
latest version
508379a6
3 commits,
2 years ago
version 1
f41553ef
3 commits,
2 years ago
102 files
+
1002
−
456
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
102
Search (e.g. *.vue) (Ctrl+P)
cmd/infohub/main.go
+
13
−
1
Options
@@ -18,6 +18,7 @@ import (
"golang.org/x/sync/errgroup"
"code.vereign.com/gaiax/tsa/golib/cache"
"code.vereign.com/gaiax/tsa/golib/goadec"
"code.vereign.com/gaiax/tsa/golib/graceful"
goahealth
"code.vereign.com/gaiax/tsa/infohub/gen/health"
goahealthsrv
"code.vereign.com/gaiax/tsa/infohub/gen/http/health/server"
@@ -41,7 +42,7 @@ func main() {
// load configuration from environment
var
cfg
config
.
Config
if
err
:=
envconfig
.
Process
(
""
,
&
cfg
);
err
!=
nil
{
log
.
Fatalf
(
"cannot load configuration: %v"
,
err
)
log
.
Fatalf
(
"cannot load configuration: %v
\n
"
,
err
)
}
// create logger
@@ -134,6 +135,17 @@ func main() {
openapiServer
=
goaopenapisrv
.
New
(
openapiEndpoints
,
mux
,
dec
,
enc
,
nil
,
errFormatter
,
nil
,
nil
)
}
// set custom request decoder, so that request body bytes are simply
// read and not decoded in some other way
infohubServer
.
Import
=
goainfohubsrv
.
NewImportHandler
(
infohubEndpoints
.
Import
,
mux
,
goadec
.
BytesDecoder
,
enc
,
nil
,
errFormatter
,
)
// Configure the mux.
goainfohubsrv
.
Mount
(
mux
,
infohubServer
)
goahealthsrv
.
Mount
(
mux
,
healthServer
)
Loading