mirror of
https://github.com/friendica/friendica
synced 2025-04-27 15:10:11 +00:00
New uri format for our posts that is AP compatible
This commit is contained in:
parent
2e7ca76e15
commit
fb5b6e4a14
2 changed files with 6 additions and 16 deletions
|
@ -1592,17 +1592,13 @@ class Diaspora
|
|||
if (DBA::isResult($item)) {
|
||||
return $item["uri"];
|
||||
} elseif (!$onlyfound) {
|
||||
$contact = Contact::getDetailsByAddr($author, 0);
|
||||
if (!empty($contact['network'])) {
|
||||
$prefix = 'urn:X-' . $contact['network'] . ':';
|
||||
} else {
|
||||
// This fallback should happen most unlikely
|
||||
$prefix = 'urn:X-dspr:';
|
||||
}
|
||||
$person = self::personByHandle($author);
|
||||
|
||||
$author_parts = explode('@', $author);
|
||||
$parts = parse_url($person['url']);
|
||||
unset($parts['path']);
|
||||
$host_url = Network::unparseURL($parts);
|
||||
|
||||
return $prefix . $author_parts[1] . ':' . $author_parts[0] . ':'. $guid;
|
||||
return $host_url . '/object/' . $guid;
|
||||
}
|
||||
|
||||
return "";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue