2017-11-19 16:25:13 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Worker/Expire.php
|
|
|
|
* @brief Expires old item entries
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
2018-07-20 02:15:21 +00:00
|
|
|
use Friendica\BaseObject;
|
2017-11-19 16:25:13 +00:00
|
|
|
use Friendica\Core\Config;
|
2018-10-21 05:15:02 +00:00
|
|
|
use Friendica\Core\Hook;
|
2018-10-29 21:20:46 +00:00
|
|
|
use Friendica\Core\Logger;
|
2017-11-19 16:25:13 +00:00
|
|
|
use Friendica\Core\Worker;
|
2018-07-20 12:19:26 +00:00
|
|
|
use Friendica\Database\DBA;
|
2018-02-03 17:25:58 +00:00
|
|
|
use Friendica\Model\Item;
|
2017-11-19 16:25:13 +00:00
|
|
|
|
2017-12-17 20:24:57 +00:00
|
|
|
require_once 'include/dba.php';
|
|
|
|
|
2018-07-10 02:39:59 +00:00
|
|
|
class Expire
|
|
|
|
{
|
2018-10-21 05:15:02 +00:00
|
|
|
public static function execute($param = '', $hook_function = '')
|
2018-07-10 02:39:59 +00:00
|
|
|
{
|
2018-07-20 02:15:21 +00:00
|
|
|
$a = BaseObject::getApp();
|
2017-11-19 16:25:13 +00:00
|
|
|
|
2017-11-19 22:06:18 +00:00
|
|
|
require_once 'include/items.php';
|
2017-11-19 16:25:13 +00:00
|
|
|
|
2018-10-21 05:15:02 +00:00
|
|
|
Hook::loadHooks();
|
2017-11-19 16:25:13 +00:00
|
|
|
|
|
|
|
if ($param == 'delete') {
|
2018-10-29 21:20:46 +00:00
|
|
|
Logger::log('Delete expired items', LOGGER_DEBUG);
|
2017-11-19 16:25:13 +00:00
|
|
|
// physically remove anything that has been deleted for more than two months
|
2018-07-06 06:45:30 +00:00
|
|
|
$condition = ["`deleted` AND `changed` < UTC_TIMESTAMP() - INTERVAL 60 DAY"];
|
2018-07-29 03:54:34 +00:00
|
|
|
$rows = DBA::select('item', ['id'], $condition);
|
2018-07-20 12:19:26 +00:00
|
|
|
while ($row = DBA::fetch($rows)) {
|
|
|
|
DBA::delete('item', ['id' => $row['id']]);
|
2017-11-19 16:25:13 +00:00
|
|
|
}
|
2018-07-20 12:19:26 +00:00
|
|
|
DBA::close($rows);
|
2017-11-19 16:25:13 +00:00
|
|
|
|
2018-07-07 07:43:13 +00:00
|
|
|
// Normally we shouldn't have orphaned data at all.
|
|
|
|
// If we do have some, then we have to check why.
|
2018-10-29 21:20:46 +00:00
|
|
|
Logger::log('Deleting orphaned item activities - start', LOGGER_DEBUG);
|
2018-07-15 18:36:20 +00:00
|
|
|
$condition = ["NOT EXISTS (SELECT `iaid` FROM `item` WHERE `item`.`iaid` = `item-activity`.`id`)"];
|
2018-07-20 12:19:26 +00:00
|
|
|
DBA::delete('item-activity', $condition);
|
2018-10-29 21:20:46 +00:00
|
|
|
Logger::log('Orphaned item activities deleted: ' . DBA::affectedRows(), LOGGER_DEBUG);
|
2018-07-07 07:43:13 +00:00
|
|
|
|
2018-10-29 21:20:46 +00:00
|
|
|
Logger::log('Deleting orphaned item content - start', LOGGER_DEBUG);
|
2018-07-15 18:36:20 +00:00
|
|
|
$condition = ["NOT EXISTS (SELECT `icid` FROM `item` WHERE `item`.`icid` = `item-content`.`id`)"];
|
2018-07-20 12:19:26 +00:00
|
|
|
DBA::delete('item-content', $condition);
|
2018-10-29 21:20:46 +00:00
|
|
|
Logger::log('Orphaned item content deleted: ' . DBA::affectedRows(), LOGGER_DEBUG);
|
2017-11-19 16:25:13 +00:00
|
|
|
|
|
|
|
// make this optional as it could have a performance impact on large sites
|
|
|
|
if (intval(Config::get('system', 'optimize_items'))) {
|
2018-07-20 12:19:26 +00:00
|
|
|
DBA::e("OPTIMIZE TABLE `item`");
|
2017-11-19 16:25:13 +00:00
|
|
|
}
|
2018-07-07 07:43:13 +00:00
|
|
|
|
2018-10-29 21:20:46 +00:00
|
|
|
Logger::log('Delete expired items - done', LOGGER_DEBUG);
|
2017-11-19 16:25:13 +00:00
|
|
|
return;
|
|
|
|
} elseif (intval($param) > 0) {
|
2018-07-20 12:19:26 +00:00
|
|
|
$user = DBA::selectFirst('user', ['uid', 'username', 'expire'], ['uid' => $param]);
|
2018-07-21 12:46:04 +00:00
|
|
|
if (DBA::isResult($user)) {
|
2018-10-29 21:20:46 +00:00
|
|
|
Logger::log('Expire items for user '.$user['uid'].' ('.$user['username'].') - interval: '.$user['expire'], LOGGER_DEBUG);
|
2018-01-28 11:18:08 +00:00
|
|
|
Item::expire($user['uid'], $user['expire']);
|
2018-10-29 21:20:46 +00:00
|
|
|
Logger::log('Expire items for user '.$user['uid'].' ('.$user['username'].') - done ', LOGGER_DEBUG);
|
2017-11-19 16:25:13 +00:00
|
|
|
}
|
|
|
|
return;
|
2018-10-21 05:15:02 +00:00
|
|
|
} elseif ($param == 'hook' && !empty($hook_function)) {
|
|
|
|
foreach (Hook::getByName('expire') as $hook) {
|
|
|
|
if ($hook[1] == $hook_function) {
|
2018-10-29 21:20:46 +00:00
|
|
|
Logger::log("Calling expire hook '" . $hook[1] . "'", LOGGER_DEBUG);
|
2018-10-21 05:15:02 +00:00
|
|
|
Hook::callSingle($a, 'expire', $hook, $data);
|
2017-11-19 16:25:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-10-29 21:20:46 +00:00
|
|
|
Logger::log('expire: start');
|
2017-11-19 16:25:13 +00:00
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
Worker::add(['priority' => $a->queue['priority'], 'created' => $a->queue['created'], 'dont_fork' => true],
|
2017-11-19 16:35:45 +00:00
|
|
|
'Expire', 'delete');
|
2017-11-19 16:25:13 +00:00
|
|
|
|
2018-07-20 12:19:26 +00:00
|
|
|
$r = DBA::p("SELECT `uid`, `username` FROM `user` WHERE `expire` != 0");
|
|
|
|
while ($row = DBA::fetch($r)) {
|
2018-10-29 21:20:46 +00:00
|
|
|
Logger::log('Calling expiry for user '.$row['uid'].' ('.$row['username'].')', LOGGER_DEBUG);
|
2018-01-15 13:05:12 +00:00
|
|
|
Worker::add(['priority' => $a->queue['priority'], 'created' => $a->queue['created'], 'dont_fork' => true],
|
2017-11-19 16:35:45 +00:00
|
|
|
'Expire', (int)$row['uid']);
|
2017-11-19 16:25:13 +00:00
|
|
|
}
|
2018-07-20 12:19:26 +00:00
|
|
|
DBA::close($r);
|
2017-11-19 16:25:13 +00:00
|
|
|
|
2018-10-29 21:20:46 +00:00
|
|
|
Logger::log('expire: calling hooks');
|
2018-10-21 05:15:02 +00:00
|
|
|
foreach (Hook::getByName('expire') as $hook) {
|
2018-10-29 21:20:46 +00:00
|
|
|
Logger::log("Calling expire hook for '" . $hook[1] . "'", LOGGER_DEBUG);
|
2018-10-21 05:15:02 +00:00
|
|
|
Worker::add(['priority' => $a->queue['priority'], 'created' => $a->queue['created'], 'dont_fork' => true],
|
|
|
|
'Expire', 'hook', $hook[1]);
|
2017-11-19 16:25:13 +00:00
|
|
|
}
|
|
|
|
|
2018-10-29 21:20:46 +00:00
|
|
|
Logger::log('expire: end');
|
2017-11-19 16:25:13 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|