Tag::store($toUriId, $receiver['type'], $receiver['name'], $receiver['url']);
}
}
+
+ /**
+ * Check if the item is too old
+ *
+ * @param string $created
+ * @param integer $uid
+ * @return boolean item is too old
+ */
+ public function isTooOld(string $created, int $uid = 0): bool
+ {
+ // check for create date and expire time
+ $expire_interval = DI::config()->get('system', 'dbclean-expire-days', 0);
+
+ if ($uid) {
+ $user = DBA::selectFirst('user', ['expire'], ['uid' => $uid]);
+ if (DBA::isResult($user) && ($user['expire'] > 0) && (($user['expire'] < $expire_interval) || ($expire_interval == 0))) {
+ $expire_interval = $user['expire'];
+ }
+ }
+
+ if (($expire_interval > 0) && !empty($created)) {
+ $expire_date = time() - ($expire_interval * 86400);
+ $created_date = strtotime($created);
+ if ($created_date < $expire_date) {
+ Logger::notice('Item created before expiration interval.', ['created' => date('c', $created_date), 'expired' => date('c', $expire_date)]);
+ return true;
+ }
+ }
+
+ return false;
+ }
}
return true;
}
- /**
- * Check if the item array is too old
- *
- * @param array $item Item record
- * @return boolean item is too old
- */
- public static function isTooOld(array $item): bool
- {
- // check for create date and expire time
- $expire_interval = DI::config()->get('system', 'dbclean-expire-days', 0);
-
- $user = DBA::selectFirst('user', ['expire'], ['uid' => $item['uid']]);
- if (DBA::isResult($user) && ($user['expire'] > 0) && (($user['expire'] < $expire_interval) || ($expire_interval == 0))) {
- $expire_interval = $user['expire'];
- }
-
- if (($expire_interval > 0) && !empty($item['created'])) {
- $expire_date = time() - ($expire_interval * 86400);
- $created_date = strtotime($item['created']);
- if ($created_date < $expire_date) {
- Logger::notice('Item created before expiration interval.', [
- 'created' => date('c', $created_date),
- 'expired' => date('c', $expire_date),
- '$item' => $item
- ]);
- return true;
- }
- }
-
- return false;
- }
-
/**
* Return the id of the given item array if it has been stored before
*
if (
!empty($item['direction']) && in_array($item['direction'], [Conversation::PUSH, Conversation::RELAY]) &&
- empty($item['origin']) && self::isTooOld($item)
+ empty($item['origin']) && DI::contentItem()->isTooOld($item['created'], $item['uid'])
) {
Logger::info('Item is too old', ['item' => $item]);
return 0;
if (is_array($activity['as:object'])) {
$attributed_to = JsonLD::fetchElement($activity['as:object'], 'as:attributedTo', '@id');
+ $published = JsonLD::fetchElement($activity['as:object'], 'as:published', '@value');
+ $object_type = JsonLD::fetchElement($activity['as:object'], '@type');
+ $id = JsonLD::fetchElement($activity, '@id');
+ $object_id = JsonLD::fetchElement($activity, 'as:object', '@id');
+
+ if (!empty($published) && !empty($object_id) && in_array($type, ['as:Create', 'as:Update']) && in_array($object_type, self::CONTENT_TYPES)
+ && ($push || ($completion != self::COMPLETION_MANUAL)) && DI::contentItem()->isTooOld($published) && !Post::exists(['uri' => $object_id])) {
+ Logger::debug('Activity is too old. It will not be processed', ['push' => $push, 'completion' => $completion, 'type' => $type, 'object-type' => $object_type, 'published' => $published, 'id' => $id, 'object-id' => $object_id]);
+ return true;
+ }
} else {
$attributed_to = '';
}
// For announced "create" activities we remove the middle layer.
// For the rest (like, dislike, update, ...) we just process the activity directly.
$original_actor = '';
- $object_type = JsonLD::fetchElement($activity['as:object'] ?? [], '@type');
if (($type == 'as:Announce') && !empty($object_type) && !in_array($object_type, self::CONTENT_TYPES) && self::isGroup($actor)) {
$object_object_type = JsonLD::fetchElement($activity['as:object']['as:object'] ?? [], '@type');
if (in_array($object_type, ['as:Create']) && in_array($object_object_type, self::CONTENT_TYPES)) {
$datarray['diaspora_signed_text'] = json_encode($data);
}
- if (Item::isTooOld($datarray)) {
+ if (DI::contentItem()->isTooOld($datarray['created'], $datarray['uid'])) {
Logger::info('Comment is too old', ['created' => $datarray['created'], 'uid' => $datarray['uid'], 'guid' => $datarray['guid']]);
return false;
}
$datarray['diaspora_signed_text'] = json_encode($data);
}
- if (Item::isTooOld($datarray)) {
+ if (DI::contentItem()->isTooOld($datarray['created'], $datarray['uid'])) {
Logger::info('Like is too old', ['created' => $datarray['created'], 'uid' => $datarray['uid'], 'guid' => $datarray['guid']]);
return false;
}
// Diaspora doesn't provide a date for a participation
$datarray['changed'] = $datarray['created'] = $datarray['edited'] = DateTimeFormat::utcNow();
- if (Item::isTooOld($datarray)) {
+ if (DI::contentItem()->isTooOld($datarray['created'], $datarray['uid'])) {
Logger::info('Participation is too old', ['created' => $datarray['created'], 'uid' => $datarray['uid'], 'guid' => $datarray['guid']]);
return false;
}
self::fetchGuid($datarray);
- if (Item::isTooOld($datarray)) {
+ if (DI::contentItem()->isTooOld($datarray['created'], $datarray['uid'])) {
Logger::info('Reshare is too old', ['created' => $datarray['created'], 'uid' => $datarray['uid'], 'guid' => $datarray['guid']]);
return false;
}
self::fetchGuid($datarray);
- if (Item::isTooOld($datarray)) {
+ if (DI::contentItem()->isTooOld($datarray['created'], $datarray['uid'])) {
Logger::info('Status is too old', ['created' => $datarray['created'], 'uid' => $datarray['uid'], 'guid' => $datarray['guid']]);
return false;
}
} elseif (!Item::isValid($item)) {
Logger::info('Feed item is invalid', ['created' => $item['created'], 'uid' => $item['uid'], 'uri' => $item['uri']]);
continue;
- } elseif (Item::isTooOld($item)) {
+ } elseif (DI::contentItem()->isTooOld($item['created'], $item['uid'])) {
Logger::info('Feed is too old', ['created' => $item['created'], 'uid' => $item['uid'], 'uri' => $item['uri']]);
continue;
}