Skip to content

Commit de3efe3

Browse files
authored
Fixed purl logic to accept params (#31)
1 parent be48b64 commit de3efe3

File tree

2 files changed

+17
-7
lines changed

2 files changed

+17
-7
lines changed

socketdev/purl/__init__.py

+16-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,26 @@
11
import json
2+
import urllib.parse
3+
from socketdev.log import log
24

35

46
class Purl:
57
def __init__(self, api):
68
self.api = api
79

8-
def post(self, license: str = "true", components: list = []) -> list:
9-
path = "purl?" + "license=" + license
10-
components = {"components": components}
11-
components = json.dumps(components)
12-
13-
response = self.api.do_request(path=path, payload=components, method="POST")
10+
def post(self, license: str = "false", components: list = None, **kwargs) -> list:
11+
path = "purl?"
12+
if components is None:
13+
components = []
14+
purls = {"components": components}
15+
purls = json.dumps(purls)
16+
query_args = {
17+
"license": license,
18+
}
19+
if kwargs:
20+
query_args.update(kwargs)
21+
params = urllib.parse.urlencode(query_args)
22+
path += params
23+
response = self.api.do_request(path=path, payload=purls, method="POST")
1424
if response.status_code == 200:
1525
purl = []
1626
result = response.text

socketdev/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.0.15"
1+
__version__ = "2.0.16"

0 commit comments

Comments
 (0)