-
-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathpep621.py
124 lines (108 loc) · 5.69 KB
/
pep621.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
# This file is part of CycloneDX Python
#
# 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
# Copyright (c) OWASP Foundation. All Rights Reserved.
"""
Functionality related to PEP 621.
See https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
See https://peps.python.org/pep-0621/
"""
from base64 import b64encode
from itertools import chain
from os.path import dirname, join
from typing import TYPE_CHECKING, Any, Dict, Generator, Iterable, Iterator
from cyclonedx.exception.model import InvalidUriException
from cyclonedx.factory.license import LicenseFactory
from cyclonedx.model import AttachedText, Encoding, ExternalReference, XsUri
from cyclonedx.model.component import Component
from cyclonedx.model.license import DisjunctiveLicense, LicenseAcknowledgement
from packaging.requirements import Requirement
from .cdx import licenses_fixup, url_label_to_ert
from .license_trove_classifier import is_license_trove, license_trove2spdx
if TYPE_CHECKING:
from cyclonedx.model.component import ComponentType
from cyclonedx.model.license import License
def classifiers2licenses(classifiers: Iterable[str], lfac: 'LicenseFactory',
lack: 'LicenseAcknowledgement'
) -> Generator['License', None, None]:
for c in classifiers:
if is_license_trove(c):
yield lfac.make_from_string(license_trove2spdx(c) or c,
license_acknowledgement=lack)
def project2licenses(project: Dict[str, Any], lfac: 'LicenseFactory', *,
fpath: str) -> Generator['License', None, None]:
lack = LicenseAcknowledgement.DECLARED
if classifiers := project.get('classifiers'):
# https://packaging.python.org/en/latest/specifications/pyproject-toml/#classifiers
# https://peps.python.org/pep-0621/#classifiers
# https://packaging.python.org/en/latest/specifications/core-metadata/#classifier-multiple-use
yield from classifiers2licenses(classifiers, lfac, lack)
if plicense := project.get('license'):
# https://packaging.python.org/en/latest/specifications/pyproject-toml/#license
# https://peps.python.org/pep-0621/#license
# https://packaging.python.org/en/latest/specifications/core-metadata/#license
if 'file' in plicense and 'text' in plicense:
# per spec:
# > These keys are mutually exclusive, so a tool MUST raise an error if the metadata specifies both keys.
raise ValueError('`license.file` and `license.text` are mutually exclusive,')
if 'file' in plicense:
# per spec:
# > [...] a string value that is a relative file path [...].
# > Tools MUST assume the file’s encoding is UTF-8.
with open(join(dirname(fpath), plicense['file']), 'rb') as plicense_fileh:
yield DisjunctiveLicense(name=f"declared license of '{project['name']}'",
acknowledgement=lack,
text=AttachedText(encoding=Encoding.BASE_64,
content=b64encode(plicense_fileh.read()).decode()))
elif len(plicense_text := plicense.get('text', '')) > 0:
license = lfac.make_from_string(plicense_text,
license_acknowledgement=lack)
if isinstance(license, DisjunctiveLicense) and license.id is None:
# per spec, `License` is either a SPDX ID/Expression, or a license text(not name!)
yield DisjunctiveLicense(name=f"declared license of '{project['name']}'",
acknowledgement=lack,
text=AttachedText(content=plicense_text))
else:
yield license
def project2extrefs(project: Dict[str, Any]) -> Generator['ExternalReference', None, None]:
# see https://packaging.python.org/en/latest/specifications/pyproject-toml/#urls
for label, url in project.get('urls', {}).items():
try:
yield ExternalReference(
comment=f'from pyproject urls: {label}',
type=url_label_to_ert(label),
url=XsUri(str(url)))
except InvalidUriException: # pragma: nocover
pass
def project2component(project: Dict[str, Any], *,
ctype: 'ComponentType', fpath: str) -> 'Component':
dynamic = project.get('dynamic', ())
return Component(
type=ctype,
name=project['name'],
version=project.get('version', None) if 'version' not in dynamic else None,
description=project.get('description', None) if 'description' not in dynamic else None,
licenses=licenses_fixup(project2licenses(project, LicenseFactory(), fpath=fpath)),
external_references=project2extrefs(project),
# TODO add more properties according to spec
)
def project2dependencies(project: Dict[str, Any]) -> Iterator['Requirement']:
return (
Requirement(dep)
for dep in chain(
project.get('dependencies', ()),
chain.from_iterable(project.get('optional-dependencies', {}).values())
)
)