-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathviews.py
174 lines (125 loc) · 4.83 KB
/
views.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
import uuid
import random
from flask import Blueprint, render_template, session, request, flash, redirect, url_for, make_response
from flask_cors import CORS,cross_origin
from backend.decorators import is_authenticated
from backend.forms import BookCabForm
from backend.models import Booking, User, CabGroup
from backend.algorithm import main
from globals import maps_apikey
from globals import db, maps_apikey, SOURCE
views = Blueprint("views",__name__)
@views.route("/",methods=["GET","POST"])
@is_authenticated
def home():
form = BookCabForm()
if request.method == "POST":
if form.validate_on_submit():
destination = form.data["destination"]
try:
# booking having status code ongoing
bookings_ongoing = Booking.query.filter_by(status=0).all()
# create bookings if there are more than 4 ongoing request in queue
user = User.query.filter_by(email=session["user"]).first()
booking_hash = str(uuid.uuid1())
curr_booking = Booking(
destination=destination,
user=user.id,
status=0,
booking_hash=booking_hash
)
db.session.add(curr_booking)
db.session.commit()
if len(bookings_ongoing)>=4:
print(bookings_ongoing)
groups = main()
for group in groups:
name = f"grp{random.randint(1,10000)}:{random.randbytes(10000)}"
grp = CabGroup(name=name)
db.session.add(grp)
db.session.commit()
for usrAttr in group:
booking_a = Booking.query.filter_by(id=usrAttr.booking_id).all()
for booking_ in booking_a:
booking_.status = 1
booking_.group = grp.id
booking_.cost = usrAttr.cost
booking_.distance = usrAttr.distance
db.session.add_all(booking_a)
db.session.commit()
flash("Booking added")
else:
flash("request added successfuly")
except Exception as e:
print(e,"=========")
flash("allocation failed try again later!")
else:
flash(form.errors)
return render_template(
"index.html",
user = session["user"],
form = form,
google_maps_apikey = maps_apikey
)
@views.route("/services",methods=["GET"])
@is_authenticated
def services():
user = User.query.filter_by(email=session["user"]).first()
if user == None:
return redirect(url_for("auth.login"))
curr_bookings = Booking.query.filter_by(user=user.id).all()
return render_template(
"services.html",
user = session["user"],
bookings = curr_bookings
)
@views.route("/contact",methods=["GET"])
@is_authenticated
def contact():
user = User.query.filter_by(email=session["user"]).first()
if user == None:
return redirect(url_for("auth.login"))
return render_template(
"contact.html",
user = session["user"],
MAPS_APIKEY = maps_apikey,
SOURCE_LOCATION = SOURCE
)
@views.route("/detail_group/<pk>",methods=["GET"])
@is_authenticated
def detail_group(pk):
shared_cab_group = CabGroup.query.filter_by(id=pk).first()
user = User.query.filter_by(email=session["user"]).first()
my_booking = Booking.query.filter_by(group=pk,user=user.id).first()
DROP = my_booking.destination
if shared_cab_group == None:
return "404 page not found \n group does not exist"
bookings = shared_cab_group.bookings
return render_template(
"detail-group.html",
user=session["user"],
grp_bookings = bookings,
pk=pk,
MAPS_APIKEY = maps_apikey,
SOURCE = SOURCE,
DROP = DROP
)
@views.route("/chat/<pk>",methods=["GET"])
@is_authenticated
def chat(pk):
return render_template(
'chat.html',
room=pk,
user = session["user"]
)
@views.route("/booking-payment/<booking_hash>")
@cross_origin()
def booking_payment(booking_hash):
booking = Booking.query.filter_by(booking_hash=booking_hash).first()
if booking==None:
return make_response("FAILED",404)
if booking.status!=2:
booking.status = 2
db.session.add(booking)
db.session.commit()
return make_response("SUCCESS",200)