-
Notifications
You must be signed in to change notification settings - Fork 223
/
Copy pathmain.go
155 lines (141 loc) · 3.5 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
package main
import (
"errors"
"fmt"
"log"
"net/url"
"os"
"strings"
"github.com/urfave/cli"
"github.com/spaceuptech/space-cloud/config"
"github.com/spaceuptech/space-cloud/utils"
"github.com/spaceuptech/space-cloud/utils/server"
"github.com/spaceuptech/space-cloud/utils/validate"
)
func main() {
app := cli.NewApp()
app.Version = utils.BuildVersion
app.Name = "space-cloud-ee"
app.Usage = "core binary to run space cloud"
app.Commands = []cli.Command{
{
Name: "run",
Usage: "runs the space cloud instance",
Action: actionRun,
Flags: []cli.Flag{
cli.StringFlag{
Name: "port",
Value: "8080",
Usage: "Start HTTP server on port `PORT`",
},
cli.StringFlag{
Name: "grpc-port",
Value: "8081",
Usage: "Start grpc on port `GRPC_PORT`",
},
cli.IntFlag{
Name: "nats-port",
Value: 4222,
Usage: "Start nats on port `NATS_PORT`",
},
cli.IntFlag{
Name: "cluster-port",
Value: 4248,
Usage: "Start nats on port `NATS_PORT`",
},
cli.StringFlag{
Name: "secret",
Value: "none",
Usage: "The secret to use for authentication",
EnvVar: "SECRET",
},
cli.StringFlag{
Name: "account",
Value: "none",
Usage: "Start space-cloud with `ACCOUNT`",
EnvVar: "ACCOUNT",
},
cli.BoolFlag{
Name: "prod",
Usage: "Run space-cloud in production mode",
EnvVar: "PROD",
},
cli.BoolFlag{
Name: "disable-metrics",
Usage: "Disable anonymous metric collection",
EnvVar: "DISABLE_METRICS",
},
cli.BoolFlag{
Name: "disable-nats",
Usage: "Disable embedded nats server",
EnvVar: "DISABLE_NATS",
},
cli.StringFlag{
Name: "seeds",
Value: "none",
Usage: "Seed nodes to cluster with",
EnvVar: "SEEDS",
},
},
},
{
Name: "init",
Usage: "creates a config file with sensible defaults",
Action: actionInit,
},
}
err := app.Run(os.Args)
if err != nil {
log.Fatal(err)
}
}
func actionRun(c *cli.Context) error {
// Load cli flags
port := c.String("port")
grpcPort := c.String("grpc-port")
secret := c.String("secret")
account := c.String("account")
natsPort := c.Int("nats-port")
clusterPort := c.Int("cluster-port")
isProd := c.Bool("prod")
disableMetrics := c.Bool("disable-metrics")
disableNats := c.Bool("disable-nats")
seeds := c.String("seeds")
if account == "none" || secret == "none" {
return errors.New("Cannot start space-cloud with no account")
}
// Project and env cannot be changed once space cloud has started
s := server.New(isProd)
if !disableNats {
// TODO read nats config from the yaml file if it exists
if seeds != "" {
array := strings.Split(seeds, ",")
urls := []*url.URL{}
for _, v := range array {
if v != "" {
u, err := url.Parse("nats://" + v)
if err != nil {
return err
}
urls = append(urls, u)
}
}
server.DefaultNatsOptions.Routes = urls
}
server.DefaultNatsOptions.Port = natsPort
server.DefaultNatsOptions.Cluster.Port = clusterPort
s.RunNatsServer(server.DefaultNatsOptions)
fmt.Println("Started NATS server on port ", server.DefaultNatsOptions.Port)
}
// Anonymously collect usage metrics if not explicitly disabled
if !disableMetrics {
go s.RoutineMetrics()
}
// Start the validation process
validate.New(s.GetProjects()).Start(s.GetID(), account, secret)
s.Routes()
return s.Start(port, grpcPort)
}
func actionInit(*cli.Context) error {
return config.GenerateConfig()
}