-
Notifications
You must be signed in to change notification settings - Fork 20
/
dbaas_create_redis.go
113 lines (98 loc) · 3.62 KB
/
dbaas_create_redis.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
package cmd
import (
"fmt"
"net/http"
"strings"
"github.com/spf13/cobra"
"github.com/exoscale/cli/pkg/account"
"github.com/exoscale/cli/pkg/globalstate"
"github.com/exoscale/cli/utils"
exoapi "github.com/exoscale/egoscale/v2/api"
"github.com/exoscale/egoscale/v2/oapi"
)
func (c *dbaasServiceCreateCmd) createRedis(_ *cobra.Command, _ []string) error {
var err error
ctx := exoapi.WithEndpoint(gContext, exoapi.NewReqEndpoint(account.CurrentAccount.Environment, c.Zone))
databaseService := oapi.CreateDbaasServiceRedisJSONRequestBody{
Plan: c.Plan,
TerminationProtection: &c.TerminationProtection,
}
settingsSchema, err := globalstate.EgoscaleClient.GetDbaasSettingsRedisWithResponse(ctx)
if err != nil {
return fmt.Errorf("unable to retrieve Database Service settings: %w", err)
}
if settingsSchema.StatusCode() != http.StatusOK {
return fmt.Errorf("API request error: unexpected status %s", settingsSchema.Status())
}
if c.RedisForkFrom != "" {
databaseService.ForkFromService = (*oapi.DbaasServiceName)(&c.RedisForkFrom)
if c.RedisRecoveryBackupName != "" {
databaseService.RecoveryBackupName = &c.RedisRecoveryBackupName
}
}
if len(c.RedisIPFilter) > 0 {
databaseService.IpFilter = &c.RedisIPFilter
}
if c.MaintenanceDOW != "" && c.MaintenanceTime != "" {
databaseService.Maintenance = &struct {
Dow oapi.CreateDbaasServiceRedisJSONBodyMaintenanceDow `json:"dow"`
Time string `json:"time"`
}{
Dow: oapi.CreateDbaasServiceRedisJSONBodyMaintenanceDow(c.MaintenanceDOW),
Time: c.MaintenanceTime,
}
}
if c.RedisSettings != "" {
settings, err := validateDatabaseServiceSettings(c.RedisSettings, settingsSchema.JSON200.Settings.Redis)
if err != nil {
return fmt.Errorf("invalid settings: %w", err)
}
databaseService.RedisSettings = &settings
}
if c.RedisMigrationHost != "" {
databaseService.Migration = &struct {
Dbname *string `json:"dbname,omitempty"`
Host string `json:"host"`
IgnoreDbs *string `json:"ignore-dbs,omitempty"`
Method *oapi.EnumMigrationMethod `json:"method,omitempty"`
Password *string `json:"password,omitempty"`
Port int64 `json:"port"`
Ssl *bool `json:"ssl,omitempty"`
Username *string `json:"username,omitempty"`
}{
Host: c.RedisMigrationHost,
Port: c.RedisMigrationPort,
Password: utils.NonEmptyStringPtr(c.RedisMigrationPassword),
Username: utils.NonEmptyStringPtr(c.RedisMigrationUsername),
Dbname: utils.NonEmptyStringPtr(c.RedisMigrationDbName),
}
if c.RedisMigrationSSL {
databaseService.Migration.Ssl = &c.RedisMigrationSSL
}
if c.RedisMigrationMethod != "" {
method := oapi.EnumMigrationMethod(c.RedisMigrationMethod)
databaseService.Migration.Method = &method
}
if len(c.RedisMigrationIgnoreDbs) > 0 {
dbsJoin := strings.Join(c.RedisMigrationIgnoreDbs, ",")
databaseService.Migration.IgnoreDbs = &dbsJoin
}
}
var res *oapi.CreateDbaasServiceRedisResponse
decorateAsyncOperation(fmt.Sprintf("Creating Database Service %q...", c.Name), func() {
res, err = globalstate.EgoscaleClient.CreateDbaasServiceRedisWithResponse(ctx, oapi.DbaasServiceName(c.Name), databaseService)
})
if err != nil {
return err
}
if res.StatusCode() != http.StatusOK {
return fmt.Errorf("API request error: unexpected status %s", res.Status())
}
if !globalstate.Quiet {
return c.outputFunc((&dbaasServiceShowCmd{
Name: c.Name,
Zone: c.Zone,
}).showDatabaseServiceRedis(ctx))
}
return nil
}