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;
|
2021-07-20 07:00:20 +00:00
|
|
|
use lemmy_api_common::blocking;
|
2021-11-16 17:03:09 +00:00
|
|
|
use lemmy_apub::fetcher::webfinger::{WebfingerLink, WebfingerResponse};
|
2021-03-10 22:33:55 +00:00
|
|
|
use lemmy_db_schema::source::{community::Community, person::Person};
|
2021-11-16 17:03:09 +00:00
|
|
|
use lemmy_utils::{location_info, settings::structs::Settings, LemmyError};
|
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,
|
|
|
|
}
|
|
|
|
|
2021-09-22 15:57:09 +00:00
|
|
|
pub fn config(cfg: &mut web::ServiceConfig, settings: &Settings) {
|
|
|
|
if settings.federation.enabled {
|
2019-12-31 12:55:33 +00:00
|
|
|
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
|
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)
|
|
|
|
.map(|c| c.get(1))
|
2021-11-16 17:03:09 +00:00
|
|
|
.flatten()
|
|
|
|
.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();
|
|
|
|
let community_id: Option<Url> = blocking(context.pool(), move |conn| {
|
|
|
|
Community::read_from_name(conn, &name_)
|
|
|
|
})
|
|
|
|
.await?
|
|
|
|
.ok()
|
|
|
|
.map(|c| c.actor_id.into());
|
|
|
|
let user_id: Option<Url> = blocking(context.pool(), move |conn| {
|
|
|
|
Person::find_by_name(conn, &name)
|
|
|
|
})
|
|
|
|
.await?
|
|
|
|
.ok()
|
|
|
|
.map(|c| c.actor_id.into());
|
|
|
|
let links = vec![
|
|
|
|
webfinger_link_for_actor(community_id),
|
|
|
|
webfinger_link_for_actor(user_id),
|
|
|
|
]
|
|
|
|
.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
|
|
|
}
|