lemmy/crates/routes/src/webfinger.rs

90 lines
2.4 KiB
Rust
Raw Normal View History

use actix_web::{web, web::Query, HttpResponse};
2021-11-16 17:03:09 +00:00
use anyhow::Context;
use lemmy_apub::fetcher::webfinger::{WebfingerLink, WebfingerResponse};
use lemmy_db_schema::{
source::{community::Community, person::Person},
traits::ApubActor,
};
use lemmy_utils::{error::LemmyError, location_info};
use lemmy_websocket::LemmyContext;
use serde::Deserialize;
2021-11-16 17:03:09 +00:00
use url::Url;
2019-12-18 00:59:47 +00:00
#[derive(Deserialize)]
struct Params {
2019-12-18 00:59:47 +00:00
resource: String,
}
pub fn config(cfg: &mut web::ServiceConfig) {
cfg.route(
".well-known/webfinger",
web::get().to(get_webfinger_response),
);
}
2019-12-18 00:59:47 +00:00
/// Responds to webfinger requests of the following format. There isn't any real documentation for
/// this, but it described in this blog post:
/// https://mastodon.social/.well-known/webfinger?resource=acct:gargron@mastodon.social
///
/// You can also view the webfinger response that Mastodon sends:
/// https://radical.town/.well-known/webfinger?resource=acct:felix@radical.town
async fn get_webfinger_response(
info: Query<Params>,
context: web::Data<LemmyContext>,
) -> Result<HttpResponse, LemmyError> {
2021-11-16 17:03:09 +00:00
let name = context
.settings()
2021-11-16 17:03:09 +00:00
.webfinger_regex()
.captures(&info.resource)
2022-03-30 14:58:03 +00:00
.and_then(|c| c.get(1))
2021-11-16 17:03:09 +00:00
.context(location_info!())?
.as_str()
.to_string();
2019-12-18 00:59:47 +00:00
2021-11-16 17:03:09 +00:00
let name_ = name.clone();
2022-11-09 10:05:00 +00:00
let user_id: Option<Url> = Person::read_from_name(context.pool(), &name_, false)
.await
.ok()
.map(|c| c.actor_id.into());
let community_id: Option<Url> = Community::read_from_name(context.pool(), &name, false)
.await
.ok()
.map(|c| c.actor_id.into());
// Mastodon seems to prioritize the last webfinger item in case of duplicates. Put
// community last so that it gets prioritized. For Lemmy the order doesnt matter.
2021-11-16 17:03:09 +00:00
let links = vec![
webfinger_link_for_actor(user_id),
webfinger_link_for_actor(community_id),
2021-11-16 17:03:09 +00:00
]
.into_iter()
.flatten()
.collect();
2019-12-18 00:59:47 +00:00
let json = WebfingerResponse {
subject: info.resource.clone(),
2021-11-16 17:03:09 +00:00
links,
};
Ok(HttpResponse::Ok().json(json))
}
fn webfinger_link_for_actor(url: Option<Url>) -> Vec<WebfingerLink> {
if let Some(url) = url {
vec![
WebfingerLink {
rel: Some("http://webfinger.net/rel/profile-page".to_string()),
kind: Some("text/html".to_string()),
href: Some(url.clone()),
},
WebfingerLink {
rel: Some("self".to_string()),
kind: Some("application/activity+json".to_string()),
2021-11-16 17:03:09 +00:00
href: Some(url),
},
]
} else {
vec![]
}
2019-12-18 00:59:47 +00:00
}