-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathapi.py
541 lines (425 loc) · 20.1 KB
/
api.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
# stdlib
import json
import ssl
# requests
import requests
from requests.adapters import HTTPAdapter
from requests.packages.urllib3.poolmanager import PoolManager
# keen
from keen import direction, exceptions, utilities
from keen.utilities import KeenKeys, requires_key
# json
from requests.compat import json
__author__ = 'dkador'
class HTTPMethods(object):
""" HTTP methods that can be used with Keen's API. """
GET = 'get'
POST = 'post'
DELETE = 'delete'
PUT = 'put'
class KeenAdapter(HTTPAdapter):
""" Adapt :py:mod:`requests` to Keen IO. """
def init_poolmanager(self, connections, maxsize, block=False):
""" Initialize pool manager """
self.poolmanager = PoolManager(num_pools=connections,
maxsize=maxsize,
block=block)
class KeenApi(object):
"""
Responsible for communicating with the Keen API. Used by multiple
persistence strategies or async processing.
"""
# the default base URL of the Keen API
base_url = "https://api.keen.io"
# the default version of the Keen API
api_version = "3.0"
# self says it belongs to KeenApi/andOr is the object passed into KeenApi
# __init__ create keenapi object whenever KeenApi class is invoked
def __init__(self, project_id, write_key=None, read_key=None,
base_url=None, api_version=None, get_timeout=None, post_timeout=None,
master_key=None):
"""
Initializes a KeenApi object
:param project_id: the Keen project ID
:param write_key: a Keen IO Scoped Key for Writes
:param read_key: a Keen IO Scoped Key for Reads
:param base_url: optional, set this to override where API requests
are sent
:param api_version: string, optional, set this to override what API
version is used
:param get_timeout: optional, the timeout on GET requests
:param post_timeout: optional, the timeout on POST requests
:param master_key: a Keen IO Master API Key, needed for deletes
"""
# super? recreates the object with values passed into KeenApi
super(KeenApi, self).__init__()
self.project_id = project_id
self.write_key = write_key
self.read_key = read_key
self.master_key = master_key
if base_url:
self.base_url = base_url
if api_version:
self.api_version = api_version
self.get_timeout = get_timeout
self.post_timeout = post_timeout
self.session = self._create_session()
def fulfill(self, method, *args, **kwargs):
""" Fulfill an HTTP request to Keen's API. """
return getattr(self.session, method)(*args, **kwargs)
@requires_key(KeenKeys.WRITE)
def post_event(self, event):
"""
Posts a single event to the Keen IO API. The write key must be set first.
:param event: an Event to upload
"""
url = "{0}/{1}/projects/{2}/events/{3}".format(self.base_url, self.api_version,
self.project_id,
event.event_collection)
headers = utilities.headers(self.write_key)
payload = event.to_json()
response = self.fulfill(HTTPMethods.POST, url, data=payload, headers=headers, timeout=self.post_timeout)
self._error_handling(response)
@requires_key(KeenKeys.WRITE)
def post_events(self, events):
"""
Posts a single event to the Keen IO API. The write key must be set first.
:param events: an Event to upload
"""
url = "{0}/{1}/projects/{2}/events".format(self.base_url, self.api_version,
self.project_id)
headers = utilities.headers(self.write_key)
payload = json.dumps(events)
response = self.fulfill(HTTPMethods.POST, url, data=payload, headers=headers, timeout=self.post_timeout)
self._error_handling(response)
return self._get_response_json(response)
def _order_by_is_valid_or_none(self, params):
"""
Validates that a given order_by has proper syntax.
:param params: Query params.
:return: Returns True if either no order_by is present, or if the order_by is well-formed.
"""
if not "order_by" in params or not params["order_by"]:
return True
def _order_by_dict_is_not_well_formed(d):
if not isinstance(d, dict):
# Bad type.
return True
if "property_name" in d and d["property_name"]:
if "direction" in d and not direction.is_valid_direction(d["direction"]):
# Bad direction provided.
return True
for k in d:
if k != "property_name" and k != "direction":
# Unexpected key.
return True
# Everything looks good!
return False
# Missing required key.
return True
# order_by is converted to a list before this point if it wasn't one before.
order_by_list = json.loads(params["order_by"])
for order_by in order_by_list:
if _order_by_dict_is_not_well_formed(order_by):
return False
if not "group_by" in params or not params["group_by"]:
# We must have group_by to have order_by make sense.
return False
return True
def _limit_is_valid_or_none(self, params):
"""
Validates that a given limit is not present or is well-formed.
:param params: Query params.
:return: Returns True if a limit is present or is well-formed.
"""
if not "limit" in params or not params["limit"]:
return True
if not isinstance(params["limit"], int) or params["limit"] < 1:
return False
if not "order_by" in params:
return False
return True
@requires_key(KeenKeys.READ)
def query(self, analysis_type, params, all_keys=False):
"""
Performs a query using the Keen IO analysis API. A read key must be set first.
"""
if not self._order_by_is_valid_or_none(params):
raise ValueError("order_by given is invalid or is missing required group_by.")
if not self._limit_is_valid_or_none(params):
raise ValueError("limit given is invalid or is missing required order_by.")
url = "{0}/{1}/projects/{2}/queries/{3}".format(self.base_url, self.api_version,
self.project_id, analysis_type)
headers = utilities.headers(self.read_key)
payload = params
response = self.fulfill(HTTPMethods.GET, url, params=payload, headers=headers, timeout=self.get_timeout)
self._error_handling(response)
response = response.json()
if not all_keys:
response = response["result"]
return response
@requires_key(KeenKeys.MASTER)
def delete_events(self, event_collection, params):
"""
Deletes events via the Keen IO API. A master key must be set first.
:param event_collection: string, the event collection from which event are being deleted
"""
url = "{0}/{1}/projects/{2}/events/{3}".format(self.base_url,
self.api_version,
self.project_id,
event_collection)
headers = utilities.headers(self.master_key)
response = self.fulfill(HTTPMethods.DELETE, url, params=params, headers=headers, timeout=self.post_timeout)
self._error_handling(response)
return True
@requires_key(KeenKeys.READ)
def get_collection(self, event_collection):
"""
Extracts info about a collection using the Keen IO API. A master key must be set first.
:param event_collection: the name of the collection to retrieve info for
"""
url = "{0}/{1}/projects/{2}/events/{3}".format(self.base_url, self.api_version,
self.project_id, event_collection)
headers = utilities.headers(self.read_key)
response = self.fulfill(HTTPMethods.GET, url, headers=headers, timeout=self.get_timeout)
self._error_handling(response)
return response.json()
@requires_key(KeenKeys.READ)
def get_all_collections(self):
"""
Extracts schema for all collections using the Keen IO API. A read key must be set first.
"""
url = "{0}/{1}/projects/{2}/events".format(self.base_url, self.api_version, self.project_id)
headers = utilities.headers(self.read_key)
response = self.fulfill(HTTPMethods.GET, url, headers=headers, timeout=self.get_timeout)
self._error_handling(response)
return response.json()
@requires_key(KeenKeys.MASTER)
def create_access_key(self, name, is_active=True, permitted=[], options={}):
"""
Creates a new access key. A master key must be set first.
:param name: the name of the access key to create
:param is_active: Boolean value dictating whether this key is currently active (default True)
:param permitted: list of strings describing which operation types this key will permit
Legal values include "writes", "queries", "saved_queries", "cached_queries",
"datasets", and "schema".
:param options: dictionary containing more details about the key's permitted and restricted
functionality
"""
url = "{0}/{1}/projects/{2}/keys".format(self.base_url, self.api_version, self.project_id)
headers = utilities.headers(self.master_key)
payload_dict = {
"name": name,
"is_active": is_active,
"permitted": permitted,
"options": options
}
payload = json.dumps(payload_dict)
response = self.fulfill(HTTPMethods.POST, url, data=payload, headers=headers, timeout=self.get_timeout)
self._error_handling(response)
return response.json()
@requires_key(KeenKeys.MASTER)
def list_access_keys(self):
"""
Returns a list of all access keys in this project. A master key must be set first.
"""
url = "{0}/{1}/projects/{2}/keys".format(self.base_url, self.api_version, self.project_id)
headers = utilities.headers(self.master_key)
response = self.fulfill(HTTPMethods.GET, url, headers=headers, timeout=self.get_timeout)
self._error_handling(response)
return response.json()
@requires_key(KeenKeys.MASTER)
def get_access_key(self, key):
"""
Returns details on a particular access key. A master key must be set first.
:param key: the 'key' value of the access key to retrieve data from
"""
url = "{0}/{1}/projects/{2}/keys/{3}".format(self.base_url, self.api_version, self.project_id,
key)
headers = utilities.headers(self.master_key)
response = self.fulfill(HTTPMethods.GET, url, headers=headers, timeout=self.get_timeout)
self._error_handling(response)
return response.json()
@staticmethod
def _build_access_key_dict(access_key):
"""
Populates a dictionary payload usable in a POST request from a full access key object.
:param access_key: the access_key to copy data from
"""
return {
"name": access_key["name"],
"is_active": access_key["is_active"],
"permitted": access_key["permitted"],
"options": access_key["options"]
}
def _update_access_key_pair(self, key, field, val):
"""
Helper for updating access keys in a DRY fashion.
"""
# Get current state via HTTPS.
current_access_key = self.get_access_key(key)
# Copy and only change the single parameter.
payload_dict = KeenApi._build_access_key_dict(current_access_key)
payload_dict[field] = val
# Now just treat it like a full update.
return self.update_access_key_full(key, **payload_dict)
@requires_key(KeenKeys.MASTER)
def update_access_key_name(self, key, name):
"""
Updates only the name portion of an access key.
:param key: the 'key' value of the access key to change the name of
:param name: the new name to give this access key
"""
return self._update_access_key_pair(key, "name", name)
@requires_key(KeenKeys.MASTER)
def add_access_key_permissions(self, key, permissions):
"""
Adds to the existing list of permissions on this key with the contents of this list.
Will not remove any existing permissions or modify the remainder of the key.
:param key: the 'key' value of the access key to add permissions to
:param permissions: the new permissions to add to the existing list of permissions
"""
# Get current state via HTTPS.
current_access_key = self.get_access_key(key)
# Copy and only change the single parameter.
payload_dict = KeenApi._build_access_key_dict(current_access_key)
# Turn into sets to avoid duplicates.
old_permissions = set(payload_dict["permitted"])
new_permissions = set(permissions)
combined_permissions = old_permissions.union(new_permissions)
payload_dict["permitted"] = list(combined_permissions)
# Now just treat it like a full update.
return self.update_access_key_full(key, **payload_dict)
@requires_key(KeenKeys.MASTER)
def remove_access_key_permissions(self, key, permissions):
"""
Removes a list of permissions from the existing list of permissions.
Will not remove all existing permissions unless all such permissions are included
in this list. Not to be confused with key revocation.
See also: revoke_access_key()
:param key: the 'key' value of the access key to remove some permissions from
:param permissions: the permissions you wish to remove from this access key
"""
# Get current state via HTTPS.
current_access_key = self.get_access_key(key)
# Copy and only change the single parameter.
payload_dict = KeenApi._build_access_key_dict(current_access_key)
# Turn into sets to avoid duplicates.
old_permissions = set(payload_dict["permitted"])
removal_permissions = set(permissions)
reduced_permissions = old_permissions.difference(removal_permissions)
payload_dict["permitted"] = list(reduced_permissions)
# Now just treat it like a full update.
return self.update_access_key_full(key, **payload_dict)
@requires_key(KeenKeys.MASTER)
def update_access_key_permissions(self, key, permissions):
"""
Replaces all of the permissions on the access key but does not change
non-permission properties such as the key's name.
See also: add_access_key_permissions() and remove_access_key_permissions().
:param key: the 'key' value of the access key to change the permissions of
:param permissions: the new list of permissions for this key
"""
return self._update_access_key_pair(key, "permitted", permissions)
@requires_key(KeenKeys.MASTER)
def update_access_key_options(self, key, options):
"""
Replaces all of the options on the access key but does not change
non-option properties such as permissions or the key's name.
:param key: the 'key' value of the access key to change the options of
:param options: the new dictionary of options for this key
"""
return self._update_access_key_pair(key, "options", options)
@requires_key(KeenKeys.MASTER)
def update_access_key_full(self, key, name, is_active, permitted, options):
"""
Replaces the 'name', 'is_active', 'permitted', and 'options' values of a given key.
A master key must be set first.
:param key: the 'key' value of the access key for which the values will be replaced
:param name: the new name desired for this access key
:param is_active: whether the key should become enabled (True) or revoked (False)
:param permitted: the new list of permissions desired for this access key
:param options: the new dictionary of options for this access key
"""
url = "{0}/{1}/projects/{2}/keys/{3}".format(self.base_url, self.api_version,
self.project_id, key)
headers = utilities.headers(self.master_key)
payload_dict = {
"name": name,
"is_active": is_active,
"permitted": permitted,
"options": options
}
payload = json.dumps(payload_dict)
response = self.fulfill(HTTPMethods.POST, url, data=payload, headers=headers, timeout=self.get_timeout)
self._error_handling(response)
return response.json()
@requires_key(KeenKeys.MASTER)
def revoke_access_key(self, key):
"""
Revokes an access key. "Bad dog! No biscuit!"
:param key: the 'key' value of the access key to revoke
"""
url = "{0}/{1}/projects/{2}/keys/{3}/revoke".format(self.base_url, self.api_version,
self.project_id, key)
headers = utilities.headers(self.master_key)
response = self.fulfill(HTTPMethods.POST, url, headers=headers, timeout=self.get_timeout)
self._error_handling(response)
return response.json()
@requires_key(KeenKeys.MASTER)
def unrevoke_access_key(self, key):
"""
Re-enables an access key.
:param key: the 'key' value of the access key to re-enable (unrevoke)
"""
url = "{0}/{1}/projects/{2}/keys/{3}/unrevoke".format(self.base_url, self.api_version,
self.project_id, key)
headers = utilities.headers(self.master_key)
response = self.fulfill(HTTPMethods.POST, url, headers=headers, timeout=self.get_timeout)
self._error_handling(response)
return response.json()
@requires_key(KeenKeys.MASTER)
def delete_access_key(self, key):
"""
Deletes an access key.
:param key: the 'key' value of the access key to delete
"""
url = "{0}/{1}/projects/{2}/keys/{3}".format(self.base_url, self.api_version, self.project_id, key)
headers = utilities.headers(self.master_key)
response = self.fulfill(HTTPMethods.DELETE, url, headers=headers, timeout=self.get_timeout)
self._error_handling(response)
return True
def _error_handling(self, res):
"""
Helper function to do the error handling
:params res: the response from a request
"""
# making the error handling generic so if an status_code starting with 2 doesn't exist, we raise the error
if res.status_code // 100 != 2:
error = self._get_response_json(res)
raise exceptions.KeenApiError(error)
def _get_response_json(self, res):
"""
Helper function to extract the JSON body out of a response OR throw an exception.
:param res: the response from a request
:return: the JSON body OR throws an exception
"""
try:
error = res.json()
except ValueError:
error = {
"message": "The API did not respond with JSON, but: {0}".format(res.text[:1000]),
"error_code": "{0}".format(res.status_code)
}
return error
def _create_session(self):
""" Build a session that uses KeenAdapter for SSL """
s = requests.Session()
s.mount('https://', KeenAdapter())
return s
def _get_read_key(self):
return self.read_key
def _get_write_key(self):
return self.write_key
def _get_master_key(self):
return self.master_key