forked from elastic/connectors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathredis.py
437 lines (388 loc) · 15.9 KB
/
redis.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
#
# Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
# or more contributor license agreements. Licensed under the Elastic License 2.0;
# you may not use this file except in compliance with the Elastic License 2.0.
#
import json
import os
from enum import Enum
from functools import cached_property
from tempfile import NamedTemporaryFile
import fastjsonschema
import redis.asyncio as redis
from connectors.filtering.validation import (
AdvancedRulesValidator,
SyncRuleValidationResult,
)
from connectors.logger import logger
from connectors.source import BaseDataSource, ConfigurableFieldValueError
from connectors.utils import get_pem_format, hash_id, iso_utc
PAGE_SIZE = 1000
class KeyType(Enum):
HASH = "hash"
STREAM = "stream"
LIST = "list"
SET = "set"
ZSET = "zset"
JSON = "ReJSON-RL"
class RedisClient:
"""Redis client to handle method calls made to Redis"""
def __init__(self, configuration):
self.configuration = configuration
self._logger = logger
self.host = self.configuration["host"]
self.port = self.configuration["port"]
self.database = self.configuration["database"]
self.username = self.configuration["username"]
self.password = self.configuration["password"]
self.ssl_enabled = self.configuration["ssl_enabled"]
self.mutual_tls_enabled = self.configuration["mutual_tls_enabled"]
self.tls_certfile = self.configuration["tls_certfile"]
self.tls_keyfile = self.configuration["tls_keyfile"]
self._redis_client = None
self.cert_file = ""
self.key_file = ""
def set_logger(self, logger_):
self._logger = logger_
def store_ssl_key(self, key, suffix):
if suffix == ".key":
pem_certificates = get_pem_format(
key=key, postfix="-----END RSA PRIVATE KEY-----"
)
else:
pem_certificates = get_pem_format(key=key)
with NamedTemporaryFile(mode="w", suffix=suffix, delete=False) as cert:
cert.write(pem_certificates)
return cert.name
def remove_temp_files(self):
for file_path in [self.cert_file, self.key_file]:
if os.path.exists(file_path):
try:
os.remove(file_path)
except Exception as exception:
self._logger.warning(
f"Something went wrong while removing temporary certificate file: {file_path}. Exception: {exception}",
exc_info=True,
)
@cached_property
def _client(self):
if self.ssl_enabled and self.mutual_tls_enabled:
self.cert_file = self.store_ssl_key(key=self.tls_certfile, suffix=".crt")
self.key_file = self.store_ssl_key(key=self.tls_keyfile, suffix=".key")
query = f"ssl_certfile={self.cert_file}&ssl_keyfile={self.key_file}"
self._redis_client = redis.from_url(
f"rediss://{self.username}:{self.password}@{self.host}:{self.port}?{query}",
decode_responses=True,
)
elif self.ssl_enabled:
self._redis_client = redis.from_url(
f"rediss://{self.username}:{self.password}@{self.host}:{self.port}",
decode_responses=True,
)
else:
self._redis_client = redis.from_url(
f"redis://{self.username}:{self.password}@{self.host}:{self.port}",
decode_responses=True,
)
return self._redis_client
async def close(self):
if self._redis_client:
await self._client.aclose() # pyright: ignore
self.remove_temp_files()
async def validate_database(self, db):
try:
await self._client.execute_command("SELECT", db)
return True
except Exception as exception:
self._logger.warning(f"Database {db} not found. Error: {exception}")
return False
async def get_databases(self):
"""Returns number of databases from config_get response
Returns:
list: List of databases
"""
if self.database != ["*"]:
for database in set(self.database):
yield database
else:
try:
databases = await self._client.config_get("databases")
for database in list(range(int(databases.get("databases", 1)))):
yield database
except Exception as exception:
self._logger.warning(
f"Something went wrong while fetching database list. Error: {exception}",
exc_info=True,
)
async def get_paginated_key(self, db, pattern, type_=None):
"""Make a paginated call for fetching database keys.
Args:
db: Index of database
pattern: keyname or pattern
type_: Datatype for filter data
Yields:
string: key in database
"""
await self._client.execute_command("SELECT", db)
async for key in self._client.scan_iter(
match=pattern, count=PAGE_SIZE, _type=type_
):
yield key
async def get_key_value(self, key, key_type):
"""Fetch value of key for database.
Args:
key: Name of key
key_type: Type of key
Yields:
Value of key
"""
try:
if key_type == KeyType.HASH.value:
return await self._client.hgetall(key)
elif key_type == KeyType.STREAM.value:
return await self._client.xread({key: "0"})
elif key_type == KeyType.LIST.value:
return await self._client.lrange(key, 0, -1)
elif key_type == KeyType.SET.value:
return await self._client.smembers(key)
elif key_type == KeyType.ZSET.value:
return await self._client.zrange(key, 0, -1, withscores=True)
elif key_type == KeyType.JSON.value:
value = await self._client.execute_command("JSON.GET", key)
return json.loads(value)
else:
value = await self._client.get(key)
if value is not None:
try:
value_json = json.loads(value)
return value_json
except json.JSONDecodeError:
return value
except UnicodeDecodeError as exception:
self._logger.warning(
f"Something went wrong while fetching value for key {key}. Error: {exception}",
exc_info=True,
)
return ""
async def get_key_metadata(self, key):
key_type = await self._client.type(key)
key_value = await self.get_key_value(key=key, key_type=key_type)
key_size = await self._client.memory_usage(key)
return key_type, key_value, key_size
async def ping(self):
await self._client.ping()
class RedisAdvancedRulesValidator(AdvancedRulesValidator):
RULES_OBJECT_SCHEMA_DEFINITION = {
"type": "object",
"properties": {
"database": {"type": "integer", "minLength": 1, "minimum": 0},
"key_pattern": {"type": "string", "minLength": 1},
"type": {
"type": "string",
"minLength": 1,
},
},
"required": ["database"],
"anyOf": [
{"required": ["key_pattern"]},
{"required": ["type"]},
],
"additionalProperties": False,
}
SCHEMA_DEFINITION = {"type": "array", "items": RULES_OBJECT_SCHEMA_DEFINITION}
SCHEMA = fastjsonschema.compile(definition=SCHEMA_DEFINITION)
def __init__(self, source):
self.source = source
async def validate(self, advanced_rules):
if len(advanced_rules) == 0:
return SyncRuleValidationResult.valid_result(
SyncRuleValidationResult.ADVANCED_RULES
)
return await self._remote_validation(advanced_rules)
async def _remote_validation(self, advanced_rules):
try:
RedisAdvancedRulesValidator.SCHEMA(advanced_rules)
except fastjsonschema.JsonSchemaValueException as e:
return SyncRuleValidationResult(
rule_id=SyncRuleValidationResult.ADVANCED_RULES,
is_valid=False,
validation_message=e.message,
)
invalid_db = []
database_to_filter = [rule["database"] for rule in advanced_rules]
for db in database_to_filter:
check_db = await self.source.client.validate_database(db=db)
if not check_db:
invalid_db.append(db)
if invalid_db:
msg = f"Database {','.join(map(str, invalid_db))} are not available."
return SyncRuleValidationResult(
SyncRuleValidationResult.ADVANCED_RULES,
is_valid=False,
validation_message=msg,
)
return SyncRuleValidationResult.valid_result(
SyncRuleValidationResult.ADVANCED_RULES
)
class RedisDataSource(BaseDataSource):
"""Redis"""
name = "Redis"
service_type = "redis"
advanced_rules_enabled = True
def __init__(self, configuration):
super().__init__(configuration=configuration)
self.client = RedisClient(configuration=configuration)
@classmethod
def get_default_configuration(cls):
return {
"host": {"label": "Host", "order": 1, "type": "str"},
"port": {"label": "Port", "order": 2, "type": "int"},
"username": {
"label": "Username",
"order": 3,
"required": False,
"type": "str",
},
"password": {
"label": "Password",
"order": 4,
"required": False,
"sensitive": True,
"type": "str",
},
"database": {
"display": "textarea",
"label": "Comma-separated list of databases",
"order": 5,
"tooltip": "Databases are ignored when Advanced Sync Rules are used.",
"type": "list",
"value": "*",
},
"ssl_enabled": {
"display": "toggle",
"label": "SSL/TLS Connection",
"order": 6,
"tooltip": "This option establishes a secure connection to Redis using SSL/TLS encryption. Ensure that your Redis deployment supports SSL/TLS connections.",
"type": "bool",
"value": False,
},
"mutual_tls_enabled": {
"depends_on": [{"field": "ssl_enabled", "value": True}],
"display": "toggle",
"label": "Mutual SSL/TLS Connection",
"order": 7,
"tooltip": "This option establishes a secure connection to Redis using mutual SSL/TLS encryption. Ensure that your Redis deployment supports mutual SSL/TLS connections.",
"type": "bool",
"value": False,
},
"tls_certfile": {
"depends_on": [{"field": "mutual_tls_enabled", "value": True}],
"label": "client certificate file for SSL/TLS",
"order": 8,
"required": False,
"tooltip": "Specifies the client certificate from the Certificate Authority. The value of the certificate is used to validate the certificate presented by the Redis instance.",
"type": "str",
},
"tls_keyfile": {
"depends_on": [{"field": "mutual_tls_enabled", "value": True}],
"label": "client private key file for SSL/TLS",
"order": 9,
"required": False,
"tooltip": "Specifies the client private key from the Certificate Authority. The value of the key is used to validate the connection in the Redis instance.",
"type": "str",
},
}
def _set_internal_logger(self):
self.client.set_logger(self._logger)
def advanced_rules_validators(self):
return [RedisAdvancedRulesValidator(self)]
async def close(self):
await self.client.close()
async def _remote_validation(self):
"""Validate configured databases
Raises:
ConfigurableFieldValueError: Unavailable services error.
"""
invalid_type = []
invalid_db = []
msg = ""
if self.client.database != ["*"]:
try:
await self.client.ping()
except Exception:
self._logger.exception("Error while connecting to Redis.")
raise
for db in self.client.database:
if not db.isdigit() or int(db) < 0:
invalid_type.append(db)
continue
check_db = await self.client.validate_database(db=db)
if not check_db:
invalid_db.append(db)
if invalid_type and invalid_db:
msg = f"Database {', '.join(invalid_db)} are not available. Also database element should be integer. Please correct database name: {', '.join(invalid_type)}"
elif invalid_db:
msg = f"Database {', '.join(invalid_db)} are not available."
elif invalid_type:
msg = f"All database element should be integer. Please correct database name: {', '.join(invalid_type)}"
if msg:
raise ConfigurableFieldValueError(msg)
async def validate_config(self):
"""Validates whether user input is empty or not for configuration fields
Also validate, if user configured databases are available in Redis."""
await super().validate_config()
await self._remote_validation()
async def format_document(self, **kwargs):
"""Prepare document for database records.
Returns:
document: Modified document.
"""
doc_id = hash_id(f"{kwargs.get('db')}/{kwargs.get('key')}")
document = {
"_id": doc_id,
"key": kwargs.get("key"),
"value": str(kwargs.get("value")),
"size_in_bytes": kwargs.get("size"),
"database": kwargs.get("db"),
"key_type": kwargs.get("key_type"),
"_timestamp": iso_utc(),
}
return document
async def ping(self):
try:
await self.client.ping()
self._logger.info("Successfully connected to Redis.")
except Exception:
self._logger.exception("Error while connecting to Redis.")
raise
async def get_db_records(self, db, pattern="*", type_=None):
async for key in self.client.get_paginated_key(
db=db, pattern=pattern, type_=type_
):
key_type, key_value, key_size = await self.client.get_key_metadata(key=key)
yield await self.format_document(
key=key,
value=key_value,
key_type=key_type,
size=key_size,
db=db,
)
async def get_docs(self, filtering=None):
"""Get documents from Redis
Returns:
dictionary: Document of database content
Yields:
dictionary: Document from Redis.
"""
if filtering and filtering.has_advanced_rules():
for rule in filtering.get_advanced_rules():
async for document in self.get_db_records(
db=rule.get("database"),
pattern=rule.get("key_pattern"),
type_=rule.get("type"),
):
yield document, None
else:
async for db in self.client.get_databases():
async for document in self.get_db_records(db=db):
yield document, None