aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorNavan Chauhan <navanchauhan@gmail.com>2020-07-06 18:58:06 +0530
committerNavan Chauhan <navanchauhan@gmail.com>2020-07-06 18:58:06 +0530
commite366bf67d1b68fa7cf808619e9bb8f92fdb5d343 (patch)
tree134c28b322fada4b43a9c4a86b417777cd0f6063 /app
parentb808d0f36c299120b175b20d7158c926ebbe3f55 (diff)
added database works perfectly message
Diffstat (limited to 'app')
-rw-r--r--app/dbTestFiller.py65
1 files changed, 65 insertions, 0 deletions
diff --git a/app/dbTestFiller.py b/app/dbTestFiller.py
new file mode 100644
index 0000000..db3700a
--- /dev/null
+++ b/app/dbTestFiller.py
@@ -0,0 +1,65 @@
+import mysql.connector as con
+
+debug = False
+host = "navanspi.duckdns.org"
+done = 1
+
+if debug != False:
+ host = "192.168.1.6"
+ done = 0
+
+mycon = con.connect(host=host,user="curieweb",password="curie-web-russian-54",port=3306,database="curie")
+mycursor = mycon.cursor()
+
+try:
+ mycursor.execute("create table curieweb ( id varchar(16) primary key, email nvarchar(255) NOT NULL, protein LONGBLOB NOT NULL, protein_name VARCHAR(255), ligand_pdbqt LONGBLOB, ligand_smile VARCHAR(255), ligand_name VARCHAR(255), config LONGBLOB NOT NULL, date DATE, description VARCHAR(255), done TINYINT DEFAULT 0)")
+except con.ProgrammingError:
+ print("Table Already Exists!")
+
+#try:
+# mycursor.execute("insert into curieweb values (1,'navanchauhan@gmail.com','lu.pdbqt','test.pdbqt','owo.txt',CURDATE(),'CURIE WEB TASK',0)")
+#except con.IntegrityError:
+# print("Duplicate Entry For Primary Key!")
+
+from random import choice, shuffle
+from string import digits, ascii_lowercase
+
+def gen_word(N, min_N_dig, min_N_low):
+ choose_from = [digits]*min_N_dig + [ascii_lowercase]*min_N_low
+ choose_from.extend([digits + ascii_lowercase] * (N-min_N_low-min_N_dig))
+ chars = [choice(bet) for bet in choose_from]
+ shuffle(chars)
+ return ''.join(chars)
+
+def convertToBinaryData(filename):
+ with open(filename, 'rb') as file:
+ binaryData = file.read()
+ return binaryData
+
+from os.path import basename
+
+ligand = convertToBinaryData("./static/uploads/ligands/test.pdbqt")
+receptor = convertToBinaryData("static/uploads/receptor/lu.pdbqt")
+config = convertToBinaryData("static/uploads/configs/owo.txt")
+ligandName = "Eucalyptol"
+receptorName = "6LU7"
+
+sqlQuery = "insert into curieweb (id, email, protein, protein_name, ligand_pdbqt, ligand_name,date, config,done) values (%s,%s,%s,%s,%s,%s,CURDATE(),%s,%s) "
+
+jobID = gen_word(16, 1, 1)
+print("Succesfuly submitted Job ID:",jobID)
+
+insert_tuple = (jobID,"navanchauhan@gmail.com",receptor,receptorName,ligand,ligandName,config,done)
+
+try:
+ mycursor.execute(sqlQuery,insert_tuple)
+except con.IntegrityError:
+ print("Oops, Collision occured. Generating new Job ID and trying again.")
+ jobID = gen_word(16, 1, 1)
+ insert_tuple = (jobID,"navanchauhan@gmail.com",receptor,receptorName,ligand,ligandName,config,done)
+ mycursor.execute(sqlQuery,insert_tuple)
+
+
+mycon.commit()
+
+print("Database working perfectly") \ No newline at end of file