pam-python 0.1.20__tar.gz → 0.1.22__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pam_python-0.1.20/pam_python.egg-info → pam_python-0.1.22}/PKG-INFO +1 -1
- {pam_python-0.1.20 → pam_python-0.1.22}/pam/server.py +5 -4
- {pam_python-0.1.20 → pam_python-0.1.22}/pam/service.py +15 -2
- {pam_python-0.1.20 → pam_python-0.1.22/pam_python.egg-info}/PKG-INFO +1 -1
- {pam_python-0.1.20 → pam_python-0.1.22}/setup.py +1 -1
- {pam_python-0.1.20 → pam_python-0.1.22}/LICENSE.txt +0 -0
- {pam_python-0.1.20 → pam_python-0.1.22}/README.md +0 -0
- {pam_python-0.1.20 → pam_python-0.1.22}/pam/__init__.py +0 -0
- {pam_python-0.1.20 → pam_python-0.1.22}/pam/api.py +0 -0
- {pam_python-0.1.20 → pam_python-0.1.22}/pam/cli.py +0 -0
- {pam_python-0.1.20 → pam_python-0.1.22}/pam/interface_task_manager.py +0 -0
- {pam_python-0.1.20 → pam_python-0.1.22}/pam/models/__init__.py +0 -0
- {pam_python-0.1.20 → pam_python-0.1.22}/pam/models/request_command.py +0 -0
- {pam_python-0.1.20 → pam_python-0.1.22}/pam/sqlite.py +0 -0
- {pam_python-0.1.20 → pam_python-0.1.22}/pam/task_manager.py +0 -0
- {pam_python-0.1.20 → pam_python-0.1.22}/pam/temp_file_utils.py +0 -0
- {pam_python-0.1.20 → pam_python-0.1.22}/pam/templates/buildcmd/pamb +0 -0
- {pam_python-0.1.20 → pam_python-0.1.22}/pam/templates/buildcmd/pamb-base.sh +0 -0
- {pam_python-0.1.20 → pam_python-0.1.22}/pam/templates/docker/Dockerfile +0 -0
- {pam_python-0.1.20 → pam_python-0.1.22}/pam/templates/init/dockerignore.tmpl +0 -0
- {pam_python-0.1.20 → pam_python-0.1.22}/pam/templates/init/gitignore.tmpl +0 -0
- {pam_python-0.1.20 → pam_python-0.1.22}/pam/templates/init/main.tmpl +0 -0
- {pam_python-0.1.20 → pam_python-0.1.22}/pam/templates/init/pylintrc.tmpl +0 -0
- {pam_python-0.1.20 → pam_python-0.1.22}/pam/templates/init/run_test.sh +0 -0
- {pam_python-0.1.20 → pam_python-0.1.22}/pam/templates/service/functions.tmpl +0 -0
- {pam_python-0.1.20 → pam_python-0.1.22}/pam/templates/service/service.test.tmpl +0 -0
- {pam_python-0.1.20 → pam_python-0.1.22}/pam/templates/service/service.yaml +0 -0
- {pam_python-0.1.20 → pam_python-0.1.22}/pam/templates/service/service_class.tmpl +0 -0
- {pam_python-0.1.20 → pam_python-0.1.22}/pam/tester_task.py +0 -0
- {pam_python-0.1.20 → pam_python-0.1.22}/pam/utils.py +0 -0
- {pam_python-0.1.20 → pam_python-0.1.22}/pam_python.egg-info/SOURCES.txt +0 -0
- {pam_python-0.1.20 → pam_python-0.1.22}/pam_python.egg-info/dependency_links.txt +0 -0
- {pam_python-0.1.20 → pam_python-0.1.22}/pam_python.egg-info/entry_points.txt +0 -0
- {pam_python-0.1.20 → pam_python-0.1.22}/pam_python.egg-info/requires.txt +0 -0
- {pam_python-0.1.20 → pam_python-0.1.22}/pam_python.egg-info/top_level.txt +0 -0
- {pam_python-0.1.20 → pam_python-0.1.22}/setup.cfg +0 -0
|
@@ -12,7 +12,7 @@ from pam.models.request_command import RequestCommand
|
|
|
12
12
|
from pam.task_manager import TaskManager
|
|
13
13
|
from pam.temp_file_utils import TempfileUtils
|
|
14
14
|
from threading import Lock
|
|
15
|
-
|
|
15
|
+
from pam.utils import log
|
|
16
16
|
|
|
17
17
|
class Server:
|
|
18
18
|
"""
|
|
@@ -35,15 +35,16 @@ class Server:
|
|
|
35
35
|
|
|
36
36
|
@app.route('/service/<service_name>', methods=['POST'])
|
|
37
37
|
def run(service_name):
|
|
38
|
+
log(f"[run] service = {service_name}")
|
|
38
39
|
TempfileUtils.clean_temp()
|
|
39
|
-
|
|
40
|
+
log(f"[run] service = {service_name} after clean_temp")
|
|
40
41
|
req, error_request = RequestCommand.parse(request, service_name)
|
|
41
|
-
|
|
42
42
|
if error_request:
|
|
43
43
|
response = {'message': error_request}
|
|
44
44
|
return self.response_error(response, 400)
|
|
45
|
-
|
|
45
|
+
log(f"[run] service = {service_name} after parse")
|
|
46
46
|
response, code = self.handle_service_cmd(service_name, req)
|
|
47
|
+
log(f"[run] service = {service_name} after handle_service_cmd")
|
|
47
48
|
return self.response_error(response, code)
|
|
48
49
|
|
|
49
50
|
@app.route('/tasks', methods=['GET'])
|
|
@@ -22,6 +22,12 @@ class Service:
|
|
|
22
22
|
self.request = req
|
|
23
23
|
self.task_manager = task_manager
|
|
24
24
|
|
|
25
|
+
def get_adapter_id(self) -> str:
|
|
26
|
+
"""
|
|
27
|
+
Returns the adapter ID for the service based on the request's response API.
|
|
28
|
+
"""
|
|
29
|
+
return get_adapter_id(self.request.response_api)
|
|
30
|
+
|
|
25
31
|
# == REQUEST DATA ===
|
|
26
32
|
def _request_data(self, page: str = "") -> None:
|
|
27
33
|
"""Requests data for the specified page."""
|
|
@@ -57,10 +63,15 @@ class Service:
|
|
|
57
63
|
|
|
58
64
|
return tmp_file_name
|
|
59
65
|
|
|
60
|
-
|
|
61
|
-
def _upload_report(self, report_name: str, report_json: dict) -> None:
|
|
66
|
+
def _upload_report(self, report_name: str, report_json: dict, tracker_name: str = "") -> str:
|
|
62
67
|
"""
|
|
63
68
|
Uploads a report in JSON format to a temporary file and notifies the task manager.
|
|
69
|
+
Args:
|
|
70
|
+
report_name (str): Name of the report.
|
|
71
|
+
report_json (dict): The report content as a dictionary.
|
|
72
|
+
tracker_name (str, optional): Tracker name to include in the report. Defaults to empty string.
|
|
73
|
+
Returns:
|
|
74
|
+
str: Path to the uploaded report CSV file.
|
|
64
75
|
"""
|
|
65
76
|
if not isinstance(report_json, dict):
|
|
66
77
|
raise ValueError("report_json must be a dictionary")
|
|
@@ -75,6 +86,7 @@ class Service:
|
|
|
75
86
|
formatted_report_name = f"data_{report_name}_no_index"
|
|
76
87
|
df = pd.DataFrame({
|
|
77
88
|
'customer': [adapter_id],
|
|
89
|
+
'_tracker_name': [tracker_name],
|
|
78
90
|
formatted_report_name: [json_string]
|
|
79
91
|
})
|
|
80
92
|
|
|
@@ -97,6 +109,7 @@ class Service:
|
|
|
97
109
|
|
|
98
110
|
return report_csv_path
|
|
99
111
|
|
|
112
|
+
|
|
100
113
|
def _request_sqlite(self, file_name: str = "", is_shared: bool = False) -> str:
|
|
101
114
|
"""Requests last sqlite file that this plugin has uploaded from the last time.
|
|
102
115
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|