-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy path__init__.py
1015 lines (814 loc) · 30.1 KB
/
__init__.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
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# encoding: utf-8
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0
#
import hashlib
import re
import sys
import warnings
from enum import Enum
from typing import List, Optional, Union
from ..exception.model import InvalidLocaleTypeException, InvalidUriException, NoPropertiesProvidedException, \
MutuallyExclusivePropertiesException, UnknownHashTypeException
"""
Uniform set of models to represent objects within a CycloneDX software bill-of-materials.
You can either create a `cyclonedx.model.bom.Bom` yourself programmatically, or generate a `cyclonedx.model.bom.Bom`
from a `cyclonedx.parser.BaseParser` implementation.
"""
def sha1sum(filename: str) -> str:
"""
Generate a SHA1 hash of the provided file.
Args:
filename:
Absolute path to file to hash as `str`
Returns:
SHA-1 hash
"""
h = hashlib.sha1()
with open(filename, 'rb') as f:
for byte_block in iter(lambda: f.read(4096), b""):
h.update(byte_block)
return h.hexdigest()
class DataFlow(Enum):
"""
This is out internal representation of the dataFlowType simple type within the CycloneDX standard.
.. note::
See the CycloneDX Schema: https://cyclonedx.org/docs/1.4/xml/#type_dataFlowType
"""
INBOUND = "inbound"
OUTBOUND = "outbound"
BI_DIRECTIONAL = "bi-directional"
UNKNOWN = "unknown"
class Data:
"""
This is our internal representation of the `dataClassificationType` complex type within the CycloneDX standard.
.. note::
See the CycloneDX Schema for dataClassificationType: https://cyclonedx.org/docs/1.4/xml/#type_dataClassificationType
"""
def __init__(self, flow: DataFlow, classification: str) -> None:
if not flow and not classification:
raise NoPropertiesProvidedException(
'One of `flow` or `classification` must be supplied - neither supplied'
)
self.flow = flow
self.classification = classification
@property
def flow(self) -> DataFlow:
"""
Specifies the data flow for the service.
Returns:
`DataFlow`
"""
return self._flow
@flow.setter
def flow(self, flow: DataFlow) -> None:
self._flow = flow
@property
def classification(self) -> str:
"""
Specifies the classification of the data for the service.
Returns:
`str`
"""
return self._content_type
@classification.setter
def classification(self, classification: str) -> None:
self._classification = classification
class SignatureAlgorithm(Enum):
"""
This is out internal representation of the algorithm simple type within the CycloneDX standard.
.. note::
See the CycloneDX Schema: https://cyclonedx.org/docs/1.4/json/#tab-pane_signature_oneOf_i2_algorithm_oneOf_i0
"""
RS256 = "RS256"
RS384 = "RS384"
RS512 = "RS512"
PS256 = "PS256"
PS384 = "PS384"
PS512 = "PS512"
ES256 = "ES256"
ES384 = "ES384"
ES512 = "ES512"
ED25519 = "Ed25519"
ED448 = "Ed448"
HS256 = "HS256"
HS384 = "HS384"
HS512 = "HS512"
class SignaturePublicKeyKty(Enum):
"""
This is our internal representation of the kty simple type within the CycloneDX standard.
.. note::
See the CycloneDX Schema: https://cyclonedx.org/docs/1.4/json/#signature_oneOf_i2_publicKey_kty
"""
EC = "EC"
OKP = "OKP"
RSA = "RSA"
class SignaturePublicKeyCrv(Enum):
"""
This is our internal representation of the crv simple type within the CycloneDX standard.
.. note::
See the CycloneDX Schema: https://cyclonedx.org/docs/1.4/json/#signature_oneOf_i2_publicKey_allOf_i1_then_crv
"""
ED25519 = "Ed25519"
Ed448 = "Ed448"
class SignaturePublicKey:
"""
This is our internal representation of the public key complex type within the CycloneDX standard.
.. note::
See the CycloneDX Schema: https://cyclonedx.org/docs/1.4/json/#signature_oneOf_i2_publicKey
JSON only
"""
def __init__(self, kty: SignaturePublicKeyKty = None, crv: Optional[SignaturePublicKeyCrv] = None,
x: Optional[str] = None, y: Optional[str] = None,
n: Optional[str] = None, e: Optional[str] = None) -> None:
if not kty:
raise NoPropertiesProvidedException(
'`kty` must be supplied'
)
if kty == SignaturePublicKeyKty.EC and not crv and not x and not y:
raise NoPropertiesProvidedException(
'if `kty` equals EC, `crv`, `x` and `y` must be supplied'
)
if kty == SignaturePublicKeyKty.OKP and not crv and not x:
raise NoPropertiesProvidedException(
'if `kty` equals OKP, `crv`, and `x` must be supplied'
)
if kty == SignaturePublicKeyKty.RSA and not n and not e:
raise NoPropertiesProvidedException(
'if `kty` equals RSA, `n`, and `e` must be supplied'
)
self.kty = kty
self.crv = crv
self.x = x
self.y = y
self.n = n
self.e = e
self.value = value
class Signature:
"""
This is out internal representation of the signature complex type within the CycloneDX standard.
.. note::
See the CycloneDX Schema: https://cyclonedx.org/docs/1.4/json/#signature
JSON only
"""
def __init__(self, algorithm: SignatureAlgorithm, value: str, key_id: Optional[str],
public_key: Optional[SignaturePublicKey] = None,
certificate_path: Optional[List[str]] = None,
excludes: Optional[List[str]] = None) -> None:
if not algorithm and not value:
raise NoPropertiesProvidedException(
'One of `algorithm` or `value` must be supplied - neither supplied'
)
self.algorithm = algorithm
self.key_id = key_id
self.public_key = public_key
self.certificate_path = certificate_path
self.excludes = excludes
self.value = value
class Encoding(Enum):
"""
This is out internal representation of the encoding simple type within the CycloneDX standard.
.. note::
See the CycloneDX Schema: https://cyclonedx.org/docs/1.4/#type_encoding
"""
BASE_64 = 'base64'
class AttachedText:
"""
This is our internal representation of the `attachedTextType` complex type within the CycloneDX standard.
.. note::
See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.3/#type_attachedTextType
"""
DEFAULT_CONTENT_TYPE = 'text/plain'
def __init__(self, content: str, content_type: str = DEFAULT_CONTENT_TYPE,
encoding: Optional[Encoding] = None) -> None:
self.content_type = content_type
self.encoding = encoding
self.content = content
@property
def content_type(self) -> str:
"""
Specifies the content type of the text. Defaults to text/plain if not specified.
Returns:
`str`
"""
return self._content_type
@content_type.setter
def content_type(self, content_type: str) -> None:
self._content_type = content_type
@property
def encoding(self) -> Optional[Encoding]:
"""
Specifies the optional encoding the text is represented in.
Returns:
`Encoding` if set else `None`
"""
return self._encoding
@encoding.setter
def encoding(self, encoding: Optional[Encoding]) -> None:
self._encoding = encoding
@property
def content(self) -> str:
"""
The attachment data.
Proactive controls such as input validation and sanitization should be employed to prevent misuse of attachment
text.
Returns:
`str`
"""
return self._content
@content.setter
def content(self, content: str) -> None:
self._content = content
class HashAlgorithm(Enum):
"""
This is out internal representation of the hashAlg simple type within the CycloneDX standard.
.. note::
See the CycloneDX Schema: https://cyclonedx.org/docs/1.3/#type_hashAlg
"""
BLAKE2B_256 = 'BLAKE2b-256'
BLAKE2B_384 = 'BLAKE2b-384'
BLAKE2B_512 = 'BLAKE2b-512'
BLAKE3 = 'BLAKE3'
MD5 = 'MD5'
SHA_1 = 'SHA-1'
SHA_256 = 'SHA-256'
SHA_384 = 'SHA-384'
SHA_512 = 'SHA-512'
SHA3_256 = 'SHA3-256'
SHA3_384 = 'SHA3-384'
SHA3_512 = 'SHA3-512'
class HashType:
"""
This is our internal representation of the hashType complex type within the CycloneDX standard.
.. note::
See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.3/#type_hashType
"""
@staticmethod
def from_composite_str(composite_hash: str) -> 'HashType':
"""
Attempts to convert a string which includes both the Hash Algorithm and Hash Value and represent using our
internal model classes.
Args:
composite_hash:
Composite Hash string of the format `HASH_ALGORITHM`:`HASH_VALUE`.
Example: `sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b`.
Raises:
`UnknownHashTypeException` if the type of hash cannot be determined.
Returns:
An instance of `HashType`.
"""
parts = composite_hash.split(':')
algorithm_prefix = parts[0].lower()
if algorithm_prefix == 'md5':
return HashType(
algorithm=HashAlgorithm.MD5,
hash_value=parts[1].lower()
)
elif algorithm_prefix[0:3] == 'sha':
return HashType(
algorithm=getattr(HashAlgorithm, 'SHA_{}'.format(algorithm_prefix[3:])),
hash_value=parts[1].lower()
)
elif algorithm_prefix[0:6] == 'blake2':
return HashType(
algorithm=getattr(HashAlgorithm, 'BLAKE2b_{}'.format(algorithm_prefix[6:])),
hash_value=parts[1].lower()
)
raise UnknownHashTypeException(f"Unable to determine hash type from '{composite_hash}'")
def __init__(self, algorithm: HashAlgorithm, hash_value: str) -> None:
self._alg = algorithm
self._content = hash_value
def get_algorithm(self) -> HashAlgorithm:
return self._alg
def get_hash_value(self) -> str:
return self._content
def __repr__(self) -> str:
return f'<Hash {self._alg.value}:{self._content}>'
class ExternalReferenceType(Enum):
"""
Enum object that defines the permissible 'types' for an External Reference according to the CycloneDX schema.
.. note::
See the CycloneDX Schema definition: https://cyclonedx.org/docs/1.3/#type_externalReferenceType
"""
ADVISORIES = 'advisories'
BOM = 'bom'
BUILD_META = 'build-meta'
BUILD_SYSTEM = 'build-system'
CHAT = 'chat'
DISTRIBUTION = 'distribution'
DOCUMENTATION = 'documentation'
ISSUE_TRACKER = 'issue-tracker'
LICENSE = 'license'
MAILING_LIST = 'mailing-list'
OTHER = 'other'
RELEASE_NOTES = 'release-notes' # Only supported in >= 1.4
SOCIAL = 'social'
SCM = 'vcs'
SUPPORT = 'support'
VCS = 'vcs'
WEBSITE = 'website'
class XsUri:
"""
Helper class that allows us to perform validation on data strings that are defined as xs:anyURI
in CycloneDX schema.
Developers can just use this via `str(XsUri('https://www.google.com'))`.
.. note::
See XSD definition for xsd:anyURI: http://www.datypic.com/sc/xsd/t-xsd_anyURI.html
"""
_INVALID_URI_REGEX = re.compile(r'%(?![0-9A-F]{2})|#.*#', re.IGNORECASE + re.MULTILINE)
def __init__(self, uri: str) -> None:
if re.search(XsUri._INVALID_URI_REGEX, uri):
raise InvalidUriException(
f"Supplied value '{uri}' does not appear to be a valid URI."
)
self._uri = uri
def __eq__(self, other: object) -> bool:
if isinstance(other, XsUri):
return str(self) == str(other)
return False
def __repr__(self) -> str:
return self._uri
class ExternalReference:
"""
This is out internal representation of an ExternalReference complex type that can be used in multiple places within
a CycloneDX BOM document.
.. note::
See the CycloneDX Schema definition: https://cyclonedx.org/docs/1.3/#type_externalReference
"""
def __init__(self, reference_type: ExternalReferenceType, url: Union[str, XsUri], comment: str = '',
hashes: Optional[List[HashType]] = None) -> None:
self._type: ExternalReferenceType = reference_type
self._url = str(url)
self._comment = comment
self._hashes: List[HashType] = hashes if hashes else []
def add_hash(self, our_hash: HashType) -> None:
"""
Adds a hash that pins/identifies this External Reference.
Args:
our_hash:
`HashType` instance
"""
self._hashes.append(our_hash)
def get_comment(self) -> Union[str, None]:
"""
Get the comment for this External Reference.
Returns:
Any comment as a `str` else `None`.
"""
return self._comment
def get_hashes(self) -> List[HashType]:
"""
List of cryptographic hashes that identify this External Reference.
Returns:
`List` of `HashType` objects where there are any hashes, else an empty `List`.
"""
return self._hashes
def get_reference_type(self) -> ExternalReferenceType:
"""
Get the type of this External Reference.
Returns:
`ExternalReferenceType` that represents the type of this External Reference.
"""
return self._type
def get_url(self) -> str:
"""
Get the URL/URI for this External Reference.
Returns:
URI as a `str`.
"""
return self._url
def __repr__(self) -> str:
return f'<ExternalReference {self._type.name}, {self._url}> {self._hashes}'
class License:
"""
This is out internal representation of `licenseType` complex type that can be used in multiple places within
a CycloneDX BOM document.
.. note::
See the CycloneDX Schema definition: https://cyclonedx.org/docs/1.4/xml/#type_licenseType
"""
def __init__(self, spxd_license_id: Optional[str] = None, license_name: Optional[str] = None,
license_text: Optional[AttachedText] = None, license_url: Optional[XsUri] = None) -> None:
if not spxd_license_id and not license_name:
raise MutuallyExclusivePropertiesException('Either `spxd_license_id` or `license_name` MUST be supplied')
if spxd_license_id and license_name:
warnings.warn(
'Both `spxd_license_id` and `license_name` have been supplied - `license_name` will be ignored!',
RuntimeWarning
)
self.id = spxd_license_id
if not spxd_license_id:
self.name = license_name
else:
self.name = None
self.text = license_text
self.url = license_url
@property
def id(self) -> Optional[str]:
"""
A valid SPDX license ID
Returns:
`str` or `None`
"""
return self._id
@id.setter
def id(self, id: Optional[str]) -> None:
self._id = id
@property
def name(self) -> Optional[str]:
"""
If SPDX does not define the license used, this field may be used to provide the license name.
Returns:
`str` or `None`
"""
return self._name
@name.setter
def name(self, name: Optional[str]) -> None:
self._name = name
@property
def text(self) -> Optional[AttachedText]:
"""
Specifies the optional full text of the attachment
Returns:
`AttachedText` else `None`
"""
return self._text
@text.setter
def text(self, text: Optional[AttachedText]) -> None:
self._text = text
@property
def url(self) -> Optional[XsUri]:
"""
The URL to the attachment file. If the attachment is a license or BOM, an externalReference should also be
specified for completeness.
Returns:
`XsUri` or `None`
"""
return self._url
@url.setter
def url(self, url: Optional[XsUri]) -> None:
self._url = url
class LicenseChoice:
"""
This is out internal representation of `licenseChoiceType` complex type that can be used in multiple places within
a CycloneDX BOM document.
.. note::
See the CycloneDX Schema definition: https://cyclonedx.org/docs/1.4/xml/#type_licenseChoiceType
"""
def __init__(self, license: Optional[License] = None, license_expression: Optional[str] = None) -> None:
if not license and not license_expression:
raise NoPropertiesProvidedException(
'One of `license` or `license_expression` must be supplied - neither supplied'
)
if license and license_expression:
warnings.warn(
'Both `license` and `license_expression` have been supplied - `license` will take precedence',
RuntimeWarning
)
self.license = license
if not license:
self.expression = license_expression
else:
self.expression = None
@property
def license(self) -> Optional[License]:
"""
License definition
Returns:
`License` or `None`
"""
return self._license
@license.setter
def license(self, license: Optional[License]) -> None:
self._license = license
@property
def expression(self) -> Optional[str]:
"""
A valid SPDX license expression (not enforced).
Refer to https://spdx.org/specifications for syntax requirements.
Returns:
`str` or `None`
"""
return self._expression
@expression.setter
def expression(self, expression: Optional[str]) -> None:
self._expression = expression
class Property:
"""
This is out internal representation of `propertyType` complex type that can be used in multiple places within
a CycloneDX BOM document.
.. note::
See the CycloneDX Schema definition: https://cyclonedx.org/docs/1.4/xml/#type_propertyType
Specifies an individual property with a name and value.
"""
def __init__(self, name: str, value: str) -> None:
self._name = name
self._value = value
def get_name(self) -> str:
"""
Get the name of this Property.
Returns:
Name of this Property as `str`.
"""
return self._name
def get_value(self) -> str:
"""
Get the value of this Property.
Returns:
Value of this Property as `str`.
"""
return self._value
class NoteText:
"""
This is out internal representation of the Note.text complex type that can be used in multiple places within
a CycloneDX BOM document.
.. note::
See the CycloneDX Schema definition: https://cyclonedx.org/docs/1.4/xml/#type_releaseNotesType
"""
DEFAULT_CONTENT_TYPE: str = 'text/plain'
def __init__(self, content: str, content_type: Optional[str] = None,
content_encoding: Optional[Encoding] = None) -> None:
self.content = content
self.content_type = content_type or NoteText.DEFAULT_CONTENT_TYPE
self.encoding = content_encoding
@property
def content(self) -> str:
"""
Get the text content of this Note.
Returns:
`str` note content
"""
return self._content
@content.setter
def content(self, content: str) -> None:
self._content = content
@property
def content_type(self) -> Optional[str]:
"""
Get the content-type of this Note.
Defaults to 'text/plain' if one was not explicitly specified.
Returns:
`str` content-type
"""
return self._content_type
@content_type.setter
def content_type(self, content_type: str) -> None:
self._content_type = content_type
@property
def encoding(self) -> Optional[Encoding]:
"""
Get the encoding method used for the note's content.
Returns:
`Encoding` if set else `None`
"""
return self._encoding
@encoding.setter
def encoding(self, encoding: Optional[Encoding]) -> None:
self._encoding = encoding
class Note:
"""
This is out internal representation of the Note complex type that can be used in multiple places within
a CycloneDX BOM document.
.. note::
See the CycloneDX Schema definition: https://cyclonedx.org/docs/1.4/xml/#type_releaseNotesType
"""
_LOCALE_TYPE_REGEX = re.compile(r'^[a-z]{2}(?:\-[A-Z]{2})?$')
def __init__(self, text: NoteText, locale: Optional[str] = None) -> None:
self.text = text
self.locale = locale
@property
def text(self) -> NoteText:
"""
Specifies the full content of the release note.
Returns:
`NoteText`
"""
return self._text
@text.setter
def text(self, text: NoteText) -> None:
self._text = text
@property
def locale(self) -> Optional[str]:
"""
Get the ISO locale of this Note.
The ISO-639 (or higher) language code and optional ISO-3166 (or higher) country code.
Examples include: "en", "en-US", "fr" and "fr-CA".
Returns:
`str` locale if set else `None`
"""
return self._locale
@locale.setter
def locale(self, locale: Optional[str]) -> None:
self._locale = locale
if isinstance(locale, str):
if not re.search(Note._LOCALE_TYPE_REGEX, locale):
self._locale = None
raise InvalidLocaleTypeException(
f"Supplied locale '{locale}' is not a valid locale. "
f"Locale string should be formatted as the ISO-639 (or higher) language code and optional "
f"ISO-3166 (or higher) country code. according to ISO-639 format. Examples include: 'en', 'en-US'."
)
class OrganizationalContact:
"""
This is out internal representation of the `organizationalContact` complex type that can be used in multiple places
within a CycloneDX BOM document.
.. note::
See the CycloneDX Schema definition: https://cyclonedx.org/docs/1.4/xml/#type_organizationalContact
"""
def __init__(self, name: Optional[str] = None, phone: Optional[str] = None, email: Optional[str] = None) -> None:
if not name and not phone and not email:
raise NoPropertiesProvidedException(
'One of name, email or phone must be supplied for an OrganizationalContact - none supplied.'
)
self._name: Optional[str] = name
self._email: Optional[str] = email
self._phone: Optional[str] = phone
@property
def name(self) -> Optional[str]:
"""
Get the name of the contact.
Returns:
`str` if set else `None`
"""
return self._name
@property
def email(self) -> Optional[str]:
"""
Get the email of the contact.
Returns:
`str` if set else `None`
"""
return self._email
@property
def phone(self) -> Optional[str]:
"""
Get the phone of the contact.
Returns:
`str` if set else `None`
"""
return self._phone
class OrganizationalEntity:
"""
This is out internal representation of the `organizationalEntity` complex type that can be used in multiple places
within a CycloneDX BOM document.
.. note::
See the CycloneDX Schema definition: https://cyclonedx.org/docs/1.4/xml/#type_organizationalEntity
"""
def __init__(self, name: Optional[str] = None, urls: Optional[List[XsUri]] = None,
contacts: Optional[List[OrganizationalContact]] = None) -> None:
if not name and not urls and not contacts:
raise NoPropertiesProvidedException(
'One of name, urls or contacts must be supplied for an OrganizationalEntity - none supplied.'
)
self._name: Optional[str] = name
self._url: Optional[List[XsUri]] = urls
self._contact: Optional[List[OrganizationalContact]] = contacts
@property
def name(self) -> Optional[str]:
"""
Get the name of the organization.
Returns:
`str` if set else `None`
"""
return self._name
@property
def urls(self) -> Optional[List[XsUri]]:
"""
Get a list of URLs of the organization. Multiple URLs are allowed.
Returns:
`List[XsUri]` if set else `None`
"""
return self._url
@property
def contacts(self) -> Optional[List[OrganizationalContact]]:
"""
Get a list of contact person at the organization. Multiple contacts are allowed.
Returns:
`List[OrganizationalContact]` if set else `None`
"""
return self._contact
class Tool:
"""
This is out internal representation of the `toolType` complex type within the CycloneDX standard.
Tool(s) are the things used in the creation of the BOM.
.. note::
See the CycloneDX Schema for toolType: https://cyclonedx.org/docs/1.3/#type_toolType
"""
def __init__(self, vendor: Optional[str] = None, name: Optional[str] = None, version: Optional[str] = None,
hashes: Optional[List[HashType]] = None,
external_references: Optional[List[ExternalReference]] = None) -> None:
self._vendor = vendor
self._name = name
self._version = version
self._hashes: List[HashType] = hashes or []
self._external_references: List[ExternalReference] = external_references or []
def add_external_reference(self, reference: ExternalReference) -> None:
"""
Add an external reference to this Tool.
Args:
reference:
`ExternalReference` to add to this Tool.
Returns:
None
"""
self._external_references.append(reference)
def add_external_references(self, references: List[ExternalReference]) -> None:
"""
Add a list of external reference to this Tool.
Args:
references:
List of `ExternalReference` to add to this Tool.
Returns:
None
"""
self._external_references = self._external_references + references
def get_external_references(self) -> List[ExternalReference]:
"""
List of External References that relate to this Tool.
Returns:
`List` of `ExternalReference` objects where there are, else an empty `List`.
"""
return self._external_references
def get_hashes(self) -> List[HashType]:
"""
List of cryptographic hashes that identify this version of this Tool.
Returns:
`List` of `HashType` objects where there are any hashes, else an empty `List`.
"""
return self._hashes
def get_name(self) -> Optional[str]:
"""
The name of this Tool.
Returns:
`str` representing the name of the Tool
"""
return self._name
def get_vendor(self) -> Optional[str]:
"""
The vendor of this Tool.
Returns:
`str` representing the vendor of the Tool
"""
return self._vendor
def get_version(self) -> Optional[str]:
"""
The version of this Tool.
Returns:
`str` representing the version of the Tool
"""
return self._version
def __repr__(self) -> str:
return '<Tool {}:{}:{}>'.format(self._vendor, self._name, self._version)
if sys.version_info >= (3, 8):
from importlib.metadata import version as meta_version
else:
from importlib_metadata import version as meta_version
try:
__ThisToolVersion: Optional[str] = str(meta_version('cyclonedx-python-lib')) # type: ignore[no-untyped-call]
except Exception:
__ThisToolVersion = None
ThisTool = Tool(vendor='CycloneDX', name='cyclonedx-python-lib', version=__ThisToolVersion or 'UNKNOWN')
ThisTool.add_external_references(references=[
ExternalReference(
reference_type=ExternalReferenceType.BUILD_SYSTEM,
url=XsUri('https://github.com/CycloneDX/cyclonedx-python-lib/actions')
),
ExternalReference(
reference_type=ExternalReferenceType.DISTRIBUTION,
url=XsUri('https://pypi.org/project/cyclonedx-python-lib/')
),
ExternalReference(
reference_type=ExternalReferenceType.DOCUMENTATION,
url=XsUri('https://cyclonedx.github.io/cyclonedx-python-lib/')
),
ExternalReference(
reference_type=ExternalReferenceType.ISSUE_TRACKER,
url=XsUri('https://github.com/CycloneDX/cyclonedx-python-lib/issues')
),
ExternalReference(
reference_type=ExternalReferenceType.LICENSE,