]> git.mxchange.org Git - friendica.git/blob - src/Worker/SpoolPost.php
Merge pull request #8261 from MrPetovan/task/8251-use-about-for-pdesc
[friendica.git] / src / Worker / SpoolPost.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\Model\Item;
26
27 /**
28  * Posts items that where spooled because they couldn't be posted.
29  */
30 class SpoolPost {
31         public static function execute() {
32                 $path = get_spoolpath();
33
34                 if (($path != '') && is_writable($path)){
35                         if ($dh = opendir($path)) {
36                                 while (($file = readdir($dh)) !== false) {
37
38                                         // It is not named like a spool file, so we don't care.
39                                         if (substr($file, 0, 5) != "item-") {
40                                                 continue;
41                                         }
42
43                                         $fullfile = $path."/".$file;
44
45                                         // We don't care about directories either
46                                         if (filetype($fullfile) != "file") {
47                                                 continue;
48                                         }
49
50                                         // We can't read or write the file? So we don't care about it.
51                                         if (!is_writable($fullfile) || !is_readable($fullfile)) {
52                                                 continue;
53                                         }
54
55                                         $arr = json_decode(file_get_contents($fullfile), true);
56
57                                         // If it isn't an array then it is no spool file
58                                         if (!is_array($arr)) {
59                                                 continue;
60                                         }
61
62                                         // Skip if it doesn't seem to be an item array
63                                         if (!isset($arr['uid']) && !isset($arr['uri']) && !isset($arr['network'])) {
64                                                 continue;
65                                         }
66
67                                         $result = Item::insert($arr);
68
69                                         Logger::log("Spool file ".$file." stored: ".$result, Logger::DEBUG);
70                                         unlink($fullfile);
71                                 }
72                                 closedir($dh);
73                         }
74                 }
75         }
76 }