Files
continuwuity/src/api/server/event_auth.rs
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

72 lines
1.9 KiB
Rust
Raw Normal View History

use std::{borrow::Borrow, iter::once};
2024-06-05 04:32:58 +00:00
2024-07-16 08:05:25 +00:00
use axum::extract::State;
use conduwuit::{Err, Error, Result, info, utils::stream::ReadyExt};
2024-08-08 17:18:30 +00:00
use futures::StreamExt;
2024-06-05 04:32:58 +00:00
use ruma::{
RoomId,
api::{client::error::ErrorKind, federation::authorization::get_event_authorization},
2024-06-05 04:32:58 +00:00
};
use super::AccessCheck;
2024-07-03 21:05:24 +00:00
use crate::Ruma;
2024-06-05 04:32:58 +00:00
/// # `GET /_matrix/federation/v1/event_auth/{roomId}/{eventId}`
///
/// Retrieves the auth chain for a given event.
///
/// - This does not include the event itself
pub(crate) async fn get_event_authorization_route(
State(services): State<crate::State>,
body: Ruma<get_event_authorization::v1::Request>,
2024-06-05 04:32:58 +00:00
) -> Result<get_event_authorization::v1::Response> {
AccessCheck {
services: &services,
origin: body.origin(),
room_id: &body.room_id,
event_id: None,
2024-06-05 04:32:58 +00:00
}
.check()
.await?;
2024-06-05 04:32:58 +00:00
if !services
.rooms
.state_cache
.server_in_room(services.globals.server_name(), &body.room_id)
.await
{
info!(
origin = body.origin().as_str(),
"Refusing to serve state for room we aren't participating in"
);
return Err!(Request(NotFound("This server is not participating in that room.")));
}
2024-07-16 08:05:25 +00:00
let event = services
2024-06-05 04:32:58 +00:00
.rooms
.timeline
2024-08-08 17:18:30 +00:00
.get_pdu_json(&body.event_id)
.await
.map_err(|_| Error::BadRequest(ErrorKind::NotFound, "Event not found."))?;
2024-06-05 04:32:58 +00:00
let room_id_str = event
.get("room_id")
.and_then(|val| val.as_str())
.ok_or_else(|| Error::bad_database("Invalid event in database."))?;
let room_id = <&RoomId>::try_from(room_id_str)
.map_err(|_| Error::bad_database("Invalid room_id in event in database."))?;
2024-06-05 04:32:58 +00:00
2024-08-08 17:18:30 +00:00
let auth_chain = services
2024-06-05 04:32:58 +00:00
.rooms
.auth_chain
.event_ids_iter(room_id, once(body.event_id.borrow()))
2025-01-29 08:39:44 +00:00
.ready_filter_map(Result::ok)
2024-08-08 17:18:30 +00:00
.filter_map(|id| async move { services.rooms.timeline.get_pdu_json(&id).await.ok() })
.then(|pdu| services.sending.convert_to_outgoing_federation_event(pdu))
.collect()
.await;
2024-06-05 04:32:58 +00:00
Ok(get_event_authorization::v1::Response { auth_chain })
2024-06-05 04:32:58 +00:00
}