aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib/Activity.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2020-10-01 11:51:20 +0000
committerMario <mario@mariovavti.com>2020-10-01 11:51:20 +0000
commit86117c88595cf97a6173fabcb9e3b0d5ec6b1d09 (patch)
treee078cc073bc8bccd2547cd8ac23aa62dd43446c0 /Zotlabs/Lib/Activity.php
parent96c4c72ee36ebb19252be724ddb485a05337cb23 (diff)
downloadvolse-hubzilla-86117c88595cf97a6173fabcb9e3b0d5ec6b1d09.tar.gz
volse-hubzilla-86117c88595cf97a6173fabcb9e3b0d5ec6b1d09.tar.bz2
volse-hubzilla-86117c88595cf97a6173fabcb9e3b0d5ec6b1d09.zip
more delete fixes
Diffstat (limited to 'Zotlabs/Lib/Activity.php')
-rw-r--r--Zotlabs/Lib/Activity.php23
1 files changed, 22 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php
index 6fac0c717..7cc77f124 100644
--- a/Zotlabs/Lib/Activity.php
+++ b/Zotlabs/Lib/Activity.php
@@ -645,9 +645,13 @@ class Activity {
$ret['type'] = self::activity_mapper($i['verb']);
+
+
if (intval($i['item_deleted'])) {
+ $is_response = false;
if (in_array($ret['type'], [ 'Like', 'Dislike', 'Accept', 'Reject', 'TentativeAccept', 'TentativeReject' ])) {
$ret['type'] = 'Undo';
+ $is_response = true;
}
else {
$ret['type'] = 'Delete';
@@ -659,7 +663,24 @@ class Activity {
else
return [];
- $ret['object'] = str_replace('/item/','/activity/',$i['mid']);
+ if ($i['obj'] && !$is_response) {
+ if (! is_array($i['obj'])) {
+ $i['obj'] = json_decode($i['obj'],true);
+ }
+ $obj = self::encode_object($i['obj']);
+ if ($obj)
+ $ret['object'] = $obj;
+ else
+ return [];
+ }
+ else {
+ $obj = self::encode_item($i);
+ if ($obj)
+ $ret['object'] = $obj;
+ else
+ return [];
+ }
+
$ret['to'] = [ ACTIVITY_PUBLIC_INBOX ];
return $ret;
}