]> git.mxchange.org Git - friendica.git/blob - src/Worker/CleanItemUri.php
More "item" traces removed
[friendica.git] / src / Worker / CleanItemUri.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Worker;
23
24 use Friendica\Core\Logger;
25 use Friendica\Database\DBA;
26 use Friendica\Model\Post;
27
28 class CleanItemUri
29 {
30         /**
31          * Delete unused item-uri entries
32          */
33         public static function execute()
34         {
35                 // We have to avoid deleting newly created "item-uri" entries.
36                 // So we fetch a post that had been stored yesterday and only delete older ones.
37                 $item = Post::selectFirst(['uri-id'], ["`uid` = ? AND `received` < UTC_TIMESTAMP() - INTERVAL ? DAY", 0, 1],
38                         ['order' => ['received' => true]]);
39                 if (empty($item['uri-id'])) {
40                         Logger::warning('No item with uri-id found - we better quit here');
41                         return;
42                 }
43                 Logger::notice('Start deleting orphaned URI-ID', ['last-id' => $item['uri-id']]);
44                 $ret = DBA::e("DELETE FROM `item-uri` WHERE `id` < ?
45                         AND NOT EXISTS(SELECT `uri-id` FROM `post-user` WHERE `uri-id` = `item-uri`.`id`)
46                         AND NOT EXISTS(SELECT `parent-uri-id` FROM `post-user` WHERE `parent-uri-id` = `item-uri`.`id`)
47                         AND NOT EXISTS(SELECT `thr-parent-id` FROM `post-user` WHERE `thr-parent-id` = `item-uri`.`id`)
48                         AND NOT EXISTS(SELECT `external-id` FROM `post-user` WHERE `external-id` = `item-uri`.`id`)", $item['uri-id']);
49                 Logger::notice('Orphaned URI-ID entries removed', ['result' => $ret, 'rows' => DBA::affectedRows()]);
50         }
51 }