2017-11-19 11:25:13 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Worker/Expire.php
|
|
|
|
* @brief Expires old item entries
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
2018-01-17 13:42:40 -05:00
|
|
|
use Friendica\Core\Addon;
|
2017-11-19 11:25:13 -05:00
|
|
|
use Friendica\Core\Config;
|
|
|
|
use Friendica\Core\Worker;
|
|
|
|
use Friendica\Database\DBM;
|
2018-02-03 12:25:58 -05:00
|
|
|
use Friendica\Model\Item;
|
2017-11-19 11:25:13 -05:00
|
|
|
use dba;
|
|
|
|
|
2017-12-17 15:24:57 -05:00
|
|
|
require_once 'include/dba.php';
|
|
|
|
|
2018-07-09 22:39:59 -04:00
|
|
|
class Expire
|
|
|
|
{
|
|
|
|
public static function execute($param = '', $hook_name = '')
|
|
|
|
{
|
|
|
|
$a = \Friendica\BaseObject::getApp();
|
2017-11-19 11:25:13 -05:00
|
|
|
|
2017-11-19 17:06:18 -05:00
|
|
|
require_once 'include/items.php';
|
2017-11-19 11:25:13 -05:00
|
|
|
|
2018-01-17 13:42:40 -05:00
|
|
|
Addon::loadHooks();
|
2017-11-19 11:25:13 -05:00
|
|
|
|
|
|
|
if ($param == 'delete') {
|
|
|
|
logger('Delete expired items', LOGGER_DEBUG);
|
|
|
|
// physically remove anything that has been deleted for more than two months
|
2018-07-06 02:45:30 -04:00
|
|
|
$condition = ["`deleted` AND `changed` < UTC_TIMESTAMP() - INTERVAL 60 DAY"];
|
2018-07-19 09:52:05 -04:00
|
|
|
$rows = dba::select('item', ['id', 'iaid', 'icid', 'psid'], $condition);
|
2018-07-06 02:45:30 -04:00
|
|
|
while ($row = dba::fetch($rows)) {
|
2018-01-15 08:05:12 -05:00
|
|
|
dba::delete('item', ['id' => $row['id']]);
|
2018-07-05 18:07:50 -04:00
|
|
|
if (!empty($row['iaid']) && !dba::exists('item', ['iaid' => $row['iaid']])) {
|
2018-07-06 02:45:30 -04:00
|
|
|
dba::delete('item-activity', ['id' => $row['iaid']]);
|
2018-07-05 18:07:50 -04:00
|
|
|
}
|
|
|
|
if (!empty($row['icid']) && !dba::exists('item', ['icid' => $row['icid']])) {
|
2018-06-25 16:23:32 -04:00
|
|
|
dba::delete('item-content', ['id' => $row['icid']]);
|
|
|
|
}
|
2018-07-19 09:52:05 -04:00
|
|
|
// When the permission set will be used in photo and events as well.
|
|
|
|
// this query here needs to be extended.
|
|
|
|
if (!empty($row['psid']) && !dba::exists('item', ['psid' => $row['psid']])) {
|
|
|
|
dba::delete('permissionset', ['id' => $row['psid']]);
|
|
|
|
}
|
2017-11-19 11:25:13 -05:00
|
|
|
}
|
2018-07-06 02:45:30 -04:00
|
|
|
dba::close($rows);
|
2017-11-19 11:25:13 -05:00
|
|
|
|
2018-07-07 03:43:13 -04:00
|
|
|
// Normally we shouldn't have orphaned data at all.
|
|
|
|
// If we do have some, then we have to check why.
|
|
|
|
logger('Deleting orphaned item activities - start', LOGGER_DEBUG);
|
2018-07-15 14:36:20 -04:00
|
|
|
$condition = ["NOT EXISTS (SELECT `iaid` FROM `item` WHERE `item`.`iaid` = `item-activity`.`id`)"];
|
2018-07-07 03:43:13 -04:00
|
|
|
dba::delete('item-activity', $condition);
|
|
|
|
logger('Orphaned item activities deleted: ' . dba::affected_rows(), LOGGER_DEBUG);
|
|
|
|
|
|
|
|
logger('Deleting orphaned item content - start', LOGGER_DEBUG);
|
2018-07-15 14:36:20 -04:00
|
|
|
$condition = ["NOT EXISTS (SELECT `icid` FROM `item` WHERE `item`.`icid` = `item-content`.`id`)"];
|
2018-07-07 03:43:13 -04:00
|
|
|
dba::delete('item-content', $condition);
|
|
|
|
logger('Orphaned item content deleted: ' . dba::affected_rows(), LOGGER_DEBUG);
|
2017-11-19 11:25:13 -05:00
|
|
|
|
|
|
|
// make this optional as it could have a performance impact on large sites
|
|
|
|
if (intval(Config::get('system', 'optimize_items'))) {
|
|
|
|
dba::e("OPTIMIZE TABLE `item`");
|
|
|
|
}
|
2018-07-07 03:43:13 -04:00
|
|
|
|
|
|
|
logger('Delete expired items - done', LOGGER_DEBUG);
|
2017-11-19 11:25:13 -05:00
|
|
|
return;
|
|
|
|
} elseif (intval($param) > 0) {
|
2018-01-10 08:36:02 -05:00
|
|
|
$user = dba::selectFirst('user', ['uid', 'username', 'expire'], ['uid' => $param]);
|
2017-11-19 11:25:13 -05:00
|
|
|
if (DBM::is_result($user)) {
|
|
|
|
logger('Expire items for user '.$user['uid'].' ('.$user['username'].') - interval: '.$user['expire'], LOGGER_DEBUG);
|
2018-01-28 06:18:08 -05:00
|
|
|
Item::expire($user['uid'], $user['expire']);
|
2017-11-19 11:25:13 -05:00
|
|
|
logger('Expire items for user '.$user['uid'].' ('.$user['username'].') - done ', LOGGER_DEBUG);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
} elseif (!empty($hook_name) && ($param == 'hook') && is_array($a->hooks) && array_key_exists("expire", $a->hooks)) {
|
|
|
|
foreach ($a->hooks["expire"] as $hook) {
|
|
|
|
if ($hook[1] == $hook_name) {
|
|
|
|
logger("Calling expire hook '" . $hook[1] . "'", LOGGER_DEBUG);
|
2018-01-17 13:42:40 -05:00
|
|
|
Addon::callSingleHook($a, $hook_name, $hook, $data);
|
2017-11-19 11:25:13 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
logger('expire: start');
|
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
Worker::add(['priority' => $a->queue['priority'], 'created' => $a->queue['created'], 'dont_fork' => true],
|
2017-11-19 11:35:45 -05:00
|
|
|
'Expire', 'delete');
|
2017-11-19 11:25:13 -05:00
|
|
|
|
|
|
|
$r = dba::p("SELECT `uid`, `username` FROM `user` WHERE `expire` != 0");
|
|
|
|
while ($row = dba::fetch($r)) {
|
|
|
|
logger('Calling expiry for user '.$row['uid'].' ('.$row['username'].')', LOGGER_DEBUG);
|
2018-01-15 08:05:12 -05:00
|
|
|
Worker::add(['priority' => $a->queue['priority'], 'created' => $a->queue['created'], 'dont_fork' => true],
|
2017-11-19 11:35:45 -05:00
|
|
|
'Expire', (int)$row['uid']);
|
2017-11-19 11:25:13 -05:00
|
|
|
}
|
|
|
|
dba::close($r);
|
|
|
|
|
|
|
|
logger('expire: calling hooks');
|
|
|
|
|
|
|
|
if (is_array($a->hooks) && array_key_exists('expire', $a->hooks)) {
|
|
|
|
foreach ($a->hooks['expire'] as $hook) {
|
|
|
|
logger("Calling expire hook for '" . $hook[1] . "'", LOGGER_DEBUG);
|
2018-01-15 08:05:12 -05:00
|
|
|
Worker::add(['priority' => $a->queue['priority'], 'created' => $a->queue['created'], 'dont_fork' => true],
|
2017-11-19 11:35:45 -05:00
|
|
|
'Expire', 'hook', $hook[1]);
|
2017-11-19 11:25:13 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
logger('expire: end');
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|