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