-
Notifications
You must be signed in to change notification settings - Fork 22
/
main.go
232 lines (209 loc) · 5.21 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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
// Copyright 2022 Northern.tech AS
//
// 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 (
"context"
"fmt"
"os"
"strings"
"github.com/mendersoftware/go-lib-micro/config"
"github.com/mendersoftware/go-lib-micro/log"
"github.com/urfave/cli"
. "github.com/mendersoftware/useradm/config"
"github.com/mendersoftware/useradm/model"
"github.com/mendersoftware/useradm/store/mongo"
)
func main() {
if err := doMain(os.Args); err != nil {
os.Exit(1)
}
}
func doMain(args []string) error {
var debug bool
var configPath string
app := cli.NewApp()
app.Usage = "user administration service"
app.Flags = []cli.Flag{
cli.StringFlag{
Name: "config",
Usage: "Configuration `FILE`." +
" Supports JSON, TOML, YAML and HCL formatted configs.",
Destination: &configPath,
},
cli.BoolFlag{
Name: "debug",
Usage: "Enable debug logging",
Destination: &debug,
},
}
app.Commands = []cli.Command{
{
Name: "server",
Usage: "Run the service as a server",
Flags: []cli.Flag{
cli.BoolFlag{
Name: "automigrate",
Usage: "Run database migrations before starting.",
},
},
Action: runServer,
},
{
Name: "create-user",
Usage: "Create user",
Flags: []cli.Flag{
cli.StringFlag{
Name: "username",
Usage: "Name of created user, must be an email address",
},
cli.StringFlag{
Name: "password",
Usage: "User's password, leave empty to have it read from stdin",
},
cli.StringFlag{
Name: "user-id",
Usage: "User ID, if already generated/available (optional).",
},
cli.StringFlag{
Name: "tenant-id",
Usage: "Tenant ID, if running a multitenant setup (optional).",
},
},
Action: runCreateUser,
},
{
Name: "set-password",
Usage: "Set password",
Flags: []cli.Flag{
cli.StringFlag{
Name: "username",
Usage: "Name of created user, must be an email address",
},
cli.StringFlag{
Name: "password",
Usage: "User's password, leave empty to have it read from stdin",
},
cli.StringFlag{
Name: "tenant-id",
Usage: "Tenant ID, if running a multitenant setup (optional).",
},
},
Action: runSetPassword,
},
{
Name: "migrate",
Usage: "Run migrations",
Flags: []cli.Flag{
cli.StringFlag{
Name: "tenant",
Usage: "Takes ID of specific tenant to migrate.",
},
},
Action: runMigrate,
},
}
app.Action = runServer
app.Before = func(args *cli.Context) error {
log.Setup(debug)
err := config.FromConfigFile(configPath, ConfigDefaults)
if err != nil {
return cli.NewExitError(
fmt.Sprintf("error loading configuration: %s", err),
1)
}
// Enable setting conig values by environment variables
config.Config.SetEnvPrefix("USERADM")
config.Config.AutomaticEnv()
if config.Config.IsSet(SettingPlanDefinitions) {
log.NewEmpty().Info(
"loading plan definitions from configuration",
)
err := model.LoadPlans(
config.Config.GetString(SettingPlanDefinitions),
)
if err != nil {
return fmt.Errorf(
"failed to load Plans from config: %w",
err,
)
}
}
return nil
}
err := app.Run(args)
if err != nil {
log.NewEmpty().Fatal(err)
}
return err
}
func runServer(args *cli.Context) error {
l := log.New(log.Ctx{})
l.Print("User Administration Service starting up")
ctx := context.Background()
db, err := mongo.NewDataStoreMongo(dataStoreMongoConfigFromAppConfig(config.Config))
if err != nil {
return cli.NewExitError(
fmt.Sprintf("failed to connect to db: %v", err),
2)
}
if args.Bool("automigrate") {
db = db.WithAutomigrate()
}
if config.Config.Get(SettingTenantAdmAddr) != "" {
db = db.WithMultitenant()
}
err = db.Migrate(ctx, mongo.DbVersion)
if err != nil {
return cli.NewExitError(
fmt.Sprintf("failed to run migrations: %v", err),
3)
}
err = RunServer(config.Config)
if err != nil {
return cli.NewExitError(err.Error(), 4)
}
return nil
}
func runCreateUser(args *cli.Context) error {
email := model.Email(strings.ToLower(args.String("username")))
err := commandCreateUser(
config.Config,
email,
args.String("password"),
args.String("user-id"),
args.String("tenant-id"),
)
if err != nil {
return cli.NewExitError(err.Error(), 5)
}
return nil
}
func runMigrate(args *cli.Context) error {
err := commandMigrate(config.Config, args.String("tenant"))
if err != nil {
return cli.NewExitError(err.Error(), 6)
}
return nil
}
func runSetPassword(args *cli.Context) error {
email := model.Email(strings.ToLower(args.String("username")))
err := commandSetPassword(
config.Config, email,
args.String("password"), args.String("tenant-id"),
)
if err != nil {
return cli.NewExitError(err.Error(), 7)
}
return nil
}