forked from SocketDev/socket-python-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclasses.py
More file actions
439 lines (376 loc) · 10.2 KB
/
classes.py
File metadata and controls
439 lines (376 loc) · 10.2 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
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
432
433
434
435
436
437
438
439
import json
__all__ = [
"Report",
"Score",
"Package",
"Issue",
"YamlFile",
"Alert",
"FullScan",
"FullScanParams",
"Repository",
"Diff",
"Purl",
"Comment"
]
class Report:
branch: str
commit: str
id: str
pull_requests: list
url: str
repo: str
processed: bool
owner: str
created_at: str
sbom: list
def __init__(self, **kwargs):
self.sbom = []
if kwargs:
for key, value in kwargs.items():
setattr(self, key, value)
if not hasattr(self, "processed"):
self.processed = False
if hasattr(self, "pull_requests"):
if self.pull_requests is not None:
self.pull_requests = json.loads(str(self.pull_requests))
def __str__(self):
return json.dumps(self.__dict__)
class Score:
supplyChain: float
quality: float
maintenance: float
license: float
overall: float
vulnerability: float
def __init__(self, **kwargs):
if kwargs:
for key, value in kwargs.items():
setattr(self, key, value)
for score_name in self.__dict__:
score = getattr(self, score_name)
if score <= 1:
score = score * 100
setattr(self, score_name, score)
def __str__(self):
return json.dumps(self.__dict__)
class Package:
type: str
name: str
version: str
release: str
id: str
direct: bool
manifestFiles: list
author: list
size: int
score: dict
scores: Score
alerts: list
error_alerts: list
alert_counts: dict
topLevelAncestors: list
url: str
transitives: int
license: str
license_text: str
purl: str
def __init__(self, **kwargs):
if kwargs:
for key, value in kwargs.items():
setattr(self, key, value)
if not hasattr(self, "direct"):
self.direct = False
else:
if str(self.direct).lower() == "true":
self.direct = True
self.url = f"https://socket.dev/{self.type}/package/{self.name}/overview/{self.version}"
if hasattr(self, 'score'):
self.scores = Score(**self.score)
if not hasattr(self, "alerts"):
self.alerts = []
if not hasattr(self, "topLevelAncestors"):
self.topLevelAncestors = []
if not hasattr(self, "manifestFiles"):
self.manifestFiles = []
if not hasattr(self, "transitives"):
self.transitives = 0
if not hasattr(self, "author"):
self.author = []
if not hasattr(self, "size"):
self.size = 0
self.alert_counts = {
"critical": 0,
"high": 0,
"middle": 0,
"low": 0
}
self.error_alerts = []
if not hasattr(self, "license"):
self.license = "NoLicenseFound"
if not hasattr(self, "license_text"):
self.license_text = ""
self.url = f"https://socket.dev/{self.type}/package/{self.name}/overview/{self.version}"
self.purl = f"{self.type}/{self.name}@{self.version}"
def __str__(self):
return json.dumps(self.__dict__)
class Issue:
pkg_type: str
pkg_name: str
pkg_version: str
category: str
type: str
severity: str
pkg_id: str
props: dict
key: str
is_error: bool
description: str
title: str
emoji: str
next_step_title: str
suggestion: str
introduced_by: list
manifests: str
url: str
purl: str
def __init__(self, **kwargs):
if kwargs:
for key, value in kwargs.items():
setattr(self, key, value)
if hasattr(self, "created_at"):
self.created_at = self.created_at.strip(" (Coordinated Universal Time)")
if not hasattr(self, "introduced_by"):
self.introduced_by = []
if not hasattr(self, "manifests"):
self.manifests = ""
def __str__(self):
return json.dumps(self.__dict__)
def __eq__(self, other):
return self.__dict__ == other.__dict__
def __ne__(self, other):
return self.__dict__ != other.__dict__
class YamlFile:
path: str
name: str
team: list
module: list
production: bool
pii: bool
alerts: dict
error_ids: list
def __init__(
self,
**kwargs
):
self.alerts = {}
self.error_ids = []
if kwargs:
for key, value in kwargs.items():
setattr(self, key, value)
def __str__(self):
alerts = {}
for issue_key in self.alerts:
issue: Issue
issue = self.alerts[issue_key]["issue"]
manifests = self.alerts[issue_key]["manifests"]
new_alert = {
"issue": json.loads(str(issue)),
"manifests": manifests
}
alerts[issue_key] = new_alert
dump_object = self
dump_object.alerts = alerts
return json.dumps(dump_object.__dict__)
class Alert:
key: str
type: str
severity: str
category: str
props: dict
def __init__(self, **kwargs):
if kwargs:
for key, value in kwargs.items():
setattr(self, key, value)
if not hasattr(self, "props"):
self.props = {}
def __str__(self):
return json.dumps(self.__dict__)
class FullScan:
id: str
created_at: str
updated_at: str
organization_id: str
repository_id: str
branch: str
commit_message: str
commit_hash: str
pull_request: int
sbom_artifacts: list
packages: dict
def __init__(self, **kwargs):
if kwargs:
for key, value in kwargs.items():
setattr(self, key, value)
if not hasattr(self, "sbom_artifacts"):
self.sbom_artifacts = []
def __str__(self):
return json.dumps(self.__dict__)
class Repository:
id: str
created_at: str
updated_at: str
head_full_scan_id: str
name: str
description: str
homepage: str
visibility: str
archived: bool
default_branch: str
def __init__(self, **kwargs):
if kwargs:
for key, value in kwargs.items():
setattr(self, key, value)
def __str__(self):
return json.dumps(self.__dict__)
class FullScanParams:
repo: str
branch: str
commit_message: str
commit_hash: str
pull_request: int
committer: str
make_default_branch: bool
set_as_pending_head: bool
def __init__(self, **kwargs):
if kwargs:
for key, value in kwargs.items():
setattr(self, key, value)
def __str__(self):
return json.dumps(self.__dict__)
class Diff:
new_packages: list
new_capabilities: dict
removed_packages: list
new_alerts: list
id: str
sbom: str
packages: dict
def __init__(self, **kwargs):
if kwargs:
for key, value in kwargs.items():
setattr(self, key, value)
if not hasattr(self, "new_packages"):
self.new_packages = []
if not hasattr(self, "removed_packages"):
self.removed_packages = []
if not hasattr(self, "new_alerts"):
self.new_alerts = []
if not hasattr(self, "new_capabilities"):
self.new_capabilities = {}
def __str__(self):
return json.dumps(self.__dict__)
class Purl:
id: str
name: str
version: str
ecosystem: str
direct: bool
author: list
size: int
transitives: int
introduced_by: list
capabilities: dict
is_new: bool
author_url: str
url: str
purl: str
def __init__(self, **kwargs):
if kwargs:
for key, value in kwargs.items():
setattr(self, key, value)
if not hasattr(self, "introduced_by"):
self.new_packages = []
if not hasattr(self, "capabilities"):
self.capabilities = {}
if not hasattr(self, "is_new"):
self.is_new = False
self.author_url = Purl.generate_author_data(self.author, self.ecosystem)
@staticmethod
def generate_author_data(authors: list, ecosystem: str) -> str:
"""
Creates the Author links for the package
:param authors:
:param ecosystem:
:return:
"""
authors_str = ""
for author in authors:
author_url = f"https://socket.dev/{ecosystem}/user/{author}"
authors_str += f"[{author}]({author_url}),"
authors_str = authors_str.rstrip(",")
return authors_str
def __str__(self):
return json.dumps(self.__dict__)
class GithubComment:
url: str
html_url: str
issue_url: str
id: int
node_id: str
user: dict
created_at: str
updated_at: str
author_association: str
body: str
body_list: list
reactions: dict
performed_via_github_app: dict
def __init__(self, **kwargs):
if kwargs:
for key, value in kwargs.items():
setattr(self, key, value)
if not hasattr(self, "body_list"):
self.body_list = []
def __str__(self):
return json.dumps(self.__dict__)
class GitlabComment:
id: int
type: str
body: str
attachment: str
author: dict
created_at: str
updated_at: str
system: bool
notable_id: int
noteable_type: str
project_id: int
resolvable: bool
confidential: bool
internal: bool
imported: bool
imported_from: str
noteable_iid: int
commands_changes: dict
body_list: list
def __init__(self, **kwargs):
if kwargs:
for key, value in kwargs.items():
setattr(self, key, value)
if not hasattr(self, "body_list"):
self.body_list = []
def __str__(self):
return json.dumps(self.__dict__)
class Comment:
id: int
body: str
body_list: list
def __init__(self, **kwargs):
if kwargs:
for key, value in kwargs.items():
setattr(self, key, value)
if not hasattr(self, "body_list"):
self.body_list = []
def __str__(self):
return json.dumps(self.__dict__)