forked from scottdware/go-panos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
templates.go
313 lines (255 loc) · 9.46 KB
/
templates.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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
package panos
import (
"encoding/xml"
"errors"
"fmt"
"strings"
"github.com/scottdware/go-rested"
)
// Templates lists all of the templates in Panorama.
type Templates struct {
XMLName xml.Name `xml:"response"`
Status string `xml:"status,attr"`
Code string `xml:"code,attr"`
Templates []Template `xml:"result>template>entry"`
}
// Template contains information about each individual template.
type Template struct {
Name string `xml:"name,attr"`
Description string `xml:"description"`
Devices []Serial `xml:"devices>entry"`
}
// TemplateStacks lists all of the template stacks in Panorama.
type TemplateStacks struct {
XMLName xml.Name `xml:"response"`
Status string `xml:"status,attr"`
Code string `xml:"code,attr"`
Templates []TemplateStack `xml:"result>template-stack>entry"`
}
// TemplateStack contains information about each individual template stack.
type TemplateStack struct {
Name string `xml:"name,attr"`
Description string `xml:"description"`
Members []string `xml:"templates>member"`
Devices []Serial `xml:"devices>entry"`
}
// Templates returns information about all of the templates in Panorama, and what devices they are
// applied to.
func (p *PaloAlto) Templates() (*Templates, error) {
var temps Templates
xpath := "/config/devices/entry//template"
// xpath := "/config/devices/entry/vsys/entry/address"
r := rested.NewRequest()
if p.DeviceType != "panorama" {
return nil, errors.New("templates can only be listed on a Panorama device")
}
query := map[string]string{
"type": "config",
"action": "get",
"xpath": xpath,
"key": p.Key,
}
tData := r.Send("get", p.URI, nil, headers, query)
if err := xml.Unmarshal(tData.Body, &temps); err != nil {
return nil, err
}
if temps.Status != "success" {
return nil, fmt.Errorf("error code %s: %s", temps.Code, errorCodes[temps.Code])
}
return &temps, nil
}
// TemplateStacks returns information about all of the template stacks in Panorama, and what templates, devices
// are assigned to them. This is ONLY available on Panorama version 7.0.0 and higher.
func (p *PaloAlto) TemplateStacks() (*TemplateStacks, error) {
var temps TemplateStacks
ver := splitSWVersion(p.SoftwareVersion)
xpath := "/config/devices/entry//template-stack"
// xpath := "/config/devices/entry/vsys/entry/address"
r := rested.NewRequest()
if p.DeviceType != "panorama" {
return nil, errors.New("template stacks can only be listed on a Panorama device")
}
if ver[0] < 7 {
return nil, errors.New("you must be running version 7.0.0 or higher to use template stacks")
}
query := map[string]string{
"type": "config",
"action": "get",
"xpath": xpath,
"key": p.Key,
}
tData := r.Send("get", p.URI, nil, headers, query)
if err := xml.Unmarshal(tData.Body, &temps); err != nil {
return nil, err
}
if temps.Status != "success" {
return nil, fmt.Errorf("error code %s: %s", temps.Code, errorCodes[temps.Code])
}
return &temps, nil
}
// CreateTemplate adds a new template to Panorama. If you wish to associate devices, then
// separate them with a comma, i.e.: "0101010101, 0202020202".
func (p *PaloAlto) CreateTemplate(name, description string, devices ...string) error {
var reqError requestError
xpath := fmt.Sprintf("/config/devices/entry[@name='localhost.localdomain']/template/entry[@name='%s']", name)
xmlBody := "<settings><default-vsys>vsys1</default-vsys></settings><config><devices><entry name=\"localhost.localdomain\"><vsys><entry name=\"vsys1\"/></vsys></entry></devices></config>"
r := rested.NewRequest()
if p.DeviceType != "panorama" {
return errors.New("templates can only be created on a Panorama device")
}
if len(description) > 0 {
xmlBody += fmt.Sprintf("<description>%s</description>", description)
}
if len(devices) > 0 {
xmlBody += "<devices>"
for _, d := range strings.Split(devices[0], ",") {
xmlBody += fmt.Sprintf("<entry name=\"%s\"/>", strings.TrimSpace(d))
}
xmlBody += "</devices>"
}
query := map[string]string{
"type": "config",
"action": "set",
"xpath": xpath,
"key": p.Key,
"element": xmlBody,
}
resp := r.Send("get", p.URI, nil, headers, query)
if resp.Error != nil {
return resp.Error
}
if err := xml.Unmarshal(resp.Body, &reqError); err != nil {
return err
}
if reqError.Status != "success" {
return fmt.Errorf("error code %s: %s", reqError.Code, errorCodes[reqError.Code])
}
return nil
}
// CreateTemplateStack adds a new template stack to Panorama. Templates must be separated by a comma, i.e.: "user_template, object_template".
// If you wish to associate devices, then separate them with a comma, just like you would template names.
// This is ONLY available on Panorama version 7.0.0 and higher.
func (p *PaloAlto) CreateTemplateStack(name, description, templates string, devices ...string) error {
var reqError requestError
ver := splitSWVersion(p.SoftwareVersion)
xpath := fmt.Sprintf("/config/devices/entry[@name='localhost.localdomain']/template-stack/entry[@name='%s']", name)
xmlBody := "<templates>"
for _, t := range strings.Split(templates, ",") {
xmlBody += fmt.Sprintf("<member>%s</member>", strings.TrimSpace(t))
}
xmlBody += "</templates>"
r := rested.NewRequest()
if p.DeviceType != "panorama" {
return errors.New("template stacks can only be created on a Panorama device")
}
if ver[0] < 7 {
return errors.New("you must be running version 7.0.0 or higher to use template stacks")
}
if len(description) > 0 {
xmlBody += fmt.Sprintf("<description>%s</description>", description)
}
if len(devices) > 0 {
xmlBody += "<devices>"
for _, d := range strings.Split(devices[0], ",") {
xmlBody += fmt.Sprintf("<entry name=\"%s\"/>", strings.TrimSpace(d))
}
xmlBody += "</devices>"
}
query := map[string]string{
"type": "config",
"action": "set",
"xpath": xpath,
"key": p.Key,
"element": xmlBody,
}
resp := r.Send("get", p.URI, nil, headers, query)
if resp.Error != nil {
return resp.Error
}
if err := xml.Unmarshal(resp.Body, &reqError); err != nil {
return err
}
if reqError.Status != "success" {
return fmt.Errorf("error code %s: %s", reqError.Code, errorCodes[reqError.Code])
}
return nil
}
// AssignTemplate will assign devices to the given template. Devices must be serial numbers,
// and each serial must be separated by a comma, i.e.: "010101010101, 020202020202". If you wish to assign
// devices to a template stack, then specify "true" for the stack parameter, otherwise specifying "false"
// will only assign devices to a single template. Template stacks are ONLY
// available on Panorama version 7.0.0 and higher.
func (p *PaloAlto) AssignTemplate(name, devices string, stack bool) error {
var reqError requestError
ver := splitSWVersion(p.SoftwareVersion)
xpath := fmt.Sprintf("/config/devices/entry[@name='localhost.localdomain']/template/entry[@name='%s']", name)
xmlBody := "<devices>"
for _, d := range strings.Split(devices, ",") {
xmlBody += fmt.Sprintf("<entry name=\"%s\"/>", strings.TrimSpace(d))
}
xmlBody += "</devices>"
r := rested.NewRequest()
if stack {
xpath = fmt.Sprintf("/config/devices/entry[@name='localhost.localdomain']/template-stack/entry[@name='%s']", name)
}
if p.DeviceType != "panorama" {
return errors.New("templates can only be assigned on a Panorama device")
}
if ver[0] < 7 && stack {
return errors.New("you must be running version 7.0.0 or higher to use template stacks")
}
query := map[string]string{
"type": "config",
"action": "set",
"xpath": xpath,
"key": p.Key,
"element": xmlBody,
}
resp := r.Send("get", p.URI, nil, nil, query)
if resp.Error != nil {
return resp.Error
}
if err := xml.Unmarshal(resp.Body, &reqError); err != nil {
return err
}
if reqError.Status != "success" {
return fmt.Errorf("error code %s: %s", reqError.Code, errorCodes[reqError.Code])
}
return nil
}
// DeleteTemplate removes the given template from Panorama. If you wish to delete
// a template stack, then specify "true" for the stack parameter, otherwise specifying "false"
// will only delete single templates. Template stacks are ONLY
// available on Panorama version 7.0.0 and higher.
func (p *PaloAlto) DeleteTemplate(name string, stack bool) error {
var reqError requestError
ver := splitSWVersion(p.SoftwareVersion)
xpath := fmt.Sprintf("/config/devices/entry[@name='localhost.localdomain']/template/entry[@name='%s']", name)
r := rested.NewRequest()
if stack {
xpath = fmt.Sprintf("/config/devices/entry[@name='localhost.localdomain']/template-stack/entry[@name='%s']", name)
}
if p.DeviceType != "panorama" {
return errors.New("templates can only be deleted on a Panorama device")
}
if ver[0] < 7 && stack {
return errors.New("you must be running version 7.0.0 or higher to use template stacks")
}
query := map[string]string{
"type": "config",
"action": "delete",
"xpath": xpath,
"key": p.Key,
}
resp := r.Send("get", p.URI, nil, headers, query)
if resp.Error != nil {
return resp.Error
}
if err := xml.Unmarshal(resp.Body, &reqError); err != nil {
return err
}
if reqError.Status != "success" {
return fmt.Errorf("error code %s: %s", reqError.Code, errorCodes[reqError.Code])
}
return nil
}