aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Daemon/Fetchparents.php
diff options
context:
space:
mode:
Diffstat (limited to 'Zotlabs/Daemon/Fetchparents.php')
-rw-r--r--Zotlabs/Daemon/Fetchparents.php39
1 files changed, 39 insertions, 0 deletions
diff --git a/Zotlabs/Daemon/Fetchparents.php b/Zotlabs/Daemon/Fetchparents.php
new file mode 100644
index 000000000..4daf8c019
--- /dev/null
+++ b/Zotlabs/Daemon/Fetchparents.php
@@ -0,0 +1,39 @@
+<?php
+
+namespace Zotlabs\Daemon;
+
+use Zotlabs\Lib\Activity;
+
+class Fetchparents {
+
+ static public function run($argc, $argv) {
+
+ logger('Fetchparents invoked: ' . print_r($argv, true));
+
+ if ($argc < 4) {
+ return;
+ }
+
+ $channel = channelx_by_n(intval($argv[1]));
+ if (!$channel) {
+ return;
+ }
+
+ $observer_hash = $argv[2];
+ if (!$observer_hash) {
+ return;
+ }
+
+ $mid = $argv[3];
+ if (!$mid) {
+ return;
+ }
+
+ $force = $argv[4] ?? false;
+
+ Activity::fetch_and_store_parents($channel, $observer_hash, $mid, null, $force);
+
+ return;
+
+ }
+}