-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
423 lines (350 loc) · 15.7 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
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
from flask import Flask, request, redirect, render_template, render_template_string, url_for, flash, get_flashed_messages, jsonify, send_from_directory
from flask_socketio import SocketIO, join_room, leave_room
from flask_login import LoginManager, UserMixin, login_user, logout_user, login_required, current_user
from flask_sqlalchemy import SQLAlchemy
from sqlalchemy.orm import relationship
from flask_migrate import Migrate
from werkzeug.security import generate_password_hash, check_password_hash
from sys import argv
import utils
from datetime import datetime
def timestamp():
return int(datetime.now().timestamp() * 1000)
# # # MEMORY SETUP
from IMAGES import IMAGES
# # # FLASK SETUP
app = Flask(__name__)
app.config['SECRET_KEY'] = utils.get_secret_key()
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///.db'
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
app.add_template_global(name='images', f=IMAGES)
login_manager = LoginManager(app)
login_manager.login_view = 'handle_login'
socketio = SocketIO (
app,
**(
{}
if ("debug" in argv) else
{"async_mode":"gevent"}
)
)
user_socket_map = dict()
# # # DATABASE STUFF
db = SQLAlchemy(app)
migrate = Migrate(app, db)
class User(UserMixin, db.Model):
id = db.Column(db.Integer, primary_key=True)
username = db.Column(db.String(150), unique=True, nullable=False)
password_hash = db.Column(db.String(150), nullable=False)
def __str__(self):
return f'<User {self.username}>'
def __repr__(self):
return f'<User {self.username}>'
def set_password(self, password):
self.password_hash = generate_password_hash(password)
def check_password(self, password):
return check_password_hash(self.password_hash, password)
@property
def sid(self):
return user_socket_map[self.id]
def receive_content(self):
if self.can_view_posts:
for user in current_user.users_to_display:
join_room(user.username, namespace='/', sid=current_user.sid)
if user.username in IMAGES.keys():
poster = user
for post_number, post in enumerate(IMAGES[poster.username]):
if post is not None:
current_user.send (
'add_post',
{
'poster':poster.username,
'post_number':post_number,
'new_post':render_template('post.html', poster=poster, post=post, post_number=post_number),
'timestamp':post["timestamp"]
}
)
for comment_index, (commenter, comment_timestamp, comment_text) in enumerate(post['comments']):
if comment_text != '':
print(poster, post_number, comment_index, commenter)
comment_rendered = render_template('comment.html', poster=poster, post_number=post_number, comment_index=comment_index, comment_text=comment_text, comment_timestamp=comment_timestamp, commenter=commenter, current_user=current_user)
print(comment_rendered)
current_user.send (
'add_comment',
{
'poster':poster.username,
'post_number':post_number,
'new_comment':comment_rendered,
'comment_number':comment_index,
}
)
def send(self, event, args_dict):
socketio.emit (
event,
args_dict,
to=self.sid
)
@property
def can_view_posts(self):
return (self.username in IMAGES.keys())
@property
def can_post(self):
return (self.username not in IMAGES.keys())
@property
def views(self):
results = db.session.query (
ViewSetting.that_user_id
).filter(
ViewSetting.this_user_id == self.id
).all()
result = [load_user(result[0]) for result in results]
return result
@property
def shows(self):
results = db.session.query (
ShowSetting.that_user_id
).filter(
ShowSetting.this_user_id == self.id
).all()
return [load_user(result[0]) for result in results]
@property
def users_to_display(self):
results = db.session.query (
ViewSetting.that_user_id
).join (
ShowSetting,
(ViewSetting.this_user_id == ShowSetting.that_user_id)
&
(ViewSetting.that_user_id == ShowSetting.this_user_id)
).filter(
ViewSetting.this_user_id == self.id
).all()
return [self, *[load_user(result[0]) for result in results]]
def make_post(self, request):
if self.can_post:
faceImage = request.form['faceImage']
awayImage = request.form['awayImage']
if self.username not in IMAGES.keys():
IMAGES[self.username] = []
posts = IMAGES[self.username]
post = (
{
"images" : [
faceImage,
awayImage
],
"timestamp" : timestamp(),
"comments" : list()
}
)
IMAGES[self.username].append(post)
#send new post to everyone who can see user 'self'
socketio.emit (
'add_post',
{
'poster':self.username,
'post_number':len(IMAGES[self.username])-1,
'new_post':render_template('post.html', poster=self, post=post, post_number=len(posts)-1)
},
room = self.username
)
#let user receive existing posts and subscribe them to receive future content
self.receive_content()
@login_manager.user_loader
def load_user(user_id):
return User.query.filter_by(id=user_id).first()
def load_user_by_username(username):
return User.query.filter_by(username=username).first()
class ViewSetting(db.Model):
this_user_id = db.Column(db.Integer, db.ForeignKey('user.id'), primary_key=True)
that_user_id = db.Column(db.Integer, db.ForeignKey('user.id'), primary_key=True)
this_user = relationship('User', foreign_keys=[this_user_id])
that_user = relationship('User', foreign_keys=[that_user_id])
def views(viewer:User, poster:User):
return bool(
ViewSetting.query.filter_by(
this_user_id=viewer.id,
that_user_id=poster.id
).first()
)
def update_view_setting(viewer:User, poster:User, target_view_setting:bool):
existing_relation = ViewSetting.query.filter_by(
this_user_id=viewer.id,
that_user_id=poster.id
).first()
if target_view_setting and (existing_relation is None):
new_relation = ViewSetting(this_user_id=viewer.id, that_user_id=poster.id)
db.session.add(new_relation)
elif not target_view_setting and not (existing_relation is None):
db.session.delete(existing_relation)
db.session.commit()
class ShowSetting(db.Model):
this_user_id = db.Column(db.Integer, db.ForeignKey('user.id'), primary_key=True)
that_user_id = db.Column(db.Integer, db.ForeignKey('user.id'), primary_key=True)
this_user = relationship('User', foreign_keys=[this_user_id])
that_user = relationship('User', foreign_keys=[that_user_id])
def shows(poster:User, viewer:User):
return bool(
ShowSetting.query.filter_by(
this_user_id=poster.id,
that_user_id=viewer.id
).first()
)
def update_show_setting(poster:User, viewer:User, target_show_setting:bool):
existing_relation = ShowSetting.query.filter_by(
this_user_id=poster.id,
that_user_id=viewer.id
).first()
if target_show_setting and (existing_relation is None):
new_relation = ShowSetting(this_user_id=poster.id, that_user_id=viewer.id)
db.session.add(new_relation)
elif not target_show_setting and not (existing_relation is None):
db.session.delete(existing_relation)
db.session.commit()
# # # # #
@app.route('/test/', methods=['GET', 'POST'])
def test():
if request.method == 'GET':
return '''
<form method="POST" action="/test/" enctype="application/x-www-form-urlencoded">
<input type="text" name="text"><br><br>
<input type="submit" value="Submit">
</form>
'''
#request.method == 'POST'
return repr(request.form)
# # # ROUTES
last_reset_time = datetime.now()
@app.before_request
def check_reset():
global last_reset_time, IMAGES
now = datetime.now()
intended_last_reset_time = datetime(now.year, now.month, now.day, 12, 0, 0, 0) #TODO : have a better and more varied function to determine when the server resets
if now > intended_last_reset_time and not last_reset_time > intended_last_reset_time:
IMAGES = {}
last_reset_time = now
@app.route('/', methods=['GET', 'POST'])
@login_required
def home():
global IMAGES
if request.method == 'GET':
return render_template('index.html')
current_user.make_post(request)
return redirect(url_for('home'))
@app.get('/api/')
@login_required
def handle_api():
return '' #TODO
@app.route('/user/', methods=['GET', 'POST'])
@login_required
def handle_user_interaction():
other_username = (request.form if request.method=='POST' else request.args)['username'].lower()
other_user = User.query.filter_by(username=other_username).first()
if not other_user:
return render_template_string('The user {{ other_username}} does not exist!')
if request.method == 'POST':
view = bool(request.form.get('view'))
show = bool(request.form.get('show'))
update_view_setting(current_user, other_user, view)
update_show_setting(current_user, other_user, show)
return render_template('userpage.html', other_user=other_user, views=views, shows=shows)
@app.route('/signup/', methods=['GET', 'POST'])
def handle_signup():
if request.method == 'POST':
username = request.form['username'].lower()
password = request.form['password']
if User.query.filter_by(username=username).first():
return 'Username already exists'
new_user = User(username=username)
new_user.set_password(password)
db.session.add(new_user)
db.session.commit()
login_user(new_user)
return redirect(url_for('home'))
return render_template('signup.html')
@app.route('/login/', methods=['GET', 'POST'])
def handle_login():
if current_user.is_authenticated:
return redirect(url_for('home'))
if request.method == 'POST':
username = request.form['username'].lower()
password = request.form['password']
user = User.query.filter_by(username=username).first()
if user and user.check_password(password):
login_user(user)
return redirect(url_for('home'))
return "Invalid Credentials"
return render_template('login.html')
@app.get('/logout/')
def handle_logout():
logout_user()
return redirect('/')
@app.route('/comment/', methods=['POST', 'DELETE'])
@login_required
def handle_comment():
poster_username = request.form['poster']
poster = load_user_by_username(poster_username)
post_number = request.form['post_number']
if request.method == 'DELETE':
comment_number = request.form['comment_number']
IMAGES[poster.username][int(post_number)]["comments"][int(comment_number)][-1] = ''
socketio.emit (
'delete_comment',
{
'poster':poster.username,
'post_number':post_number,
'comment_number':comment_number,
},
room = poster.username
)
return jsonify(success=True)
commenter = load_user(current_user.id)
comment_text = request.form['comment_text']
comment_timestamp = timestamp()
if not (poster.username in IMAGES.keys() and len(IMAGES[poster.username]) > int(post_number)):
return '' #TODO - probably should be a 404 error I think
#TODO - should verify that current_user views() poster's posts
new_comment = [
commenter,
comment_timestamp,
comment_text
]
comments = IMAGES[poster.username][int(post_number)]["comments"]
comments.append(new_comment)
comment_number = len(comments)-1
socketio.emit (
'add_comment',
{
'poster':poster.username,
'post_number':post_number,
'comment_number':comment_number,
'new_comment':render_template('comment.html', poster=poster, post_number=post_number, commenter=commenter, comment_timestamp=comment_timestamp, comment_text=comment_text, comment_index=comment_number, current_user=current_user)
},
room = poster.username
)
return jsonify(success=True)
@app.get('/main.js')
def get_js():
return render_template('main.js')
@app.get('/favicon.ico')
def get_ico():
return send_from_directory('static', 'favicon.ico')
@app.route('/settings/')
def settings():
return render_template('settings.html')
# # # SOCKET.IO
@socketio.on('connect')
def handle_connect():
user_socket_map[current_user.id] = request.sid
current_user.receive_content()
@socketio.on('disconnect')
def handle_disconnect():
for other_user in current_user.users_to_display:
leave_room(other_user.username)
leave_room(current_user.username)
if __name__ == '__main__':
if "debug" in argv:
socketio.run(app, host='0.0.0.0', port=7074, debug=True)
else:
from gevent.pywsgi import WSGIServer
WSGIServer(("0.0.0.0", 7074), app).serve_forever()