-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsql_to_mongo_converter.py
477 lines (392 loc) · 17 KB
/
sql_to_mongo_converter.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
from pymongo import MongoClient,errors
from bson.objectid import ObjectId
from global_functions import change_dot_in_keys_for_bullet,change_bullet_in_keys_for_dot
import traceback
import json
import ast # to load query string to dict
from datetime import datetime
import re
from bson.code import Code
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from webdriver_manager.chrome import ChromeDriverManager
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.common.keys import Keys
from selenium import webdriver
import sqlparse
import time
from threading import Thread
MONGO_HOST= 'mongodb://localhost/tweet'
client = MongoClient(MONGO_HOST)
db = client.twitterdb
not_controlled_functions = ["aggregate","bulkWrite","copyTo","estimatedDocumentCount","createIndex",
"createIndexes","dataSize","dropIndex","dropIndexes","ensureIndex","explain"
,"findAndModify","findOneAndDelete","findOneAndReplace","findOneAndUpdate","getIndexes","getShardDistribution",
"getShardVersion","insertMany","isCapped","latencyStats","mapReduce","reIndex",
"renameCollection","save","storageSize","totalIndexSize","totalSize","watch","validate"]
def check_sql_sintax_in_web(sql_query,show =False):
url = "https://www.eversql.com/sql-syntax-check-validator/"
try:
#chrome_options = Options()
#chrome_options.add_argument("--headless")
driver = webdriver.Chrome(ChromeDriverManager().install())
driver.get(url)
except Exception as e:
print("[PARSE SQL QUERY ERROR] Error conecting")
print(e)
exit(1)
driver.maximize_window()
editor = WebDriverWait(driver, 5).until(EC.element_to_be_clickable((By.XPATH, '//*[@id="sql-editor"]/div/div[6]/div[1]/div/div/div/div[5]')))
editor.click()
if show:
print("editor_clicado")
print(editor.text)
print(editor.get_attribute('innerHTML'))
print("\n\n\n")
# CREAMOS UN ACCIONADOR PARA BORRAR EL TEXTO Y ESCRIBIR EL NUESTRO
accionador = webdriver.ActionChains(driver)
accionador.move_to_element(editor).click().perform()
accionador.send_keys(Keys.BACK_SPACE * 100).perform()
#Thread(target=lambda: accionador.send_keys(Keys.CONTROL + 'a').perform()).start()
time.sleep(1)
thread1 = Thread(target=lambda: accionador.send_keys(sql_query).perform())
thread1.start()
thread1.join()
time.sleep(1)
# USAMOS UN NUEVO ACCIONADOR PORQUE SINO SE PUEDEN SOLAPAR
boton = WebDriverWait(driver, 5).until(EC.element_to_be_clickable((By.ID, 'wizard-next-button')))
webdriver.ActionChains(driver).move_to_element(boton).click().perform()
error = False
try:
error_div = WebDriverWait(driver, 5).until(EC.element_to_be_clickable((By.ID, 'query-error-content')))
error=True
except:
pass
if(error):
code = WebDriverWait(driver, 5).until(EC.element_to_be_clickable((By.XPATH, '//*[@id="sql-editor"]/div/div[6]'))).text.split("\n")
for i in range(len(code)//2):
print("{:4} {}".format(code[i*2],code[i*2+1]))
print("\n\nQuery Error: {}".format(error_div.text))
driver.close()
return False
driver.close()
return True
def escape_true_and_false(sql_query):
sql_query = sql_query.replace(" TRUE"," \\TRUE")
sql_query = sql_query.replace(" FALSE"," \\FALSE")
#sql_query = sql_query.replace(" NULL"," \\NULL")
return sql_query
def convert_sql_query_to_mongo_query_in_web(sql_query,show=False):
url = "http://www.querymongo.com/"
driver = webdriver.Chrome(ChromeDriverManager().install())
driver.get(url)
driver.maximize_window()
div_interna = WebDriverWait(driver, 5).until(EC.element_to_be_clickable((By.XPATH, '/html/body/div[1]/div[2]/div[1]/form/div[1]/div[3]')))
div_interna.click()
if show:
print("div_interna_clicado")
print(div_interna.text)
print(div_interna.get_attribute('innerHTML'))
print("\n\n\n")
# CREAMOS UN ACCIONADOR PARA BORRAR EL TEXTO Y ESCRIBIR EL NUESTRO
accionador = webdriver.ActionChains(driver)
thread1 = Thread(target=lambda: accionador.move_to_element(div_interna).click().perform())
thread1.start()
thread1.join()
time.sleep(1)
accionador.send_keys(Keys.BACK_SPACE * 100).perform()
thread2 = Thread(target=lambda: accionador.send_keys(Keys.PAGE_UP).perform())
thread2.start()
thread2.join()
time.sleep(1)
thread4 = Thread(target=lambda: accionador.send_keys(sql_query).perform())
thread4.start()
thread4.join()
time.sleep(1)
# USAMOS UN NUEVO ACCIONADOR PORQUE SINO SE PUEDEN SOLAPAR
boton = WebDriverWait(driver, 5).until(EC.element_to_be_clickable((By.XPATH, '/html/body/div[1]/div[2]/div/form/div[2]/button')))
webdriver.ActionChains(driver).move_to_element(boton).click().perform()
# PUEDE SER QUE LA WEB NOS DE UNA QUERY RESULTADO O UN MENSAJE DE ERROR
try:
div_consulta_resultado = WebDriverWait(driver, 5).until(EC.element_to_be_clickable((By.XPATH, '/html/body/div[1]/div[2]/div[2]/div/div[3]/div/div/div[2]/div')))
consulta_resultado = div_consulta_resultado.text
if show: print(consulta_resultado)
driver.close()
return consulta_resultado
except:
mensaje_error = WebDriverWait(driver, 5).until(EC.element_to_be_clickable((By.XPATH, '/html/body/div[1]/div[2]/div[2]/div'))).text
print("\n\n\n{}".format(mensaje_error))
driver.close()
# get_statistics_file_from_collection("tweets")
# print(get_count_of_a_collection("tweets"))
def remove_lateral_spaces_and_quotes(string):
aux = string.strip()
if aux[0]== '"':
aux = aux[1:]
if aux[-1]== '"':
aux = aux[:-1]
if aux[-1]== ',':
aux = aux[:-1]
return aux
def divide_string_query(string_query,show=False):
first_index = string_query.index("{")
last_index = len(string_query) - string_query[::-1].index("}")
start = string_query[:first_index]
body = string_query[first_index:last_index]
end = string_query[last_index:]
if show:
print("start = {}\n\n\n".format(start))
print("body = {}\n\n\n".format(body))
print("end = {}\n\n\n".format(end))
return start,body,end
def divide_dicts(string_lined):
lines = string_lined.split("\n")
strings_list = []
#nombres = { 0: '"condition" :', 1: '"key" :'}
aux = []
for line in lines:
for letter_index in range(len(line)):
aux.append(line[letter_index])
if line[letter_index] =='}' and letter_index <= 5:
linea_unida ="".join(aux).strip()
linea_unida = re.sub(r"(,?\s*{)\s*(.*})",r"\1 \2",linea_unida)
if linea_unida.startswith(","):
linea_unida = linea_unida[1:]
strings_list.append(linea_unida)
aux=[]
return strings_list
def capitalize_reserved_words(query):
entrada = query.lower()
for palabra in ["select","from","where","group","by","having","count","distinct","table","order","sum","avg","true","in","false","is","not","null"]:
r1 = "\("+palabra
r2 = "("+palabra.upper()
entrada = re.sub(",{}".format(palabra),", {}".format(palabra.upper()),entrada)
entrada = re.sub("={}".format(palabra),"= {}".format(palabra.upper()),entrada)
entrada = re.sub(r1,r2,entrada)
entrada = re.sub(" {}".format(palabra)," {}".format(palabra.upper()),entrada)
entrada = re.sub("{}".format(palabra),"{}".format(palabra.upper()),entrada)
return entrada
def change_operators_and_add_semicolon(sql_query):
sql_query = sql_query.replace("<>","!=")
if not sql_query.strip().endswith(";"):
sql_query+=';'
return sql_query
def format_mongo_string_query_body(mongo_string_query,show=False):
# ponemos en una linea cada elemento principal
body_lined = re.sub("\s\s\s\s\s+}", "}", re.sub("\s\s\s\s\s\s+", "", mongo_string_query))
# ponemos las funciones entre comillas para poder cargar el json (no ponemos el constructor Code(porque fallaría))
body_lined_with_string_funtions = re.sub(r" (function\(.*\)\s*{.*})", r' "\1"', body_lined)
if show:
print("body_lined = {}\n\n\n".format(body_lined_with_string_funtions))
return body_lined_with_string_funtions
def check_multiple_dicts_in_formatted_mongo_query(body_formatted):
return len(re.findall("\n}",body_formatted))>1
def change_body_to_pymongo_compatible(body_lined_parsed_list,new_dict_list,multiple_dicts):
for i in range(len(body_lined_parsed_list)):
for k,v in body_lined_parsed_list[i].items():
if k =="distinct":
new_dict_list[i]["command"] = k
new_dict_list[i]["collection"] = v
if type(v) == str and v.startswith("function"):
new_dict_list[i][k] = Code(v)
elif type(v) == bool and v:
new_dict_list[i][k] = 1
elif type(v) == bool and not v:
new_dict_list[i][k] = 0
else:
new_dict_list[i][k] = v
if not multiple_dicts:
if "cond" in new_dict_list[i]:
new_dict_list[i]["condition"] = new_dict_list[i].get("cond",{})
del new_dict_list[i]["cond"]
#AÑADIR IS NOT NULL
return new_dict_list
def get_python_code_to_execute(start,body,end,multiple_dicts):
if not multiple_dicts:
# ponemos ** para que tome las keys del dict como nombre de argumento
query_linked = "{}**{}{}".format(start,str(body[0]),end)
else:
query_linked = "{}{}{}".format(start,",".join([str(e) for e in body]),end)
return query_linked
def is_runCommand(code_to_exec_without_assign):
return "runCommand" in code_to_exec_without_assign
def change_runCommand_to_command(code_to_exec_without_assign):
code_to_exec_without_assign = code_to_exec_without_assign.replace("runCommand","command")
code_to_exec_without_assign = re.sub(r"(.*).values.length",r'len(\1["values"])',code_to_exec_without_assign)
return code_to_exec_without_assign
def replace_reserved_words_with_backslash(code_to_exec_without_assign):
code_to_exec_without_assign = code_to_exec_without_assign.replace(r"this.\\FALSE","false")
code_to_exec_without_assign = code_to_exec_without_assign.replace(r"this.\\TRUE","true")
return code_to_exec_without_assign
def get_result(variable_to_check,is_command):
if is_command:
if type(variable_to_check) ==int:
return [variable_to_check]
else:
return variable_to_check['values']
else:
print(type(variable_to_check))
return [e for e in variable_to_check]
def check_additional_condition_to_add(sql_query):
additional_conds = []
if "WHERE" in sql_query:
not_nulls = re.findall("(\w+\.\w+)\s+IS+\s+NOT\s+NULL",sql_query) #solo implementado para elementos hijos
for e in not_nulls:
k = e
v = { '$exists': True }
additional_conds.append((k,v))
nulls = re.findall("(\w+\.\w+)\s+IS\s+NULL",sql_query) #solo implementado para elementos hijos
for e in nulls:
k = e
v = { '$exists': False }
additional_conds.append((k,v))
print(additional_conds)
input()
return additional_conds
def add_additional_conds_to_dict(new_dict_list,additional_conds_list,body_has_multiple_dicts):
if body_has_multiple_dicts:
for e in additional_conds_list:
if new_dict_list[0].get(e[0],"-") != "-":
if type(new_dict_list[0][e[0]]) != dict:
old_value = new_dict_list[0][e[0]]
new_value = { }
"$where": "this.user.verified == this.\\TRUE"
# add in where clause
else:
aux = new_dict_list[0][e[0]]
for key,value in e[1].items():
aux[key] = value
new_dict_list[0][e[0]]= aux
else:
new_dict_list[0][e[0]] = e[1]
else: #checkear que se cumple siempre que la condicion es el primer dict
for e in additional_conds_list:
if new_dict_list[0].get("condition",None) != None:
condition_dict = new_dict_list[0]["condition"]
if condition_dict.get(e[0],None) != None:
aux = condition_dict[e[0]]
for key,value in e[1].items():
aux[key] = value
new_dict_list[0]["condition"][e[0]] = aux
else:
new_dict_list[0]["condition"][e[0]] = e[1]
elif new_dict_list[0].get("cond",None) != None:
if new_dict_list[0]["cond"].get(e[0],None) != None:
condition_dict = new_dict_list[0]["cond"]
if condition_dict.get(e[0],None) != None:
aux = condition_dict[e[0]]
for key,value in e[1].items():
aux[key] = value
new_dict_list[0]["cond"][e[0]] = aux
else:
new_dict_list[0]["cond"][e[0]] = e[1]
return new_dict_list
def get_final_command_to_execute(entrada):
entrada = capitalize_reserved_words(entrada)
entrada = change_operators_and_add_semicolon(entrada)
print(entrada)
# #not_ins = re.findall("(\w+)\s+IS+\s+NOT\s+NULL")
sql_sintax_is_correct = check_sql_sintax_in_web(entrada)
if not sql_sintax_is_correct:
exit(1)
entrada = escape_true_and_false(entrada)
mongo_string_query = convert_sql_query_to_mongo_query_in_web(entrada)
start,body,end = divide_string_query(mongo_string_query)
mongo_string_query_formatted = format_mongo_string_query_body(body,show=True)
body_has_multiple_dicts = check_multiple_dicts_in_formatted_mongo_query(mongo_string_query_formatted)
additional_conds_list = check_additional_condition_to_add(entrada)
if body_has_multiple_dicts:
string_dict_list = divide_dicts(mongo_string_query_formatted)
body_lined_parsed_list = [json.loads(s) for s in string_dict_list]
new_dict_list = [{} for i in range(len(body_lined_parsed_list))]
else:
body_lined_parsed_list = [json.loads(mongo_string_query_formatted)]
new_dict_list = [ {"key":{},"condition":{},"initial":{},"reduce":{}} ]
for d in body_lined_parsed_list:
for k,v in d.items():
print("{} {}".format(k,v))
new_dict_list = add_additional_conds_to_dict(body_lined_parsed_list,additional_conds_list,body_has_multiple_dicts)
print("\n\n")
for d in body_lined_parsed_list:
for k,v in d.items():
print("{} {}".format(k,v))
new_dict_list = change_body_to_pymongo_compatible(body_lined_parsed_list,new_dict_list,body_has_multiple_dicts)
code_to_exec_without_assign = get_python_code_to_execute(start,new_dict_list,end,body_has_multiple_dicts)
is_command = is_runCommand(code_to_exec_without_assign)
if is_command:
code_to_exec_without_assign = change_runCommand_to_command(code_to_exec_without_assign)
code_to_exec_without_assign = replace_reserved_words_with_backslash(code_to_exec_without_assign)
python_command = code_to_exec_without_assign
return python_command,is_command
# resultado = execute_string_query(query)
# print(resultado)
# select user.id,count(*) from tweets group by user.id
# select user.id from tweets where user.id > 10000
# SELECT user.id,count(*) from tweets where user.verified =false group by user.id
# SELECT DISTINCT user.id from tweets
# SELECT COUNT(DISTINCT user.id) from tweets
# ERROR SELECT user.id,count(*) from tweets where user.verified is not null and user.verified =true group by user.id
# ERROR SELECT user.id,count(user.id) from tweets where user.verified =true group by user.id
# ERROR SELECT user.id,count(user.id) from tweets where user.verified =true group by user.id ORDER BY user.id
# ERROR select id_str, sum(favorite_count.value) from tweets where favorite_count <> 'null' group by id_str having count(*) > 1
# select id from tweets where id >10000
body_lined = '''{
"key": {"user.id": true},
"initial": {"countstar": 0},
"reduce": function(obj, prev) {if (true != null) if (true instanceof Array) prev.countstar += true.length;else prev.countstar++;}
}'''
query='''db.tweets.find({}, {
"user.id": 1
}).sort({
"user.id": 1
});'''
query2 = '''db.tweets.group({
"key": {
"user.id": true
},
"initial": {
"countstar": 0
},
"reduce": function(obj, prev) {
if (true != null) if (true instanceof Array) prev.countstar += true.length;
else prev.countstar++;
}
});'''
query3='''db.tweets.group({
"key": {
"user.id": true
},
"initial": {}
});'''
lista_querys= [
#"select user.id,count(*) from tweets group by user.id",
#"select user.id from tweets where user.id > 10000",
#"SELECT user.id,count(*) from tweets where user.verified =false group by user.id",
#"SELECT DISTINCT user.id from tweets",
#"SELECT COUNT(DISTINCT user.id) from tweets",
"SELECT user.id from demo where user.verified is null",
"SELECT user.id,count(user.id) from tweets where user.verified is not null and user.verified =true group by user.id",
"SELECT user.id,count(user.id) from tweets where user.verified =true group by user.id",
"SELECT user.id,count(user.id) from tweets where user.verified =true group by user.id ORDER BY user.id",
"select id_str, sum(favorite_count.value) from tweets where favorite_count <> 'null' group by id_str having count(*) > 1",
"select id from tweets where id >10000"
]
# exec("res = db.demo.find({'user.verified': None},{'user.id': 1});")
# print([e for e in res])
# input()
# exec("res = db.tweets.group(**{'key': {'user.id': True}, 'condition': {'user.verified': {'$exists': True, '$ne': None}, '$where': 'this.user.verified == true'}, 'reduce': Code('function(obj, prev) {if (obj.user.id != null) if (obj.user.id instanceof Array) prev.countuser.id += obj.user.id.length;else prev.countuser.id++;}', None), 'initial': {'countuser.id': 0}});")
# print(res)
for query in lista_querys:
try:
command,runCommand = get_final_command_to_execute(query)
python_command = "res = "+command
print(query)
print(python_command)
exec(python_command)
result = get_result(res,runCommand)
[print(e) for e in result[:5]]
except Exception as e:
print("[ERROR] Query = {}".format(query))
print(e)
input()