forked from aboutcode-org/scancode.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
support
inspect-manifest
for CycloneDx 1.4
- CycloneDx `component` can have a `list of components`, those are dumped to extra_data as `nestedComponents`. Furthermore, these lists of components are recursively parsed and treated as normal package. - The Component may have multiple URLs in externalReferences. The first URL of the reference is added to the applicable package_data URL, while the rest are dumped in extra_data as externalReferences. fixes aboutcode-org#583 Signed-off-by: Keshav Priyadarshi <[email protected]>
- Loading branch information
1 parent
0b4053e
commit c4d4298
Showing
6 changed files
with
2,709 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,155 @@ | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
# http://nexb.com and https://github.com/nexB/scancode.io | ||
# The ScanCode.io software is licensed under the Apache License version 2.0. | ||
# Data generated with ScanCode.io is provided as-is without warranties. | ||
# ScanCode is a trademark of nexB Inc. | ||
# | ||
# You may not use this software except in compliance with the License. | ||
# You may obtain a copy of the License at: http://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. | ||
# | ||
# Data Generated with ScanCode.io is provided on an "AS IS" BASIS, WITHOUT WARRANTIES | ||
# OR CONDITIONS OF ANY KIND, either express or implied. No content created from | ||
# ScanCode.io should be considered or used as legal advice. Consult an Attorney | ||
# for any legal advice. | ||
# | ||
# ScanCode.io is a free software code scanning tool from nexB Inc. and others. | ||
# Visit https://github.com/nexB/scancode.io for support and download. | ||
|
||
import json | ||
import pathlib | ||
from typing import List | ||
|
||
from hoppr_cyclonedx_models.cyclonedx_1_4 import Component | ||
from hoppr_cyclonedx_models.cyclonedx_1_4 import ( | ||
CyclonedxSoftwareBillOfMaterialsStandard as Bom_1_4, | ||
) | ||
|
||
CYCLONEDX_SPEC_VERSION = "1.4" | ||
CYCLONEDX_JSON_SCHEMA_LOCATION = "bom-1.4.schema.json" | ||
CYCLONEDX_JSON_SCHEMA_PATH = ( | ||
pathlib.Path(__file__).parent / CYCLONEDX_JSON_SCHEMA_LOCATION | ||
) | ||
|
||
CYCLONEDX_JSON_SCHEMA_URL = ( | ||
"https://raw.githubusercontent.com/" | ||
"CycloneDX/specification/master/schema/bom-1.4.schema.json" | ||
) | ||
|
||
|
||
def get_bom(cyclonedx_document: dict): | ||
return Bom_1_4(**cyclonedx_document) | ||
|
||
|
||
def get_components(bom: Bom_1_4): | ||
return recursive_component_collector(bom.components) | ||
|
||
|
||
def bom_iterable_to_dict(iterable): | ||
return [ | ||
json.loads(obj.json(exclude_unset=True, by_alias=True)) | ||
for obj in iterable or [] | ||
] | ||
|
||
|
||
def recursive_component_collector( | ||
root_component_list: List[Component], collected: List = [] | ||
): | ||
for component in root_component_list or []: | ||
extra_data = ( | ||
bom_iterable_to_dict(component.components) | ||
if component.components is not None | ||
else {} | ||
) | ||
collected.append({"cdx_package": component, "nested_components": extra_data}) | ||
recursive_component_collector(component.components, collected) | ||
return collected | ||
|
||
|
||
def resolve_license(item): | ||
return ( | ||
item["expression"] | ||
if "expression" in item | ||
else ( | ||
item["license"]["id"] | ||
if "id" in item["license"] | ||
else item["license"]["name"] | ||
) | ||
) | ||
|
||
|
||
def get_declared_licenses(list_of_license_obj): | ||
return "\n".join( | ||
[ | ||
resolve_license(item) | ||
for item in bom_iterable_to_dict(list_of_license_obj) or [] | ||
] | ||
) | ||
|
||
|
||
def get_checksums(component: Component): | ||
algorithm_map_cdx_scio = { | ||
"MD5": "md5", | ||
"SHA-1": "sha1", | ||
"SHA-256": "sha256", | ||
"SHA-512": "sha512", | ||
} | ||
return { | ||
algorithm_map_cdx_scio[hash_.alg.value]: hash_.content.__root__ | ||
for hash_ in component.hashes or [] | ||
if hash_.alg.value in algorithm_map_cdx_scio | ||
} | ||
|
||
|
||
def get_external_refrences(external_references): | ||
refrences = { | ||
"vcs": [], | ||
"issue-tracker": [], | ||
"website": [], | ||
"advisories": [], | ||
"bom": [], | ||
"mailing-list": [], | ||
"social": [], | ||
"chat": [], | ||
"documentation": [], | ||
"support": [], | ||
"distribution": [], | ||
"license": [], | ||
"build-meta": [], | ||
"build-system": [], | ||
"release-notes": [], | ||
"other": [], | ||
} | ||
for ref in external_references or []: | ||
refrences[ref.type.value].append(ref.url) | ||
|
||
return {key: value for key, value in refrences.items() if value} | ||
|
||
|
||
def validate_document(document, schema=CYCLONEDX_JSON_SCHEMA_PATH): | ||
""" | ||
CYCLONEDX document validation. | ||
Requires the `jsonschema` library. | ||
""" | ||
try: | ||
import jsonschema | ||
except ModuleNotFoundError: | ||
print( | ||
"The `jsonschema` library is required to run the validation.\n" | ||
"Install with: `pip install jsonschema`" | ||
) | ||
raise | ||
|
||
if isinstance(document, str): | ||
document = json.loads(document) | ||
|
||
if isinstance(schema, pathlib.Path): | ||
schema = schema.read_text() | ||
if isinstance(schema, str): | ||
schema = json.loads(schema) | ||
|
||
jsonschema.validate(instance=document, schema=schema) |
Oops, something went wrong.