-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathissue.py
265 lines (209 loc) · 7.36 KB
/
issue.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
# 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
from enum import Enum
from typing import List, Optional
from . import XsUri
from ..exception.model import NoPropertiesProvidedException
class IssueClassification(Enum):
"""
This is out internal representation of the enum `issueClassification`.
.. note::
See the CycloneDX Schema definition: https://cyclonedx.org/docs/1.4/xml/#type_issueClassification
"""
DEFECT = 'defect'
ENHANCEMENT = 'enhancement'
SECURITY = 'security'
class IssueTypeSource:
"""
This is out internal representation ofa source within the IssueType 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_issueType
"""
def __init__(self, name: Optional[str] = None, url: Optional[XsUri] = None) -> None:
if not name and not url:
raise NoPropertiesProvidedException(
'Neither `name` nor `url` were provided - at least one must be provided.'
)
self.name = name
self.url = url
@property
def name(self) -> Optional[str]:
"""
The name of the source. For example "National Vulnerability Database", "NVD", and "Apache".
Returns:
`str` if set else `None`
"""
return self._name
@name.setter
def name(self, name: Optional[str]) -> None:
self._name = name
@property
def url(self) -> Optional[XsUri]:
"""
Optional url of the issue documentation as provided by the source.
Returns:
`XsUri` if set else `None`
"""
return self._url
@url.setter
def url(self, url: Optional[XsUri]) -> None:
self._url = url
class IssueType:
"""
This is out internal representation of an IssueType 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_issueType
"""
def __init__(self, classification: IssueClassification, id: Optional[str] = None, name: Optional[str] = None,
description: Optional[str] = None, source_name: Optional[str] = None,
source_url: Optional[XsUri] = None, references: Optional[List[XsUri]] = None) -> None:
self._type: IssueClassification = classification
self._id: Optional[str] = id
self._name: Optional[str] = name
self._description: Optional[str] = description
self._source: Optional[IssueTypeSource] = None
self._references: List[XsUri] = references or []
if source_name or source_url:
self._source = IssueTypeSource(
name=source_name, url=source_url
)
@property
def source(self) -> Optional[IssueTypeSource]:
return self._source
@source.setter
def source(self, source: IssueTypeSource) -> None:
self._source = source
def add_reference(self, reference: XsUri) -> None:
"""
Add a reference URL to this Issue.
Args:
reference:
`XsUri` Reference URL to add
"""
self._references.append(reference)
def get_classification(self) -> IssueClassification:
"""
Get the classification of this IssueType.
Returns:
`IssueClassification` that represents the classification of this `IssueType`.
"""
return self._type
def get_id(self) -> Optional[str]:
"""
Get the ID of this IssueType.
Returns:
`str` that represents the ID of this `IssueType` if set else `None`.
"""
return self._id
def get_name(self) -> Optional[str]:
"""
Get the name of this IssueType.
Returns:
`str` that represents the name of this `IssueType` if set else `None`.
"""
return self._name
def get_description(self) -> Optional[str]:
"""
Get the description of this IssueType.
Returns:
`str` that represents the description of this `IssueType` if set else `None`.
"""
return self._description
def get_source_name(self) -> Optional[str]:
"""
Get the source_name of this IssueType.
For example, this might be "NVD" or "National Vulnerability Database".
Returns:
`str` that represents the source_name of this `IssueType` if set else `None`.
"""
if self._source:
return self._source.name
return None
def get_source_url(self) -> Optional[XsUri]:
"""
Get the source_url of this IssueType.
For example, this would likely be a URL to the issue on the NVD.
Returns:
`XsUri` that represents the source_url of this `IssueType` if set else `None`.
"""
if self._source:
return self._source.url
return None
def get_references(self) -> List[XsUri]:
"""
Get any references for this IssueType.
References are an arbitrary list of URIs that relate to this issue.
Returns:
List of `XsUri` objects.
"""
return self._references
def set_id(self, id: str) -> None:
"""
Set the ID of this Issue.
Args:
id:
`str` the Issue ID
Returns:
None
"""
self._id = id
def set_name(self, name: str) -> None:
"""
Set the name of this Issue.
Args:
name:
`str` the name of this Issue
Returns:
None
"""
self._name = name
def set_description(self, description: str) -> None:
"""
Set the description of this Issue.
Args:
description:
`str` the description of this Issue
Returns:
None
"""
self._description = description
def set_source_name(self, source_name: str) -> None:
"""
Set the name of the source of this Issue.
Args:
source_name:
`str` For example, this might be "NVD" or "National Vulnerability Database"
Returns:
None
"""
if self._source:
self._source.name = source_name
else:
self._source = IssueTypeSource(name=source_name)
def set_source_url(self, source_url: XsUri) -> None:
"""
Set the URL for the source of this Issue.
Args:
source_url:
`XsUri` For example, this would likely be a URL to the issue on the NVD
Returns:
None
"""
if self._source:
self._source.url = source_url
else:
self._source = IssueTypeSource(url=source_url)