2020-09-14 15:29:50 +00:00
|
|
|
use crate::LemmyContext;
|
2020-05-16 14:04:08 +00:00
|
|
|
use actix_web::{error::ErrorBadRequest, web::Query, *};
|
2020-08-01 14:04:42 +00:00
|
|
|
use anyhow::anyhow;
|
2020-07-10 18:15:41 +00:00
|
|
|
use lemmy_db::{community::Community, user::User_};
|
2020-09-16 13:31:30 +00:00
|
|
|
use lemmy_structs::blocking;
|
2020-09-01 14:25:34 +00:00
|
|
|
use lemmy_utils::{
|
|
|
|
settings::Settings,
|
|
|
|
LemmyError,
|
|
|
|
WEBFINGER_COMMUNITY_REGEX,
|
|
|
|
WEBFINGER_USER_REGEX,
|
|
|
|
};
|
2020-05-17 01:09:26 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2019-12-18 00:59:47 +00:00
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
pub struct Params {
|
|
|
|
resource: String,
|
|
|
|
}
|
|
|
|
|
2020-05-15 16:36:11 +00:00
|
|
|
#[derive(Serialize, Deserialize, Debug)]
|
|
|
|
pub struct WebFingerResponse {
|
|
|
|
pub subject: String,
|
|
|
|
pub aliases: Vec<String>,
|
|
|
|
pub links: Vec<WebFingerLink>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize, Debug)]
|
|
|
|
pub struct WebFingerLink {
|
|
|
|
pub rel: Option<String>,
|
|
|
|
#[serde(rename(serialize = "type", deserialize = "type"))]
|
|
|
|
pub type_: Option<String>,
|
|
|
|
pub href: Option<String>,
|
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
|
|
pub template: Option<String>,
|
|
|
|
}
|
|
|
|
|
2019-12-31 12:55:33 +00:00
|
|
|
pub fn config(cfg: &mut web::ServiceConfig) {
|
2020-03-18 21:09:00 +00:00
|
|
|
if Settings::get().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>,
|
2020-04-21 20:40:03 +00:00
|
|
|
) -> Result<HttpResponse, Error> {
|
2020-07-01 12:54:29 +00:00
|
|
|
let community_regex_parsed = WEBFINGER_COMMUNITY_REGEX
|
|
|
|
.captures(&info.resource)
|
|
|
|
.map(|c| c.get(1))
|
|
|
|
.flatten();
|
2019-12-18 00:59:47 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let user_regex_parsed = WEBFINGER_USER_REGEX
|
|
|
|
.captures(&info.resource)
|
|
|
|
.map(|c| c.get(1))
|
|
|
|
.flatten();
|
2020-05-15 16:36:11 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let url = if let Some(community_name) = community_regex_parsed {
|
|
|
|
let community_name = community_name.as_str().to_owned();
|
|
|
|
// Make sure the requested community exists.
|
2020-08-18 13:43:50 +00:00
|
|
|
blocking(context.pool(), move |conn| {
|
2020-07-01 12:54:29 +00:00
|
|
|
Community::read_from_name(conn, &community_name)
|
|
|
|
})
|
|
|
|
.await?
|
2020-08-01 14:04:42 +00:00
|
|
|
.map_err(|_| ErrorBadRequest(LemmyError::from(anyhow!("not_found"))))?
|
2020-07-01 12:54:29 +00:00
|
|
|
.actor_id
|
|
|
|
} else if let Some(user_name) = user_regex_parsed {
|
|
|
|
let user_name = user_name.as_str().to_owned();
|
|
|
|
// Make sure the requested user exists.
|
2020-08-18 13:43:50 +00:00
|
|
|
blocking(context.pool(), move |conn| {
|
|
|
|
User_::read_from_name(conn, &user_name)
|
|
|
|
})
|
|
|
|
.await?
|
|
|
|
.map_err(|_| ErrorBadRequest(LemmyError::from(anyhow!("not_found"))))?
|
|
|
|
.actor_id
|
2020-07-01 12:54:29 +00:00
|
|
|
} else {
|
2020-08-01 14:04:42 +00:00
|
|
|
return Err(ErrorBadRequest(LemmyError::from(anyhow!("not_found"))));
|
2020-07-01 12:54:29 +00:00
|
|
|
};
|
2019-12-18 00:59:47 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let json = WebFingerResponse {
|
|
|
|
subject: info.resource.to_owned(),
|
|
|
|
aliases: vec![url.to_owned()],
|
|
|
|
links: vec![
|
|
|
|
WebFingerLink {
|
|
|
|
rel: Some("http://webfinger.net/rel/profile-page".to_string()),
|
|
|
|
type_: Some("text/html".to_string()),
|
|
|
|
href: Some(url.to_owned()),
|
|
|
|
template: None,
|
|
|
|
},
|
|
|
|
WebFingerLink {
|
|
|
|
rel: Some("self".to_string()),
|
|
|
|
type_: Some("application/activity+json".to_string()),
|
|
|
|
href: Some(url),
|
|
|
|
template: None,
|
|
|
|
}, // TODO: this also needs to return the subscribe link once that's implemented
|
|
|
|
//{
|
|
|
|
// "rel": "http://ostatus.org/schema/1.0/subscribe",
|
|
|
|
// "template": "https://my_instance.com/authorize_interaction?uri={uri}"
|
|
|
|
//}
|
|
|
|
],
|
|
|
|
};
|
2019-12-18 00:59:47 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
Ok(HttpResponse::Ok().json(json))
|
2019-12-18 00:59:47 +00:00
|
|
|
}
|