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
!1
Initial service skeleton
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Initial service skeleton
2-initial-goa-skeleton
into
main
Overview
0
Commits
3
Pipelines
4
Changes
439
Merged
Lyuben Penkovski
requested to merge
2-initial-goa-skeleton
into
main
2 years ago
Overview
0
Commits
3
Pipelines
4
Changes
13
Expand
Closes
#2 (closed)
0
0
Merge request reports
Viewing commit
114a3c0b
Prev
Next
Show latest version
13 files
+
266
−
10
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
13
Search (e.g. *.vue) (Ctrl+P)
114a3c0b
Initial skeleton and main function
· 114a3c0b
Lyuben Penkovski
authored
2 years ago
cmd/infohub/main.go
0 → 100644
+
162
−
0
Options
package
main
import
(
"context"
"errors"
"log"
"net/http"
"time"
"github.com/kelseyhightower/envconfig"
"go.uber.org/zap"
"go.uber.org/zap/zapcore"
goahttp
"goa.design/goa/v3/http"
goa
"goa.design/goa/v3/pkg"
"golang.org/x/sync/errgroup"
"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"
goainfohubsrv
"code.vereign.com/gaiax/tsa/infohub/gen/http/infohub/server"
goaopenapisrv
"code.vereign.com/gaiax/tsa/infohub/gen/http/openapi/server"
goainfohub
"code.vereign.com/gaiax/tsa/infohub/gen/infohub"
"code.vereign.com/gaiax/tsa/infohub/gen/openapi"
"code.vereign.com/gaiax/tsa/infohub/internal/config"
"code.vereign.com/gaiax/tsa/infohub/internal/service"
"code.vereign.com/gaiax/tsa/infohub/internal/service/health"
"code.vereign.com/gaiax/tsa/infohub/internal/service/infohub"
)
var
Version
=
"0.0.0+development"
func
main
()
{
// load configuration from environment
var
cfg
config
.
Config
if
err
:=
envconfig
.
Process
(
""
,
&
cfg
);
err
!=
nil
{
log
.
Fatalf
(
"cannot load configuration: %v"
,
err
)
}
// create logger
logger
,
err
:=
createLogger
(
cfg
.
LogLevel
)
if
err
!=
nil
{
log
.
Fatalln
(
err
)
}
defer
logger
.
Sync
()
//nolint:errcheck
logger
.
Info
(
"infohub service started"
,
zap
.
String
(
"version"
,
Version
),
zap
.
String
(
"goa"
,
goa
.
Version
()))
// create services
var
(
infohubSvc
goainfohub
.
Service
healthSvc
goahealth
.
Service
)
{
infohubSvc
=
infohub
.
New
(
logger
)
healthSvc
=
health
.
New
()
}
// create endpoints
var
(
infohubEndpoints
*
goainfohub
.
Endpoints
healthEndpoints
*
goahealth
.
Endpoints
openapiEndpoints
*
openapi
.
Endpoints
)
{
infohubEndpoints
=
goainfohub
.
NewEndpoints
(
infohubSvc
)
healthEndpoints
=
goahealth
.
NewEndpoints
(
healthSvc
)
openapiEndpoints
=
openapi
.
NewEndpoints
(
nil
)
}
// Provide the transport specific request decoder and response encoder.
// The goa http package has built-in support for JSON, XML and gob.
// Other encodings can be used by providing the corresponding functions,
// see goa.design/implement/encoding.
var
(
dec
=
goahttp
.
RequestDecoder
enc
=
goahttp
.
ResponseEncoder
)
// Build the service HTTP request multiplexer and configure it to serve
// HTTP requests to the service endpoints.
mux
:=
goahttp
.
NewMuxer
()
// Wrap the endpoints with the transport specific layers. The generated
// server packages contains code generated from the design which maps
// the service input and output data structures to HTTP requests and
// responses.
var
(
infohubServer
*
goainfohubsrv
.
Server
healthServer
*
goahealthsrv
.
Server
openapiServer
*
goaopenapisrv
.
Server
)
{
infohubServer
=
goainfohubsrv
.
New
(
infohubEndpoints
,
mux
,
dec
,
enc
,
nil
,
errFormatter
)
healthServer
=
goahealthsrv
.
New
(
healthEndpoints
,
mux
,
dec
,
enc
,
nil
,
errFormatter
)
openapiServer
=
goaopenapisrv
.
New
(
openapiEndpoints
,
mux
,
dec
,
enc
,
nil
,
errFormatter
,
nil
,
nil
)
}
// Configure the mux.
goainfohubsrv
.
Mount
(
mux
,
infohubServer
)
goahealthsrv
.
Mount
(
mux
,
healthServer
)
goaopenapisrv
.
Mount
(
mux
,
openapiServer
)
var
handler
http
.
Handler
=
mux
srv
:=
&
http
.
Server
{
Addr
:
cfg
.
HTTP
.
Host
+
":"
+
cfg
.
HTTP
.
Port
,
Handler
:
handler
,
IdleTimeout
:
cfg
.
HTTP
.
IdleTimeout
,
ReadTimeout
:
cfg
.
HTTP
.
ReadTimeout
,
WriteTimeout
:
cfg
.
HTTP
.
WriteTimeout
,
}
g
,
ctx
:=
errgroup
.
WithContext
(
context
.
Background
())
g
.
Go
(
func
()
error
{
if
err
:=
graceful
.
Shutdown
(
ctx
,
srv
,
20
*
time
.
Second
);
err
!=
nil
{
logger
.
Error
(
"server shutdown error"
,
zap
.
Error
(
err
))
return
err
}
return
errors
.
New
(
"server stopped successfully"
)
})
if
err
:=
g
.
Wait
();
err
!=
nil
{
logger
.
Error
(
"run group stopped"
,
zap
.
Error
(
err
))
}
logger
.
Info
(
"bye bye"
)
}
func
createLogger
(
logLevel
string
,
opts
...
zap
.
Option
)
(
*
zap
.
Logger
,
error
)
{
var
level
=
zapcore
.
InfoLevel
if
logLevel
!=
""
{
err
:=
level
.
UnmarshalText
([]
byte
(
logLevel
))
if
err
!=
nil
{
return
nil
,
err
}
}
config
:=
zap
.
NewProductionConfig
()
config
.
Level
=
zap
.
NewAtomicLevelAt
(
level
)
config
.
DisableStacktrace
=
true
config
.
EncoderConfig
.
TimeKey
=
"ts"
config
.
EncoderConfig
.
EncodeTime
=
zapcore
.
RFC3339TimeEncoder
return
config
.
Build
(
opts
...
)
}
func
errFormatter
(
e
error
)
goahttp
.
Statuser
{
return
service
.
NewErrorResponse
(
e
)
}
//func httpClient() *http.Client {
// return &http.Client{
// Transport: &http.Transport{
// Proxy: http.ProxyFromEnvironment,
// DialContext: (&net.Dialer{
// Timeout: 30 * time.Second,
// }).DialContext,
// MaxIdleConns: 100,
// MaxIdleConnsPerHost: 100,
// TLSHandshakeTimeout: 10 * time.Second,
// IdleConnTimeout: 60 * time.Second,
// },
// Timeout: 30 * time.Second,
// }
//}
Loading