-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathmain.go
138 lines (123 loc) · 4.03 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
/*
* Copyright 2019-2020 The NATS 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 (
"encoding/json"
"flag"
"fmt"
"log"
"os"
"os/signal"
"path/filepath"
"runtime"
"syscall"
"github.com/mitchellh/go-homedir"
"github.com/nats-io/nats-account-server/server/core"
)
func expandPath(p string) string {
var err error
if p != "" {
p, err = homedir.Expand(p)
if err != nil {
panic(fmt.Sprintf("error parsing path: %s", p))
}
p, err = filepath.Abs(p)
if err != nil {
panic(fmt.Sprintf("error resolving path: %s", p))
}
}
return p
}
func main() {
var server *core.AccountServer
disabledNscFolder := ""
disabledReadOnly := false
dump := false
flags := core.Flags{}
flag.StringVar(&flags.ConfigFile, "c", "", "configuration filepath, other flags take precedent over the config file")
flag.StringVar(&flags.Directory, "dir", "", "the directory to store/host accounts with, mututally exclusive from nsc")
flag.StringVar(&flags.OperatorJWTPath, "operator", "", "operator JWT path for the operator this account server is set up for")
flag.StringVar(&flags.NATSURL, "nats", "", "the NATS server to use for notifications, the default is no notifications")
flag.StringVar(&flags.Creds, "creds", "", "the creds file for connecting to NATS")
flag.StringVar(&flags.Primary, "primary", "", "the URL for the primary server, in the form http(s)://host:port/")
flag.BoolVar(&flags.Debug, "D", false, "turn on debug logging")
flag.BoolVar(&flags.Verbose, "V", false, "turn on verbose logging")
flag.BoolVar(&flags.DebugAndVerbose, "DV", false, "turn on debug and verbose logging")
flag.StringVar(&flags.HostPort, "hp", "", "http hostport, defaults to localhost:9090")
flag.StringVar(&disabledNscFolder, "nsc", "", core.NscError)
flag.BoolVar(&disabledReadOnly, "ro", false, core.RoError)
flag.BoolVar(&dump, "dump", false, "print config")
flag.Parse()
// resolve paths with dots/tildes
flags.ConfigFile = expandPath(flags.ConfigFile)
flags.Creds = expandPath(flags.Creds)
flags.Directory = expandPath(flags.Directory)
logStopExit := func(server *core.AccountServer, err error) {
if _, ok := server.Logger().(*core.NilLogger); !ok {
server.Logger().Errorf("%s", err.Error())
} else {
log.Printf("%s", err.Error())
}
server.Stop()
os.Exit(1)
}
server = core.NewAccountServer()
if err := server.InitializeFromFlags(flags); err != nil {
logStopExit(server, err)
}
if disabledNscFolder != "" {
logStopExit(server, fmt.Errorf(core.NscError))
}
if disabledReadOnly {
logStopExit(server, fmt.Errorf(core.RoError))
}
go func() {
sigChan := make(chan os.Signal, 1)
signal.Notify(sigChan, os.Interrupt, syscall.SIGHUP)
for {
signal := <-sigChan
if signal == os.Interrupt {
if _, ok := server.Logger().(*core.NilLogger); !ok {
fmt.Println() // clear the line for the control-C
}
server.Logger().Noticef("received sig-interrupt, shutting down")
server.Stop()
os.Exit(0)
}
if signal == syscall.SIGHUP {
server.Logger().Errorf("received sig-hup, restarting")
server.Stop()
server := core.NewAccountServer()
if err := server.InitializeFromFlags(flags); err != nil {
logStopExit(server, err)
}
if err := server.Start(); err != nil {
logStopExit(server, err)
}
}
}
}()
if err := core.Run(server); err != nil {
logStopExit(server, err)
}
if dump {
if d, err := json.MarshalIndent(server.Config(), "", " "); err == nil {
server.Logger().Noticef("%v", string(d))
}
}
// exit main but keep running goroutines
runtime.Goexit()
}