sforkowany z mirror/friendica
commit
1f7cb530c7
|
@ -78,7 +78,7 @@ function display_init(App $a)
|
|||
}
|
||||
|
||||
if (ActivityPub::isRequest()) {
|
||||
goaway(str_replace('display/', 'object/', $a->query_string));
|
||||
goaway(str_replace('display/', 'objects/', $a->query_string));
|
||||
}
|
||||
|
||||
if ($item["id"] != $item["parent"]) {
|
||||
|
|
|
@ -2361,7 +2361,7 @@ class Item extends BaseObject
|
|||
$guid = System::createUUID();
|
||||
}
|
||||
|
||||
return self::getApp()->get_baseurl() . '/object/' . $guid;
|
||||
return self::getApp()->get_baseurl() . '/objects/' . $guid;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
/**
|
||||
* @file src/Module/Object.php
|
||||
* @file src/Module/Objects.php
|
||||
*/
|
||||
namespace Friendica\Module;
|
||||
|
||||
|
@ -11,9 +11,9 @@ use Friendica\Model\Item;
|
|||
use Friendica\Database\DBA;
|
||||
|
||||
/**
|
||||
* ActivityPub Object
|
||||
* ActivityPub Objects
|
||||
*/
|
||||
class Object extends BaseModule
|
||||
class Objects extends BaseModule
|
||||
{
|
||||
public static function rawContent()
|
||||
{
|
||||
|
@ -24,7 +24,7 @@ class Object extends BaseModule
|
|||
}
|
||||
|
||||
if (!ActivityPub::isRequest()) {
|
||||
goaway(str_replace('object/', 'display/', $a->query_string));
|
||||
goaway(str_replace('objects/', 'display/', $a->query_string));
|
||||
}
|
||||
|
||||
$item = Item::selectFirst(['id'], ['guid' => $a->argv[1], 'wall' => true, 'private' => false]);
|
|
@ -663,7 +663,7 @@ class ActivityPub
|
|||
} elseif (DBA::isResult($conversation) && !empty($conversation['conversation-uri'])) {
|
||||
$context_uri = $conversation['conversation-uri'];
|
||||
} else {
|
||||
$context_uri = str_replace('/object/', '/context/', $item['parent-uri']);
|
||||
$context_uri = str_replace('/objects/', '/context/', $item['parent-uri']);
|
||||
}
|
||||
return $context_uri;
|
||||
}
|
||||
|
|
|
@ -1598,7 +1598,7 @@ class Diaspora
|
|||
unset($parts['path']);
|
||||
$host_url = Network::unparseURL($parts);
|
||||
|
||||
return $host_url . '/object/' . $guid;
|
||||
return $host_url . '/objects/' . $guid;
|
||||
}
|
||||
|
||||
return "";
|
||||
|
|
|
@ -2004,7 +2004,7 @@ class OStatus
|
|||
}
|
||||
|
||||
if (intval($item["parent"]) > 0) {
|
||||
$conversation_href = $conversation_uri = str_replace('/object/', '/context/', $item['parent-uri']);
|
||||
$conversation_href = $conversation_uri = str_replace('/objects/', '/context/', $item['parent-uri']);
|
||||
|
||||
if (isset($parent_item)) {
|
||||
$conversation = DBA::selectFirst('conversation', ['conversation-uri', 'conversation-href'], ['item-uri' => $parent_item]);
|
||||
|
|
Ładowanie…
Reference in New Issue