friendica/include/spool_post.php

58 lines
1.2 KiB
PHP
Raw Normal View History

2016-12-01 22:11:52 +01:00
<?php
/**
* @file include/spool_post.php
* @brief Posts items that wer spooled because they couldn't be posted.
*/
use \Friendica\Core\Config;
2016-12-01 22:11:52 +01:00
require_once("include/items.php");
function spool_post_run($argv, $argc) {
2017-02-27 00:16:49 +01:00
global $a;
2016-12-01 22:11:52 +01:00
$path = get_spoolpath();
2017-02-19 11:13:40 +01:00
if (($path != '') AND is_writable($path)){
2016-12-01 22:11:52 +01:00
if ($dh = opendir($path)) {
while (($file = readdir($dh)) !== false) {
2017-02-19 09:23:21 +01:00
// It is not named like a spool file, so we don't care.
if (substr($file, 0, 5) != "item-") {
continue;
}
2016-12-01 22:11:52 +01:00
$fullfile = $path."/".$file;
2017-02-19 09:23:21 +01:00
// We don't care about directories either
2016-12-01 22:11:52 +01:00
if (filetype($fullfile) != "file") {
continue;
}
2017-02-19 09:23:21 +01:00
// We can't read or write the file? So we don't care about it.
if (!is_writable($fullfile) OR !is_readable($fullfile)) {
continue;
}
2016-12-01 22:11:52 +01:00
$arr = json_decode(file_get_contents($fullfile), true);
// If it isn't an array then it is no spool file
if (!is_array($arr)) {
continue;
}
// Skip if it doesn't seem to be an item array
if (!isset($arr['uid']) AND !isset($arr['uri']) AND !isset($arr['network'])) {
continue;
}
$result = item_store($arr);
2016-12-01 22:11:52 +01:00
logger("Spool file ".$file." stored: ".$result, LOGGER_DEBUG);
unlink($fullfile);
}
closedir($dh);
}
}
}