2023-04-05 20:29:08 +00:00
|
|
|
use activitypub_federation::{
|
|
|
|
config::Data,
|
|
|
|
fetch::webfinger::{extract_webfinger_name, Webfinger, WebfingerLink},
|
|
|
|
};
|
2021-11-10 13:17:56 +00:00
|
|
|
use actix_web::{web, web::Query, HttpResponse};
|
2022-11-28 14:29:33 +00:00
|
|
|
use lemmy_api_common::context::LemmyContext;
|
2022-01-27 16:39:22 +00:00
|
|
|
use lemmy_db_schema::{
|
|
|
|
source::{community::Community, person::Person},
|
|
|
|
traits::ApubActor,
|
|
|
|
};
|
2023-07-19 10:09:04 +00:00
|
|
|
use lemmy_utils::{cache_header::cache_3days, error::LemmyError};
|
2020-09-24 13:53:21 +00:00
|
|
|
use serde::Deserialize;
|
2023-02-22 02:25:26 +00:00
|
|
|
use std::collections::HashMap;
|
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",
|
2023-07-19 10:09:04 +00:00
|
|
|
web::get().to(get_webfinger_response).wrap(cache_3days()),
|
2022-10-27 09:24:07 +00:00
|
|
|
);
|
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>,
|
2023-04-05 20:29:08 +00:00
|
|
|
context: Data<LemmyContext>,
|
2021-11-10 13:17:56 +00:00
|
|
|
) -> Result<HttpResponse, LemmyError> {
|
2023-04-05 20:29:08 +00:00
|
|
|
let name = extract_webfinger_name(&info.resource, &context)?;
|
2019-12-18 00:59:47 +00:00
|
|
|
|
2023-12-12 13:56:33 +00:00
|
|
|
let user_id: Option<Url> = Person::read_from_name(&mut context.pool(), name, false)
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
|
|
|
.ok()
|
|
|
|
.map(|c| c.actor_id.into());
|
2023-12-12 13:56:33 +00:00
|
|
|
let community_id: Option<Url> = Community::read_from_name(&mut context.pool(), name, false)
|
2022-11-09 10:05:00 +00:00
|
|
|
.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![
|
2023-08-31 13:00:41 +00:00
|
|
|
webfinger_link_for_actor(user_id, "Person", &context),
|
|
|
|
webfinger_link_for_actor(community_id, "Group", &context),
|
2021-11-16 17:03:09 +00:00
|
|
|
]
|
|
|
|
.into_iter()
|
|
|
|
.flatten()
|
|
|
|
.collect();
|
2019-12-18 00:59:47 +00:00
|
|
|
|
2023-03-21 15:03:05 +00:00
|
|
|
let json = Webfinger {
|
2022-11-19 04:33:54 +00:00
|
|
|
subject: info.resource.clone(),
|
2021-11-16 17:03:09 +00:00
|
|
|
links,
|
2023-03-21 15:03:05 +00:00
|
|
|
..Default::default()
|
2021-11-16 17:03:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Ok(HttpResponse::Ok().json(json))
|
|
|
|
}
|
|
|
|
|
2023-08-31 13:00:41 +00:00
|
|
|
fn webfinger_link_for_actor(
|
|
|
|
url: Option<Url>,
|
|
|
|
kind: &str,
|
|
|
|
context: &LemmyContext,
|
|
|
|
) -> Vec<WebfingerLink> {
|
2021-11-16 17:03:09 +00:00
|
|
|
if let Some(url) = url {
|
2023-08-31 13:00:41 +00:00
|
|
|
let type_key = "https://www.w3.org/ns/activitystreams#type"
|
|
|
|
.parse()
|
|
|
|
.expect("parse url");
|
|
|
|
|
|
|
|
let mut vec = vec![
|
2021-07-20 07:00:20 +00:00
|
|
|
WebfingerLink {
|
2023-08-31 13:00:41 +00:00
|
|
|
rel: Some("http://webfinger.net/rel/profile-page".into()),
|
|
|
|
kind: Some("text/html".into()),
|
2022-11-19 04:33:54 +00:00
|
|
|
href: Some(url.clone()),
|
2023-03-21 15:03:05 +00:00
|
|
|
..Default::default()
|
2020-07-01 12:54:29 +00:00
|
|
|
},
|
2021-07-20 07:00:20 +00:00
|
|
|
WebfingerLink {
|
2023-08-31 13:00:41 +00:00
|
|
|
rel: Some("self".into()),
|
|
|
|
kind: Some("application/activity+json".into()),
|
2021-11-16 17:03:09 +00:00
|
|
|
href: Some(url),
|
2023-08-31 13:00:41 +00:00
|
|
|
properties: HashMap::from([(type_key, kind.into())]),
|
|
|
|
..Default::default()
|
2021-11-16 17:03:09 +00:00
|
|
|
},
|
2023-08-31 13:00:41 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
// insert remote follow link
|
|
|
|
if kind == "Person" {
|
|
|
|
let template = format!(
|
|
|
|
"{}/activitypub/externalInteraction?uri={{uri}}",
|
|
|
|
context.settings().get_protocol_and_hostname()
|
|
|
|
);
|
|
|
|
vec.push(WebfingerLink {
|
|
|
|
rel: Some("http://ostatus.org/schema/1.0/subscribe".into()),
|
|
|
|
template: Some(template),
|
|
|
|
..Default::default()
|
|
|
|
});
|
|
|
|
}
|
|
|
|
vec
|
2021-11-16 17:03:09 +00:00
|
|
|
} else {
|
|
|
|
vec![]
|
|
|
|
}
|
2019-12-18 00:59:47 +00:00
|
|
|
}
|