2017-11-19 11:25:13 -05:00
|
|
|
<?php
|
|
|
|
/**
|
2020-02-09 10:18:46 -05:00
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2017-11-19 11:25:13 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
2018-10-21 01:15:02 -04:00
|
|
|
use Friendica\Core\Hook;
|
2018-10-29 17:20:46 -04:00
|
|
|
use Friendica\Core\Logger;
|
2017-11-19 11:25:13 -05:00
|
|
|
use Friendica\Core\Worker;
|
2018-07-20 08:19:26 -04:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-15 16:34:11 -05:00
|
|
|
use Friendica\DI;
|
2018-02-03 12:25:58 -05:00
|
|
|
use Friendica\Model\Item;
|
2017-11-19 11:25:13 -05:00
|
|
|
|
2020-02-09 10:18:46 -05:00
|
|
|
/**
|
|
|
|
* Expires old item entries
|
|
|
|
*/
|
2018-07-09 22:39:59 -04:00
|
|
|
class Expire
|
|
|
|
{
|
2018-10-21 01:15:02 -04:00
|
|
|
public static function execute($param = '', $hook_function = '')
|
2018-07-09 22:39:59 -04:00
|
|
|
{
|
2019-12-15 16:34:11 -05:00
|
|
|
$a = DI::app();
|
2017-11-19 11:25:13 -05:00
|
|
|
|
2018-10-21 01:15:02 -04:00
|
|
|
Hook::loadHooks();
|
2017-11-19 11:25:13 -05:00
|
|
|
|
|
|
|
if ($param == 'delete') {
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log('Delete expired items', Logger::DEBUG);
|
2017-11-19 11:25:13 -05:00
|
|
|
// 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"];
|
2020-03-03 01:48:06 -05:00
|
|
|
$rows = DBA::select('item', ['id', 'guid'], $condition);
|
2018-07-20 08:19:26 -04:00
|
|
|
while ($row = DBA::fetch($rows)) {
|
2020-03-03 01:48:06 -05:00
|
|
|
Logger::notice('Delete expired item', ['id' => $row['id'], 'guid' => $row['guid']]);
|
2018-07-20 08:19:26 -04:00
|
|
|
DBA::delete('item', ['id' => $row['id']]);
|
2017-11-19 11:25:13 -05:00
|
|
|
}
|
2018-07-20 08:19:26 -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.
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log('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-20 08:19:26 -04:00
|
|
|
DBA::delete('item-activity', $condition);
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log('Orphaned item activities deleted: ' . DBA::affectedRows(), Logger::DEBUG);
|
2018-07-07 03:43:13 -04:00
|
|
|
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log('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-20 08:19:26 -04:00
|
|
|
DBA::delete('item-content', $condition);
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log('Orphaned item content deleted: ' . DBA::affectedRows(), Logger::DEBUG);
|
2017-11-19 11:25:13 -05:00
|
|
|
|
|
|
|
// make this optional as it could have a performance impact on large sites
|
2020-01-19 15:21:13 -05:00
|
|
|
if (intval(DI::config()->get('system', 'optimize_items'))) {
|
2018-07-20 08:19:26 -04:00
|
|
|
DBA::e("OPTIMIZE TABLE `item`");
|
2017-11-19 11:25:13 -05:00
|
|
|
}
|
2018-07-07 03:43:13 -04:00
|
|
|
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log('Delete expired items - done', Logger::DEBUG);
|
2017-11-19 11:25:13 -05:00
|
|
|
return;
|
|
|
|
} elseif (intval($param) > 0) {
|
2018-07-20 08:19:26 -04:00
|
|
|
$user = DBA::selectFirst('user', ['uid', 'username', 'expire'], ['uid' => $param]);
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($user)) {
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log('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']);
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log('Expire items for user '.$user['uid'].' ('.$user['username'].') - done ', Logger::DEBUG);
|
2017-11-19 11:25:13 -05:00
|
|
|
}
|
|
|
|
return;
|
2018-10-21 01:15:02 -04:00
|
|
|
} elseif ($param == 'hook' && !empty($hook_function)) {
|
|
|
|
foreach (Hook::getByName('expire') as $hook) {
|
|
|
|
if ($hook[1] == $hook_function) {
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log("Calling expire hook '" . $hook[1] . "'", Logger::DEBUG);
|
2018-10-21 01:15:02 -04:00
|
|
|
Hook::callSingle($a, 'expire', $hook, $data);
|
2017-11-19 11:25:13 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-10-29 17:20:46 -04:00
|
|
|
Logger::log('expire: start');
|
2017-11-19 11:25:13 -05:00
|
|
|
|
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
|
|
|
|
2018-07-20 08:19:26 -04:00
|
|
|
$r = DBA::p("SELECT `uid`, `username` FROM `user` WHERE `expire` != 0");
|
|
|
|
while ($row = DBA::fetch($r)) {
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log('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
|
|
|
}
|
2018-07-20 08:19:26 -04:00
|
|
|
DBA::close($r);
|
2017-11-19 11:25:13 -05:00
|
|
|
|
2018-10-29 17:20:46 -04:00
|
|
|
Logger::log('expire: calling hooks');
|
2018-10-21 01:15:02 -04:00
|
|
|
foreach (Hook::getByName('expire') as $hook) {
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log("Calling expire hook for '" . $hook[1] . "'", Logger::DEBUG);
|
2018-10-21 01:15:02 -04:00
|
|
|
Worker::add(['priority' => $a->queue['priority'], 'created' => $a->queue['created'], 'dont_fork' => true],
|
|
|
|
'Expire', 'hook', $hook[1]);
|
2017-11-19 11:25:13 -05:00
|
|
|
}
|
|
|
|
|
2018-10-29 17:20:46 -04:00
|
|
|
Logger::log('expire: end');
|
2017-11-19 11:25:13 -05:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|