define('PRIORITY_MEDIUM', 30);
define('PRIORITY_LOW', 40);
define('PRIORITY_NEGLIGIBLE', 50);
+define('PRIORITIES', [PRIORITY_CRITICAL, PRIORITY_HIGH, PRIORITY_MEDIUM, PRIORITY_LOW, PRIORITY_NEGLIGIBLE]);
/* @}*/
/**
// For this reason the variables have to be initialized.
DI::profiler()->reset();
+ if (!in_array($queue['priority'], PRIORITIES)) {
+ Logger::warning('Invalid period', ['queue' => $queue, 'callstack' => System::callstack(20)]);
+ $queue['priority'] = PRIORITY_MEDIUM;
+ }
+
$a->queue = $queue;
$up_duration = microtime(true) - self::$up_start;
$found = DBA::exists('workerqueue', ['command' => $command, 'parameter' => $parameters, 'done' => false]);
$added = false;
+ if (!in_array($priority, PRIORITIES)) {
+ Logger::warning('Invalid period', ['priority' => $priority, 'command' => $command, 'callstack' => System::callstack(20)]);
+ $priority = PRIORITY_MEDIUM;
+ }
+
// Quit if there was a database error - a precaution for the update process to 3.5.3
if (DBA::errorNo() != 0) {
return false;
$item['network'] = Protocol::DFRN;
$item['protocol'] = Conversation::PARCEL_DIRECT;
- if (is_int($notify)) {
+ if (in_array($notify, PRIORITIES)) {
$priority = $notify;
}
} else {
$_SESSION["authenticated"] = true;
$_SESSION["uid"] = $contact['uid'];
- return $result;
+ return (bool)$result;
}
/**
'taglist' => $taglist, 'attachments' => $attachments];
}
} else {
- Logger::info('Post already crated or exists in the delayed posts queue', ['uid' => $item['uid'], 'uri' => $item["uri"]]);
+ Logger::info('Post already created or exists in the delayed posts queue', ['uid' => $item['uid'], 'uri' => $item["uri"]]);
}
}
namespace Friendica\Worker;
use Friendica\Core\Logger;
-use Friendica\Model\Item;
use Friendica\Model\Post;
-use Friendica\Model\Tag;
class DelayedPublish
{
public static function execute(array $item, int $notify = 0, array $taglist = [], array $attachments = [])
{
$id = Post\Delayed::publish($item, $notify, $taglist, $attachments);
- Logger::notice('Post published', ['id' => $id, 'uid' => $item['uid'], 'cid' => $item['contact-id']]);
+ Logger::notice('Post published', ['id' => $id, 'uid' => $item['uid'], 'cid' => $item['contact-id'], 'notify' => $notify]);
}
}