-
Notifications
You must be signed in to change notification settings - Fork 7
/
team.py
531 lines (423 loc) · 17.8 KB
/
team.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
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
import json
import logging
from .model import (
APIModel,
APIEndpoints,
RequestsMethods,
TeamObject,
)
from .api import Api
class Team:
"""The class includes all necessary methods to access the Grafana team API endpoints. Be aware that all functionalities inside the class only working with the corresponding access rights, please check the following page for details: https://grafana.com/docs/grafana/latest/http_api/team/#team-api & https://grafana.com/docs/grafana/latest/developers/http_api/team_sync/#team-sync-api
HINT: Note Grafana Enterprise API need required permissions if fine-grained access control is enabled
Args:
grafana_api_model (APIModel): Inject a Grafana API model object that includes all necessary values and information
Attributes:
grafana_api_model (APIModel): This is where we store the grafana_api_model
"""
def __init__(self, grafana_api_model: APIModel):
self.grafana_api_model = grafana_api_model
def search_team(
self, results_per_page: int = 1000, pages: int = 1, query: str = None
) -> dict:
"""The method includes a functionality to get the organization teams specified by the optional pagination functionality
Required Permissions:
Action: teams:read
Scope: teams:*
Args:
results_per_page (int): Specify the results_per_page as integer (default 1000)
pages (int): Specify the pages as integer (default 1)
query (str): Specify the query (default None)
Raises:
Exception: Unspecified error by executing the API call
Returns:
api_call (dict): Returns the organization teams
"""
api_request_url: str = (
f"{APIEndpoints.TEAMS.value}/search?perpage={results_per_page}&page={pages}"
)
if query is not None and len(query) != 0:
api_request_url: str = f"{api_request_url}&query={query}"
api_call: dict = Api(self.grafana_api_model).call_the_api(
api_request_url,
)
if api_call == dict() or api_call.get("totalCount") is None:
logging.error(f"Check the error: {api_call}.")
raise Exception
else:
return api_call
def get_team_by_id(self, id: int) -> dict:
"""The method includes a functionality to get the organization team specified by the id
Required Permissions:
Action: teams:read
Scope: teams:*
Args:
id (int): Specify the id of the team
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
api_call (dict): Returns the organization team
"""
if id != 0:
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.TEAMS.value}/{id}",
)
if api_call == dict() or api_call.get("id") is None:
logging.error(f"Check the error: {api_call}.")
raise Exception
else:
return api_call
else:
logging.error("There is no id defined.")
raise ValueError
def add_team(self, team: TeamObject) -> int:
"""The method includes a functionality to add an organization team specified by the TeamObject
Required Permissions:
Action: teams:create
Scope: N/A
Args:
team (TeamObject): Specify the team
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
team_id (int): Returns the team id
"""
if team is not None:
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.TEAMS.value}",
RequestsMethods.POST,
json.dumps(dict({"name": team.name, "email": team.name})),
)
if api_call.get("message") != "Team created":
logging.error(f"Check the error: {api_call}.")
raise Exception
else:
return int(api_call.get("teamId"))
else:
logging.error("There is no team defined.")
raise ValueError
def update_team(self, id: int, name: str, email: str):
"""The method includes a functionality to update an organization team specified by the team_id, name and email
Required Permissions:
Action: teams:write
Scope: teams:*
Args:
id (int): Specify the team id
name (str): Specify the team name
email (str): Specify the team email
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
None
"""
if id != 0 and len(name) != 0 and len(email) != 0:
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.TEAMS.value}/{id}",
RequestsMethods.PUT,
json.dumps(dict({"name": name, "email": email})),
)
if api_call.get("message") != "Team updated":
logging.error(f"Check the error: {api_call}.")
raise Exception
else:
logging.info("You successfully updated the team.")
else:
logging.error("There is no id, name or email defined.")
raise ValueError
def delete_team_by_id(self, id: int):
"""The method includes a functionality to delete an organization team specified by the team_id
Required Permissions:
Action: teams:delete
Scope: teams:*
Args:
id (int): Specify the team id
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
None
"""
if id != 0:
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.TEAMS.value}/{id}",
RequestsMethods.DELETE,
)
if api_call.get("message") != "Team deleted":
logging.error(f"Check the error: {api_call}.")
raise Exception
else:
logging.info("You successfully deleted the team.")
else:
logging.error("There is no id defined.")
raise ValueError
def get_team_members(self, id: int) -> list:
"""The method includes a functionality to get all organization team users specified by the team_id
Required Permissions:
Action: teams.permissions:read
Scope: teams:*
Args:
id (int): Specify the team id
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
api_call (list): Returns the organization team members
"""
if id != 0:
api_call: list = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.TEAMS.value}/{id}/members",
)
if api_call == list() or api_call[0].get("userId") is None:
logging.error(f"Check the error: {api_call}.")
raise Exception
else:
return api_call
else:
logging.error("There is no id defined.")
raise ValueError
def add_team_member(self, id: int, user_id: int):
"""The method includes a functionality to add an organization team user specified by the team_id and the user_id
Required Permissions:
Action: teams.permissions:write
Scope: teams:*
Args:
id (int): Specify the team id
user_id (int): Specify the user id
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
None
"""
if id != 0 and user_id != 0:
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.TEAMS.value}/{id}/members",
RequestsMethods.POST,
json.dumps(dict({"userId": user_id})),
)
if api_call.get("message") != "Member added to Team":
logging.error(f"Check the error: {api_call}.")
raise Exception
else:
logging.info("You successfully added a team member.")
else:
logging.error("There is no id or user_id defined.")
raise ValueError
def delete_team_member(self, id: int, user_id: int):
"""The method includes a functionality to delete an organization team user specified by the team_id and the user_id
Required Permissions:
Action: teams.permissions:write
Scope: teams:*
Args:
id (int): Specify the team id
user_id (int): Specify the user id
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
None
"""
if id != 0 and user_id != 0:
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.TEAMS.value}/{id}/members/{user_id}",
RequestsMethods.DELETE,
)
if api_call.get("message") != "Team Member removed":
logging.error(f"Check the error: {api_call}.")
raise Exception
else:
logging.info("You successfully removed a team member.")
else:
logging.error("There is no id or user_id defined.")
raise ValueError
def get_team_preferences(self, id: int) -> dict:
"""The method includes a functionality to get the organization team preferences specified by the team_id
Required Permissions:
Action: teams:read
Scope: teams:*
Args:
id (int): Specify the team id
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
api_call (dict): Returns the organization team preferences
"""
if id != 0:
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.TEAMS.value}/{id}/preferences",
)
if isinstance(api_call, dict) is False or api_call == dict():
logging.error(f"Check the error: {api_call}.")
raise Exception
else:
return api_call
else:
logging.error("There is no id defined.")
raise ValueError
def update_team_preferences(
self,
id: int,
theme: str = None,
timezone: str = None,
home_dashboard_id: int = 0,
home_dashboard_uid: str = None,
):
"""The method includes a functionality to update the organization team preferences specified by the team_id, theme, timezone and home_dashboard_id or home_dashboard_uid
Required Permissions:
Action: teams:write
Scope: teams:*
Args:
id (int): Specify the team id
theme (str): Specify the team theme e.g. light or dark (default Grafana None)
timezone (str): Specify the team timezone e.g. utc or browser (default Grafana None)
home_dashboard_id (int): Specify the home team dashboard by id (default 0)
home_dashboard_uid (str): Specify the home team dashboard by uid (default None)
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
None
"""
if id != 0 and (
theme is not None
or (home_dashboard_id != 0 or home_dashboard_uid is not None)
or timezone is not None
):
team_preferences: dict = dict()
if theme is not None:
team_preferences.update(dict({"theme": theme}))
if home_dashboard_id != 0 and isinstance(home_dashboard_id, int):
team_preferences.update(dict({"homeDashboardId": home_dashboard_id}))
else:
team_preferences.update({"homeDashboardUID": home_dashboard_uid})
if timezone is not None:
team_preferences.update(dict({"timezone": timezone}))
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.TEAMS.value}/{id}/preferences",
RequestsMethods.PUT,
json.dumps(team_preferences),
)
if api_call.get("message") != "Preferences updated":
logging.error(f"Check the error: {api_call}.")
raise Exception
else:
logging.info("You successfully updated the team preferences.")
else:
logging.error(
"There is no id, theme, home_dashboard_id or timezone defined."
)
raise ValueError
def get_external_groups(
self,
id: int,
) -> list:
"""The method includes a functionality to get the team groups specified by the team_id. The functionality is a Grafana ENTERPRISE feature
Required Permissions:
Action: teams.permissions:read
Scope: teams:*
Args:
id (int): Specify the team id
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
api_call (list): Returns the organization team groups
"""
if id != 0:
api_call: list = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.TEAMS.value}/{id}/groups",
)
if isinstance(api_call, list) is False or api_call == list():
logging.error(f"Check the error: {api_call}.")
raise Exception
else:
return api_call
else:
logging.error("There is no team_id defined.")
raise ValueError
def add_external_group(
self,
id: int,
team_group: str,
):
"""The method includes a functionality to add a group to the team specified by the team_id and the team_group. The functionality is a Grafana ENTERPRISE feature
Required Permissions:
Action: teams.permissions:write
Scope: teams:*
Args:
id (int): Specify the team id
team_group (str): Specify the team group
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
None
"""
if id != 0 and team_group is not None and len(team_group) != 0:
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.TEAMS.value}/{id}/groups",
RequestsMethods.POST,
json.dumps(dict({"groupId": team_group})),
response_status_code=True,
)
status_code: int = api_call.get("status")
external_group_status_dict: dict = dict(
{
400: "Group is already added to this team.",
401: "Unauthorized.",
403: "Permission denied.",
404: "Team not found.",
}
)
if status_code == 200 and api_call.get("message") == "Group added to Team":
logging.info("You successfully added the team group.")
elif 400 <= status_code <= 404:
logging.error(external_group_status_dict.get(status_code))
raise Exception
else:
logging.error("There is no id or team group defined.")
raise ValueError
def remove_external_group(
self,
id: int,
team_group: str,
):
"""The method includes a functionality to remove a group from a team specified by the team_id and the team_group. The functionality is a Grafana ENTERPRISE feature
Required Permissions:
Action: teams.permissions:write
Scope: teams:*
Args:
id (int): Specify the team id
team_group (str): Specify the team group
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
None
"""
if id != 0 and team_group is not None and len(team_group) != 0:
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.TEAMS.value}/{id}/groups??groupId={team_group.encode('UTF-8')}",
RequestsMethods.DELETE,
response_status_code=True,
)
status_code: int = api_call.get("status")
external_group_status_dict: dict = dict(
{
401: "Unauthorized.",
403: "Permission denied.",
404: "Team not found/Group not found.",
}
)
if status_code == 200 and api_call.get("message") == "Team Group removed":
logging.info("You successfully removed the team group.")
elif 400 <= status_code <= 404:
logging.error(external_group_status_dict.get(status_code))
raise Exception
else:
logging.error("There is no id or team group defined.")
raise ValueError