-
Notifications
You must be signed in to change notification settings - Fork 332
/
Copy pathmain.go
97 lines (83 loc) · 2.57 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
// Copyright 2019 The soda Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"os"
"github.com/soda/multi-cloud/api/pkg/aksk"
"github.com/soda/multi-cloud/api/pkg/backend"
"github.com/soda/multi-cloud/api/pkg/block"
"github.com/soda/multi-cloud/api/pkg/dataflow"
"github.com/soda/multi-cloud/api/pkg/file"
"github.com/soda/multi-cloud/api/pkg/filters/auth"
"github.com/soda/multi-cloud/api/pkg/filters/context"
"github.com/soda/multi-cloud/api/pkg/filters/logging"
"github.com/soda/multi-cloud/api/pkg/filters/signature/signer"
"github.com/soda/multi-cloud/api/pkg/s3"
"github.com/soda/multi-cloud/api/pkg/utils/obs"
"github.com/emicklei/go-restful"
"github.com/micro/go-micro/v2/web"
log "github.com/sirupsen/logrus"
)
const (
MICRO_ENVIRONMENT = "MICRO_ENVIRONMENT"
K8S = "k8s"
apiService_Docker = "api"
apiService_K8S = "soda.multicloud.v1.api"
)
func main() {
serviceName := apiService_Docker
if os.Getenv(MICRO_ENVIRONMENT) == K8S {
serviceName = apiService_K8S
}
webService := web.NewService(
web.Name(serviceName),
web.Version("v0.1.0"),
)
webService.Init()
obs.InitLogs()
wc := restful.NewContainer()
flag := os.Getenv("SVC_FLAG")
if flag == "s3" {
s3ws := new(restful.WebService)
s3ws.Path("/")
s3ws.Doc("soda Multi-Cloud S3 API")
s3ws.Produces(restful.MIME_XML)
s3ws.Filter(logging.FilterFactory())
s3ws.Filter(context.FilterFactory())
s3ws.Filter(signer.FilterFactory())
s3ws.Filter(auth.FilterFactory())
s3.RegisterRouter(s3ws)
wc.Add(s3ws)
} else {
ws := new(restful.WebService)
ws.Path("/v1")
ws.Doc("soda Multi-Cloud API")
ws.Consumes(restful.MIME_JSON)
ws.Produces(restful.MIME_JSON)
backend.RegisterRouter(ws)
dataflow.RegisterRouter(ws)
block.RegisterRouter(ws)
file.RegisterRouter(ws)
aksk.RegisterRouter(ws)
// add filter for authentication context
ws.Filter(logging.FilterFactory())
ws.Filter(context.FilterFactory())
ws.Filter(auth.FilterFactory())
wc.Add(ws)
}
webService.Handle("/", wc)
if err := webService.Run(); err != nil {
log.Fatal(err)
}
}