mirror of https://gitlab.com/litecord/litecord.git
488 lines
14 KiB
Python
488 lines
14 KiB
Python
"""
|
|
|
|
Litecord
|
|
Copyright (C) 2018-2021 Luna Mendes and Litecord Contributors
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, version 3 of the License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
"""
|
|
|
|
from pathlib import Path
|
|
from typing import Optional, List
|
|
|
|
from quart import Blueprint, request, current_app as app, jsonify
|
|
from logbook import Logger
|
|
|
|
from litecord.blueprints.auth import token_check
|
|
from litecord.blueprints.checks import channel_check, channel_perm_check
|
|
from litecord.errors import MessageNotFound, Forbidden
|
|
from litecord.enums import MessageType, ChannelType, GUILD_CHANS
|
|
|
|
from litecord.schemas import validate, MESSAGE_CREATE
|
|
from litecord.utils import query_tuple_from_args, extract_limit
|
|
from litecord.json import pg_set_json
|
|
from litecord.permissions import get_permissions
|
|
|
|
from litecord.embed.sanitizer import fill_embed
|
|
from litecord.embed.messages import process_url_embed
|
|
from litecord.common.channels import dm_pre_check, try_dm_state
|
|
from litecord.images import try_unlink
|
|
from litecord.common.messages import (
|
|
msg_create_request,
|
|
msg_create_check_content,
|
|
msg_add_attachment,
|
|
msg_guild_text_mentions,
|
|
message_view,
|
|
)
|
|
from litecord.pubsub.user import dispatch_user
|
|
|
|
|
|
log = Logger(__name__)
|
|
bp = Blueprint("channel_messages", __name__)
|
|
|
|
|
|
async def message_search(
|
|
channel_id: int,
|
|
before: Optional[int],
|
|
after: Optional[int],
|
|
limit: int,
|
|
order: str = "DESC",
|
|
) -> List[int]:
|
|
where_clause = ""
|
|
if before:
|
|
where_clause += f"AND id < {before}"
|
|
|
|
if after:
|
|
where_clause += f"AND id > {after}"
|
|
|
|
return [
|
|
row["id"]
|
|
for row in await app.db.fetch(
|
|
f"""
|
|
SELECT id
|
|
FROM messages
|
|
WHERE channel_id = $1 {where_clause}
|
|
ORDER BY id {order}
|
|
LIMIT {limit}
|
|
""",
|
|
channel_id,
|
|
)
|
|
]
|
|
|
|
|
|
async def around_message_search(
|
|
channel_id: int,
|
|
around_id: int,
|
|
limit: int,
|
|
) -> List[int]:
|
|
# search limit/2 messages BEFORE around_id
|
|
# search limit/2 messages AFTER around_id
|
|
# merge it all together: before + [around_id] + after
|
|
halved_limit = limit // 2
|
|
before_messages = await message_search(
|
|
channel_id, before=around_id, after=None, limit=halved_limit, order="DESC"
|
|
)
|
|
after_messages = await message_search(
|
|
channel_id, before=None, after=around_id, limit=halved_limit, order="ASC"
|
|
)
|
|
return list(reversed(before_messages)) + [around_id] + after_messages
|
|
|
|
|
|
@bp.route("/<int:channel_id>/messages", methods=["GET"])
|
|
async def get_messages(channel_id):
|
|
user_id = await token_check()
|
|
|
|
ctype, peer_id = await channel_check(user_id, channel_id)
|
|
await channel_perm_check(user_id, channel_id, "read_history")
|
|
|
|
if ctype == ChannelType.DM:
|
|
# make sure both parties will be subbed
|
|
# to a dm
|
|
await _dm_pre_dispatch(channel_id, user_id)
|
|
await _dm_pre_dispatch(channel_id, peer_id)
|
|
|
|
limit = extract_limit(request, 50)
|
|
|
|
if "around" in request.args:
|
|
message_ids = await around_message_search(
|
|
channel_id, int(request.args["around"]), limit
|
|
)
|
|
else:
|
|
before, after = query_tuple_from_args(request.args, limit)
|
|
message_ids = await message_search(
|
|
channel_id, before=before, after=after, limit=limit
|
|
)
|
|
|
|
result = []
|
|
|
|
for message_id in message_ids:
|
|
msg = await app.storage.get_message(message_id, user_id)
|
|
|
|
if msg is None:
|
|
continue
|
|
|
|
result.append(message_view(msg))
|
|
|
|
log.info("Fetched {} messages", len(result))
|
|
return jsonify(result)
|
|
|
|
|
|
@bp.route("/<int:channel_id>/messages/<int:message_id>", methods=["GET"])
|
|
async def get_single_message(channel_id, message_id):
|
|
user_id = await token_check()
|
|
await channel_check(user_id, channel_id)
|
|
await channel_perm_check(user_id, channel_id, "read_history")
|
|
|
|
message = await app.storage.get_message(message_id, user_id)
|
|
|
|
if not message:
|
|
raise MessageNotFound()
|
|
|
|
return jsonify(message_view(message))
|
|
|
|
|
|
async def _dm_pre_dispatch(channel_id, peer_id):
|
|
"""Do some checks pre-MESSAGE_CREATE so we
|
|
make sure the receiving party will handle everything."""
|
|
|
|
# check the other party's dm_channel_state
|
|
|
|
dm_state = await app.db.fetchval(
|
|
"""
|
|
SELECT dm_id
|
|
FROM dm_channel_state
|
|
WHERE user_id = $1 AND dm_id = $2
|
|
""",
|
|
peer_id,
|
|
channel_id,
|
|
)
|
|
|
|
if dm_state:
|
|
# the peer already has the channel
|
|
# opened, so we don't need to do anything
|
|
return
|
|
|
|
dm_chan = await app.storage.get_channel(channel_id)
|
|
|
|
# dispatch CHANNEL_CREATE so the client knows which
|
|
# channel the future event is about
|
|
await dispatch_user(peer_id, ("CHANNEL_CREATE", dm_chan))
|
|
|
|
# subscribe the peer to the channel
|
|
await app.dispatcher.channel.sub(channel_id, peer_id)
|
|
|
|
# insert it on dm_channel_state so the client
|
|
# is subscribed on the future
|
|
await try_dm_state(peer_id, channel_id)
|
|
|
|
|
|
async def create_message(
|
|
channel_id: int, actual_guild_id: Optional[int], author_id: int, data: dict
|
|
) -> int:
|
|
message_id = app.winter_factory.snowflake()
|
|
|
|
async with app.db.acquire() as conn:
|
|
await pg_set_json(conn)
|
|
|
|
await conn.execute(
|
|
"""
|
|
INSERT INTO messages (id, channel_id, guild_id, author_id,
|
|
content, tts, mention_everyone, nonce, message_type,
|
|
embeds, message_reference, allowed_mentions)
|
|
VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12)
|
|
""",
|
|
message_id,
|
|
channel_id,
|
|
actual_guild_id,
|
|
author_id,
|
|
data["content"],
|
|
data["tts"],
|
|
data["everyone_mention"],
|
|
data["nonce"],
|
|
MessageType.DEFAULT.value,
|
|
data.get("embeds") or [],
|
|
data.get("message_reference") or None,
|
|
data.get("allowed_mentions") or None,
|
|
)
|
|
|
|
return message_id
|
|
|
|
|
|
async def _spawn_embed(payload, **kwargs):
|
|
app.sched.spawn(process_url_embed(payload, **kwargs))
|
|
|
|
|
|
@bp.route("/<int:channel_id>/messages", methods=["POST"])
|
|
async def _create_message(channel_id):
|
|
"""Create a message."""
|
|
|
|
user_id = await token_check()
|
|
ctype, guild_id = await channel_check(user_id, channel_id)
|
|
|
|
actual_guild_id: Optional[int] = None
|
|
|
|
if ctype in GUILD_CHANS:
|
|
await channel_perm_check(user_id, channel_id, "send_messages")
|
|
actual_guild_id = guild_id
|
|
|
|
payload_json, files = await msg_create_request()
|
|
j = validate(payload_json, MESSAGE_CREATE)
|
|
|
|
msg_create_check_content(payload_json, files)
|
|
|
|
# TODO: check connection to the gateway
|
|
|
|
if ctype == ChannelType.DM:
|
|
# guild_id is the dm's peer_id
|
|
await dm_pre_check(user_id, channel_id, guild_id)
|
|
|
|
can_everyone = await channel_perm_check(
|
|
user_id, channel_id, "mention_everyone", False
|
|
)
|
|
|
|
mentions_everyone = ("@everyone" in j["content"]) and can_everyone
|
|
mentions_here = ("@here" in j["content"]) and can_everyone
|
|
|
|
is_tts = j.get("tts", False) and await channel_perm_check(
|
|
user_id, channel_id, "send_tts_messages", False
|
|
)
|
|
|
|
message_id = await create_message(
|
|
channel_id,
|
|
actual_guild_id,
|
|
user_id,
|
|
{
|
|
"content": j["content"],
|
|
"tts": is_tts,
|
|
"nonce": int(j.get("nonce", 0)),
|
|
"everyone_mention": mentions_everyone or mentions_here,
|
|
# fill_embed takes care of filling proxy and width/height
|
|
"embeds": (
|
|
[await fill_embed(j["embed"])] if j.get("embed") is not None else []
|
|
),
|
|
"message_reference": j.get("message_reference"),
|
|
"allowed_mentions": j.get("allowed_mentions"),
|
|
},
|
|
)
|
|
|
|
# for each file given, we add it as an attachment
|
|
for pre_attachment in files:
|
|
await msg_add_attachment(message_id, channel_id, pre_attachment)
|
|
|
|
payload = await app.storage.get_message(message_id, user_id)
|
|
|
|
if ctype == ChannelType.DM:
|
|
# guild id here is the peer's ID.
|
|
await _dm_pre_dispatch(channel_id, user_id)
|
|
await _dm_pre_dispatch(channel_id, guild_id)
|
|
|
|
await app.dispatcher.channel.dispatch(channel_id, ("MESSAGE_CREATE", payload))
|
|
|
|
# spawn url processor for embedding of images
|
|
perms = await get_permissions(user_id, channel_id)
|
|
if perms.bits.embed_links:
|
|
await _spawn_embed(payload)
|
|
|
|
# update read state for the author
|
|
await app.db.execute(
|
|
"""
|
|
UPDATE user_read_state
|
|
SET last_message_id = $1
|
|
WHERE channel_id = $2 AND user_id = $3
|
|
""",
|
|
message_id,
|
|
channel_id,
|
|
user_id,
|
|
)
|
|
|
|
if ctype == ChannelType.GUILD_TEXT:
|
|
await msg_guild_text_mentions(
|
|
payload, guild_id, mentions_everyone, mentions_here
|
|
)
|
|
|
|
return jsonify(message_view(payload))
|
|
|
|
|
|
@bp.route("/<int:channel_id>/messages/<int:message_id>", methods=["PATCH"])
|
|
async def edit_message(channel_id, message_id):
|
|
user_id = await token_check()
|
|
_ctype, _guild_id = await channel_check(user_id, channel_id)
|
|
|
|
author_id = await app.db.fetchval(
|
|
"""
|
|
SELECT author_id FROM messages
|
|
WHERE messages.id = $1
|
|
""",
|
|
message_id,
|
|
)
|
|
|
|
if not author_id == user_id:
|
|
raise Forbidden("You can not edit this message")
|
|
|
|
j = await request.get_json()
|
|
updated = "content" in j or "embed" in j
|
|
old_message = await app.storage.get_message(message_id)
|
|
|
|
if "content" in j:
|
|
await app.db.execute(
|
|
"""
|
|
UPDATE messages
|
|
SET content=$1
|
|
WHERE messages.id = $2
|
|
""",
|
|
j["content"],
|
|
message_id,
|
|
)
|
|
|
|
if "embed" in j:
|
|
embeds = [await fill_embed(j["embed"])]
|
|
|
|
await app.db.execute(
|
|
"""
|
|
UPDATE messages
|
|
SET embeds=$1
|
|
WHERE messages.id = $2
|
|
""",
|
|
embeds,
|
|
message_id,
|
|
)
|
|
|
|
# do not spawn process_url_embed since we already have embeds.
|
|
elif "content" in j:
|
|
# if there weren't any embed changes BUT
|
|
# we had a content change, we dispatch process_url_embed but with
|
|
# an artificial delay.
|
|
|
|
# the artificial delay keeps consistency between the events, since
|
|
# it makes more sense for the MESSAGE_UPDATE with new content to come
|
|
# BEFORE the MESSAGE_UPDATE with the new embeds (based on content)
|
|
perms = await get_permissions(user_id, channel_id)
|
|
if perms.bits.embed_links:
|
|
await _spawn_embed(
|
|
{
|
|
"id": message_id,
|
|
"channel_id": channel_id,
|
|
"content": j["content"],
|
|
"embeds": old_message["embeds"],
|
|
},
|
|
delay=0.2,
|
|
)
|
|
|
|
# only set new timestamp upon actual update
|
|
if updated:
|
|
await app.db.execute(
|
|
"""
|
|
UPDATE messages
|
|
SET edited_at = (now() at time zone 'utc')
|
|
WHERE id = $1
|
|
""",
|
|
message_id,
|
|
)
|
|
|
|
message = await app.storage.get_message(message_id, user_id)
|
|
|
|
# only dispatch MESSAGE_UPDATE if any update
|
|
# actually happened
|
|
if updated:
|
|
await app.dispatcher.channel.dispatch(channel_id, ("MESSAGE_UPDATE", message))
|
|
|
|
return jsonify(message_view(message))
|
|
|
|
|
|
async def _del_msg_fkeys(message_id: int):
|
|
attachs = await app.db.fetch(
|
|
"""
|
|
SELECT id FROM attachments
|
|
WHERE message_id = $1
|
|
""",
|
|
message_id,
|
|
)
|
|
|
|
attachs = [r["id"] for r in attachs]
|
|
|
|
attachments = Path("./attachments")
|
|
for attach_id in attachs:
|
|
# anything starting with the given attachment shall be
|
|
# deleted, because there may be resizes of the original
|
|
# attachment laying around.
|
|
for filepath in attachments.glob(f"{attach_id}*"):
|
|
try_unlink(filepath)
|
|
|
|
# after trying to delete all available attachments, delete
|
|
# them from the database.
|
|
|
|
# take the chance and delete all the data from the other tables too!
|
|
|
|
tables = [
|
|
"attachments",
|
|
"message_webhook_info",
|
|
"message_reactions",
|
|
"channel_pins",
|
|
]
|
|
|
|
for table in tables:
|
|
await app.db.execute(
|
|
f"""
|
|
DELETE FROM {table}
|
|
WHERE message_id = $1
|
|
""",
|
|
message_id,
|
|
)
|
|
|
|
|
|
@bp.route("/<int:channel_id>/messages/<int:message_id>", methods=["DELETE"])
|
|
async def delete_message(channel_id, message_id):
|
|
user_id = await token_check()
|
|
_ctype, guild_id = await channel_check(user_id, channel_id)
|
|
|
|
author_id = await app.db.fetchval(
|
|
"""
|
|
SELECT author_id FROM messages
|
|
WHERE messages.id = $1
|
|
""",
|
|
message_id,
|
|
)
|
|
|
|
by_perm = await channel_perm_check(user_id, channel_id, "manage_messages", False)
|
|
|
|
by_ownership = author_id == user_id
|
|
|
|
can_delete = by_perm or by_ownership
|
|
if not can_delete:
|
|
raise Forbidden("You can not delete this message")
|
|
|
|
await _del_msg_fkeys(message_id)
|
|
|
|
await app.db.execute(
|
|
"""
|
|
DELETE FROM messages
|
|
WHERE messages.id = $1
|
|
""",
|
|
message_id,
|
|
)
|
|
|
|
await app.dispatcher.channel.dispatch(
|
|
channel_id,
|
|
(
|
|
"MESSAGE_DELETE",
|
|
{
|
|
"id": str(message_id),
|
|
"channel_id": str(channel_id),
|
|
# for lazy guilds
|
|
"guild_id": str(guild_id),
|
|
},
|
|
),
|
|
)
|
|
|
|
return "", 204
|