-
Notifications
You must be signed in to change notification settings - Fork 8
/
admin.py
557 lines (437 loc) · 18.6 KB
/
admin.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
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
import json
import logging
from urllib3 import response
from .model import (
APIModel,
APIEndpoints,
RequestsMethods,
GlobalUser,
)
from .api import Api
class Admin:
"""The class includes all necessary methods to access the Grafana admin API endpoints. Be aware that all functionalities inside the class only working with basic authentication (username and password) and that the authenticated user is a Grafana Admin.
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 get_settings(self) -> dict:
"""The method includes a functionality to get the settings
Raises:
Exception: Unspecified error by executing the API call
Returns:
api_call (dict): Returns the corresponding settings
"""
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.ADMIN.value}/settings",
)
if api_call == dict() or api_call.get("DEFAULT") is None:
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
return api_call
def update_settings(self, updates: dict = None, removals: dict = None):
"""The method includes a functionality to update the settings. Be aware that the functionality is a Grafana v8.0+ feature and you can find detailed information about the dict values here: https://grafana.com/docs/grafana/latest/developers/http_api/admin/#update-settings
Args:
updates (dict): Specify the updates object
removals (dict): Specify the removals object
Raises:
Exception: Unspecified error by executing the API call
Returns:
None
"""
if updates is not None or removals is not None:
settings_update: dict = dict()
if updates is not None:
settings_update.update(dict({"updates": updates}))
if removals is not None:
settings_update.update(dict({"removals": removals}))
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.ADMIN.value}/settings",
RequestsMethods.PUT,
json.dumps(settings_update),
)
if api_call.get("message") != "Settings updated":
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
logging.info("You successfully updated the corresponding settings.")
else:
logging.error("There is no updates or removals defined.")
raise ValueError
def get_stats(self) -> dict:
"""The method includes a functionality to get the admin statistics
Raises:
Exception: Unspecified error by executing the API call
Returns:
api_call (dict): Returns the corresponding statistics
"""
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.ADMIN.value}/stats",
)
if api_call == dict() or api_call.get("orgs") is None:
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
return api_call
def get_preview_report(self) -> dict:
"""The method includes a functionality to get a preview report
Raises:
Exception: Unspecified error by executing the API call
Returns:
api_call (dict): Returns the preview report
"""
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.ADMIN.value}/usage-report-preview",
)
if api_call == dict() or api_call.get("version") is None:
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
return api_call
def create_global_user(self, user: GlobalUser) -> int:
"""The method includes a functionality to create a global user
Args:
user (GlobalUser): Specify the global user object
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
api_call (int): Returns the corresponding user id
"""
if (
user is not None
and len(user.name) != 0
and len(user.email) != 0
and len(user.login) != 0
and len(user.password) != 0
):
user_object: dict = dict(
{
"name": user.name,
"email": user.email,
"login": user.login,
"password": user.password,
}
)
if user.org_id is not None:
user_object.update(dict({"OrgId": user.org_id}))
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.ADMIN.value}/users",
RequestsMethods.POST,
json.dumps(user_object),
)
if api_call.get("message") != "User created":
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
return int(api_call.get("id"))
else:
logging.error("There is no name, email, login or password defined.")
raise ValueError
def update_user_password(self, id: int, password: str):
"""The method includes a functionality to update the global user password
Args:
id (int): Specify the user id
password (str): Specify the user new password
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
None
"""
if id != 0 and len(password) != 0:
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.ADMIN.value}/users/{id}/password",
RequestsMethods.PUT,
json.dumps(dict({"password": password})),
)
if api_call.get("message") != "User password updated":
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
logging.info(
"You successfully updated the corresponding user password."
)
else:
logging.error("There is no id or password defined.")
raise ValueError
def update_user_permissions(self, id: int, is_grafana_admin: bool = None):
"""The method includes a functionality to update the global user permissions
Args:
id (int): Specify the user id
is_grafana_admin (bool): Specify if the user is admin or not
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
None
"""
if id != 0 and is_grafana_admin is not None:
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.ADMIN.value}/users/{id}/permissions",
RequestsMethods.PUT,
json.dumps(dict({"isGrafanaAdmin": is_grafana_admin})),
)
if api_call.get("message") != "User permissions updated":
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
logging.info(
"You successfully updated the corresponding user permissions."
)
else:
logging.error("There is no id or is_grafana_admin defined.")
raise ValueError
def delete_global_user(self, id: int):
"""The method includes a functionality to delete a global user
Args:
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:
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.ADMIN.value}/users/{id}",
RequestsMethods.DELETE,
)
if api_call.get("message") != "User deleted":
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
logging.info("You successfully deleted the corresponding user.")
else:
logging.error("There is no id defined.")
raise ValueError
def pause_all_alerts(self):
"""The method includes a functionality to pause all alerts
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
None
"""
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.ADMIN.value}/pause-all-alerts",
RequestsMethods.POST,
json.dumps(dict({"paused": True})),
)
if api_call.get("state") != "Paused":
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
logging.info("You successfully paused all alerts.")
def unpause_all_alerts(self):
"""The method includes a functionality to unpause all alerts
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
None
"""
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.ADMIN.value}/pause-all-alerts",
RequestsMethods.POST,
json.dumps(dict({"paused": False})),
)
if api_call.get("state") != "Unpaused":
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
logging.info("You successfully unpaused all alerts.")
def get_user_auth_token(self, id: int) -> list:
"""The method includes a functionality to get the corresponding user auth token
Args:
id (int): Specify the user id
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
api_call (list): Returns the corresponding user auth tokens
"""
if id != 0:
api_call: list = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.ADMIN.value}/users/{id}/auth-tokens",
)
if api_call == list() or api_call[0].get("id") is None:
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
return api_call
else:
logging.error("There is no id defined.")
raise ValueError
def revoke_user_auth_token(self, id: int, auth_token_id: int):
"""The method includes a functionality to get the corresponding user auth token
Args:
id (int): Specify the user id
auth_token_id (int): Specify the auth token id
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
None
"""
if id != 0 and auth_token_id != 0:
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.ADMIN.value}/users/{id}/revoke-auth-token",
RequestsMethods.POST,
json.dumps(dict({"authTokenId": auth_token_id})),
)
if api_call.get("message") != "User auth token revoked":
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
logging.info("You successfully revoked the corresponding user token.")
else:
logging.error("There is no id or auth_token_id defined.")
raise ValueError
def logout_user(self, id: int):
"""The method includes a functionality to log out the corresponding user
Args:
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:
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.ADMIN.value}/users/{id}/logout",
RequestsMethods.POST,
json.dumps(dict()),
)
if api_call.get("message") != "User auth token revoked":
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
logging.info("You successfully logout the corresponding user.")
else:
logging.error("There is no id defined.")
raise ValueError
def reload_dashboards_provisioning_configuration(self):
"""The method includes a functionality to reload the dashboards provisioning configuration
Raises:
Exception: Unspecified error by executing the API call
Returns:
None
"""
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.ADMIN.value}/provisioning/dashboards/reload",
RequestsMethods.POST,
json.dumps(dict()),
)
if api_call.get("message") != "Dashboards config reloaded":
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
logging.info("You successfully reloaded the config of the dashboards.")
def reload_datasources_provisioning_configuration(self):
"""The method includes a functionality to reload the datasources provisioning configuration
Raises:
Exception: Unspecified error by executing the API call
Returns:
None
"""
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.ADMIN.value}/provisioning/datasources/reload",
RequestsMethods.POST,
json.dumps(dict()),
)
if api_call.get("message") != "Datasources config reloaded":
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
logging.info("You successfully reloaded the config of the datasources.")
def reload_plugins_provisioning_configuration(self):
"""The method includes a functionality to reload the plugins provisioning configuration
Raises:
Exception: Unspecified error by executing the API call
Returns:
None
"""
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.ADMIN.value}/provisioning/plugins/reload",
RequestsMethods.POST,
json.dumps(dict()),
)
if api_call.get("message") != "Plugins config reloaded":
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
logging.info("You successfully reloaded the config of the plugins.")
def reload_notifications_provisioning_configuration(self):
"""The method includes a functionality to reload the notifications provisioning configuration
Raises:
Exception: Unspecified error by executing the API call
Returns:
None
"""
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.ADMIN.value}/provisioning/notifications/reload",
RequestsMethods.POST,
json.dumps(dict()),
)
if api_call.get("message") != "Notifications config reloaded":
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
logging.info("You successfully reloaded the config of the notifications.")
def reload_access_controls_provisioning_configuration(self):
"""The method includes a functionality to reload the access-controls provisioning configuration
Raises:
Exception: Unspecified error by executing the API call
Returns:
None
"""
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.ADMIN.value}/provisioning/access-control/reload",
RequestsMethods.POST,
json.dumps(dict()),
)
if api_call.get("message") != "Accesscontrol config reloaded":
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
logging.info("You successfully reloaded the config of the accesscontrol.")
def reload_ldap_configuration(self):
"""The method includes a functionality to reload the ldap configuration
Raises:
Exception: Unspecified error by executing the API call
Returns:
None
"""
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.ADMIN.value}/ldap/reload",
RequestsMethods.POST,
json.dumps(dict()),
)
if api_call.get("message") != "LDAP config reloaded":
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
logging.info("You successfully reloaded the config of the ldap.")
def rotate_data_encryption_keys(self):
"""The method includes a functionality to rotate the data encryption keys
Raises:
Exception: Unspecified error by executing the API call
Returns:
None
"""
api_call: response = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.ADMIN.value}/encryption/rotate-data-keys",
RequestsMethods.POST,
json.dumps(dict()),
)
if api_call.status != 204:
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
logging.info("You successfully rotated the data keys.")