-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathapi_key_api_client.py
More file actions
37 lines (28 loc) · 1.4 KB
/
api_key_api_client.py
File metadata and controls
37 lines (28 loc) · 1.4 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
from contextvars import ContextVar
from flask import current_app
from notifications_utils.local_vars import LazyLocalGetter
from werkzeug.local import LocalProxy
from app import memo_resetters
from app.notify_client import NotifyAdminAPIClient, _attach_current_user, api_client_request_session
# must match key types in notifications-api/app/models.py
KEY_TYPE_NORMAL = "normal"
KEY_TYPE_TEAM = "team"
KEY_TYPE_TEST = "test"
class ApiKeyApiClient(NotifyAdminAPIClient):
def get_api_keys(self, service_id):
return self.get(url=f"/service/{service_id}/api-keys")
def create_api_key(self, service_id, key_name, key_type):
data = {"name": key_name, "key_type": key_type}
data = _attach_current_user(data)
key = self.post(url=f"/service/{service_id}/api-key", data=data)
return key["data"]
def revoke_api_key(self, service_id, key_id):
data = _attach_current_user({})
return self.post(url=f"/service/{service_id}/api-key/revoke/{key_id}", data=data)
_api_key_api_client_context_var: ContextVar[ApiKeyApiClient] = ContextVar("api_key_api_client")
get_api_key_api_client: LazyLocalGetter[ApiKeyApiClient] = LazyLocalGetter(
_api_key_api_client_context_var,
lambda: ApiKeyApiClient(current_app, request_session=api_client_request_session),
)
memo_resetters.append(lambda: get_api_key_api_client.clear())
api_key_api_client = LocalProxy(get_api_key_api_client)