-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.py
More file actions
477 lines (362 loc) · 13.7 KB
/
Copy pathapp.py
File metadata and controls
477 lines (362 loc) · 13.7 KB
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
import sqlite3
import os
from flask import Flask, render_template, request, redirect, session, flash
from werkzeug.security import generate_password_hash, check_password_hash
from functools import wraps
def create_app():
app = Flask(__name__)
app.secret_key = "supersecretkey"
os.makedirs("instance", exist_ok=True)
app.config["DATABASE"] = os.path.join("instance", "database.db")
# ---------------------------
# Database
# ---------------------------
def get_db():
conn = sqlite3.connect(app.config["DATABASE"])
conn.row_factory = sqlite3.Row
return conn
# ---------------------------
# Login Required Decorator
# ---------------------------
def login_required(role=None):
def decorator(f):
@wraps(f)
def wrapper(*args, **kwargs):
if "user_id" not in session:
return redirect("/login")
if role and session.get("role") != role:
return render_template("errors/403.html")
return f(*args, **kwargs)
return wrapper
return decorator
# ---------------------------
# Home
# ---------------------------
@app.route("/")
def home():
return render_template("home.html")
# ---------------------------
# Create Admin (run once)
# ---------------------------
@app.route("/create-admin")
def create_admin():
db = get_db()
password = generate_password_hash("admin123")
try:
db.execute(
"INSERT INTO users (email, password_hash, role) VALUES (?, ?, ?)",
("admin@portal.com", password, "admin")
)
db.commit()
return "Admin created successfully!"
except:
return "Admin already exists."
# ---------------------------
# Login
# ---------------------------
@app.route("/login", methods=["GET", "POST"])
def login():
if request.method == "POST":
email = request.form["email"]
password = request.form["password"]
db = get_db()
user = db.execute(
"SELECT * FROM users WHERE email=?",
(email,)
).fetchone()
if user and check_password_hash(user["password_hash"], password):
session["user_id"] = user["id"]
session["role"] = user["role"]
if user["role"] == "admin":
return redirect("/admin-dashboard")
elif user["role"] == "company":
company = db.execute(
"SELECT * FROM companies WHERE user_id=?",
(user["id"],)
).fetchone()
if company["approval_status"] != "Approved":
flash("Your company account is not approved by admin yet.", "warning")
return redirect("/login")
return redirect("/company-dashboard")
else:
return redirect("/student-dashboard")
else:
flash("Invalid email or password", "danger")
return render_template("auth/login.html")
# ---------------------------
# Logout
# ---------------------------
@app.route("/logout")
def logout():
session.clear()
return redirect("/")
# ---------------------------
# Student Registration
# ---------------------------
@app.route("/register-student", methods=["GET", "POST"])
def register_student():
if request.method == "POST":
email = request.form["email"]
password = request.form["password"]
full_name = request.form["full_name"]
branch = request.form["branch"]
db = get_db()
hashed_password = generate_password_hash(password)
try:
cursor = db.execute(
"INSERT INTO users (email, password_hash, role) VALUES (?, ?, ?)",
(email, hashed_password, "student")
)
user_id = cursor.lastrowid
db.execute(
"INSERT INTO students (user_id, full_name, branch) VALUES (?, ?, ?)",
(user_id, full_name, branch)
)
db.commit()
return redirect("/login")
except:
return "Email already exists"
return render_template("auth/register_student.html")
# ---------------------------
# Company Registration
# ---------------------------
@app.route("/register-company", methods=["GET", "POST"])
def register_company():
if request.method == "POST":
email = request.form["email"]
password = request.form["password"]
company_name = request.form["company_name"]
website = request.form["website"]
db = get_db()
hashed_password = generate_password_hash(password)
try:
cursor = db.execute(
"INSERT INTO users (email, password_hash, role) VALUES (?, ?, ?)",
(email, hashed_password, "company")
)
user_id = cursor.lastrowid
db.execute(
"""INSERT INTO companies
(user_id, company_name, website, approval_status)
VALUES (?, ?, ?, ?)""",
(user_id, company_name, website, "Pending")
)
db.commit()
flash("Company registered successfully. Wait for admin approval.", "success")
return redirect("/login")
except:
flash("Email already exists", "danger")
return render_template("auth/register_company.html")
# ---------------------------
# Dashboards
# ---------------------------
@app.route("/admin-dashboard")
@login_required(role="admin")
def admin_dashboard():
db = get_db()
students = db.execute(
"SELECT COUNT(*) FROM students"
).fetchone()[0]
companies = db.execute(
"SELECT COUNT(*) FROM companies"
).fetchone()[0]
drives = db.execute(
"SELECT COUNT(*) FROM placement_drives"
).fetchone()[0]
applications = db.execute(
"SELECT COUNT(*) FROM applications"
).fetchone()[0]
return render_template(
"admin/dashboard.html",
students=students,
companies=companies,
drives=drives,
applications=applications
)
@app.route("/company-dashboard")
@login_required(role="company")
def company_dashboard():
db = get_db()
company = db.execute(
"SELECT * FROM companies WHERE user_id=?",
(session["user_id"],)
).fetchone()
drives = db.execute(
"SELECT * FROM placement_drives WHERE company_id=?",
(company["id"],)
).fetchall()
return render_template(
"company/dashboard.html",
company=company,
drives=drives
)
@app.route("/student-dashboard")
@login_required(role="student")
def student_dashboard():
return render_template("student/dashboard.html")
# ---------------------------
# Admin View Companies
# ---------------------------
@app.route("/admin/companies")
@login_required(role="admin")
def view_companies():
db = get_db()
companies = db.execute(
"SELECT * FROM companies WHERE approval_status = 'Pending'"
).fetchall()
return render_template("admin/view_companies.html", companies=companies)
# ---------------------------
# Approve Company
# ---------------------------
@app.route("/admin/approve-company/<int:company_id>")
@login_required(role="admin")
def approve_company(company_id):
db = get_db()
db.execute(
"UPDATE companies SET approval_status = 'Approved' WHERE id = ?",
(company_id,)
)
db.commit()
return redirect("/admin/companies")
@app.route("/company/create-drive", methods=["GET", "POST"])
@login_required(role="company")
def create_drive():
if request.method == "POST":
job_title = request.form["job_title"]
job_description = request.form["job_description"]
eligibility = request.form["eligibility"]
package = request.form["package"]
location = request.form["location"]
deadline = request.form["deadline"]
db = get_db()
# get company id using logged-in user
company = db.execute(
"SELECT * FROM companies WHERE user_id = ?",
(session["user_id"],)
).fetchone()
db.execute(
"""INSERT INTO placement_drives
(company_id, job_title, job_description, eligibility, package, location, application_deadline, status)
VALUES (?, ?, ?, ?, ?, ?, ?, ?)""",
(company["id"], job_title, job_description, eligibility, package, location, deadline, "Pending")
)
db.commit()
return redirect("/company-dashboard")
return render_template("company/create_drive.html")
# ---------------------------
# Admin View Drives
# ---------------------------
@app.route("/admin/drives")
@login_required(role="admin")
def view_drives():
db = get_db()
drives = db.execute(
"""
SELECT placement_drives.*, companies.company_name
FROM placement_drives
JOIN companies ON placement_drives.company_id = companies.id
WHERE placement_drives.status = 'Pending'
"""
).fetchall()
return render_template("admin/view_drives.html", drives=drives)
# ---------------------------
# Approve Drive
# ---------------------------
@app.route("/admin/approve-drive/<int:drive_id>")
@login_required(role="admin")
def approve_drive(drive_id):
db = get_db()
db.execute(
"UPDATE placement_drives SET status = 'Approved' WHERE id = ?",
(drive_id,)
)
db.commit()
return redirect("/admin/drives")
return render_template("admin/view_drives.html", drives=drives)
@app.route("/student/drives")
@login_required(role="student")
def student_drives():
db = get_db()
drives = db.execute(
"""
SELECT placement_drives.*, companies.company_name
FROM placement_drives
JOIN companies ON placement_drives.company_id = companies.id
WHERE placement_drives.status = 'Approved'
"""
).fetchall()
return render_template("student/view_drives.html", drives=drives)
@app.route("/student/apply/<int:drive_id>")
@login_required(role="student")
def apply_drive(drive_id):
db = get_db()
student = db.execute(
"SELECT * FROM students WHERE user_id = ?",
(session["user_id"],)
).fetchone()
# Check if already applied
existing = db.execute(
"SELECT * FROM applications WHERE student_id = ? AND drive_id = ?",
(student["id"], drive_id)
).fetchone()
if existing:
return render_template("student/already_applied.html")
db.execute(
"INSERT INTO applications (student_id, drive_id, status) VALUES (?, ?, ?)",
(student["id"], drive_id, "Applied")
)
db.commit()
return render_template("student/apply_success.html")
@app.route("/student/applications")
@login_required(role="student")
def student_applications():
db = get_db()
student = db.execute(
"SELECT * FROM students WHERE user_id = ?",
(session["user_id"],)
).fetchone()
applications = db.execute(
"""
SELECT applications.*, placement_drives.job_title,
companies.company_name
FROM applications
JOIN placement_drives
ON applications.drive_id = placement_drives.id
JOIN companies
ON placement_drives.company_id = companies.id
WHERE applications.student_id = ?
""",
(student["id"],)
).fetchall()
return render_template("student/applications.html", applications=applications)
@app.route("/student/profile", methods=["GET", "POST"])
@login_required(role="student")
def student_profile():
db = get_db()
student = db.execute(
"SELECT * FROM students WHERE user_id=?",
(session["user_id"],)
).fetchone()
if request.method == "POST":
cgpa = request.form["cgpa"]
db.execute(
"UPDATE students SET cgpa=? WHERE id=?",
(cgpa, student["id"])
)
db.commit()
return redirect("/student/profile")
return render_template("student/profile.html", student=student)
@app.route("/reset-admin-password")
def reset_admin_password():
db = get_db()
new_password = generate_password_hash("admin123")
db.execute(
"UPDATE users SET password_hash=? WHERE email=?",
(new_password, "admin@portal.com")
)
db.commit()
return "Admin password reset to admin123"
return app
app = create_app()
if __name__ == "__main__":
app.run(debug=True, port=5001)