forked from MarseyWorld/MarseyWorld
186 lines
4.8 KiB
Python
186 lines
4.8 KiB
Python
import atexit
|
|
import time
|
|
import uuid
|
|
|
|
from flask_socketio import SocketIO, emit
|
|
|
|
from files.helpers.actions import *
|
|
from files.helpers.alerts import *
|
|
from files.helpers.config.const import *
|
|
from files.helpers.regex import *
|
|
from files.helpers.sanitize import sanitize
|
|
from files.helpers.alerts import push_notif
|
|
from files.routes.wrappers import *
|
|
|
|
from files.__main__ import app, cache, limiter
|
|
|
|
if IS_LOCALHOST:
|
|
socketio = SocketIO(
|
|
app,
|
|
async_mode='gevent',
|
|
logger=True,
|
|
engineio_logger=True,
|
|
debug=True
|
|
)
|
|
else:
|
|
socketio = SocketIO(
|
|
app,
|
|
async_mode='gevent',
|
|
)
|
|
|
|
typing = []
|
|
online = []
|
|
cache.set(CHAT_ONLINE_CACHE_KEY, len(online), timeout=0)
|
|
muted = cache.get(f'{SITE}_muted') or {}
|
|
messages = cache.get(f'{SITE}_chat') or []
|
|
total = cache.get(f'{SITE}_total') or 0
|
|
socket_ids_to_user_ids = {}
|
|
user_ids_to_socket_ids = {}
|
|
|
|
@app.get("/chat")
|
|
@admin_level_required(PERMS['CHAT'])
|
|
def chat(v):
|
|
if not v.admin_level and TRUESCORE_CHAT_MINIMUM and v.truescore < TRUESCORE_CHAT_MINIMUM:
|
|
abort(403, f"Need at least {TRUESCORE_CHAT_MINIMUM} truescore for access to chat.")
|
|
return render_template("chat.html", v=v, messages=messages)
|
|
|
|
|
|
@socketio.on('speak')
|
|
@limiter.limit("3/second;10/minute")
|
|
@limiter.limit("3/second;10/minute", key_func=lambda:f'{request.host}-{session.get("lo_user")}')
|
|
@admin_level_required(PERMS['CHAT'])
|
|
def speak(data, v):
|
|
limiter.check()
|
|
if v.is_banned: return '', 403
|
|
if TRUESCORE_CHAT_MINIMUM and v.truescore < TRUESCORE_CHAT_MINIMUM:
|
|
return '', 403
|
|
|
|
vname = v.username.lower()
|
|
if vname in muted and not v.admin_level >= PERMS['CHAT_BYPASS_MUTE']:
|
|
if time.time() < muted[vname]: return '', 403
|
|
else: del muted[vname]
|
|
|
|
global messages, total
|
|
|
|
text = sanitize_raw_body(data['message'], False)[:CHAT_LENGTH_LIMIT]
|
|
if not text: return '', 400
|
|
|
|
text_html = sanitize(text, count_marseys=True)
|
|
quotes = data['quotes']
|
|
recipient = data['recipient']
|
|
data = {
|
|
"id": str(uuid.uuid4()),
|
|
"quotes": quotes,
|
|
"avatar": v.profile_url,
|
|
"hat": v.hat_active(v)[0],
|
|
"user_id": v.id,
|
|
"dm": bool(recipient and recipient != ""),
|
|
"username": v.username,
|
|
"namecolor": v.name_color,
|
|
"text": text,
|
|
"text_html": text_html,
|
|
"base_text_censored": censor_slurs(text, 'chat'),
|
|
"text_censored": censor_slurs(text_html, 'chat'),
|
|
"time": int(time.time()),
|
|
}
|
|
|
|
if v.shadowbanned or not execute_blackjack(v, None, text, "chat"):
|
|
emit('speak', data)
|
|
elif recipient:
|
|
if user_ids_to_socket_ids.get(recipient):
|
|
recipient_sid = user_ids_to_socket_ids[recipient]
|
|
emit('speak', data, broadcast=False, to=recipient_sid)
|
|
else:
|
|
emit('speak', data, broadcast=True)
|
|
messages.append(data)
|
|
messages = messages[-500:]
|
|
|
|
total += 1
|
|
|
|
if v.admin_level >= PERMS['USER_BAN']:
|
|
text = text.lower()
|
|
for i in mute_regex.finditer(text):
|
|
username = i.group(1).lower()
|
|
duration = int(int(i.group(2)) * 60 + time.time())
|
|
muted[username] = duration
|
|
|
|
typing = []
|
|
|
|
if SITE == 'rdrama.net':
|
|
title = f'New chat message from @{v.username}'
|
|
notifbody = text
|
|
url = f'{SITE_FULL}/chat'
|
|
|
|
admin_ids = [x[0] for x in g.db.query(User.id).filter(
|
|
User.id != v.id,
|
|
User.admin_level >= PERMS['CHAT'],
|
|
).all()]
|
|
|
|
push_notif(admin_ids, title, notifbody, url)
|
|
|
|
return '', 204
|
|
|
|
@socketio.on('connect')
|
|
@admin_level_required(PERMS['CHAT'])
|
|
def connect(v):
|
|
if v.username not in online:
|
|
online.append(v.username)
|
|
emit("online", online, broadcast=True)
|
|
cache.set(CHAT_ONLINE_CACHE_KEY, len(online), timeout=0)
|
|
|
|
if not socket_ids_to_user_ids.get(request.sid):
|
|
socket_ids_to_user_ids[request.sid] = v.id
|
|
user_ids_to_socket_ids[v.id] = request.sid
|
|
|
|
emit('online', online)
|
|
emit('catchup', messages)
|
|
emit('typing', typing)
|
|
return '', 204
|
|
|
|
@socketio.on('disconnect')
|
|
@admin_level_required(PERMS['CHAT'])
|
|
def disconnect(v):
|
|
if v.username in online:
|
|
online.remove(v.username)
|
|
emit("online", online, broadcast=True)
|
|
cache.set(CHAT_ONLINE_CACHE_KEY, len(online), timeout=0)
|
|
|
|
if v.username in typing: typing.remove(v.username)
|
|
|
|
if socket_ids_to_user_ids.get(request.sid):
|
|
del socket_ids_to_user_ids[request.sid]
|
|
del user_ids_to_socket_ids[v.id]
|
|
|
|
emit('typing', typing, broadcast=True)
|
|
return '', 204
|
|
|
|
@socketio.on('typing')
|
|
@admin_level_required(PERMS['CHAT'])
|
|
def typing_indicator(data, v):
|
|
|
|
if data and v.username not in typing: typing.append(v.username)
|
|
elif not data and v.username in typing: typing.remove(v.username)
|
|
|
|
emit('typing', typing, broadcast=True)
|
|
return '', 204
|
|
|
|
|
|
@socketio.on('delete')
|
|
@admin_level_required(PERMS['POST_COMMENT_MODERATION'])
|
|
def delete(text, v):
|
|
|
|
for message in messages:
|
|
if message['text'] == text:
|
|
messages.remove(message)
|
|
|
|
emit('delete', text, broadcast=True)
|
|
|
|
return '', 204
|
|
|
|
|
|
def close_running_threads():
|
|
cache.set(f'{SITE}_chat', messages)
|
|
cache.set(f'{SITE}_total', total)
|
|
cache.set(f'{SITE}_muted', muted)
|
|
atexit.register(close_running_threads)
|