This repository has been archived by the owner on Apr 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
backups.go
170 lines (137 loc) · 5.06 KB
/
backups.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
// Copyright 2016 Compose, an IBM Company
//
// 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 composeapi
import (
"encoding/json"
"time"
)
// Backup structure
type Backup struct {
ID string `json:"id"`
Deploymentid string `json:"deployment_id"`
Name string `json:"name"`
Type string `json:"type"`
Status string `json:"status"`
IsDownloadable bool `json:"is_downloadable"`
IsRestorable bool `json:"is_restorable"`
CreatedAt time.Time `json:"created_at"`
DownloadLink string `json:"download_link"`
}
// backupsResponse is used to represent and remove the JSON+HAL Embedded wrapper
type backupsResponse struct {
Embedded struct {
Backups []Backup `json:"backups"`
} `json:"_embedded"`
}
//GetBackupsForDeploymentJSON returns backup details for deployment
func (c *Client) GetBackupsForDeploymentJSON(deploymentid string) (string, []error) {
return c.getJSON("deployments/" + deploymentid + "/backups")
}
//GetBackupsForDeployment returns backup details for deployment
func (c *Client) GetBackupsForDeployment(deploymentid string) (*[]Backup, []error) {
body, errs := c.GetBackupsForDeploymentJSON(deploymentid)
if errs != nil {
return nil, errs
}
backupsResponse := backupsResponse{}
json.Unmarshal([]byte(body), &backupsResponse)
Backups := backupsResponse.Embedded.Backups
return &Backups, nil
}
//StartBackupForDeploymentJSON starts backup and returns JSON response
func (c *Client) StartBackupForDeploymentJSON(deploymentid string) (string, []error) {
response, body, errs := c.newRequest("POST", apibase+"deployments/"+deploymentid+"/backups").
End()
if response.StatusCode != 202 { // Expect Accepted on success - assume error on anything else
errs = ProcessErrors(response.StatusCode, body)
}
return body, errs
}
//StartBackupForDeployment starts backup and returns recipe
func (c *Client) StartBackupForDeployment(deploymentid string) (*Recipe, []error) {
body, errs := c.StartBackupForDeploymentJSON(deploymentid)
if errs != nil {
return nil, errs
}
recipe := Recipe{}
json.Unmarshal([]byte(body), &recipe)
return &recipe, nil
}
//GetBackupDetailsForDeploymentJSON returns the details and download link for a backup
func (c *Client) GetBackupDetailsForDeploymentJSON(deploymentid string, backupid string) (string, []error) {
return c.getJSON("deployments/" + deploymentid + "/backups/" + backupid)
}
//GetBackupDetailsForDeployment returns backup details for deployment
func (c *Client) GetBackupDetailsForDeployment(deploymentid string, backupid string) (*Backup, []error) {
body, errs := c.GetBackupDetailsForDeploymentJSON(deploymentid, backupid)
if errs != nil {
return nil, errs
}
backup := Backup{}
json.Unmarshal([]byte(body), &backup)
return &backup, nil
}
//RestoreBackupParams Parameters to be completed before creating a deployment
type RestoreBackupParams struct {
DeploymentID string
BackupID string
Name string
ClusterID string
Datacenter string
Version string
SSL bool
}
type restoreBackupParams struct {
DeploymentID string `json:"-"`
BackupID string `json:"-"`
Deployment restoreBackupDeploymentParams `json:"deployment"`
}
type restoreBackupDeploymentParams struct {
Name string `json:"name"`
ClusterID string `json:"cluster_id,omitempty"`
Datacenter string `json:"datacenter,omitempty"`
Version string `json:"version,omitempty"`
SSL bool `json:"ssl,omitempty"`
}
//RestoreBackupJSON performs the call
func (c *Client) RestoreBackupJSON(params RestoreBackupParams) (string, []error) {
backupparams := restoreBackupParams{
DeploymentID: params.DeploymentID,
BackupID: params.BackupID,
Deployment: restoreBackupDeploymentParams{Name: params.Name,
ClusterID: params.ClusterID,
Datacenter: params.Datacenter,
Version: params.Version,
SSL: params.SSL,
},
}
response, body, errs := c.newRequest("POST", apibase+"deployments/"+params.DeploymentID+"/backups/"+params.BackupID+"/restore").
Send(backupparams).
End()
if response.StatusCode != 202 { // Expect Accepted on success - assume error on anything else
errs = ProcessErrors(response.StatusCode, body)
}
return body, errs
}
//RestoreBackup creates a deployment
func (c *Client) RestoreBackup(params RestoreBackupParams) (*Deployment, []error) {
// This is a POST not a GET, so it builds its own request
body, errs := c.RestoreBackupJSON(params)
if errs != nil {
return nil, errs
}
deployed := Deployment{}
json.Unmarshal([]byte(body), &deployed)
return &deployed, nil
}