forked from MarseyWorld/MarseyWorld
388 lines
11 KiB
Python
388 lines
11 KiB
Python
import atexit
|
|
import time
|
|
import uuid
|
|
from hashlib import md5
|
|
|
|
from flask_socketio import SocketIO, emit, join_room, leave_room
|
|
from flask import request
|
|
|
|
from files.helpers.actions import *
|
|
from files.helpers.alerts import *
|
|
from files.helpers.config.const import *
|
|
from files.helpers.slurs_and_profanities import censor_slurs_profanities
|
|
from files.helpers.regex import *
|
|
from files.helpers.media import *
|
|
from files.helpers.sanitize import *
|
|
from files.helpers.alerts import push_notif
|
|
from files.routes.wrappers import *
|
|
from files.classes.orgy import *
|
|
|
|
from files.__main__ import app, cache, limiter
|
|
|
|
socketio = SocketIO(
|
|
app,
|
|
async_mode='gevent',
|
|
max_http_buffer_size=8388608,
|
|
)
|
|
|
|
muted = cache.get(f'muted') or {}
|
|
|
|
ALLOWED_REFERRERS = {
|
|
f'{SITE_FULL}/chat',
|
|
f'{SITE_FULL}/notifications/messages',
|
|
}
|
|
|
|
messages = cache.get(f'messages') or {
|
|
f'{SITE_FULL}/chat': {},
|
|
}
|
|
typing = {
|
|
f'{SITE_FULL}/chat': [],
|
|
}
|
|
online = {
|
|
f'{SITE_FULL}/chat': [],
|
|
}
|
|
|
|
cache.set('loggedin_chat', len(online[f'{SITE_FULL}/chat']), timeout=0)
|
|
|
|
def auth_required_socketio(f):
|
|
def wrapper(*args, **kwargs):
|
|
v = get_logged_in_user()
|
|
if not v: return '', 401
|
|
if v.is_permabanned: return '', 403
|
|
return make_response(f(*args, v=v, **kwargs))
|
|
wrapper.__name__ = f.__name__
|
|
return wrapper
|
|
|
|
def is_not_banned_socketio(f):
|
|
def wrapper(*args, **kwargs):
|
|
v = get_logged_in_user()
|
|
if not v: return '', 401
|
|
if v.is_suspended: return '', 403
|
|
return make_response(f(*args, v=v, **kwargs))
|
|
wrapper.__name__ = f.__name__
|
|
return wrapper
|
|
|
|
CHAT_ERROR_MESSAGE = f"To prevent spam, you'll need {TRUESCORE_CC_CHAT_MINIMUM} truescore (this is {TRUESCORE_CC_CHAT_MINIMUM} votes, either up or down, on any threads or comments you've made) in order to access chat. Sorry! I love you 💖"
|
|
|
|
@app.post('/refresh_chat')
|
|
def refresh_chat():
|
|
emit('refresh_chat', namespace='/', to=f'{SITE_FULL}/chat')
|
|
return ''
|
|
|
|
@app.get("/chat")
|
|
@limiter.limit(DEFAULT_RATELIMIT, deduct_when=lambda response: response.status_code < 400)
|
|
@limiter.limit(DEFAULT_RATELIMIT, deduct_when=lambda response: response.status_code < 400, key_func=get_ID)
|
|
@auth_required
|
|
def chat(v):
|
|
if not v.allowed_in_chat:
|
|
abort(403, CHAT_ERROR_MESSAGE)
|
|
|
|
displayed_messages = {k: val for k, val in messages[f"{SITE_FULL}/chat"].items() if val["user_id"] not in v.userblocks}
|
|
|
|
orgy = get_orgy(v)
|
|
if orgy:
|
|
m = md5()
|
|
with open('files/assets/subtitles.vtt', "rb") as f:
|
|
data = f.read()
|
|
m.update(data)
|
|
subtitles_hash = m.hexdigest()
|
|
|
|
return render_template("orgy.html", v=v, messages=displayed_messages, orgy=orgy, subtitles_hash=subtitles_hash)
|
|
|
|
return render_template("chat.html", v=v, messages=displayed_messages)
|
|
|
|
@socketio.on('speak')
|
|
@is_not_banned_socketio
|
|
def speak(data, v):
|
|
if request.referrer not in ALLOWED_REFERRERS:
|
|
return '', 400
|
|
|
|
image = None
|
|
if data['file']:
|
|
name = f'/chat_images/{time.time()}'.replace('.','') + '.webp'
|
|
with open(name, 'wb') as f:
|
|
f.write(data['file'])
|
|
image = process_image(name, v)
|
|
|
|
if not v.allowed_in_chat:
|
|
return '', 403
|
|
|
|
global messages
|
|
|
|
text = data['message'][:CHAT_LENGTH_LIMIT]
|
|
if image: text += f'\n\n{image}'
|
|
if not text: return '', 400
|
|
|
|
text_html = sanitize(text, count_emojis=True, chat=True)
|
|
if isinstance(text_html , tuple):
|
|
return text_html
|
|
|
|
quotes = data['quotes']
|
|
id = str(uuid.uuid4())
|
|
|
|
self_only = False
|
|
|
|
vname = v.username.lower()
|
|
if vname in muted:
|
|
if time.time() < muted[vname]:
|
|
self_only = True
|
|
else:
|
|
del muted[vname]
|
|
emit("online", [online[request.referrer], muted], room=request.referrer, broadcast=True)
|
|
|
|
if SITE == 'rdrama.net' and v.admin_level < PERMS['BYPASS_ANTISPAM_CHECKS']:
|
|
def shut_up():
|
|
self_only = True
|
|
muted_until = int(time.time() + 600)
|
|
muted[vname] = muted_until
|
|
emit("online", [online[request.referrer], muted], room=request.referrer, broadcast=True)
|
|
|
|
if not self_only:
|
|
identical = [x for x in list(messages[request.referrer].values())[-5:] if v.id == x['user_id'] and text == x['text']]
|
|
if len(identical) >= 3: shut_up()
|
|
|
|
if not self_only:
|
|
count = len([x for x in list(messages[request.referrer].values())[-12:] if v.id == x['user_id']])
|
|
if count >= 10: shut_up()
|
|
|
|
if not self_only:
|
|
count = len([x for x in list(messages[request.referrer].values())[-25:] if v.id == x['user_id']])
|
|
if count >= 20: shut_up()
|
|
|
|
data = {
|
|
"id": id,
|
|
"quotes": quotes if messages[request.referrer].get(quotes) else '',
|
|
"hat": v.hat_active(v)[0],
|
|
"user_id": v.id,
|
|
"username": v.username,
|
|
"namecolor": v.name_color,
|
|
"patron": v.patron,
|
|
"text": text,
|
|
"text_censored": censor_slurs_profanities(text, 'chat', True),
|
|
"text_html": text_html,
|
|
"text_html_censored": censor_slurs_profanities(text_html, 'chat'),
|
|
"time": int(time.time()),
|
|
}
|
|
|
|
|
|
if v.admin_level >= PERMS['USER_BAN']:
|
|
text = text.lower()
|
|
for i in mute_regex.finditer(text):
|
|
username = i.group(1).lower()
|
|
muted_until = int(int(i.group(2)) * 60 + time.time())
|
|
muted[username] = muted_until
|
|
emit("online", [online[request.referrer], muted], room=request.referrer, broadcast=True)
|
|
self_only = True
|
|
|
|
if self_only or v.shadowbanned or execute_blackjack(v, None, text, "chat"):
|
|
emit('speak', data)
|
|
else:
|
|
emit('speak', data, room=request.referrer, broadcast=True)
|
|
messages[request.referrer][id] = data
|
|
messages[request.referrer] = dict(list(messages[request.referrer].items())[-250:])
|
|
|
|
typing = []
|
|
|
|
return ''
|
|
|
|
def refresh_online():
|
|
emit("online", [online[request.referrer], muted], room=request.referrer, broadcast=True)
|
|
cache.set('loggedin_chat', len(online[f'{SITE_FULL}/chat']), timeout=0)
|
|
|
|
@socketio.on('connect')
|
|
@auth_required_socketio
|
|
def connect(v):
|
|
if request.referrer not in ALLOWED_REFERRERS:
|
|
return '', 400
|
|
|
|
if request.referrer == f'{SITE_FULL}/notifications/messages':
|
|
join_room(v.id)
|
|
return ''
|
|
|
|
join_room(request.referrer)
|
|
|
|
if [v.username, v.id, v.name_color, v.patron] not in online[request.referrer]:
|
|
for val in online.values():
|
|
if [v.username, v.id, v.name_color, v.patron] in val:
|
|
val.remove([v.username, v.id, v.name_color, v.patron])
|
|
|
|
if [v.username, v.id, v.name_color, v.patron] not in online[request.referrer]:
|
|
online[request.referrer].append([v.username, v.id, v.name_color, v.patron])
|
|
|
|
refresh_online()
|
|
|
|
emit('typing', typing[request.referrer], room=request.referrer)
|
|
return ''
|
|
|
|
@socketio.on('disconnect')
|
|
@auth_required_socketio
|
|
def disconnect(v):
|
|
if request.referrer not in ALLOWED_REFERRERS:
|
|
return '', 400
|
|
|
|
if request.referrer == f'{SITE_FULL}/notifications/messages':
|
|
leave_room(v.id)
|
|
return ''
|
|
|
|
leave_room(request.referrer)
|
|
|
|
for val in online.values():
|
|
if [v.username, v.id, v.name_color, v.patron] in val:
|
|
val.remove([v.username, v.id, v.name_color, v.patron])
|
|
|
|
for val in typing.values():
|
|
if v.username in val:
|
|
val.remove(v.username)
|
|
|
|
refresh_online()
|
|
|
|
return ''
|
|
|
|
@socketio.on('typing')
|
|
@is_not_banned_socketio
|
|
def typing_indicator(data, v):
|
|
if request.referrer not in ALLOWED_REFERRERS:
|
|
return '', 400
|
|
|
|
if data and v.username not in typing[request.referrer]:
|
|
typing[request.referrer].append(v.username)
|
|
elif not data and v.username in typing[request.referrer]:
|
|
typing[request.referrer].remove(v.username)
|
|
|
|
emit('typing', typing[request.referrer], room=request.referrer, broadcast=True)
|
|
return ''
|
|
|
|
|
|
@socketio.on('delete')
|
|
@admin_level_required(PERMS['POST_COMMENT_MODERATION'])
|
|
def delete(id, v):
|
|
if request.referrer not in ALLOWED_REFERRERS:
|
|
return '', 400
|
|
|
|
for k, val in messages[request.referrer].items():
|
|
if k == id:
|
|
del messages[request.referrer][k]
|
|
break
|
|
|
|
emit('delete', id, room=request.referrer, broadcast=True)
|
|
|
|
return ''
|
|
|
|
|
|
def close_running_threads():
|
|
cache.set('messages', messages)
|
|
cache.set('muted', muted)
|
|
atexit.register(close_running_threads)
|
|
|
|
|
|
@app.post("/reply")
|
|
@limiter.limit('1/second', scope=rpath)
|
|
@limiter.limit('1/second', scope=rpath, key_func=get_ID)
|
|
@limiter.limit("6/minute;50/hour;200/day", deduct_when=lambda response: response.status_code < 400)
|
|
@limiter.limit("6/minute;50/hour;200/day", deduct_when=lambda response: response.status_code < 400, key_func=get_ID)
|
|
@auth_required
|
|
def messagereply(v):
|
|
body = request.values.get("body", "")
|
|
body = body[:COMMENT_BODY_LENGTH_LIMIT].strip()
|
|
|
|
id = request.values.get("parent_id")
|
|
parent = get_comment(id, v=v)
|
|
|
|
if parent.parent_post or parent.wall_user_id:
|
|
abort(403, "You can only reply to messages!")
|
|
|
|
user_id = parent.author.id
|
|
|
|
if v.is_permabanned and parent.sentto != MODMAIL_ID:
|
|
abort(403, "You are permabanned and may not reply to messages!")
|
|
elif v.is_muted and parent.sentto == MODMAIL_ID:
|
|
abort(403, "You are forbidden from replying to modmail!")
|
|
|
|
if parent.sentto == MODMAIL_ID: user_id = None
|
|
elif v.id == user_id: user_id = parent.sentto
|
|
|
|
user = None
|
|
|
|
if user_id:
|
|
user = get_account(user_id, v=v, include_blocks=True)
|
|
if hasattr(user, 'is_blocking') and user.is_blocking:
|
|
abort(403, f"You're blocking @{user.username}")
|
|
elif (v.admin_level <= PERMS['MESSAGE_BLOCKED_USERS']
|
|
and hasattr(user, 'is_blocked') and user.is_blocked):
|
|
abort(403, f"You're blocked by @{user.username}")
|
|
|
|
if user.has_muted(v):
|
|
abort(403, f"@{user.username} is muting notifications from you, so messaging them is pointless!")
|
|
|
|
if not g.is_tor and get_setting("dm_media"):
|
|
body = process_files(request.files, v, body, is_dm=True, dm_user=user)
|
|
body = body[:COMMENT_BODY_LENGTH_LIMIT].strip() #process_files potentially adds characters to the post
|
|
|
|
if not body: abort(400, "Message is empty!")
|
|
|
|
body_html = sanitize(body)
|
|
|
|
if len(body_html) > COMMENT_BODY_HTML_LENGTH_LIMIT:
|
|
abort(400, "Message too long!")
|
|
|
|
if parent.sentto == MODMAIL_ID:
|
|
sentto = MODMAIL_ID
|
|
else:
|
|
sentto = user_id
|
|
|
|
c = Comment(author_id=v.id,
|
|
parent_post=None,
|
|
parent_comment_id=id,
|
|
top_comment_id=parent.top_comment_id,
|
|
level=parent.level + 1,
|
|
sentto=sentto,
|
|
body=body,
|
|
body_html=body_html,
|
|
)
|
|
g.db.add(c)
|
|
g.db.flush()
|
|
execute_blackjack(v, c, c.body_html, 'message')
|
|
execute_under_siege(v, c, c.body_html, 'message')
|
|
|
|
if user_id and user_id not in {v.id, MODMAIL_ID} | BOT_IDs:
|
|
notif = g.db.query(Notification).filter_by(comment_id=c.id, user_id=user_id).one_or_none()
|
|
if not notif:
|
|
notif = Notification(comment_id=c.id, user_id=user_id)
|
|
g.db.add(notif)
|
|
|
|
title = f'New message from @{c.author_name}'
|
|
|
|
url = f'{SITE_FULL}/notifications/messages'
|
|
|
|
push_notif({user_id}, title, body, url)
|
|
|
|
top_comment = c.top_comment
|
|
|
|
if top_comment.sentto == MODMAIL_ID:
|
|
admin_ids = [x[0] for x in g.db.query(User.id).filter(User.admin_level >= PERMS['NOTIFICATIONS_MODMAIL'], User.id != v.id)]
|
|
|
|
if SITE == 'watchpeopledie.tv':
|
|
if AEVANN_ID in admin_ids:
|
|
admin_ids.remove(AEVANN_ID)
|
|
if 'delete' in top_comment.body.lower() and 'account' in top_comment.body.lower():
|
|
admin_ids.remove(15447)
|
|
|
|
if parent.author.id not in admin_ids + [v.id]:
|
|
admin_ids.append(parent.author.id)
|
|
|
|
#Don't delete unread notifications, so the replies don't get collapsed and they get highlighted
|
|
ids = [top_comment.id] + [x.id for x in top_comment.replies(sort="old")]
|
|
notifications = g.db.query(Notification).filter(Notification.read == True, Notification.comment_id.in_(ids), Notification.user_id.in_(admin_ids))
|
|
for n in notifications:
|
|
g.db.delete(n)
|
|
|
|
for admin in admin_ids:
|
|
notif = Notification(comment_id=c.id, user_id=admin)
|
|
g.db.add(notif)
|
|
else:
|
|
c.unread = True
|
|
rendered = render_template("comments.html", v=get_account(top_comment.sentto), comments=[c])
|
|
emit('insert_reply', [parent.id, rendered], namespace='/', to=top_comment.sentto)
|
|
|
|
return {"comment": render_template("comments.html", v=v, comments=[c])}
|