]> git.mxchange.org Git - friendica.git/blob - src/Worker/SpoolPost.php
spelling: does
[friendica.git] / src / Worker / SpoolPost.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, the Friendica project
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\Core\System;
26 use Friendica\Model\Item;
27
28 /**
29  * Posts items that where spooled because they couldn't be posted.
30  */
31 class SpoolPost {
32         public static function execute() {
33                 $path = System::getSpoolPath();
34
35                 if (($path != '') && is_writable($path)){
36                         if ($dh = opendir($path)) {
37                                 while (($file = readdir($dh)) !== false) {
38
39                                         // It is not named like a spool file, so we don't care.
40                                         if (substr($file, 0, 5) != "item-") {
41                                                 Logger::info('Spool file does not start with "item-"', ['file' => $file]);
42                                                 continue;
43                                         }
44
45                                         $fullfile = $path."/".$file;
46
47                                         // We don't care about directories either
48                                         if (filetype($fullfile) != "file") {
49                                                 Logger::info('Spool file is no file', ['file' => $file]);
50                                                 continue;
51                                         }
52
53                                         // We can't read or write the file? So we don't care about it.
54                                         if (!is_writable($fullfile) || !is_readable($fullfile)) {
55                                                 Logger::warning('Spool file has insufficent permissions', ['file' => $file, 'writable' => is_writable($fullfile), 'readable' => is_readable($fullfile)]);
56                                                 continue;
57                                         }
58
59                                         $arr = json_decode(file_get_contents($fullfile), true);
60
61                                         // If it isn't an array then it is no spool file
62                                         if (!is_array($arr)) {
63                                                 Logger::notice('Spool file is no array', ['file' => $file]);
64                                                 continue;
65                                         }
66
67                                         // Skip if it doesn't seem to be an item array
68                                         if (!isset($arr['uid']) && !isset($arr['uri']) && !isset($arr['network'])) {
69                                                 Logger::warning('Spool file does not contain the needed fields', ['file' => $file]);
70                                                 continue;
71                                         }
72
73                                         $result = Item::insert($arr);
74
75                                         Logger::info('Spool file is stored', ['file' => $file, 'result' => $result]);
76                                         unlink($fullfile);
77                                 }
78                                 closedir($dh);
79                         }
80                 }
81         }
82 }