1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2024-06-16 00:48:28 +02:00
conduit/src/api/client_server/report.rs

70 lines
2.4 KiB
Rust
Raw Normal View History

2022-10-05 20:34:31 +02:00
use crate::{services, utils::HtmlEscape, Error, Result, Ruma};
use ruma::{
2022-02-18 15:33:14 +01:00
api::client::{error::ErrorKind, room::report_content},
events::room::message,
2021-11-27 16:04:19 +01:00
int,
};
/// # `POST /_matrix/client/r0/rooms/{roomId}/report/{eventId}`
///
/// Reports an inappropriate event to homeserver admins
///
pub async fn report_event_route(
2022-12-14 13:09:10 +01:00
body: Ruma<report_content::v3::Request>,
2022-02-18 15:33:14 +01:00
) -> Result<report_content::v3::Response> {
let sender_user = body.sender_user.as_ref().expect("user is authenticated");
2022-10-05 09:34:25 +02:00
let pdu = match services().rooms.timeline.get_pdu(&body.event_id)? {
Some(pdu) => pdu,
_ => {
return Err(Error::BadRequest(
ErrorKind::InvalidParam,
"Invalid Event ID",
))
}
};
2022-03-05 03:16:21 +01:00
if let Some(true) = body.score.map(|s| s > int!(0) || s < int!(-100)) {
return Err(Error::BadRequest(
ErrorKind::InvalidParam,
"Invalid score, must be within 0 to -100",
));
};
2022-03-05 03:16:21 +01:00
if let Some(true) = body.reason.clone().map(|s| s.chars().count() > 250) {
return Err(Error::BadRequest(
ErrorKind::InvalidParam,
"Reason too long, should be 250 characters or fewer",
));
};
services().admin
.send_message(message::RoomMessageEventContent::text_html(
format!(
"Report received from: {}\n\n\
2022-03-05 03:16:21 +01:00
Event ID: {:?}\n\
Room ID: {:?}\n\
Sent By: {:?}\n\n\
Report Score: {:?}\n\
Report Reason: {:?}",
sender_user, pdu.event_id, pdu.room_id, pdu.sender, body.score, body.reason
2021-11-26 20:36:40 +01:00
),
format!(
2022-03-05 03:16:21 +01:00
"<details><summary>Report received from: <a href=\"https://matrix.to/#/{0:?}\">{0:?}\
</a></summary><ul><li>Event Info<ul><li>Event ID: <code>{1:?}</code>\
<a href=\"https://matrix.to/#/{2:?}/{1:?}\">🔗</a></li><li>Room ID: <code>{2:?}</code>\
</li><li>Sent By: <a href=\"https://matrix.to/#/{3:?}\">{3:?}</a></li></ul></li><li>\
Report Info<ul><li>Report Score: {4:?}</li><li>Report Reason: {5}</li></ul></li>\
</ul></details>",
sender_user,
pdu.event_id,
pdu.room_id,
pdu.sender,
body.score,
2022-04-06 18:49:46 +02:00
HtmlEscape(body.reason.as_deref().unwrap_or(""))
2021-11-26 20:36:40 +01:00
),
));
2022-02-18 15:33:14 +01:00
Ok(report_content::v3::Response {})
}