forked from OpsLevel/opslevel-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlevel.go
150 lines (129 loc) · 3.19 KB
/
level.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
package opslevel
import (
"fmt"
"github.com/hasura/go-graphql-client"
)
type Level struct {
Alias string
Description string `json:"description,omitempty"`
Id ID `json:"id"`
Index int
Name string
}
type LevelConnection struct {
Nodes []Level
PageInfo PageInfo
TotalCount graphql.Int
}
type LevelCreateInput struct {
Name string `json:"name"`
Description string `json:"description,omitempty"`
Index *int `json:"index,omitempty"`
}
type LevelUpdateInput struct {
Id ID `json:"id"`
Name string `json:"name,omitempty"`
Description *string `json:"description,omitempty"`
}
type LevelDeleteInput struct {
Id ID `json:"id"`
}
func (conn *LevelConnection) Hydrate(client *Client) error {
var q struct {
Account struct {
Rubric struct {
Levels LevelConnection `graphql:"levels(after: $after, first: $first)"`
}
}
}
v := PayloadVariables{
"first": client.pageSize,
}
q.Account.Rubric.Levels.PageInfo = conn.PageInfo
for q.Account.Rubric.Levels.PageInfo.HasNextPage {
v["after"] = q.Account.Rubric.Levels.PageInfo.End
if err := client.Query(&q, v); err != nil {
return err
}
conn.Nodes = append(conn.Nodes, q.Account.Rubric.Levels.Nodes...)
}
return nil
}
//#region Create
func (client *Client) CreateLevel(input LevelCreateInput) (*Level, error) {
var m struct {
Payload struct {
Level Level
Errors []OpsLevelErrors
} `graphql:"levelCreate(input: $input)"`
}
v := PayloadVariables{
"input": input,
}
err := client.Mutate(&m, v, WithName("LevelCreate"))
return &m.Payload.Level, HandleErrors(err, m.Payload.Errors)
}
//#endregion
//#region Retrieve
func (client *Client) GetLevel(id ID) (*Level, error) {
var q struct {
Account struct {
Level Level `graphql:"level(id: $id)"`
}
}
v := PayloadVariables{
"id": id,
}
err := client.Query(&q, v, WithName("LevelGet"))
if q.Account.Level.Id == "" {
err = fmt.Errorf("Level with ID '%s' not found!", id)
}
return &q.Account.Level, HandleErrors(err, nil)
}
func (client *Client) ListLevels() ([]Level, error) {
var q struct {
Account struct {
Rubric struct {
Levels LevelConnection
}
}
}
if err := client.Query(&q, nil); err != nil {
return q.Account.Rubric.Levels.Nodes, err
}
if err := q.Account.Rubric.Levels.Hydrate(client); err != nil {
return q.Account.Rubric.Levels.Nodes, err
}
return q.Account.Rubric.Levels.Nodes, nil
}
//#endregion
//#region Update
func (client *Client) UpdateLevel(input LevelUpdateInput) (*Level, error) {
var m struct {
Payload struct {
Level Level
Errors []OpsLevelErrors
} `graphql:"levelUpdate(input: $input)"`
}
v := PayloadVariables{
"input": input,
}
err := client.Mutate(&m, v, WithName("LevelUpdate"))
return &m.Payload.Level, HandleErrors(err, m.Payload.Errors)
}
//#endregion
//#region Delete
func (client *Client) DeleteLevel(id ID) error {
var m struct {
Payload struct {
Id ID `graphql:"deletedLevelId"`
Errors []OpsLevelErrors
} `graphql:"levelDelete(input: $input)"`
}
v := PayloadVariables{
"input": LevelDeleteInput{Id: id},
}
err := client.Mutate(&m, v, WithName("LevelDelete"))
return HandleErrors(err, m.Payload.Errors)
}
//#endregion