webfinger
: Use the subject field to determine the canonical name of the subject
This commit is contained in:
parent
219880f3d3
commit
cc6dfd0dfc
1 changed files with 3 additions and 5 deletions
|
@ -74,6 +74,8 @@ pub async fn webfinger_handler(
|
||||||
return Ok(response);
|
return Ok(response);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let subject = subject.subject.clone();
|
||||||
|
|
||||||
let aliases = MetaAlias::query_matching(&mut conn, WEBFINGER_DOC, &resource)
|
let aliases = MetaAlias::query_matching(&mut conn, WEBFINGER_DOC, &resource)
|
||||||
.await
|
.await
|
||||||
.map_err(|_| StatusCode::INTERNAL_SERVER_ERROR)?;
|
.map_err(|_| StatusCode::INTERNAL_SERVER_ERROR)?;
|
||||||
|
@ -127,8 +129,6 @@ pub async fn webfinger_handler(
|
||||||
|
|
||||||
match mime {
|
match mime {
|
||||||
"*/*" | "application/json" | "application/jrd+json" => {
|
"*/*" | "application/json" | "application/jrd+json" => {
|
||||||
let subject = Some(resource);
|
|
||||||
|
|
||||||
let aliases = aliases
|
let aliases = aliases
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.map(|alias| alias.alias)
|
.map(|alias| alias.alias)
|
||||||
|
@ -175,8 +175,6 @@ pub async fn webfinger_handler(
|
||||||
return Ok(response);
|
return Ok(response);
|
||||||
},
|
},
|
||||||
"application/xml" | "application/xrd+xml" => {
|
"application/xml" | "application/xrd+xml" => {
|
||||||
let subject = Some(resource);
|
|
||||||
|
|
||||||
let aliases = aliases
|
let aliases = aliases
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.map(|alias| alias.alias)
|
.map(|alias| alias.alias)
|
||||||
|
@ -265,7 +263,7 @@ pub async fn webfinger_handler(
|
||||||
.expect("webfinger.html.j2 to exist")
|
.expect("webfinger.html.j2 to exist")
|
||||||
.render(
|
.render(
|
||||||
minijinja::context!(
|
minijinja::context!(
|
||||||
subject => resource,
|
subject => subject,
|
||||||
aliases => aliases,
|
aliases => aliases,
|
||||||
properties => properties,
|
properties => properties,
|
||||||
links => links,
|
links => links,
|
||||||
|
|
Loading…
Reference in a new issue