This repository was archived by the owner on Aug 7, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathclient.py
More file actions
746 lines (603 loc) · 30.7 KB
/
client.py
File metadata and controls
746 lines (603 loc) · 30.7 KB
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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
from __future__ import absolute_import
from __future__ import unicode_literals
import requests
from requests.auth import HTTPBasicAuth
import time
import simplejson as json
from teamscale_client.data import ServiceError, Baseline, ProjectInfo, Finding, Task
from teamscale_client.utils import to_json
class TeamscaleClient:
"""Basic Python service client to access Teamscale's REST Api.
Request handling done with:
http://docs.python-requests.org/en/latest/
Args:
url (str): The url to Teamscale (including the port)
username (str): The username to use for authentication
access_token (str): The IDE access token to use for authentication
project (str): The id of the project on which to work
sslverify: See requests' verify parameter in http://docs.python-requests.org/en/latest/user/advanced/#ssl-cert-verification
timeout (float): TTFB timeout in seconds, see http://docs.python-requests.org/en/master/user/quickstart/#timeouts
branch: The branch name for which to upload/retrieve data
"""
def __init__(self, url, username, access_token, project, sslverify=True, timeout=30.0, branch=None):
"""Constructor
"""
self.url = url
self.username = username
self.auth_header = HTTPBasicAuth(username, access_token)
self.project = project
self.sslverify = sslverify
self.timeout = timeout
self.branch = branch
self.check_api_version()
def check_api_version(self):
"""Verifies the server's api version and connectivity.
Raises:
ServiceError: If the version does not match or the server cannot be found.
"""
url = self.get_global_service_url('service-api-info')
response = self.get(url)
json_response = response.json()
api_version = json_response['apiVersion']
if api_version < 6:
raise ServiceError("Server api version " + str(
api_version) + " too low and not compatible. This client requires Teamscale 4.1 or newer.")
def get(self, url, parameters=None):
"""Sends a GET request to the given service url.
Args:
url (str): The URL for which to execute a PUT request
parameters (dict): parameters to attach to the url
Returns:
requests.Response: request's response
Raises:
ServiceError: If anything goes wrong
"""
headers = {'Accept': 'application/json'}
response = requests.get(url, params=parameters, auth=self.auth_header, verify=self.sslverify, headers=headers,
timeout=self.timeout)
if response.status_code != 200:
raise ServiceError("ERROR: GET {url}: {r.status_code}:{r.text}".format(url=url, r=response))
return response
def put(self, url, json=None, parameters=None, data=None):
"""Sends a PUT request to the given service url with the json payload as content.
Args:
url (str): The URL for which to execute a PUT request
json: The Object to attach as content, will be serialized to json (only for object that can be serialized by default)
parameters (dict): parameters to attach to the url
data: The data object to be attached to the request
Returns:
requests.Response: request's response
Raises:
ServiceError: If anything goes wrong
"""
headers = {'Accept': 'application/json', 'Content-Type': 'application/json'}
response = requests.put(url, params=parameters, json=json, data=data,
headers=headers, auth=self.auth_header,
verify=self.sslverify, timeout=self.timeout)
if response.status_code != 200:
raise ServiceError("ERROR: PUT {url}: {r.status_code}:{r.text}".format(url=url, r=response))
return response
def delete(self, url, parameters=None):
"""Sends a DELETE request to the given service url.
Args:
url (str): The URL for which to execute a DELETE request
parameters (dict): parameters to attach to the url
Returns:
requests.Response: request's response
Raises:
ServiceError: If anything goes wrong
"""
response = requests.delete(url, params=parameters, auth=self.auth_header, verify=self.sslverify,
timeout=self.timeout)
if response.status_code != 200:
raise ServiceError("ERROR: PUT {url}: {r.status_code}:{r.text}".format(url=url, r=response))
return response
def add_findings_group(self, name, mapping_pattern):
"""Adds group of findings.
Args:
name (str): Name of group.
mapping_pattern (str): Regular expression to match a finding's ``typeid`` in order to belong to this group.
Returns:
requests.Response: request's response
"""
url = "%s/%s" % (self.get_global_service_url('external-findings-group'), name)
return self.put(url, {'groupName': name, 'mapping': mapping_pattern})
def add_finding_descriptions(self, descriptions):
"""Adds descriptions of findings.
Args:
descriptions (list): List of :class:`FindingDescription` to add to Teamscale.
Returns:
requests.Response: request's response
"""
base_url = self.get_global_service_url('external-findings-description')
response = None
for finding_description in descriptions:
some_description = dict()
some_description['typeId'] = finding_description.typeid
some_description['description'] = finding_description.description
some_description['enablement'] = finding_description.enablement
some_description['name'] = finding_description.name
url = "%s/%s" % (base_url, finding_description.typeid)
response = self.put(url, some_description)
if response.text != 'success':
return response
return response
def update_findings_schema(self):
"""Triggers refresh of finding groups in analysis profiles."""
url = self.get_global_service_url('update-findings-schema')
return self.get(url, {'projects': self.project})
def upload_findings(self, findings, timestamp, message, partition):
"""Uploads a list of findings
Args:
findings (List[:class:`data.FileFindings`]): the findings data
timestamp (datetime.datetime): timestamp for which to upload the findings
message (str): The message to use for the generated upload commit
partition (str): The partition's id into which the findings should be added (See also: :ref:`FAQ - Partitions<faq-partition>`).
Returns:
requests.Response: object generated by the request
Raises:
ServiceError: If anything goes wrong
"""
return self._upload_external_data("add-external-findings", findings, timestamp, message, partition)
def upload_metrics(self, metrics, timestamp, message, partition):
"""Uploads a list of metrics
Args:
metrics (List[:class:`data.MetricEntry`]): metrics data
timestamp (datetime.datetime): timestamp for which to upload the metrics
message (str): The message to use for the generated upload commit
partition (str): The partition's id into which the metrics should be added (See also: :ref:`FAQ - Partitions<faq-partition>`).
Returns:
requests.Response: object generated by the upload request
Raises:
ServiceError: If anything goes wrong
"""
return self._upload_external_data("add-external-metrics", metrics, timestamp, message, partition)
def _upload_external_data(self, service_name, json_data, timestamp, message, partition):
"""Uploads externals data in json format
Args:
service_name (str): The service name to which to upload the data
json_data: data in json format
timestamp (datetime.datetime): timestamp (unix format) for which to upload the data
message (str): The message to use for the generated upload commit
partition (str): The partition's id into which the data should be added (See also: :ref:`FAQ - Partitions<faq-partition>`).
Returns:
requests.Response: object generated by the request
Raises:
ServiceError: If anything goes wrong
"""
service_url = self.get_project_service_url(service_name)
parameters = {
"t": self._get_timestamp_parameter(timestamp),
"message": message,
"partition": partition,
"skip-session": "true",
"adjusttimestamp": "true"
}
return self.put(service_url, parameters=parameters, data=to_json(json_data))
def add_metric_descriptions(self, metric_descriptions):
"""Uploads metric definitions to Teamscale.
Args:
metric_descriptions (list[:class:`MetricDescription`]): List of metric descriptions to add to Teamscale.
Returns:
requests.Response: object generated by the request
Raises:
ServiceError: If anything goes wrong
"""
service_url = self.get_global_service_url("external-metric")
return self.put(service_url, data=to_json(metric_descriptions))
def upload_coverage_data(self, coverage_files, coverage_format, timestamp, message, partition):
"""Upload coverage reports to Teamscale. It is expected that the given coverage report files can be read from the filesystem.
Args:
coverage_files (list): list of coverage filenames (strings!) that should be uploaded. Files must be readable.
coverage_format (constants.CoverageFormats): the format to use
timestamp (datetime.datetime): timestamp (unix format) for which to upload the data
message (str): The message to use for the generated upload commit
partition (str): The partition's id into which the data should be added (See also: :ref:`FAQ - Partitions<faq-partition>`).
Returns:
requests.Response: object generated by the request
Raises:
ServiceError: If anything goes wrong
"""
return self.upload_report(coverage_files, coverage_format, timestamp, message, partition)
def upload_report(self, report_files, report_format, timestamp, message, partition, move_to_last_commit=True):
"""Upload reports from external tools to Teamscale. It is expected that the given report files can be read from
the filesystem.
Args:
report_files (list): list of filenames (strings!) that should be uploaded. Files must be readable.
report_format (constants.ReportFormats): the format to use
timestamp (datetime.datetime): timestamp (unix format) for which to upload the data
message (str): The message to use for the generated upload commit
partition (str): The partition's id into which the data should be added
(See also: :ref:`FAQ - Partitions<faq-partition>`).
move_to_last_commit (bool): True to automatically adjust this commit to be the latest otherwise False.
Default is True
Returns:
requests.Response: object generated by the request
Raises:
ServiceError: If anything goes wrong
"""
service_url = self.get_project_service_url("external-report")
parameters = {
"t": self._get_timestamp_parameter(timestamp),
"message": message,
"partition": partition,
"format": report_format,
"adjusttimestamp": "true",
"movetolastcommit": str(move_to_last_commit).lower()
}
multiple_files = [('report', open(filename, 'rb')) for filename in report_files]
response = requests.post(service_url, params=parameters, auth=self.auth_header, verify=self.sslverify,
files=multiple_files, timeout=self.timeout)
if response.status_code != 200:
raise ServiceError("ERROR: POST {url}: {r.status_code}:{r.text}".format(url=service_url, r=response))
return response
def upload_architectures(self, architectures, timestamp, message):
"""Upload architectures to Teamscale. It is expected that the given architectures can be be read from the filesystem.
Args:
architectures (dict): mappping of teamscale paths to architecture files that should be uploaded. Files must be readable.
timestamp (datetime.datetime): timestamp for which to upload the data
message (str): The message to use for the generated upload commit
Returns:
requests.Response: object generated by the request
Raises:
ServiceError: If anything goes wrong
"""
service_url = self.get_project_service_url("architecture-upload")
parameters = {
"t": self._get_timestamp_parameter(timestamp),
"adjusttimestamp": "true",
"message": message
}
architecture_files = [(path, open(filename, 'rb')) for path, filename in architectures.items()]
response = requests.post(service_url, params=parameters, auth=self.auth_header, verify=self.sslverify,
files=architecture_files, timeout=self.timeout)
if response.status_code != 200:
raise ServiceError("ERROR: POST {url}: {r.status_code}:{r.text}".format(url=service_url, r=response))
return response
def upload_non_code_metrics(self, metrics, timestamp, message, partition):
"""Uploads a list of non-code metrics
Args:
metrics (List[:class:`data.NonCodeMetricEntry`]): metrics data
timestamp (datetime.datetime): timestamp for which to upload the metrics
message (str): The message to use for the generated upload commit
partition (str): The partition's id into which the metrics should be added (See also: :ref:`FAQ - Partitions<faq-partition>`).
Returns:
requests.Response: object generated by the upload request
Raises:
ServiceError: If anything goes wrong
"""
return self._upload_external_data("add-non-code-metrics", metrics, timestamp, message, partition)
def get_baselines(self):
"""Retrieves a list of baselines from the server for the currently active project.
Returns:
List[:class:`data.Baseline`]): The list of baselines.
Raises:
ServiceError: If anything goes wrong
"""
service_url = self.get_project_service_url("baselines")
parameters = {
"detail": True
}
headers = {'Accept': 'application/json'}
response = requests.get(service_url, params=parameters, auth=self.auth_header, verify=self.sslverify,
headers=headers, timeout=self.timeout)
if response.status_code != 200:
raise ServiceError("ERROR: GET {url}: {r.status_code}:{r.text}".format(url=service_url, r=response))
return [Baseline(x['name'], x['description'], timestamp=x['timestamp']) for x in response.json()]
def delete_baseline(self, baseline_name):
"""Deletes a baseline from the currently active project.
Args:
baseline_name (string): The baseline that is to be removed.
Returns:
requests.Response: object generated by the upload request
Raises:
ServiceError: If anything goes wrong
"""
service_url = self.get_project_service_url("baselines")
service_url += baseline_name
return self.delete(service_url, parameters={})
def add_baseline(self, baseline):
"""Adds a baseline to the currently active project. Re-adding an existing baseline will update the original baseline.
Args:
baseline (data.Baseline): The baseline that is to be added (or updated)
Returns:
requests.Response: object generated by the upload request
Raises:
ServiceError: If anything goes wrong
"""
service_url = self.get_project_service_url("baselines")
service_url += baseline.name
return self.put(service_url, parameters={}, data=to_json(baseline))
def get_projects(self):
"""Retrieves a list of projects from the server.
Returns:
List[:class:`data.ProjectInfo`]): The list of projects.
Raises:
ServiceError: If anything goes wrong
"""
service_url = self.get_global_service_url("projects")
parameters = {
"detail": True
}
response = self.get(service_url, parameters)
return [
ProjectInfo(project_id=x['id'], name=x['name'], description=x.get('description'),
creation_timestamp=x['creationTimestamp'], alias=x.get('alias'),
deleting=x['deleting'], reanalyzing=x['reanalyzing']) for x in response.json()]
def create_project(self, project_configuration):
"""Creates a project with the specified configuration in Teamscale.
Args:
project_configuration (data.ProjectConfiguration): The configuration for the project to be created.
Returns:
requests.Response: object generated by the upload request.
Raises:
ServiceError: If anything goes wrong.
"""
return self._add_project(project_configuration, perfrom_update_call=False)
def update_project(self, project_configuration):
"""Updates an existing project in Teamscale with the given configuration. The id of the existing project is
taken from the configuration.
Args:
project_configuration (data.ProjectConfiguration): The configuration for the project to be updated.
Returns:
requests.Response: object generated by the upload request.
Raises:
ServiceError: If anything goes wrong.
"""
return self._add_project(project_configuration, perfrom_update_call=True)
def _add_project(self, project_configuration, perfrom_update_call):
"""Adds a project to Teamscale. The parameter `perfrom_update_call` specifies, whether an update call should be
made:
- If `perfrom_update_call` is set to `True`, re-adding a project with an existing id will update the original
project.
- If `perfrom_update_call` is set to `False`, re-adding a project with an existing id will result in an error.
- Further, if `perfrom_update_call` is set to `True`, but no project with the specified id exists, an error is
thrown as well.
Args:
project_configuration (data.ProjectConfiguration): The project that is to be created (or updated).
perfrom_update_call (bool): Whether to perform an update call.
Returns:
requests.Response: object generated by the upload request.
Raises:
ServiceError: If anything goes wrong.
"""
service_url = self.get_global_service_url("create-project")
parameters = {
"only-config-update": perfrom_update_call
}
response = self.put(service_url, parameters=parameters, data=to_json(project_configuration))
response_message = TeamscaleClient._get_response_message(response)
if response_message != 'success':
raise ServiceError(
"ERROR: GET {url}: {status_code}:{message}".format(url=service_url, status_code=response.status_code,
message=response_message))
return response
@staticmethod
def _get_response_message(response):
"""Returns the message enclosed in the provided server response.
Args:
response (requests.Response): The server response.
Returns:
A string containing the server response message.
"""
return response.json().get('message')
def _get_timestamp_parameter(self, timestamp):
"""Returns the timestamp parameter. Will use the branch parameter if it is set.
Args:
timestamp (datetime.datetime): The timestamp to convert
Returns:
str: timestamp in ms
"""
timestamp_seconds = time.mktime(timestamp.timetuple())
timestamp_ms = str(int(timestamp_seconds * 1000))
if self.branch is not None:
return self.branch + ":" + timestamp_ms
return timestamp_ms
def get_global_service_url(self, service_name):
"""Returns the full url pointing to a global service.
Args:
service_name(str): the name of the service for which the url should be generated
Returns:
str: The full url
"""
return "%s/%s/" % (self.url, service_name)
def get_project_service_url(self, service_name):
"""Returns the full url pointing to a project service.
Args:
service_name(str): the name of the service for which the url should be generated
Returns:
str: The full url
"""
return "{client.url}/p/{client.project}/{service}/".format(client=self, service=service_name)
@classmethod
def read_json_from_file(cls, file_path):
"""Reads JSON content from a file and parses it to ensure basic integrity.
Args:
file_path (str): File from which to read the JSON content.
Returns:
The parsed JSON data.
"""
with open(file_path) as json_file:
json_data = json.load(json_file)
return json_data
def upload_files_for_precommit_analysis(self, timestamp, precommit_data):
"""Uploads the provided files for precommit analysis.
Args:
timestamp (datetime.datetime): The timestamp of the parent commit.
precommit_data (data.PreCommitUploadData): The precommit data to upload.
"""
service_url = self.get_project_service_url("pre-commit") + self._get_timestamp_parameter(timestamp)
response = self.put(service_url, data=to_json(precommit_data))
if response.status_code != 200:
raise ServiceError("ERROR: GET {url}: {r.status_code}:{r.text}".format(url=service_url, r=response))
def get_precommit_analysis_results(self):
"""Gets precommit analysis results.
Returns:
A tuple consisting of three lists: added findings, findings in changed code, and removed findings.
"""
service_url = self.get_project_service_url("pre-commit")
while True:
response = self.get(service_url)
if response.json() is None:
time.sleep(2)
else:
return self._parse_findings_response(service_url, response)
def _parse_findings_response(self, service_url, response):
"""Parses findings retrieved from Teamscale.
Args:
service_url (str): The service url. Used for logging.
response (requests.Response): The response to parse for findings.
Returns:
A tuple consisting of three lists: added findings, findings in changed code, and removed findings.
Raises:
ServiceError: If anything goes wrong.
"""
if response.status_code != 200:
raise ServiceError("ERROR: GET {url}: {r.status_code}:{r.text}".format(url=service_url, r=response))
added_findings = self._findings_from_json(response.json()['addedFindings'])
findings_in_changed_code = self._findings_from_json(response.json()['findingsInChangedCode'])
removed_findings = self._findings_from_json(response.json()['removedFindings'])
return added_findings, removed_findings, findings_in_changed_code
def _findings_from_json(self, findings_json):
"""Parses JSON encoded findings.
Args:
findings_json (List[object]): The json object encoding the list of findings.
Returns:
data.Finding: The finding that was parsed from the JSON object
"""
return [Finding(finding_type_id=x['typeId'], message=x['message'],
assessment=x['assessment'], start_offset=x['location']['rawStartOffset'],
end_offset=x['location']['rawEndOffset'], start_line=x['location']['rawStartLine'],
end_line=x['location']['rawEndLine'], uniform_path=x['location']['uniformPath'])
for x in findings_json]
def get_findings(self, uniform_path, timestamp, recursive=True):
"""Retrieves the list of findings in the currently active project for the given uniform path
at the provided timestamp on the given branch.
Args:
uniform_path (str): The uniform path to get findings for.
timestamp (datetime.datetime): timestamp (unix format) for which to upload the data
recursive (bool): Whether to query findings recursively, i.e. also get findings for files under the given
path.
Returns:
List[:class:`data.Finding`]): The list of findings.
Raises:
ServiceError: If anything goes wrong
"""
service_url = self.get_project_service_url("findings") + uniform_path
parameters = {
"t": self._get_timestamp_parameter(timestamp=timestamp),
"recursive": recursive,
"all": True
}
response = self.get(service_url, parameters=parameters)
if response.status_code != 200:
raise ServiceError("ERROR: GET {url}: {r.status_code}:{r.text}".format(url=service_url, r=response))
return self._findings_from_json(response.json())
def get_tasks(self, status="OPEN", details=True, start=0, max=300):
"""Retrieves the tasks for the client's project from the server.
Args:
status (constants.TaskStatus): The status to retrieve tickets for
details (bool): Whether to retrieve details together with the tasks
start (number): From which task number to start listing tasks
max (number): Maximum number of tasks to return
Returns:
List[:class:`data.Task`]): The list of tasks.
Raises:
ServiceError: If anything goes wrong
"""
service_url = self.get_project_service_url("tasks")
parameters = {
"status": status,
"details": details,
"start": start,
"max": max,
"with-count": False
}
response = self.get(service_url, parameters=parameters)
if response.status_code != 200:
raise ServiceError("ERROR: GET {url}: {r.status_code}:{r.text}".format(url=service_url, r=response))
return TeamscaleClient._tasks_from_json(response.json())
def add_task_comment(self, task_id, comment):
"""Adds a comment to a task.
Args:
task_id (number): the task id to which to add the comment
comment (str): the comment to add
Returns:
requests.Response: object generated by the request
Raises:
ServiceError: If anything goes wrong
"""
service_url = self.get_project_service_url("comment-task") + str(task_id)
response = self.put(service_url, data=to_json(comment))
if response.status_code != 200:
raise ServiceError("ERROR: PUT {url}: {r.status_code}:{r.text}".format(url=service_url, r=response))
return response
@staticmethod
def _tasks_from_json(task_json):
"""Parses JSON encoded findings.
Args:
task_json (List[object]): The json object encoding the list of findings.
Returns:
list[data.Task]: The tasks that was parsed from the JSON object
"""
return [Task.from_json(x) for x in task_json]
def add_issue_metric(self, name, issue_query):
"""Adds group of findings.
Args:
name (str): Name of issue metric
issue_query (str): The issue query to add
Returns:
requests.Response: request's response
"""
url = "%s/%s" % (self.get_project_service_url('issue-metrics'), name)
return self.put(url, {'name': name, 'query': issue_query})
def create_dashboard(self, dashboard_descriptor):
"""Adds a new dashboard from the given template.
Args:
dashboard_descriptor (str): The dashboard descriptor that should be uploaded
Returns:
requests.Response: request's response
"""
service_url = self.get_global_service_url("dashboard-export")
multiple_files = [('dashboardDescriptor', dashboard_descriptor)]
return requests.post(service_url, auth=self.auth_header, verify=self.sslverify,
files=multiple_files, timeout=self.timeout)
def get_project_configuration(self, project_id):
"""Adds a new dashboard from the given template.
Args:
project_id (str): The id for which the project configuration should be retrieved
Returns:
str: The project configuration as json
"""
url = "%s%s" % (self.get_global_service_url("create-project"), project_id)
return self.get(url).json()
def get_architectures(self):
"""Returns the paths of all architecture in the project.
Returns:
List[str] The architecture names.
"""
service_url = self.get_project_service_url("arch-assessment")
parameters = {
"list": True,
}
response = self.get(service_url, parameters=parameters)
if response.status_code != 200:
raise ServiceError("ERROR: GET {url}: {r.status_code}:{r.text}".format(url=service_url, r=response))
return [architecture_overview['uniformPath'] for architecture_overview in response.json()]
def get_all_dashboard_details(self):
"""Returns all dashboards with detail info.
Returns:
list of dashboard objects
"""
service_url = self.get_global_service_url("dashboards")
response = self.get(service_url, parameters={'detail':True})
if response.status_code != 200:
raise ServiceError("ERROR: GET {url}: {r.status_code}:{r.text}".format(url=service_url, r=response))
return json.loads(response.content)
def delete_dashboard(self, dashboard_name):
"""Deletes the dashboard with the given name
Returns:
response
"""
service_url = self.get_global_service_url("dashboards")
return self.delete(service_url+ dashboard_name)