-
Notifications
You must be signed in to change notification settings - Fork 23
/
commands.go
203 lines (159 loc) · 4.48 KB
/
commands.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
// 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"
"github.com/mendersoftware/go-lib-micro/config"
"github.com/mendersoftware/go-lib-micro/identity"
"github.com/mendersoftware/go-lib-micro/log"
"github.com/pkg/errors"
"golang.org/x/term"
"github.com/mendersoftware/useradm/client/tenant"
. "github.com/mendersoftware/useradm/config"
"github.com/mendersoftware/useradm/model"
"github.com/mendersoftware/useradm/store/mongo"
useradm "github.com/mendersoftware/useradm/user"
)
// safeReadPassword reads a user password from a terminal in a safe way (without
// echoing the characters input by the user)
func safeReadPassword() (string, error) {
stdinfd := int(os.Stdin.Fd())
if !term.IsTerminal(stdinfd) {
return "", errors.New("stdin is not a terminal")
}
fmt.Fprintf(os.Stderr, "Enter password: ")
raw, err := term.ReadPassword(int(os.Stdin.Fd()))
if err != nil {
return "", errors.Wrap(err, "failed to read password")
}
fmt.Fprintf(os.Stderr, "\n")
return string(raw), nil
}
func commandCreateUser(
c config.Reader,
username model.Email,
password, userId, tenantId string,
) error {
ctx := context.Background()
l := log.NewEmpty()
l.Debugf("create user '%s'", username)
if password == "" {
var err error
if password, err = safeReadPassword(); err != nil {
return err
}
}
u := model.User{
Email: username,
Password: password,
}
if userId != "" {
u.ID = userId
}
if err := u.Validate(); err != nil {
return errors.Wrap(err, "user validation failed")
}
db, err := mongo.GetDataStoreMongo(dataStoreMongoConfigFromAppConfig(c))
if err != nil {
return errors.Wrap(err, "database connection failed")
}
ua := useradm.NewUserAdm(nil, db, useradm.Config{})
if tadmAddr := c.GetString(SettingTenantAdmAddr); tadmAddr != "" {
l.Infof("setting up tenant verification")
tc := tenant.NewClient(tenant.Config{
TenantAdmAddr: tadmAddr,
})
ua = ua.WithTenantVerification(tc)
ctx = identity.WithContext(ctx, &identity.Identity{
Tenant: tenantId,
})
}
if err := ua.CreateUser(ctx, &u); err != nil {
return errors.Wrap(err, "creating user failed")
}
fmt.Printf("%s\n", u.ID)
return nil
}
func getTenantContext(tenantId string) context.Context {
ctx := context.Background()
if tenantId != "" {
id := &identity.Identity{
Tenant: tenantId,
}
ctx = identity.WithContext(ctx, id)
}
return ctx
}
func commandMigrate(c config.Reader, tenantId string) error {
l := log.New(log.Ctx{})
l.Printf("User Administration Service starting up")
if tenantId != "" {
l.Printf("migrating tenant %v", tenantId)
} else {
l.Printf("migrating all the tenants")
}
db, err := mongo.NewDataStoreMongo(dataStoreMongoConfigFromAppConfig(c))
if err != nil {
return errors.Wrap(err, "database connection failed")
}
// we want to apply migrations
db = db.WithAutomigrate()
ctx := context.Background()
if tenantId != "" {
err = db.MigrateTenant(ctx, mongo.DbVersion, tenantId)
} else {
err = db.Migrate(ctx, mongo.DbVersion)
}
if err != nil {
return errors.Wrap(err, "failed to run migrations")
}
return nil
}
func commandSetPassword(
c config.Reader,
username model.Email,
password, tenantId string,
) error {
l := log.NewEmpty()
l.Debugf("set password for '%s'", username)
if password == "" {
var err error
if password, err = safeReadPassword(); err != nil {
return err
}
}
db, err := mongo.GetDataStoreMongo(dataStoreMongoConfigFromAppConfig(c))
if err != nil {
return errors.Wrap(err, "database connection failed")
}
ua := useradm.NewUserAdm(nil, db, useradm.Config{})
u := model.User{
Email: username,
Password: password,
}
if err := u.Validate(); err != nil {
return errors.Wrap(err, "user validation failed")
}
ctx := getTenantContext(tenantId)
uu := model.UserUpdate{
Email: username,
Password: password,
}
if err := ua.SetPassword(ctx, uu); err != nil {
return errors.Wrap(err, "setting password failed")
}
return nil
}