-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
374 lines (275 loc) · 10.3 KB
/
app.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
"""
Created on Sat Aug 20 10:57:00 2022
@author: Admin
"""
from win32api import GetSystemMetrics
scr_width = GetSystemMetrics(0)
scr_height = GetSystemMetrics(1)
from markupsafe import Markup
from flask import *
from flask_session import Session
import mysql.connector as mysql
from math import sin, cos , pi , atan
def rotate(origin, point, angle):
#Rotate a point counterclockwise by a given angle around a given origin.
#The angle should be given in radians.
x = origin[0] + cos(angle) * (point[0] - origin[0]) - sin(angle) * (point[1] - origin[1])
y = origin[1] + sin(angle) * (point[0] - origin[0]) + cos(angle) * (point[1] - origin[1])
return (x, y)
class Node:
Name = ''
Age = ''
Hobbies = ''
Gender = ''
conn = mysql.connect(host = "localhost", username = "root" , passwd = "Pettaashu2003")
cur = conn.cursor()
def use_database():
query = "use graphsql;"
cur.execute(query)
conn.commit()
def create_database_tables():
try:
query = "create database graphsql;"
cur.execute(query)
conn.commit()
use_database();
query = "create table nodes (name varchar(30) primary key, age int , hobbies varchar(255) , gender varchar(10));"
cur.execute(query)
conn.commit()
query = "create table link_connection (node1 varchar(30) , node2 varchar(30),relation varchar(255));"
cur.execute(query)
conn.commit()
except:
pass
create_database_tables()
use_database()
app = Flask(__name__)
app.secret_key = "abc"
app.config["SESSION_PERMANENT"] = False
app.config["SESSION_TYPE"] = "filesystem"
Session(app)
@app.route("/home.html" , methods = ["GET" , "POST"])
def home_page():
return render_template("home.html")
def create_node(node):
name = node.Name
age = node.Age
hobbie = node.Hobbies
gender = node.Gender
try:
query = "insert into nodes values('{}' , {} , '{}' , '{}');".format(name , age , hobbie , gender)
cur.execute(query)
conn.commit()
return True
except:
return False
def create_relation(name1 , name2 , relation):
try:
query = "insert into link_connection values('{}' , '{}' , '{}');".format(name1 ,name2 ,relation)
cur.execute(query)
conn.commit()
return True
except:
return False
def get_names():
query = "select name from nodes;"
cur.execute(query)
s = ""
for i in cur.fetchall():
s += "<option>"+i[0]+"</option>"
return s
def validate(node):
name = node.Name
age = node.Age
hobbie = node.Hobbies
gender = node.Gender
if name.replace(" ","") == "":
return "Name not entered !"
if age.replace(" ","") == "":
return "Age not entered !"
if hobbie.replace(" ","") == "":
return "Hobbie not entered !"
if gender.replace(" ","") == "":
return "Gender not entered !"
age = int(age)
if not(0<age<150):
return "Inappropriate age"
return ''
@app.route("/create.html" , methods = ["GET" , "POST"])
def create():
if request.method== "POST":
#submit
node = Node()
node.Name = request.form.get("name")
node.Age = request.form.get("age")
node.Hobbies = request.form.get("hobbies")
node.Gender = request.form.get("gender")
err = validate(node)
if(err):
flash(err)
return redirect("create.html")
response = create_node(node)
if response == False:
flash("Name already exist")
return redirect("create.html")
else:
flash("Record successfully created")
return redirect("create.html")
return render_template("create.html")
@app.route("/insert.html" , methods = ["GET" , "POST"])
def insert():
if request.method== "POST":
#submit
name1 = request.form.get("name1")
name2 = request.form.get("name2")
relation = request.form.get("relation")
if relation.replace(" ","") == "":
flash("Relation not entered")
return redirect("insert.html")
if name1 == name2:
flash("Relation cannot exist between same nodes! ")
return redirect("insert.html")
response = create_relation(name1 , name2 , relation)
if response == False:
flash("Relation already exist")
return redirect("insert.html")
else:
flash("Relation successfully created")
return redirect("insert.html")
code = get_names()
return render_template("insert.html" , msg = Markup(code))
def draw_node(name , x , y , color):
r = len(name)*6
color1 = "lightyellow"
if color == "blue":
color1 = "aqua"
s = '<circle cx="{}" cy="{}" r="{}" stroke="{}" stroke-width="4" fill="{}" />'.format(x,y,r,color , color1)
s += '<text x="{}" y="{}" fill="black">{}</text>'.format(x-len(name)*4,y,name)
return s
def get_gender():
query = "Select name , gender from nodes;"
cur.execute(query)
m = {}
for (a,b) in cur.fetchall():
m[a] = b
return m
def mid_pt(a , b):
x = 1
c = (a[0] + b[0]*x)/(x+1)
d = (a[1] + b[1]*x)/(x+1)
return [c , d]
def draw_line(a , b):
s = '<line x1="{}" y1="{}" x2="{}" y2="{}" stroke="#000" stroke-width="8" marker-end="url(#arrowhead)" />'.format(a[0],a[1],b[0],b[1])
return s
def draw_text(pt , ang , txt):
s = ' <text filter="url(#solid)" transform="translate({}, {}) rotate({})" fill="red" >{}</text>'.format(pt[0] , pt[1] , ang , txt)
return s
@app.route("/select.html" , methods = ["GET" , "POST"])
def select():
svg_code = ''
gender_info = get_gender()
if request.method == "POST":
name = request.form.get("name")
origin = [scr_width/2,scr_height*0.70]
other_pt = [scr_width*0.75,scr_height*0.70]
query = "select * from link_connection where node1 like '{}' or node2 like '{}';".format(name , name)
cur.execute(query)
l = cur.fetchall()
other_names = set()
relation = {}
for (a,b,c) in l:
if a == name:
other_names.add(b)
if b == name:
other_names.add(a)
relation[(a,b)] = c
relation[(b,a)] = c
other_names = list(other_names)
n = len(other_names)
ang = 360 / n
count = 1
coordinates = {name:origin}
for nodes in other_names:
x,y = rotate(origin , other_pt , ang*count*pi/180 )
coordinates[nodes] = (x , y)
count += 1
for (a,b,c) in l:
origin = coordinates[a]
point = coordinates[b]
x,y = point
relation = c
extra = 6*len(b) + 40
if(origin[0] >= point[0]):
svg_code += draw_line(origin ,get_point(origin , distance(origin , point)-extra, abs(180+angle(origin , point))))
else:
svg_code += draw_line(origin ,get_point(origin , distance(origin , point)-extra , angle(origin , point)))
svg_code += draw_text(mid_pt(origin , point ) , angle(origin , point) , relation)
color = "pink"
if gender_info[name] == "M":
color = "blue"
svg_code += draw_node(name ,coordinates[name][0] , coordinates[name][1] ,color)
for nodes in other_names:
color = "pink"
if gender_info[nodes] == "M":
color = "blue"
svg_code += draw_node(nodes ,coordinates[nodes][0] , coordinates[nodes][1] ,color)
code = get_names()
return render_template("select.html" , msg = Markup(code) , svg_code = Markup(svg_code))
def angle(a,b):
m = slope(a,b)
ang = atan(m)
return ang*(180/pi)
def slope(a,b):
return (a[1] - b[1]) / (a[0] - b[0])
def get_point( o , d , angle):
o = list(o)
angle *= (pi/180)
o[0] += d*cos(angle)
o[1] += d*sin(angle)
return o
def distance(a , b):
xd = a[0] - b[0]
yd = a[1] - b[1]
return (xd**2 + yd**2)**0.5
@app.route("/view.html" , methods = ["GET" , "POST"])
def view():
svg_code = ''
gender_info = get_gender()
origin = [scr_width/2,scr_height*0.70]
other_pt = [scr_width*0.75,scr_height*0.70]
query = "select * from link_connection;"
cur.execute(query)
l = cur.fetchall()
query = "select name from nodes;"
cur.execute(query)
all_names = [i[0] for i in cur.fetchall()]
relation = {}
coordinates = {}
for (a,b,c) in l:
relation[(a,b)] = c
relation[(b,a)] = c
n = len(all_names)
ang = 360 / n
count = 1
for nodes in all_names:
x,y = rotate(origin , other_pt , ang*count*pi/180 )
coordinates[nodes] = (x , y)
count += 1
for (a,b,c) in l:
origin = coordinates[a]
point = coordinates[b]
x,y = point
relation = c
extra = 6*len(b) + 40
if(origin[0] >= point[0]):
svg_code += draw_line(origin ,get_point(origin , distance(origin , point)-extra, abs(180+angle(origin , point))))
else:
svg_code += draw_line(origin ,get_point(origin , distance(origin , point)-extra , angle(origin , point)))
svg_code += draw_text(mid_pt(origin , point ) , angle(origin , point) , relation)
for nodes in all_names:
color = "pink"
if gender_info[nodes] == "M":
color = "blue"
svg_code += draw_node(nodes ,coordinates[nodes][0] , coordinates[nodes][1] ,color)
return render_template("view.html" , svg_code = Markup(svg_code))
app.run()