]> git.mxchange.org Git - friendica.git/blob - src/Worker/CleanItemUri.php
version 2021.03-dev
[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
27 class CleanItemUri
28 {
29         /**
30          * Delete unused item-uri entries
31          */
32         public static function execute()
33         {
34                 // We have to avoid deleting newly created "item-uri" entries.
35                 // So we fetch a post that had been stored yesterday and only delete older ones.
36                 $item = DBA::selectFirst('item', ['uri-id'], ["`uid` = ? AND `received` < UTC_TIMESTAMP() - INTERVAL ? DAY", 0, 1],
37                         ['order' => ['received' => true]]);
38                 if (empty($item['uri-id'])) {
39                         Logger::warning('No item with uri-id found - we better quit here');
40                         return;
41                 }
42                 Logger::notice('Start deleting orphaned URI-ID', ['last-id' => $item['uri-id']]);
43                 $ret = DBA::e("DELETE FROM `item-uri` WHERE `id` < ?
44                         AND NOT `id` IN (SELECT `uri-id` FROM `item`)
45                         AND NOT `id` IN (SELECT `parent-uri-id` FROM `item`)
46                         AND NOT `id` IN (SELECT `thr-parent-id` FROM `item`)", $item['uri-id']);
47                 Logger::notice('Orphaned URI-ID entries removed', ['result' => $ret, 'rows' => DBA::affectedRows()]);
48         }
49 }