diff options
author | Mario <mario@mariovavti.com> | 2023-06-16 12:16:22 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-06-16 12:16:22 +0000 |
commit | 18b7b3f125b88143d4edefec22a0df67869788d9 (patch) | |
tree | 95091a727d0e0e34dbfaafb739294b52151dbd5e /Zotlabs/Lib/ActivityStreams.php | |
parent | 6989a3eaadd676c5c1b5fd523c4196d289423471 (diff) | |
download | volse-hubzilla-18b7b3f125b88143d4edefec22a0df67869788d9.tar.gz volse-hubzilla-18b7b3f125b88143d4edefec22a0df67869788d9.tar.bz2 volse-hubzilla-18b7b3f125b88143d4edefec22a0df67869788d9.zip |
deprecate ActivityStreams::fetch() and provide the possibility to fetch local items directly
Diffstat (limited to 'Zotlabs/Lib/ActivityStreams.php')
-rw-r--r-- | Zotlabs/Lib/ActivityStreams.php | 31 |
1 files changed, 22 insertions, 9 deletions
diff --git a/Zotlabs/Lib/ActivityStreams.php b/Zotlabs/Lib/ActivityStreams.php index f07f99ac3..1f10ac027 100644 --- a/Zotlabs/Lib/ActivityStreams.php +++ b/Zotlabs/Lib/ActivityStreams.php @@ -14,6 +14,7 @@ class ActivityStreams { public $meta = null; public $valid = false; public $deleted = false; + public $portable_id = null; public $id = ''; public $parent_id = ''; public $type = ''; @@ -35,12 +36,13 @@ class ActivityStreams { * * @param string $string */ - function __construct($string) { + function __construct($string, $portable_id = null) { if(!$string) return; $this->raw = $string; + $this->portable_id = $portable_id; if (is_array($string)) { $this->data = $string; @@ -123,13 +125,14 @@ class ActivityStreams { $this->parent_id = $this->get_property_obj('inReplyTo'); - if ((!$this->parent_id) && is_array($this->obj) && isset($this->obj['inReplyTo'])) { + if (!$this->parent_id && is_array($this->obj) && isset($this->obj['inReplyTo'])) { $this->parent_id = $this->obj['inReplyTo']; } - if ((!$this->parent_id) && is_array($this->obj) && isset($this->obj['id'])) { + if (!$this->parent_id && is_array($this->obj) && isset($this->obj['id'])) { $this->parent_id = $this->obj['id']; } + } } @@ -302,12 +305,22 @@ class ActivityStreams { * @return NULL|mixed */ - function fetch_property($url) { - return self::fetch($url); - } - - static function fetch($url, $channel = null) { - return Activity::fetch($url, $channel); + function fetch_property($url, $channel = null) { + if (str_starts_with($url, z_root() . '/item/')) { + $x = Activity::fetch_local($url, $this->portable_id ?? ''); + logger('local: ' . print_r($x,true)); + } + if (!$x) { + $x = Activity::fetch($url, $channel); + if ($x === null && strpos($url, '/channel/')) { + // look for other nomadic channels which might be alive + $zf = Zotfinger::exec($url, $channel); + + $url = $zf['signature']['signer']; + $x = Activity::fetch($url, $channel); + } + } + return $x; } static function is_an_actor($s) { |