-
Notifications
You must be signed in to change notification settings - Fork 3
/
slack_integration.go
220 lines (180 loc) · 6.28 KB
/
slack_integration.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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
package scalr
import (
"context"
"errors"
"fmt"
"net/url"
"strings"
)
// Compile-time proof of interface implementation.
var _ SlackIntegrations = (*slackIntegrations)(nil)
// SlackIntegrations describes all the SlackIntegration related methods that the Scalr
// IACP API supports.
//
// IACP API docs: https://www.scalr.com/docs/en/latest/api/index.html
type SlackIntegrations interface {
List(ctx context.Context, options SlackIntegrationListOptions) (*SlackIntegrationList, error)
Create(ctx context.Context, options SlackIntegrationCreateOptions) (*SlackIntegration, error)
Read(ctx context.Context, slackIntegration string) (*SlackIntegration, error)
Update(ctx context.Context, slackIntegration string, options SlackIntegrationUpdateOptions) (*SlackIntegration, error)
Delete(ctx context.Context, slackIntegration string) error
GetConnection(ctx context.Context, accID string) (*SlackConnection, error)
}
// slackIntegrations implements SlackIntegrations.
type slackIntegrations struct {
client *Client
}
const (
SlackIntegrationEventRunApprovalRequired string = "run_approval_required"
SlackIntegrationEventRunSuccess string = "run_success"
SlackIntegrationEventRunErrored string = "run_errored"
)
// SlackIntegration represents a Scalr IACP slack integration.
type SlackIntegration struct {
ID string `jsonapi:"primary,slack-integrations"`
Name string `jsonapi:"attr,name"`
Status IntegrationStatus `jsonapi:"attr,status"`
ChannelId string `jsonapi:"attr,channel-id"`
Events []string `jsonapi:"attr,events"`
RunMode string `jsonapi:"attr,run-mode"`
// Relations
Account *Account `jsonapi:"relation,account"`
Environments []*Environment `jsonapi:"relation,environments"`
Workspaces []*Workspace `jsonapi:"relation,workspaces"`
}
type SlackIntegrationList struct {
*Pagination
Items []*SlackIntegration
}
type SlackIntegrationListOptions struct {
ListOptions
Filter *SlackIntegrationFilter `url:"filter,omitempty"`
}
// SlackIntegrationFilter represents the options for filtering Slack integrations.
type SlackIntegrationFilter struct {
Account *string `url:"account,omitempty"`
}
type SlackIntegrationCreateOptions struct {
ID string `jsonapi:"primary,slack-integrations"`
Name *string `jsonapi:"attr,name"`
ChannelId *string `jsonapi:"attr,channel-id"`
Events []string `jsonapi:"attr,events"`
RunMode *string `jsonapi:"attr,run-mode"`
Account *Account `jsonapi:"relation,account"`
Connection *SlackConnection `jsonapi:"relation,connection"`
Environments []*Environment `jsonapi:"relation,environments"`
Workspaces []*Workspace `jsonapi:"relation,workspaces,omitempty"`
}
type SlackIntegrationUpdateOptions struct {
ID string `jsonapi:"primary,slack-integrations"`
Name *string `jsonapi:"attr,name,omitempty"`
ChannelId *string `jsonapi:"attr,channel-id,omitempty"`
Status *IntegrationStatus `jsonapi:"attr,status,omitempty"`
Events []string `jsonapi:"attr,events,omitempty"`
RunMode *string `jsonapi:"attr,run-mode,omitempty"`
Environments []*Environment `jsonapi:"relation,environments,omitempty"`
Workspaces []*Workspace `jsonapi:"relation,workspaces"`
}
type SlackConnection struct {
ID string `jsonapi:"primary,slack-connections"`
SlackWorkspaceName string `jsonapi:"attr,slack-workspace-name"`
// Relations
Account *Account `jsonapi:"relation,account"`
}
func (s *slackIntegrations) List(
ctx context.Context, options SlackIntegrationListOptions,
) (*SlackIntegrationList, error) {
req, err := s.client.newRequest("GET", "integrations/slack", &options)
if err != nil {
return nil, err
}
wl := &SlackIntegrationList{}
err = s.client.do(ctx, req, wl)
if err != nil {
return nil, err
}
return wl, nil
}
func (s *slackIntegrations) Create(
ctx context.Context, options SlackIntegrationCreateOptions,
) (*SlackIntegration, error) {
// Make sure we don't send a user provided ID.
options.ID = ""
req, err := s.client.newRequest("POST", "integrations/slack", &options)
if err != nil {
return nil, err
}
w := &SlackIntegration{}
err = s.client.do(ctx, req, w)
if err != nil {
return nil, err
}
return w, nil
}
func (s *slackIntegrations) Read(ctx context.Context, si string) (*SlackIntegration, error) {
if !validStringID(&si) {
return nil, errors.New("invalid value for Slack integration ID")
}
u := fmt.Sprintf("integrations/slack/%s", url.QueryEscape(si))
req, err := s.client.newRequest("GET", u, nil)
if err != nil {
return nil, err
}
w := &SlackIntegration{}
err = s.client.do(ctx, req, w)
if err != nil {
return nil, err
}
return w, nil
}
func (s *slackIntegrations) Update(
ctx context.Context, si string, options SlackIntegrationUpdateOptions,
) (*SlackIntegration, error) {
if !validStringID(&si) {
return nil, errors.New("invalid value for slack integration ID")
}
// Make sure we don't send a user provided ID.
options.ID = ""
u := fmt.Sprintf("integrations/slack/%s", url.QueryEscape(si))
req, err := s.client.newRequest("PATCH", u, &options)
if err != nil {
return nil, err
}
w := &SlackIntegration{}
err = s.client.do(ctx, req, w)
if err != nil {
return nil, err
}
return w, nil
}
func (s *slackIntegrations) Delete(ctx context.Context, si string) error {
if !validStringID(&si) {
return errors.New("invalid value for slack integration ID")
}
u := fmt.Sprintf("integrations/slack/%s", url.QueryEscape(si))
req, err := s.client.newRequest("DELETE", u, nil)
if err != nil {
return err
}
return s.client.do(ctx, req, nil)
}
func (s *slackIntegrations) GetConnection(ctx context.Context, accID string) (*SlackConnection, error) {
if !validStringID(&accID) {
return nil, errors.New("invalid value for account ID")
}
u := fmt.Sprintf("integrations/slack/%s/connection", url.QueryEscape(accID))
req, err := s.client.newRequest("GET", u, nil)
if err != nil {
return nil, err
}
c := &SlackConnection{}
err = s.client.do(ctx, req, c)
if err != nil {
if strings.Contains(err.Error(), "data is not a jsonapi representation") {
// workaround for jsonapi serializer that can't handle nil 'data' structure we use for missing connection
return c, nil
}
return nil, err
}
return c, nil
}