2021-11-10 13:17:56 +00:00
|
|
|
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};
|
2022-01-27 16:39:22 +00:00
|
|
|
use lemmy_db_schema::{
|
|
|
|
source::{community::Community, person::Person},
|
|
|
|
traits::ApubActor,
|
|
|
|
};
|
2022-10-27 09:24:07 +00:00
|
|
|
use lemmy_utils::{error::LemmyError, location_info};
|
2020-09-24 13:53:21 +00:00
|
|
|
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)]
|
2020-11-16 15:44:04 +00:00
|
|
|
struct Params {
|
2019-12-18 00:59:47 +00:00
|
|
|
resource: String,
|
|
|
|
}
|
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
pub fn config(cfg: &mut web::ServiceConfig) {
|
|
|
|
cfg.route(
|
|
|
|
".well-known/webfinger",
|
|
|
|
web::get().to(get_webfinger_response),
|
|
|
|
);
|
2019-12-31 12:55:33 +00:00
|
|
|
}
|
|
|
|
|
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
|
2020-01-12 15:31:51 +00:00
|
|
|
async fn get_webfinger_response(
|
|
|
|
info: Query<Params>,
|
2020-08-18 13:43:50 +00:00
|
|
|
context: web::Data<LemmyContext>,
|
2021-11-10 13:17:56 +00:00
|
|
|
) -> Result<HttpResponse, LemmyError> {
|
2021-11-16 17:03:09 +00:00
|
|
|
let name = context
|
2021-09-22 15:57:09 +00:00
|
|
|
.settings()
|
2021-11-16 17:03:09 +00:00
|
|
|
.webfinger_regex()
|
2020-07-01 12:54:29 +00:00
|
|
|
.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());
|
2022-01-21 21:00:17 +00:00
|
|
|
|
|
|
|
// 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),
|
2022-01-21 21:00:17 +00:00
|
|
|
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
|
|
|
|
2021-07-20 07:00:20 +00:00
|
|
|
let json = WebfingerResponse {
|
2020-07-01 12:54:29 +00:00
|
|
|
subject: info.resource.to_owned(),
|
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![
|
2021-07-20 07:00:20 +00:00
|
|
|
WebfingerLink {
|
2020-07-01 12:54:29 +00:00
|
|
|
rel: Some("http://webfinger.net/rel/profile-page".to_string()),
|
2021-11-18 18:28:53 +00:00
|
|
|
kind: Some("text/html".to_string()),
|
2021-11-16 17:03:09 +00:00
|
|
|
href: Some(url.to_owned()),
|
2020-07-01 12:54:29 +00:00
|
|
|
},
|
2021-07-20 07:00:20 +00:00
|
|
|
WebfingerLink {
|
2020-07-01 12:54:29 +00:00
|
|
|
rel: Some("self".to_string()),
|
2021-11-18 18:28:53 +00:00
|
|
|
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
|
|
|
}
|