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.
|
|
|
|
*/
|
2017-01-18 22:45:32 +01:00
|
|
|
|
|
|
|
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);
|
2017-02-16 21:23:07 +01:00
|
|
|
|
|
|
|
// If it isn't an array then it is no spool file
|
2017-02-14 22:13:00 +01:00
|
|
|
if (!is_array($arr)) {
|
|
|
|
continue;
|
|
|
|
}
|
2017-02-16 21:23:07 +01:00
|
|
|
|
|
|
|
// Skip if it doesn't seem to be an item array
|
|
|
|
if (!isset($arr['uid']) AND !isset($arr['uri']) AND !isset($arr['network'])) {
|
2017-02-14 22:13:00 +01:00
|
|
|
continue;
|
|
|
|
}
|
2017-02-16 21:23:07 +01:00
|
|
|
|
|
|
|
$result = item_store($arr);
|
|
|
|
|
2016-12-01 22:11:52 +01:00
|
|
|
logger("Spool file ".$file." stored: ".$result, LOGGER_DEBUG);
|
|
|
|
unlink($fullfile);
|
|
|
|
}
|
|
|
|
closedir($dh);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|