mirror of
https://github.com/LemmyNet/activitypub-federation-rust
synced 2024-11-10 06:04:19 +00:00
487c988377
* Upgrade axum and http * Fix formatting * use expect --------- Co-authored-by: Felix Ableitner <me@nutomic.com>
69 lines
1.8 KiB
Rust
69 lines
1.8 KiB
Rust
use crate::{
|
|
database::DatabaseHandle,
|
|
error::Error,
|
|
objects::person::{DbUser, Person, PersonAcceptedActivities},
|
|
};
|
|
use activitypub_federation::{
|
|
axum::{
|
|
inbox::{receive_activity, ActivityData},
|
|
json::FederationJson,
|
|
},
|
|
config::Data,
|
|
fetch::webfinger::{build_webfinger_response, extract_webfinger_name, Webfinger},
|
|
protocol::context::WithContext,
|
|
traits::Object,
|
|
};
|
|
use axum::{
|
|
debug_handler,
|
|
extract::{Path, Query},
|
|
response::{IntoResponse, Response},
|
|
Json,
|
|
};
|
|
use http::StatusCode;
|
|
use serde::Deserialize;
|
|
|
|
impl IntoResponse for Error {
|
|
fn into_response(self) -> Response {
|
|
(StatusCode::INTERNAL_SERVER_ERROR, format!("{}", self.0)).into_response()
|
|
}
|
|
}
|
|
|
|
#[debug_handler]
|
|
pub async fn http_get_user(
|
|
Path(name): Path<String>,
|
|
data: Data<DatabaseHandle>,
|
|
) -> Result<FederationJson<WithContext<Person>>, Error> {
|
|
let db_user = data.read_user(&name)?;
|
|
let json_user = db_user.into_json(&data).await?;
|
|
Ok(FederationJson(WithContext::new_default(json_user)))
|
|
}
|
|
|
|
#[debug_handler]
|
|
pub async fn http_post_user_inbox(
|
|
data: Data<DatabaseHandle>,
|
|
activity_data: ActivityData,
|
|
) -> impl IntoResponse {
|
|
receive_activity::<WithContext<PersonAcceptedActivities>, DbUser, DatabaseHandle>(
|
|
activity_data,
|
|
&data,
|
|
)
|
|
.await
|
|
}
|
|
|
|
#[derive(Deserialize)]
|
|
pub struct WebfingerQuery {
|
|
resource: String,
|
|
}
|
|
|
|
#[debug_handler]
|
|
pub async fn webfinger(
|
|
Query(query): Query<WebfingerQuery>,
|
|
data: Data<DatabaseHandle>,
|
|
) -> Result<Json<Webfinger>, Error> {
|
|
let name = extract_webfinger_name(&query.resource, &data)?;
|
|
let db_user = data.read_user(name)?;
|
|
Ok(Json(build_webfinger_response(
|
|
query.resource,
|
|
db_user.ap_id.into_inner(),
|
|
)))
|
|
}
|