-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathresource_volumes.go
94 lines (79 loc) · 1.64 KB
/
resource_volumes.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
package fly
import (
"context"
)
func (c *Client) GetAppNameFromVolume(ctx context.Context, volID string) (*string, error) {
query := `
query($id: ID!) {
volume: node(id: $id) {
... on Volume {
app {
name
}
}
}
}
`
req := c.NewRequest(query)
req.Var("id", volID)
ctx = ctxWithAction(ctx, "get_app_name_from_volume")
data, err := c.RunWithContext(ctx, req)
if err != nil {
return nil, err
}
return &data.Volume.App.Name, nil
}
func (c *Client) GetAppNameStateFromVolume(ctx context.Context, volID string) (*string, *string, error) {
query := `
query GetAppNameStateFromVolume($id: ID!) {
volume: node(id: $id) {
... on Volume {
app {
name
}
state
}
}
}
`
req := c.NewRequest(query)
req.Var("id", volID)
ctx = ctxWithAction(ctx, "get_app_name_state_from_volume")
data, err := c.RunWithContext(ctx, req)
if err != nil {
return nil, nil, err
}
return &data.Volume.App.Name, &data.Volume.State, nil
}
func (c *Client) GetSnapshotsFromVolume(ctx context.Context, volID string) ([]VolumeSnapshot, error) {
query := `
query GetSnapshotsFromVolume($id: ID!) {
volume: node(id: $id) {
... on Volume {
snapshots {
nodes {
id
size
digest
createdAt
retentionDays
}
}
}
}
}
`
req := c.NewRequest(query)
req.Var("id", volID)
ctx = ctxWithAction(ctx, "get_snapshots_from_volume")
data, err := c.RunWithContext(ctx, req)
if err != nil {
return nil, err
}
var snapshots []VolumeSnapshot
for _, snapshot := range data.Volume.Snapshots.Nodes {
snapshot.Status = "created"
snapshots = append(snapshots, NewVolumeSnapshotFrom(snapshot))
}
return snapshots, nil
}