forked from canada-ca/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformatting.py
More file actions
396 lines (327 loc) · 14.9 KB
/
formatting.py
File metadata and controls
396 lines (327 loc) · 14.9 KB
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
"""Provides results formatting functions used in client.py"""
def format_all_domains(result):
"""Formats the result dict in get_all_domains
:param dict result: unformatted dict with results of ALL_DOMAINS_QUERY
:return: formatted results
:rtype: dict
"""
# Extract the list of nodes from the resulting dict
result = result["findMyOrganizations"]["edges"]
# Move the dict value of "node" up a level
result = [n["node"] for n in result]
# For each dict element of the list, change the value of "domains"
# to the list of domains contained in the nodes of its edges
for x in result:
x["domains"] = x["domains"]["edges"]
x["domains"] = [n["node"] for n in x["domains"]]
x["domains"] = [n["domain"] for n in x["domains"]]
# Create a new dict in the desired format to return
result = {x["acronym"]: x["domains"] for x in result}
return result
def format_acronym_domains(result, acronym):
"""Formats the result dict in get_domains_by_acronym
:param dict result: unformatted dict with results of ALL_DOMAINS_QUERY
:param str acronym: an acronym referring to an organization
:return: formatted results, filtered to only the org identified by acronym
:rtype: dict
:raises KeyError: if user does not have membership in an org with a matching acronym
"""
result = format_all_domains(result)
result = {acronym.upper(): result[acronym.upper()]}
return result
def format_name_domains(result):
"""Formats the result dict in get_domains_by_name
:param dict result: unformatted dict with results of DOMAINS_BY_SLUG
:return: formatted results
:rtype: dict
"""
result = result["findOrganizationBySlug"]
result["domains"] = result["domains"]["edges"]
result["domains"] = [n["node"] for n in result["domains"]]
result["domains"] = [n["domain"] for n in result["domains"]]
result = {result["acronym"]: result["domains"]}
return result
def format_dmarc_monthly(result):
"""Formats the result dict in get_dmarc_summary
:param dict result: unformatted dict with results of DMARC_SUMMARY
:return: formatted results
:rtype: dict
"""
result = result["findDomainByDomain"]
result[result.pop("domain")] = result.pop("dmarcSummaryByPeriod")
return result
def format_dmarc_yearly(result):
"""Formats the result dict in get_yearly_dmarc_summaries
:param dict result: unformatted dict with results of YEARLY_DMARC_SUMMARIES
:return: formatted results
:rtype: dict
"""
result = result["findDomainByDomain"]
result[result.pop("domain")] = result.pop("yearlyDmarcSummaries")
return result
def format_all_summaries(result):
"""Formats the result dict in get_all_summaries
:param dict result: unformatted dict with results of ALL_ORG_SUMMARIES
:return: formatted results
:rtype: dict
"""
result = result["findMyOrganizations"]["edges"]
result = {x["node"].pop("acronym"): x["node"] for x in result}
return result
def format_acronym_summary(result, acronym):
"""Formats the result dict in get_summary_by_acronym
:param dict result: unformatted dict with results of ALL_ORG_SUMMARIES
:param str acronym: an acronym referring to an organization
:return: formatted results, filtered to only the org identified by acronym
:rtype: dict
:raises KeyError: if user does not have membership in an org with a matching acronym
"""
result = format_all_summaries(result)
# dict in assignment is to keep the org identified in the return value
result = {acronym.upper(): result[acronym.upper()]}
return result
def format_name_summary(result):
"""Formats the result dict in get_summary_by_name
:param dict result: unformatted dict with results of SUMMARY_BY_SLUG
:return: formatted results
:rtype: dict"""
result = {
result["findOrganizationBySlug"].pop("acronym"): result[
"findOrganizationBySlug"
]
}
return result
# TODO: refactor this to reduce repetition
def format_all_results(result):
"""Formats the result dict in get_all_results
:param dict result: unformatted dict with results of ALL_RESULTS
:return: formatted results
:rtype: dict"""
# Extract the contents of the list of nodes holding web results
result["findDomainByDomain"]["web"] = {
k: v["edges"][0]["node"]
for (k, v) in result["findDomainByDomain"]["web"].items()
}
# Extract the contents of the list of nodes holding email results
result["findDomainByDomain"]["email"] = {
k: v["edges"][0]["node"]
for (k, v) in result["findDomainByDomain"]["email"].items()
}
# Extract the contents of the list of edges for guidance tags
for scan_category in result["findDomainByDomain"]["web"].keys():
# Remove edges by making the value of positiveGuidanceTags the list of nodes
result["findDomainByDomain"]["web"][scan_category][
"positiveGuidanceTags"
] = result["findDomainByDomain"]["web"][scan_category]["positiveGuidanceTags"][
"edges"
]
# Replace the list of nodes with a dict with tagIds as the keys
result["findDomainByDomain"]["web"][scan_category]["positiveGuidanceTags"] = {
scan_category["node"].pop("tagId"): scan_category["node"]
for scan_category in result["findDomainByDomain"]["web"][scan_category][
"positiveGuidanceTags"
]
}
# Remove edges by making the value of neutralGuidanceTags the list of nodes
result["findDomainByDomain"]["web"][scan_category][
"neutralGuidanceTags"
] = result["findDomainByDomain"]["web"][scan_category]["neutralGuidanceTags"][
"edges"
]
# Replace the list of nodes with a dict with tagIds as the keys
result["findDomainByDomain"]["web"][scan_category]["neutralGuidanceTags"] = {
scan_category["node"].pop("tagId"): scan_category["node"]
for scan_category in result["findDomainByDomain"]["web"][scan_category][
"neutralGuidanceTags"
]
}
# Remove edges by making the value of negativeGuidanceTags the list of nodes
result["findDomainByDomain"]["web"][scan_category][
"negativeGuidanceTags"
] = result["findDomainByDomain"]["web"][scan_category]["negativeGuidanceTags"][
"edges"
]
# Replace the list of nodes with a dict with tagIds as the keys
result["findDomainByDomain"]["web"][scan_category]["negativeGuidanceTags"] = {
scan_category["node"].pop("tagId"): scan_category["node"]
for scan_category in result["findDomainByDomain"]["web"][scan_category][
"negativeGuidanceTags"
]
}
# Do the same with email guidance tags
for scan_category in result["findDomainByDomain"]["email"].keys():
# dkim results have different structure so exclude them
if scan_category != "dkim":
result["findDomainByDomain"]["email"][scan_category][
"positiveGuidanceTags"
] = result["findDomainByDomain"]["email"][scan_category][
"positiveGuidanceTags"
][
"edges"
]
result["findDomainByDomain"]["email"][scan_category][
"positiveGuidanceTags"
] = {
scan_category["node"].pop("tagId"): scan_category["node"]
for scan_category in result["findDomainByDomain"]["email"][
scan_category
]["positiveGuidanceTags"]
}
result["findDomainByDomain"]["email"][scan_category][
"neutralGuidanceTags"
] = result["findDomainByDomain"]["email"][scan_category][
"neutralGuidanceTags"
][
"edges"
]
result["findDomainByDomain"]["email"][scan_category][
"neutralGuidanceTags"
] = {
scan_category["node"].pop("tagId"): scan_category["node"]
for scan_category in result["findDomainByDomain"]["email"][
scan_category
]["neutralGuidanceTags"]
}
result["findDomainByDomain"]["email"][scan_category][
"negativeGuidanceTags"
] = result["findDomainByDomain"]["email"][scan_category][
"negativeGuidanceTags"
][
"edges"
]
result["findDomainByDomain"]["email"][scan_category][
"negativeGuidanceTags"
] = {
scan_category["node"].pop("tagId"): scan_category["node"]
for scan_category in result["findDomainByDomain"]["email"][
scan_category
]["negativeGuidanceTags"]
}
result = {result["findDomainByDomain"].pop("domain"): result["findDomainByDomain"]}
return result
def format_web_results(result):
"""Formats the result dict in get_all_results
:param dict result: unformatted dict with results of ALL_RESULTS
:return: formatted results
:rtype: dict"""
# Extract the contents of the list of nodes holding web results
result["findDomainByDomain"]["web"] = {
k: v["edges"][0]["node"]
for (k, v) in result["findDomainByDomain"]["web"].items()
}
for scan_category in result["findDomainByDomain"]["web"].keys():
# Remove edges by making the value of positiveGuidanceTags the list of nodes
result["findDomainByDomain"]["web"][scan_category][
"positiveGuidanceTags"
] = result["findDomainByDomain"]["web"][scan_category]["positiveGuidanceTags"][
"edges"
]
# Replace the list of nodes with a dict with tagIds as the keys
result["findDomainByDomain"]["web"][scan_category]["positiveGuidanceTags"] = {
scan_category["node"].pop("tagId"): scan_category["node"]
for scan_category in result["findDomainByDomain"]["web"][scan_category][
"positiveGuidanceTags"
]
}
# Remove edges by making the value of neutralGuidanceTags the list of nodes
result["findDomainByDomain"]["web"][scan_category][
"neutralGuidanceTags"
] = result["findDomainByDomain"]["web"][scan_category]["neutralGuidanceTags"][
"edges"
]
# Replace the list of nodes with a dict with tagIds as the keys
result["findDomainByDomain"]["web"][scan_category]["neutralGuidanceTags"] = {
scan_category["node"].pop("tagId"): scan_category["node"]
for scan_category in result["findDomainByDomain"]["web"][scan_category][
"neutralGuidanceTags"
]
}
# Remove edges by making the value of negativeGuidanceTags the list of nodes
result["findDomainByDomain"]["web"][scan_category][
"negativeGuidanceTags"
] = result["findDomainByDomain"]["web"][scan_category]["negativeGuidanceTags"][
"edges"
]
# Replace the list of nodes with a dict with tagIds as the keys
result["findDomainByDomain"]["web"][scan_category]["negativeGuidanceTags"] = {
scan_category["node"].pop("tagId"): scan_category["node"]
for scan_category in result["findDomainByDomain"]["web"][scan_category][
"negativeGuidanceTags"
]
}
result = {result["findDomainByDomain"].pop("domain"): result["findDomainByDomain"]}
return result
def format_email_results(result):
"""Formats the result dict in get_email_results
:param dict result: unformatted dict with results of EMAIL_RESULTS
:return: formatted results
:rtype: dict"""
# Extract the contents of the list of nodes holding email results
result["findDomainByDomain"]["email"] = {
k: v["edges"][0]["node"]
for (k, v) in result["findDomainByDomain"]["email"].items()
}
# Extract the contents of the list of edges for guidance tags
for scan_category in result["findDomainByDomain"]["email"].keys():
# dkim results have different structure so exclude them
if scan_category != "dkim":
# Remove edges by making the value of positiveGuidanceTags the list of nodes
result["findDomainByDomain"]["email"][scan_category][
"positiveGuidanceTags"
] = result["findDomainByDomain"]["email"][scan_category][
"positiveGuidanceTags"
][
"edges"
]
# Replace the list of nodes with a dict with tagIds as the keys
result["findDomainByDomain"]["email"][scan_category][
"positiveGuidanceTags"
] = {
scan_category["node"].pop("tagId"): scan_category["node"]
for scan_category in result["findDomainByDomain"]["email"][
scan_category
]["positiveGuidanceTags"]
}
# Remove edges by making the value of neutralGuidanceTags the list of nodes
result["findDomainByDomain"]["email"][scan_category][
"neutralGuidanceTags"
] = result["findDomainByDomain"]["email"][scan_category][
"neutralGuidanceTags"
][
"edges"
]
# Replace the list of nodes with a dict with tagIds as the keys
result["findDomainByDomain"]["email"][scan_category][
"neutralGuidanceTags"
] = {
scan_category["node"].pop("tagId"): scan_category["node"]
for scan_category in result["findDomainByDomain"]["email"][
scan_category
]["neutralGuidanceTags"]
}
# Remove edges by making the value of negativeGuidanceTags the list of nodes
result["findDomainByDomain"]["email"][scan_category][
"negativeGuidanceTags"
] = result["findDomainByDomain"]["email"][scan_category][
"negativeGuidanceTags"
][
"edges"
]
# Replace the list of nodes with a dict with tagIds as the keys
result["findDomainByDomain"]["email"][scan_category][
"negativeGuidanceTags"
] = {
scan_category["node"].pop("tagId"): scan_category["node"]
for scan_category in result["findDomainByDomain"]["email"][
scan_category
]["negativeGuidanceTags"]
}
result = {result["findDomainByDomain"].pop("domain"): result["findDomainByDomain"]}
return result
def format_domain_status(result):
"""Formats the result dict in get_domain_status
:param dict result: unformatted dict with results of DOMAIN_STATUS
:return: formatted results
:rtype: dict"""
result = {result["findDomainByDomain"].pop("domain"): result["findDomainByDomain"]}
return result