-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.py
431 lines (369 loc) · 12.6 KB
/
base.py
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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
from __future__ import unicode_literals
import sys
import os
import copy
import json
from collections import OrderedDict
from automaton.cloud.azure.resource import Resource
from automaton.cloud.azure.evaluation.deployment import _parameters_, _variables_
from automaton.cloud.azure.evaluation.array_object import (
_array_, _coalesce_, _concat_, _contains_, _createarray_, _empty_, _first_, _intersection_,
_json_, _last_, _length_, _max_, _min_, _range_, _skip_, _take_, _union_, _exists_
)
from automaton.cloud.azure.evaluation.string import (
_base64_, _base64tojson_, _base64tostring_, _datauri_, _datauritostring_, _endswith_, _format_, _guid_, _indexof_,
_lastindexof_, _newguid_, _padleft_, _replace_, _split_, _startswith_, _string_, _substring_, _tolower_, _toupper_,
_trim_, _uniquestring_, _uri_, _uricomponent_, _uricomponenttostring_, _utcnow_
)
from automaton.cloud.azure.evaluation.resource import (
PROVIDERS,
_extensionresourceid_, _listkeys_, _providers_, _reference_, _resourceid_,
_subscriptionresourceid_, _tenantresourceid_, _validate_uuid
)
from automaton.cloud.azure.evaluation.comparison import _equals_, _greater_, _greaterorequals, _less_, _lessorequals_
from automaton.cloud.azure.evaluation.logic import _and_, _bool_, _if_, _not_, _or_
from automaton.cloud.azure.evaluation.numeric import _add_, _copy_index_, _div_, _float_, _int_, _mod_, _mul_, _sub_
class Base(object):
def __init__(self, arm, resource_group=None, subscription_id=None):
self.arm = arm
self.data = None
self.path = None
self.input_path = None
self.input_data = None
self.resource_group_name = resource_group
self.subscription_id = subscription_id
self.resource_group = None
self.subscription = None
self.input_parameters = None
self.parameters = None
self.variables = None
def load_environment(self, resource_group=None, subscription_id=None):
if resource_group:
self.resource_group_name = resource_group
if subscription_id:
self.subscription_id = subscription_id
resource_group = self.arm.get_resource_group_by_name(self.resource_group_name)
if not resource_group:
tags = self._parameters_("tags")
location = self._parameters_("location")
print("Resource Group [{name}] not found. Creating at [{location}]...".format(name=self.resource_group_name, location=location))
self.arm.create_resource_group(self.resource_group_name, location, tags=tags)
resource_group = self.arm.get_resource_group_by_name(self.resource_group_name)
self.resource_group = {
"id": resource_group.id,
"name": resource_group.name,
"type": "Microsoft.Resources/resourceGroups",
"location": resource_group.location,
"managedBy": resource_group.managed_by,
"tags": resource_group.tags,
"properties": {
"provisioningState": resource_group.properties["provisioning_state"]
}
}
subscription = self.arm.subscription
self.subscription = {
"id": subscription.id,
"subscriptionId": subscription.subscription_id,
"tenantId": self.arm.tenant_id,
"displayName": subscription.display_name
}
def load_parameters(self, path):
if not os.path.exists(path):
print("Parameters path does not exist [{path}]".format(path=path))
return False
try:
self.input_path = path
with open(path) as fd:
self.input_data = json.load(fd, object_pairs_hook=OrderedDict)
self.input_parameters = copy.deepcopy(self.input_data.get("parameters"))
except ValueError:
print("Error loading [{path}]".format(path=path))
def _evaluate_copy_array(self, obj, parent):
for subobj in obj:
copy_name = subobj.get("name")
parent[copy_name] = self._evaluate_copy(subobj)
return parent
def _evaluate_copy(self, obj):
data = []
copy_data = self._evaluate_dict(obj.pop("copy", obj))
copy_data.pop("mode", None)
copy_data.pop("batchSize", None)
name = copy_data.pop("name", None)
count = int(copy_data.pop("count", 0))
if count == 0:
return data
copy_input = copy_data.pop("input", None)
for index in range(count):
copy_obj = copy.deepcopy(copy_input) if copy_input else copy.deepcopy(obj)
res = self._evaluate_dict(copy_obj, index, name)
# TODO: Only target resources
if res.pop("condition", True):
data.append(res)
return data
def _evaluate_dict(self, obj, copy_index=None, copy_name=None, obj_name=None):
deferred_keys = []
keys = obj.keys()
for k in keys:
v = obj[k]
if k == "copy":
self._evaluate_copy_array(v, obj)
continue
elif k == "reference":
v = self._evaluate_reference(v)
obj.pop(k, None)
obj["value"] = v
continue
new_key = self._evaluate_string(k, copy_index, copy_name)
if new_key != k:
obj.pop(k, None)
k = new_key
if isinstance(v, dict):
v = self._evaluate_dict(v, copy_index, copy_name)
# TODO: Only target resources
if not v.pop("condition", True):
continue
elif isinstance(v, list):
v = self._evaluate_list(v, copy_index, copy_name)
elif isinstance(v, (str, unicode)):
try:
v = self._evaluate_string(v, copy_index, copy_name)
except Exception:
deferred_keys.append(k)
continue
if v is None:
obj.pop(k, None)
else:
obj[k] = v
for k in deferred_keys:
v = obj[k]
if isinstance(v, (str, unicode)):
v = self._evaluate_string(v, copy_index, copy_name)
if v is None:
obj.pop(k, None)
else:
obj[k] = v
return obj
def _evaluate_list(self, obj, copy_index=None, copy_name=None):
for index, v in enumerate(obj):
if isinstance(v, dict):
v = self._evaluate_dict(v, copy_index, copy_name)
# TODO: Only target resources
if not v.pop("condition", True):
continue
elif isinstance(v, list):
v = self._evaluate_list(v, copy_index, copy_name)
elif isinstance(v, (str, unicode)):
v = self._evaluate_string(v, copy_index, copy_name)
obj[index] = v
return obj
def _evaluate_string(self, obj, copy_index=None, copy_name=None):
if "copyIndex(" in obj:
if copy_index is None:
return obj
obj = self._evaluate_copy_index(obj, copy_index, copy_name)
if isinstance(obj, (str, unicode)) and obj.startswith("[") and obj.endswith("]") and not obj.startswith("[["):
result = self._evaluate_value(obj)
if len(result) > 2:
raise Exception("Unable to evaluate string: {obj}".format(obj=obj))
result = self._evaluate_object(*result) if len(result) == 2 else result[0]
# Cast to int
# if isinstance(result, (str, unicode)) and result.isdigit():
# result = int(result)
return result
return obj
def _evaluate_copy_index(self, obj, copy_index, copy_name=None):
# Determine copy_offset
start = obj.index("copyIndex(") + 10
end = obj.index(")", start)
while obj[start:end].count("(") != obj[start:end].count(")"):
end += 1
value = obj[start:end]
offset = -1
if "," in value:
parts = value.split(",")
if parts[-1].strip().isdigit():
offset = int(parts[-1].strip())
value = ",".join(parts[:-1])
result = self._evaluate_value("[{value}]".format(value=value))
if result:
if len(result) > 2:
raise Exception("Unable to evaluate string: {obj}".format(obj=obj))
result = self._evaluate_object(*result[0]) if len(result) == 2 else result[0]
result = ", ".join([result, str(offset)]) if offset > -1 else str(result)
obj = obj[:start] + str(result) + obj[end:]
else:
result = ""
copy_params = result.split(",")
if len(copy_params) == 2:
copy_offset = int(copy_params[1].strip())
elif copy_params[0].strip() and not copy_params[0] == "'{name}'".format(name=copy_name):
copy_offset = int(copy_params[0].strip())
else:
copy_offset = None
obj = obj.replace("copyIndex()", str(copy_index))
obj = obj.replace("copyIndex('{name}')".format(name=copy_name), str(copy_index))
if copy_offset is not None:
obj = obj.replace("copyIndex({offset})".format(offset=copy_offset), str(copy_index + copy_offset))
obj = obj.replace("copyIndex('{name}', {offset})".format(name=copy_name, offset=copy_offset), str(copy_index + copy_offset))
return obj
@staticmethod
def _evaluate_object(obj, helper):
if not obj:
return
accesses = helper.lstrip(".").split(".")
for access in accesses:
if access.startswith("["):
end = access.index("]")
index = int(access[1:end])
obj = obj[index]
else:
if "[" in access:
end = access.index("[")
key = access[:end]
obj = obj[key]
access = access[end:]
if access.startswith("["):
end = access.index("]")
index = int(access[1:end])
obj = obj[index]
elif obj is not None:
if isinstance(obj, Resource):
obj = getattr(obj, access)
else:
obj = obj.get(access) if hasattr(obj, "get") else obj[access]
return obj
def _evaluate_reference(self, obj):
value = None
if "keyVault" in obj:
# key_vault_id = self._evaluate_string(obj["keyVault"]["id"])
key_vault_id = obj["keyVault"]["id"]
resource_data = self.arm.parse_id(key_vault_id)
if resource_data["subscription"] != self.subscription_id:
self.arm.subscription_id = resource_data["subscription"]
rg = self.arm.get_resource_group_by_name(resource_data["resource_group"])
kv = rg.get_key_vault(resource_data["resource_name"])
if kv and "secretName" in obj:
secret_name = obj["secretName"]
try:
value = kv.get_secret(secret_name).value
except Exception as e:
value = str(e).split("\n")[0].strip()
self.arm.subscription_id = self.subscription_id
return value
def _evaluate_value(self, value):
word = ""
stack = []
quote_stack = []
for c in value[1:-1]:
if c not in ['(', ')', ',']:
if c in ["'"]:
quote_stack.pop() if quote_stack else quote_stack.append(c)
word += c
elif c == ',':
if not quote_stack:
word = word.strip(",").strip()
if word:
stack.append(self._cast_value(word))
word = ""
else:
word += c
elif c == '(':
word = word.strip(",").strip()
stack.append(self._cast_value(word))
stack.append(c)
word = ""
elif c == ')':
func = []
word = word.strip(",").strip()
if word:
func.insert(0, self._cast_value(word))
word = ""
p = stack.pop()
while p != '(':
func.insert(0, p)
p = stack.pop()
p = stack.pop()
func.insert(0, p.lower())
# Compute array access
resolved_func = [func[0]]
index = 1
while index < len(func):
if index < len(func)-1 and isinstance(func[index+1], (str, unicode)) and func[index+1].startswith("["):
resolved_func.append(self._evaluate_object(func[index], func[index+1]))
index += 2
else:
resolved_func.append(func[index])
index += 1
result = self.call(*resolved_func)
stack.append(result)
if word:
stack.append(word)
return stack
@staticmethod
def _cast_value(value):
if value.startswith("'") and value.endswith("'"):
return value.strip("'")
if value.isdigit():
return int(value)
if "." in value:
try:
return float(value)
except Exception:
pass
return value.strip("'")
def _parameters_(self, key):
value = self.input_parameters.get(key) if self.input_parameters else None
if value is not None:
return value.get("value")
value = self.parameters.get(key)
if value is not None:
return value.get("defaultValue")
def call(self, name, *args):
if name == "parameters":
return self._parameters_(args[0])
elif name == "variables":
return self.variables.get(args[0])
elif name == "resourcegroup":
return self.resource_group
elif name == "subscription":
return self.subscription
resolved_args = []
index = 0
while index < len(args):
arg = args[index]
next_arg = args[index+1] if index+1 < len(args) else None
resolved_arg = arg
if next_arg and isinstance(next_arg, (str, unicode)) and next_arg[0] in ["[", "."]:
if isinstance(arg, (list, dict)):
resolved_arg = self._evaluate_object(arg, next_arg)
index += 1
resolved_args.append(resolved_arg)
index += 1
kwargs = {}
if name == "resourceid":
kwargs.update({"subscription_id": self.subscription_id, "resource_group_name": self.resource_group_name})
elif name == "reference":
kwargs.update({"arm": self.arm})
func = getattr(sys.modules[__name__], "_{name}_".format(name=name.lower()))
try:
return func(*resolved_args, **kwargs)
except Exception as e:
print("Error processing {name} with {args}".format(name=name, args=args))
def _split(self, buff, char=" "):
results = []
quote_stack = []
result = ""
for c in buff:
if c in ["'"]:
if quote_stack and quote_stack[-1] == c:
quote_stack.pop()
else:
quote_stack.append(c)
continue
if c == char and not quote_stack:
results.append(result)
result = ""
continue
result += c
results.append(result)
return results