2020-10-15 08:02:17 +02:00
|
|
|
<?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\Logger;
|
2020-10-17 14:39:42 +02:00
|
|
|
use Friendica\Core\Worker;
|
2020-10-15 08:02:17 +02:00
|
|
|
use Friendica\Database\DBA;
|
|
|
|
use Friendica\DI;
|
2021-02-08 08:48:36 +01:00
|
|
|
use Friendica\Model\Item;
|
2020-10-15 08:02:17 +02:00
|
|
|
|
|
|
|
class ExpirePosts
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Delete old post entries
|
|
|
|
*/
|
|
|
|
public static function execute()
|
|
|
|
{
|
|
|
|
$expire_days = DI::config()->get('system', 'dbclean-expire-days');
|
|
|
|
$expire_days_unclaimed = DI::config()->get('system', 'dbclean-expire-unclaimed');
|
|
|
|
if (empty($expire_days_unclaimed)) {
|
|
|
|
$expire_days_unclaimed = $expire_days;
|
|
|
|
}
|
|
|
|
|
2020-10-17 10:16:17 +02:00
|
|
|
$limit = DI::config()->get('system', 'dbclean-expire-limit');
|
|
|
|
if (empty($limit)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-10-15 08:02:17 +02:00
|
|
|
if (!empty($expire_days)) {
|
2020-10-17 10:16:17 +02:00
|
|
|
do {
|
|
|
|
Logger::notice('Start deleting expired threads', ['expiry_days' => $expire_days]);
|
|
|
|
$ret = DBA::e("DELETE FROM `item-uri` WHERE `id` IN
|
2021-02-08 08:48:36 +01:00
|
|
|
(SELECT `uri-id` FROM `post-thread` WHERE `received` < UTC_TIMESTAMP() - INTERVAL ? DAY
|
2021-02-14 10:43:27 +01:00
|
|
|
AND NOT `uri-id` IN (SELECT `uri-id` FROM `post-thread-user`
|
|
|
|
WHERE (`mention` OR `starred` OR `wall` OR `pinned`) AND `uri-id` = `post-thread`.`uri-id`)
|
|
|
|
AND NOT `uri-id` IN (SELECT `uri-id` FROM `post-category`
|
|
|
|
WHERE `uri-id` = `post-thread`.`uri-id`)
|
|
|
|
AND NOT `uri-id` IN (SELECT `uri-id` FROM `post-media`
|
|
|
|
WHERE `uri-id` = `post-thread`.`uri-id`)
|
|
|
|
AND NOT `uri-id` IN (SELECT `parent-uri-id` FROM `post-user` INNER JOIN `contact` ON `contact`.`id` = `contact-id` AND `notify_new_posts`
|
2021-02-08 08:48:36 +01:00
|
|
|
WHERE `parent-uri-id` = `post-thread`.`uri-id`)
|
2021-02-14 10:43:27 +01:00
|
|
|
AND NOT `uri-id` IN (SELECT `parent-uri-id` FROM `post-user`
|
2021-02-15 08:25:45 +01:00
|
|
|
WHERE (`origin` OR `event-id` != 0 OR `post-type` = ?) AND `parent-uri-id` = `post-thread`.`uri-id`)
|
2021-02-14 10:43:27 +01:00
|
|
|
AND NOT `uri-id` IN (SELECT `uri-id` FROM `post-content`
|
2021-02-15 11:29:58 +01:00
|
|
|
WHERE `resource-id` != 0 AND `uri-id` = `post-thread`.`uri-id`))
|
2021-02-08 08:48:36 +01:00
|
|
|
ORDER BY `id` LIMIT ?", $expire_days, Item::PT_PERSONAL_NOTE, $limit);
|
2020-10-15 08:02:17 +02:00
|
|
|
|
2020-10-17 10:16:17 +02:00
|
|
|
$rows = DBA::affectedRows();
|
|
|
|
Logger::notice('Deleted expired threads', ['result' => $ret, 'rows' => $rows]);
|
2020-10-17 14:39:42 +02:00
|
|
|
|
|
|
|
if (!Worker::isInMaintenanceWindow()) {
|
|
|
|
Logger::notice('We are outside of the maintenance window, quitting');
|
|
|
|
return;
|
|
|
|
}
|
2020-10-17 10:16:17 +02:00
|
|
|
} while ($rows >= $limit);
|
2020-10-15 08:02:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($expire_days_unclaimed)) {
|
2020-10-17 10:16:17 +02:00
|
|
|
do {
|
2020-10-30 21:26:16 +01:00
|
|
|
Logger::notice('Start deleting unclaimed public items', ['expiry_days' => $expire_days_unclaimed]);
|
2020-10-17 10:16:17 +02:00
|
|
|
$ret = DBA::e("DELETE FROM `item-uri` WHERE `id` IN
|
2021-02-14 10:43:27 +01:00
|
|
|
(SELECT `uri-id` FROM `post-user` WHERE `gravity` = ? AND `uid` = ? AND `received` < UTC_TIMESTAMP() - INTERVAL ? DAY
|
|
|
|
AND NOT `uri-id` IN (SELECT `parent-uri-id` FROM `post-user` AS `i` WHERE `i`.`uid` != ?
|
|
|
|
AND `i`.`parent-uri-id` = `post-user`.`uri-id`)
|
|
|
|
AND NOT `uri-id` IN (SELECT `parent-uri-id` FROM `post-user` AS `i` WHERE `i`.`uid` = ?
|
|
|
|
AND `i`.`parent-uri-id` = `post-user`.`uri-id` AND `i`.`received` > UTC_TIMESTAMP() - INTERVAL ? DAY))
|
2020-10-17 10:16:17 +02:00
|
|
|
ORDER BY `id` LIMIT ?",
|
2020-10-30 21:26:16 +01:00
|
|
|
GRAVITY_PARENT, 0, $expire_days_unclaimed, 0, 0, $expire_days_unclaimed, $limit);
|
2020-10-15 08:02:17 +02:00
|
|
|
|
2020-10-17 10:16:17 +02:00
|
|
|
$rows = DBA::affectedRows();
|
|
|
|
Logger::notice('Deleted unclaimed public items', ['result' => $ret, 'rows' => $rows]);
|
2020-10-17 14:39:42 +02:00
|
|
|
|
|
|
|
if (!Worker::isInMaintenanceWindow()) {
|
|
|
|
Logger::notice('We are outside of the maintenance window, quitting');
|
|
|
|
return;
|
|
|
|
}
|
2020-10-17 10:16:17 +02:00
|
|
|
} while ($rows >= $limit);
|
2020-10-15 08:02:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|