-
Notifications
You must be signed in to change notification settings - Fork 140
/
block_fastly_service_v1_papertrail.go
179 lines (155 loc) · 4.68 KB
/
block_fastly_service_v1_papertrail.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
package fastly
import (
"fmt"
"log"
gofastly "github.com/fastly/go-fastly/fastly"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
)
type PaperTrailServiceAttributeHandler struct {
*DefaultServiceAttributeHandler
}
func NewServicePaperTrail(sa ServiceMetadata) ServiceAttributeDefinition {
return &PaperTrailServiceAttributeHandler{
&DefaultServiceAttributeHandler{
key: "papertrail",
serviceMetadata: sa,
},
}
}
func (h *PaperTrailServiceAttributeHandler) Process(d *schema.ResourceData, latestVersion int, conn *gofastly.Client) error {
os, ns := d.GetChange(h.GetKey())
if os == nil {
os = new(schema.Set)
}
if ns == nil {
ns = new(schema.Set)
}
oss := os.(*schema.Set)
nss := ns.(*schema.Set)
removePapertrail := oss.Difference(nss).List()
addPapertrail := nss.Difference(oss).List()
// DELETE old papertrail configurations
for _, pRaw := range removePapertrail {
pf := pRaw.(map[string]interface{})
opts := gofastly.DeletePapertrailInput{
Service: d.Id(),
Version: latestVersion,
Name: pf["name"].(string),
}
log.Printf("[DEBUG] Fastly Papertrail removal opts: %#v", opts)
err := conn.DeletePapertrail(&opts)
if errRes, ok := err.(*gofastly.HTTPError); ok {
if errRes.StatusCode != 404 {
return err
}
} else if err != nil {
return err
}
}
// POST new/updated Papertrail
for _, pRaw := range addPapertrail {
pf := pRaw.(map[string]interface{})
var vla = h.getVCLLoggingAttributes(pf)
opts := gofastly.CreatePapertrailInput{
Service: d.Id(),
Version: latestVersion,
Name: pf["name"].(string),
Address: pf["address"].(string),
Port: uint(pf["port"].(int)),
Format: vla.format,
ResponseCondition: vla.responseCondition,
Placement: vla.placement,
}
log.Printf("[DEBUG] Create Papertrail Opts: %#v", opts)
_, err := conn.CreatePapertrail(&opts)
if err != nil {
return err
}
}
return nil
}
func (h *PaperTrailServiceAttributeHandler) Read(d *schema.ResourceData, s *gofastly.ServiceDetail, conn *gofastly.Client) error {
log.Printf("[DEBUG] Refreshing Papertrail for (%s)", d.Id())
papertrailList, err := conn.ListPapertrails(&gofastly.ListPapertrailsInput{
Service: d.Id(),
Version: s.ActiveVersion.Number,
})
if err != nil {
return fmt.Errorf("[ERR] Error looking up Papertrail for (%s), version (%v): %s", d.Id(), s.ActiveVersion.Number, err)
}
pl := flattenPapertrails(papertrailList)
if err := d.Set(h.GetKey(), pl); err != nil {
log.Printf("[WARN] Error setting Papertrail for (%s): %s", d.Id(), err)
}
return nil
}
func (h *PaperTrailServiceAttributeHandler) Register(s *schema.Resource) error {
var blockAttributes = map[string]*schema.Schema{
// Required fields
"name": {
Type: schema.TypeString,
Required: true,
Description: "Unique name to refer to this logging setup",
},
"address": {
Type: schema.TypeString,
Required: true,
Description: "The address of the papertrail service",
},
"port": {
Type: schema.TypeInt,
Required: true,
Description: "The port of the papertrail service",
},
}
if h.GetServiceMetadata().serviceType == ServiceTypeVCL {
blockAttributes["format"] = &schema.Schema{
Type: schema.TypeString,
Optional: true,
Default: "%h %l %u %t %r %>s",
Description: "Apache-style string or VCL variables to use for log formatting",
}
blockAttributes["response_condition"] = &schema.Schema{
Type: schema.TypeString,
Optional: true,
Default: "",
Description: "Name of blockAttributes condition to apply this logging",
}
blockAttributes["placement"] = &schema.Schema{
Type: schema.TypeString,
Optional: true,
Description: "Where in the generated VCL the logging call should be placed.",
ValidateFunc: validateLoggingPlacement(),
}
}
s.Schema[h.GetKey()] = &schema.Schema{
Type: schema.TypeSet,
Optional: true,
Elem: &schema.Resource{
Schema: blockAttributes,
},
}
return nil
}
func flattenPapertrails(papertrailList []*gofastly.Papertrail) []map[string]interface{} {
var pl []map[string]interface{}
for _, p := range papertrailList {
// Convert Papertrails to a map for saving to state.
ns := map[string]interface{}{
"name": p.Name,
"address": p.Address,
"port": p.Port,
"format": p.Format,
"response_condition": p.ResponseCondition,
"placement": p.Placement,
}
// prune any empty values that come from the default string value in structs
for k, v := range ns {
if v == "" {
delete(ns, k)
}
}
pl = append(pl, ns)
}
return pl
}