2017-11-19 16:25:13 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2020-02-09 15:18:46 +00: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 16:25:13 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
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;
|
2019-12-15 21:34:11 +00:00
|
|
|
use Friendica\DI;
|
2018-02-03 17:25:58 +00:00
|
|
|
use Friendica\Model\Item;
|
2017-11-19 16:25:13 +00:00
|
|
|
|
2020-02-09 15:18:46 +00:00
|
|
|
/**
|
|
|
|
* Expires old item entries
|
|
|
|
*/
|
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
|
|
|
{
|
2019-12-15 21:34:11 +00:00
|
|
|
$a = DI::app();
|
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-30 13:58:45 +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"];
|
2020-03-03 06:48:06 +00:00
|
|
|
$rows = DBA::select('item', ['id', 'guid'], $condition);
|
2018-07-20 12:19:26 +00:00
|
|
|
while ($row = DBA::fetch($rows)) {
|
2020-03-04 20:59:19 +00:00
|
|
|
Logger::info('Delete expired item', ['id' => $row['id'], 'guid' => $row['guid']]);
|
2018-07-20 12:19:26 +00:00
|
|
|
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-30 13:58:45 +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-30 13:58:45 +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
|
2020-01-19 20:21:13 +00:00
|
|
|
if (intval(DI::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-30 13:58:45 +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-30 13:58:45 +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-30 13:58:45 +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-30 13:58:45 +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-30 13:58:45 +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-30 13:58:45 +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;
|
|
|
|
}
|
|
|
|
}
|