]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blob - statuscake/resource_statuscaketest.go
Merge pull request #1 from matschaffer/callstats-io-fixes
[github/fretlink/terraform-provider-statuscake.git] / statuscake / resource_statuscaketest.go
1 package statuscake
2
3 import (
4 "fmt"
5 "strconv"
6
7 "log"
8
9 "github.com/DreamItGetIT/statuscake"
10 "github.com/hashicorp/terraform/helper/schema"
11 )
12
13 func castSetToSliceStrings(configured []interface{}) []string {
14 res := make([]string, len(configured))
15
16 for i, element := range configured {
17 res[i] = element.(string)
18 }
19 return res
20 }
21
22 // Special handling for node_locations since statuscake will return `[""]` for the empty case
23 func considerEmptyStringAsEmptyArray(in []string) []string {
24 if len(in) == 1 && in[0] == "" {
25 return []string{}
26 } else {
27 return in
28 }
29 }
30
31 func resourceStatusCakeTest() *schema.Resource {
32 return &schema.Resource{
33 Create: CreateTest,
34 Update: UpdateTest,
35 Delete: DeleteTest,
36 Read: ReadTest,
37
38 Schema: map[string]*schema.Schema{
39 "test_id": {
40 Type: schema.TypeString,
41 Computed: true,
42 },
43
44 "website_name": {
45 Type: schema.TypeString,
46 Required: true,
47 },
48
49 "website_url": {
50 Type: schema.TypeString,
51 Required: true,
52 },
53
54 "contact_id": {
55 Type: schema.TypeInt,
56 Optional: true,
57 },
58
59 "check_rate": {
60 Type: schema.TypeInt,
61 Optional: true,
62 Default: 300,
63 },
64
65 "test_type": {
66 Type: schema.TypeString,
67 Required: true,
68 },
69
70 "paused": {
71 Type: schema.TypeBool,
72 Optional: true,
73 Default: false,
74 },
75
76 "timeout": {
77 Type: schema.TypeInt,
78 Optional: true,
79 Default: 40,
80 },
81
82 "confirmations": {
83 Type: schema.TypeInt,
84 Optional: true,
85 },
86
87 "port": {
88 Type: schema.TypeInt,
89 Optional: true,
90 },
91
92 "trigger_rate": {
93 Type: schema.TypeInt,
94 Optional: true,
95 Default: 5,
96 },
97 "custom_header": {
98 Type: schema.TypeString,
99 Optional: true,
100 },
101
102 "user_agent": {
103 Type: schema.TypeString,
104 Optional: true,
105 },
106
107 "status": {
108 Type: schema.TypeString,
109 Computed: true,
110 },
111
112 "uptime": {
113 Type: schema.TypeFloat,
114 Computed: true,
115 },
116
117 "node_locations": {
118 Type: schema.TypeSet,
119 Elem: &schema.Schema{Type: schema.TypeString},
120 Optional: true,
121 Set: schema.HashString,
122 },
123
124 "ping_url": {
125 Type: schema.TypeString,
126 Optional: true,
127 },
128
129 "basic_user": {
130 Type: schema.TypeString,
131 Optional: true,
132 },
133
134 "basic_pass": {
135 Type: schema.TypeString,
136 Optional: true,
137 Sensitive: true,
138 },
139
140 "public": {
141 Type: schema.TypeInt,
142 Optional: true,
143 },
144
145 "logo_image": {
146 Type: schema.TypeString,
147 Optional: true,
148 },
149
150 "branding": {
151 Type: schema.TypeInt,
152 Optional: true,
153 },
154
155 "website_host": {
156 Type: schema.TypeString,
157 Optional: true,
158 },
159
160 "virus": {
161 Type: schema.TypeInt,
162 Optional: true,
163 },
164
165 "find_string": {
166 Type: schema.TypeString,
167 Optional: true,
168 },
169
170 "do_not_find": {
171 Type: schema.TypeBool,
172 Optional: true,
173 },
174
175 "real_browser": {
176 Type: schema.TypeInt,
177 Optional: true,
178 },
179
180 "test_tags": {
181 Type: schema.TypeString,
182 Optional: true,
183 },
184
185 "status_codes": {
186 Type: schema.TypeString,
187 Optional: true,
188 },
189
190 "use_jar": {
191 Type: schema.TypeInt,
192 Optional: true,
193 },
194
195 "post_raw": {
196 Type: schema.TypeString,
197 Optional: true,
198 },
199
200 "final_endpoint": {
201 Type: schema.TypeString,
202 Optional: true,
203 },
204
205 "follow_redirect": {
206 Type: schema.TypeBool,
207 Optional: true,
208 },
209 },
210 }
211 }
212
213 func CreateTest(d *schema.ResourceData, meta interface{}) error {
214 client := meta.(*statuscake.Client)
215
216 newTest := &statuscake.Test{
217 WebsiteName: d.Get("website_name").(string),
218 WebsiteURL: d.Get("website_url").(string),
219 CheckRate: d.Get("check_rate").(int),
220 TestType: d.Get("test_type").(string),
221 Paused: d.Get("paused").(bool),
222 Timeout: d.Get("timeout").(int),
223 ContactID: d.Get("contact_id").(int),
224 Confirmation: d.Get("confirmations").(int),
225 Port: d.Get("port").(int),
226 TriggerRate: d.Get("trigger_rate").(int),
227 CustomHeader: d.Get("custom_header").(string),
228 UserAgent: d.Get("user_agent").(string),
229 Status: d.Get("status").(string),
230 Uptime: d.Get("uptime").(float64),
231 NodeLocations: castSetToSliceStrings(d.Get("node_locations").(*schema.Set).List()),
232 PingURL: d.Get("ping_url").(string),
233 BasicUser: d.Get("basic_user").(string),
234 BasicPass: d.Get("basic_pass").(string),
235 Public: d.Get("public").(int),
236 LogoImage: d.Get("logo_image").(string),
237 Branding: d.Get("branding").(int),
238 WebsiteHost: d.Get("website_host").(string),
239 Virus: d.Get("virus").(int),
240 FindString: d.Get("find_string").(string),
241 DoNotFind: d.Get("do_not_find").(bool),
242 RealBrowser: d.Get("real_browser").(int),
243 TestTags: d.Get("test_tags").(string),
244 StatusCodes: d.Get("status_codes").(string),
245 UseJar: d.Get("use_jar").(int),
246 PostRaw: d.Get("post_raw").(string),
247 FinalEndpoint: d.Get("final_endpoint").(string),
248 FollowRedirect: d.Get("follow_redirect").(bool),
249 }
250
251 log.Printf("[DEBUG] Creating new StatusCake Test: %s", d.Get("website_name").(string))
252
253 response, err := client.Tests().Update(newTest)
254 if err != nil {
255 return fmt.Errorf("Error creating StatusCake Test: %s", err.Error())
256 }
257
258 d.Set("test_id", fmt.Sprintf("%d", response.TestID))
259 d.Set("status", response.Status)
260 d.Set("uptime", fmt.Sprintf("%.3f", response.Uptime))
261 d.SetId(fmt.Sprintf("%d", response.TestID))
262
263 return ReadTest(d, meta)
264 }
265
266 func UpdateTest(d *schema.ResourceData, meta interface{}) error {
267 client := meta.(*statuscake.Client)
268
269 params := getStatusCakeTestInput(d)
270
271 log.Printf("[DEBUG] StatusCake Test Update for %s", d.Id())
272 _, err := client.Tests().Update(params)
273 if err != nil {
274 return fmt.Errorf("Error Updating StatusCake Test: %s", err.Error())
275 }
276 return nil
277 }
278
279 func DeleteTest(d *schema.ResourceData, meta interface{}) error {
280 client := meta.(*statuscake.Client)
281
282 testId, parseErr := strconv.Atoi(d.Id())
283 if parseErr != nil {
284 return parseErr
285 }
286 log.Printf("[DEBUG] Deleting StatusCake Test: %s", d.Id())
287 err := client.Tests().Delete(testId)
288 if err != nil {
289 return err
290 }
291
292 return nil
293 }
294
295 func ReadTest(d *schema.ResourceData, meta interface{}) error {
296 client := meta.(*statuscake.Client)
297
298 testId, parseErr := strconv.Atoi(d.Id())
299 if parseErr != nil {
300 return parseErr
301 }
302 testResp, err := client.Tests().Detail(testId)
303 if err != nil {
304 return fmt.Errorf("Error Getting StatusCake Test Details for %s: Error: %s", d.Id(), err)
305 }
306 d.Set("website_name", testResp.WebsiteName)
307 d.Set("website_url", testResp.WebsiteURL)
308 d.Set("check_rate", testResp.CheckRate)
309 d.Set("test_type", testResp.TestType)
310 d.Set("paused", testResp.Paused)
311 d.Set("timeout", testResp.Timeout)
312 d.Set("contact_id", testResp.ContactID)
313 d.Set("confirmations", testResp.Confirmation)
314 d.Set("port", testResp.Port)
315 d.Set("trigger_rate", testResp.TriggerRate)
316 d.Set("custom_header", testResp.CustomHeader)
317 d.Set("status", testResp.Status)
318 d.Set("uptime", testResp.Uptime)
319 if err := d.Set("node_locations", considerEmptyStringAsEmptyArray(testResp.NodeLocations)); err != nil {
320 return fmt.Errorf("[WARN] Error setting node locations: %s", err)
321 }
322 d.Set("logo_image", testResp.LogoImage)
323 // Even after WebsiteHost is set, the API returns ""
324 // API docs aren't clear on usage will only override state if we get a non-empty value back
325 if testResp.WebsiteHost != "" {
326 d.Set("website_host", testResp.WebsiteHost)
327 }
328 d.Set("find_string", testResp.FindString)
329 d.Set("do_not_find", testResp.DoNotFind)
330 d.Set("status_codes", testResp.StatusCodes)
331 d.Set("use_jar", testResp.UseJar)
332 d.Set("post_raw", testResp.PostRaw)
333 d.Set("final_endpoint", testResp.FinalEndpoint)
334 d.Set("follow_redirect", testResp.FollowRedirect)
335
336 return nil
337 }
338
339 func getStatusCakeTestInput(d *schema.ResourceData) *statuscake.Test {
340 testId, parseErr := strconv.Atoi(d.Id())
341 if parseErr != nil {
342 log.Printf("[DEBUG] Error Parsing StatusCake TestID: %s", d.Id())
343 }
344 test := &statuscake.Test{
345 TestID: testId,
346 }
347 if v, ok := d.GetOk("website_name"); ok {
348 test.WebsiteName = v.(string)
349 }
350 if v, ok := d.GetOk("website_url"); ok {
351 test.WebsiteURL = v.(string)
352 }
353 if v, ok := d.GetOk("check_rate"); ok {
354 test.CheckRate = v.(int)
355 }
356 if v, ok := d.GetOk("contact_id"); ok {
357 test.ContactID = v.(int)
358 }
359 if v, ok := d.GetOk("test_type"); ok {
360 test.TestType = v.(string)
361 }
362 if v, ok := d.GetOk("paused"); ok {
363 test.Paused = v.(bool)
364 }
365 if v, ok := d.GetOk("timeout"); ok {
366 test.Timeout = v.(int)
367 }
368 if v, ok := d.GetOk("confirmations"); ok {
369 test.Confirmation = v.(int)
370 }
371 if v, ok := d.GetOk("port"); ok {
372 test.Port = v.(int)
373 }
374 if v, ok := d.GetOk("trigger_rate"); ok {
375 test.TriggerRate = v.(int)
376 }
377 if v, ok := d.GetOk("custom_header"); ok {
378 test.CustomHeader = v.(string)
379 }
380 if v, ok := d.GetOk("user_agent"); ok {
381 test.UserAgent = v.(string)
382 }
383 if v, ok := d.GetOk("node_locations"); ok {
384 test.NodeLocations = castSetToSliceStrings(v.(*schema.Set).List())
385 }
386 if v, ok := d.GetOk("ping_url"); ok {
387 test.PingURL = v.(string)
388 }
389 if v, ok := d.GetOk("basic_user"); ok {
390 test.BasicUser = v.(string)
391 }
392 if v, ok := d.GetOk("basic_pass"); ok {
393 test.BasicPass = v.(string)
394 }
395 if v, ok := d.GetOk("public"); ok {
396 test.Public = v.(int)
397 }
398 if v, ok := d.GetOk("logo_image"); ok {
399 test.LogoImage = v.(string)
400 }
401 if v, ok := d.GetOk("branding"); ok {
402 test.Branding = v.(int)
403 }
404 if v, ok := d.GetOk("website_host"); ok {
405 test.WebsiteHost = v.(string)
406 }
407 if v, ok := d.GetOk("virus"); ok {
408 test.Virus = v.(int)
409 }
410 if v, ok := d.GetOk("find_string"); ok {
411 test.FindString = v.(string)
412 }
413 if v, ok := d.GetOk("do_not_find"); ok {
414 test.DoNotFind = v.(bool)
415 }
416 if v, ok := d.GetOk("real_browser"); ok {
417 test.RealBrowser = v.(int)
418 }
419 if v, ok := d.GetOk("test_tags"); ok {
420 test.TestTags = v.(string)
421 }
422 if v, ok := d.GetOk("status_codes"); ok {
423 test.StatusCodes = v.(string)
424 }
425 if v, ok := d.GetOk("use_jar"); ok {
426 test.UseJar = v.(int)
427 }
428 if v, ok := d.GetOk("post_raw"); ok {
429 test.PostRaw = v.(string)
430 }
431 if v, ok := d.GetOk("final_endpoint"); ok {
432 test.FinalEndpoint = v.(string)
433 }
434 if v, ok := d.GetOk("follow_redirect"); ok {
435 test.FollowRedirect = v.(bool)
436 }
437
438 return test
439 }