forked from influxdata/influxdb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
onboarding.go
67 lines (58 loc) · 1.48 KB
/
onboarding.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
package influxdb
import "context"
// OnboardingService represents a service for the first run.
type OnboardingService interface {
PasswordsService
BucketService
OrganizationService
UserService
AuthorizationService
// IsOnboarding determine if onboarding request is allowed.
IsOnboarding(ctx context.Context) (bool, error)
// Generate OnboardingResults.
Generate(ctx context.Context, req *OnboardingRequest) (*OnboardingResults, error)
}
// OnboardingResults is a group of elements required for first run.
type OnboardingResults struct {
User *User `json:"user"`
Org *Organization `json:"org"`
Bucket *Bucket `json:"bucket"`
Auth *Authorization `json:"auth"`
}
// OnboardingRequest is the request
// to setup defaults.
type OnboardingRequest struct {
User string `json:"username"`
Password string `json:"password"`
Org string `json:"org"`
Bucket string `json:"bucket"`
RetentionPeriod uint `json:"retentionPeriodHrs,omitempty"`
Token string `json:"token,omitempty"`
}
func (r *OnboardingRequest) Valid() error {
if r.Password == "" {
return &Error{
Code: EEmptyValue,
Msg: "password is empty",
}
}
if r.User == "" {
return &Error{
Code: EEmptyValue,
Msg: "username is empty",
}
}
if r.Org == "" {
return &Error{
Code: EEmptyValue,
Msg: "org name is empty",
}
}
if r.Bucket == "" {
return &Error{
Code: EEmptyValue,
Msg: "bucket name is empty",
}
}
return nil
}