111 lines
4 KiB
PHP
111 lines
4 KiB
PHP
<?php
|
|
/**
|
|
* @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/>.
|
|
*
|
|
*/
|
|
|
|
namespace Friendica\Worker;
|
|
|
|
use Friendica\Core\Hook;
|
|
use Friendica\Core\Logger;
|
|
use Friendica\Core\Worker;
|
|
use Friendica\Database\DBA;
|
|
use Friendica\DI;
|
|
use Friendica\Model\Item;
|
|
use Friendica\Model\Post;
|
|
|
|
/**
|
|
* Expires old item entries
|
|
*/
|
|
class Expire
|
|
{
|
|
public static function execute($param = '', $hook_function = '')
|
|
{
|
|
$a = DI::app();
|
|
|
|
Hook::loadHooks();
|
|
|
|
if ($param == 'delete') {
|
|
Logger::log('Delete expired items', Logger::DEBUG);
|
|
// physically remove anything that has been deleted for more than two months
|
|
$condition = ["`deleted` AND `changed` < UTC_TIMESTAMP() - INTERVAL 60 DAY"];
|
|
$rows = DBA::select('item', ['id', 'guid', 'uri-id', 'uid'], $condition);
|
|
while ($row = DBA::fetch($rows)) {
|
|
Logger::info('Delete expired item', ['id' => $row['id'], 'guid' => $row['guid']]);
|
|
DBA::delete('item', ['id' => $row['id']]);
|
|
Post\User::delete(['uri-id' => $row['uri-id'], 'uid' => $row['uid']]);
|
|
}
|
|
DBA::close($rows);
|
|
|
|
// Normally we shouldn't have orphaned data at all.
|
|
// If we do have some, then we have to check why.
|
|
Logger::log('Deleting orphaned item content - start', Logger::DEBUG);
|
|
$condition = ["NOT EXISTS (SELECT `uri-id` FROM `item` WHERE `item`.`uri-id` = `post-content`.`uri-id`)"];
|
|
DBA::delete('post-content', $condition);
|
|
Logger::log('Orphaned item content deleted: ' . DBA::affectedRows(), Logger::DEBUG);
|
|
|
|
// make this optional as it could have a performance impact on large sites
|
|
if (intval(DI::config()->get('system', 'optimize_items'))) {
|
|
DBA::e("OPTIMIZE TABLE `item`");
|
|
}
|
|
|
|
Logger::log('Delete expired items - done', Logger::DEBUG);
|
|
return;
|
|
} elseif (intval($param) > 0) {
|
|
$user = DBA::selectFirst('user', ['uid', 'username', 'expire'], ['uid' => $param]);
|
|
if (DBA::isResult($user)) {
|
|
Logger::log('Expire items for user '.$user['uid'].' ('.$user['username'].') - interval: '.$user['expire'], Logger::DEBUG);
|
|
Item::expire($user['uid'], $user['expire']);
|
|
Logger::log('Expire items for user '.$user['uid'].' ('.$user['username'].') - done ', Logger::DEBUG);
|
|
}
|
|
return;
|
|
} elseif ($param == 'hook' && !empty($hook_function)) {
|
|
foreach (Hook::getByName('expire') as $hook) {
|
|
if ($hook[1] == $hook_function) {
|
|
Logger::log("Calling expire hook '" . $hook[1] . "'", Logger::DEBUG);
|
|
Hook::callSingle($a, 'expire', $hook, $data);
|
|
}
|
|
}
|
|
return;
|
|
}
|
|
|
|
Logger::log('expire: start');
|
|
|
|
Worker::add(['priority' => $a->queue['priority'], 'created' => $a->queue['created'], 'dont_fork' => true],
|
|
'Expire', 'delete');
|
|
|
|
$r = DBA::p("SELECT `uid`, `username` FROM `user` WHERE `expire` != 0");
|
|
while ($row = DBA::fetch($r)) {
|
|
Logger::log('Calling expiry for user '.$row['uid'].' ('.$row['username'].')', Logger::DEBUG);
|
|
Worker::add(['priority' => $a->queue['priority'], 'created' => $a->queue['created'], 'dont_fork' => true],
|
|
'Expire', (int)$row['uid']);
|
|
}
|
|
DBA::close($r);
|
|
|
|
Logger::log('expire: calling hooks');
|
|
foreach (Hook::getByName('expire') as $hook) {
|
|
Logger::log("Calling expire hook for '" . $hook[1] . "'", Logger::DEBUG);
|
|
Worker::add(['priority' => $a->queue['priority'], 'created' => $a->queue['created'], 'dont_fork' => true],
|
|
'Expire', 'hook', $hook[1]);
|
|
}
|
|
|
|
Logger::log('expire: end');
|
|
|
|
return;
|
|
}
|
|
}
|