-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
386 lines (321 loc) · 11 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
375
376
377
378
379
380
381
382
383
384
385
from flask import Flask, render_template, request, redirect, url_for, flash
from flask_sqlalchemy import SQLAlchemy
app = Flask(__name__)
app.config['SQLALCHEMY_DATABASE_URI'] = "sqlite:///DATA.db"
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
app.secret_key = 'your_secret_key' # Set a secret key for flashing messages
db = SQLAlchemy(app)
#------------------------------------------------------------------------ tables --------------------------------------------------------
class User(db.Model):
__tablename__ = 'user'
id = db.Column(db.Integer, primary_key=True)
username = db.Column(db.String(50), unique=True, nullable=False)
email = db.Column(db.String(120), unique=True, nullable=False)
password = db.Column(db.String(60), nullable=False)
def __repr__(self):
return f"User('{self.username}', '{self.email}')"
class Contact(db.Model):
id = db.Column(db.Integer, primary_key=True)
name = db.Column(db.String(100), nullable=False)
email = db.Column(db.String(100), nullable=False)
message = db.Column(db.Text, nullable=False)
#--------------------------------------------------------------------- contacts -------------------------------------------------------------------
@app.route('/contact', methods=['POST'])
def contact():
if request.method == 'POST':
try:
name = request.form['name']
email = request.form['email']
message = request.form['message']
# Create a new Contact object
new_contact = Contact(name=name, email=email, message=message)
# Add the object to the database
db.session.add(new_contact)
db.session.commit()
flash('Message sent successfully!', 'success')
except Exception as e:
db.session.rollback()
flash('Error occurred while sending message. Please try again later.', 'error')
print(e)
return redirect(url_for('index'))
@app.route('/delete_contact/<int:contact_id>', methods=['POST'])
def delete_contact(contact_id):
try:
contact = Contact.query.get_or_404(contact_id)
db.session.delete(contact)
db.session.commit()
flash('Contact deleted successfully!', 'success')
except Exception as e:
db.session.rollback()
flash('Error occurred while deleting contact. Please try again later.', 'error')
print(e)
return redirect(url_for('contacts'))
@app.route('/contacts')
def contacts():
try:
# Fetch all contacts from the database
contacts = Contact.query.all()
except Exception as e:
flash('Error occurred while fetching contacts. Please try again later.', 'error')
print(e)
contacts = []
return render_template('contacts.html', contacts=contacts)
#-------------------------------------------------------------------- login and # ------------------------------------------------------------------
@app.route('/admin_login', methods=['GET', 'POST'])
def admin_login():
if request.method == 'POST':
admin_username = request.form['admin_username']
admin_password = request.form['admin_password']
# Check if the entered credentials match the hardcoded values
if admin_username == 'avi' and admin_password == 'avi':
# Store admin username in the session
return redirect(url_for('contacts')) # Redirect to admin dashboard
else:
return render_template('adminlogin.html', message='Invalid admin username or password.')
else:
return render_template('adminlogin.html')
@app.route('/#', methods=['POST'])
def #():
username = request.form['txt']
email = request.form['email']
password = request.form['pswd']
reenter_password = request.form['reenter_pswd']
if password != reenter_password:
flash("Passwords do not match. Please try again.", 'error')
return redirect(url_for('login'))
if User.query.filter_by(email=email).first():
flash("Email already exists. Please use another email.", 'error')
return redirect(url_for('login'))
new_user = User(username=username, email=email, password=password)
db.session.add(new_user)
db.session.commit()
flash("# successful!", 'success')
return redirect(url_for('login'))
@app.route('/#2', methods=['POST'])
def login2():
email = request.form['email']
password = request.form['pswd']
user = User.query.filter_by(email=email, password=password).first()
if user:
flash("Login successful!", 'success')
return redirect(url_for('main'))
else:
flash("Invalid email or password.", 'error')
return redirect(url_for('login'))
@app.route('/#')
def login():
return render_template('login.html')
@app.route('/adminlogin')
def adminlogin():
return render_template('adminlogin.html')
@app.route('/')
def hello_world():
return render_template('index.html')
@app.route('/index')
def index():
return render_template('index.html')
@app.route('/main')
def main():
return render_template('main.html')
#----------------------------------------------------------------DDD------------------------------------------------------------------------
@app.route('/ddd')
def ddd():
return render_template('ddd.html')
@app.route('/rd')
def rd():
return render_template('ddd/rdkit.html')
@app.route('/ad')
def ad():
return render_template('ddd/autodoc.html')
@app.route('/avg')
def ag():
return render_template('ddd/Avogadro.html')
@app.route('/bc')
def bc():
return render_template('ddd/Bioconductor.html')
@app.route('/bp')
def bp():
return render_template('ddd/Biopython.html')
@app.route('/cd')
def cd():
return render_template('ddd/ChemDraw.html')
@app.route('/ob')
def ob():
return render_template('ddd/openBarel.html')
@app.route('/py')
def py():
return render_template('ddd/PyRx.html')
#-----------------------------------------------------------------------------------CTDA--------------------------------------------------------------
@app.route('/ctda')
def ctda():
return render_template('ctda.html')
@app.route('/r')
def r():
return render_template('ctda/R.html')
@app.route('/pnm')
def pnm():
return render_template('ctda/pnm.html')
@app.route('/oc')
def oc():
return render_template('ctda/OpenClinica.html')
@app.route('/rc')
def rc():
return render_template('ctda/REDCap.html')
@app.route('/oe')
def oe():
return render_template('ctda/OpenEHR.html')
@app.route('/kap')
def kap():
return render_template('ctda/kap.html')
@app.route('/jn')
def jn():
return render_template('ctda/jn.html')
@app.route('/o')
def o():
return render_template('ctda/Oracle.html')
@app.route('/sas')
def sas():
return render_template('ctda/sas.html')
@app.route('/de')
def de():
return render_template('ctda/de.html')
#---------------------------------------------------------------- PDS ------------------------------------------------------------------------
@app.route('/pds')
def pds():
return render_template('pds.html')
@app.route('/agg')
def agg():
return render_template('pds/ag.html')
@app.route('/ov')
def ov():
return render_template('pds/ov.html')
@app.route('/oas')
def oas():
return render_template('pds/oas.html')
@app.route('/vf')
def vf():
return render_template('pds/vf.html')
#---------------------------------------------------------------- PP ------------------------------------------------------------------------
@app.route('/pp')
def pp():
return render_template('pp.html')
@app.route('/bm')
def bm():
return render_template('pp/bm.html')
@app.route('/gp')
def gp():
return render_template('pp/gp.html')
@app.route('/nn')
def nn():
return render_template('pp/nn.html')
@app.route('/pw')
def pw():
return render_template('pp/pw.html')
@app.route('/sc')
def sc():
return render_template('pp/sc.html')
#---------------------------------------------------------------- DMML ------------------------------------------------------------------------
@app.route('/dmml')
def dmml():
return render_template('dmml.html')
@app.route('/h2o')
def h2o():
return render_template('dmml/h2o.html')
@app.route('/orn')
def orn():
return render_template('dmml/orn.html')
@app.route('/rm')
def rm():
return render_template('dmml/rm.html')
@app.route('/sl')
def sl():
return render_template('dmml/sl.html')
@app.route('/ts')
def ts():
return render_template('dmml/ts.html')
@app.route('/w')
def w():
return render_template('dmml/w.html')
#---------------------------------------------------------------- TMNLP ------------------------------------------------------------------------
@app.route('/tmnlp')
def tmnlp():
return render_template('tmnlp.html')
@app.route('/gs')
def gs():
return render_template('tmnlp/gs.html')
@app.route('/nltk')
def nltk():
return render_template('tmnlp/nltk.html')
@app.route('/pt')
def pt():
return render_template('tmnlp/pt.html')
@app.route('/ss')
def ss():
return render_template('tmnlp/ss.html')
@app.route('/sp')
def sp():
return render_template('tmnlp/sp.html')
@app.route('/tl')
def tl():
return render_template('tmnlp/tl.html')
#---------------------------------------------------------------- DM ------------------------------------------------------------------------
@app.route('/dm')
def dm():
return render_template('dm.html')
@app.route('/apache')
def apache():
return render_template('dm/apache.html')
@app.route('/couch')
def couch():
return render_template('dm/couch.html')
@app.route('/mongo')
def mongo():
return render_template('dm/mongo.html')
@app.route('/mssql')
def mssql():
return render_template('dm/mssql.html')
@app.route('/mysql')
def mysql():
return render_template('dm/mysql.html')
@app.route('/neo')
def neo():
return render_template('dm/neo.html')
@app.route('/post')
def post():
return render_template('dm/post.html')
@app.route('/sqlite')
def sqlite():
return render_template('dm/sqlite.html')
#---------------------------------------------------------------- AI TOOLS ------------------------------------------------------------------------
@app.route('/ai')
def ai():
return render_template('ai/ai.html')
#---------------------------------------------------------------- Plagiarism detectors and Citation softwares ------------------------------------------------------------------------
@app.route('/pc')
def pc():
return render_template('pc.html')
@app.route('/e')
def e():
return render_template('cs/e.html')
@app.route('/mrm')
def mrm():
return render_template('cs/mrm.html')
@app.route('/z')
def z():
return render_template('cs/z.html')
@app.route('/g')
def g():
return render_template('pd/g.html')
@app.route('/i')
def i():
return render_template('pd/i.html')
@app.route('/t')
def t():
return render_template('pd/t.html')
@app.route('/u')
def u():
return render_template('pd/u.html')
with app.app_context():
db.create_all()
if __name__ == "__main__":
app.run(debug=True)