5 * @brief Starts the background processing
8 use Friendica\Core\Config;
9 use Friendica\Core\Worker;
10 use Friendica\Core\Update;
14 $longopts = ['spawn', 'no_cron'];
15 $options = getopt($shortopts, $longopts);
17 // Ensure that worker.php is executed from the base path of the installation
18 if (!file_exists("boot.php") && (sizeof($_SERVER["argv"]) != 0)) {
19 $directory = dirname($_SERVER["argv"][0]);
21 if (substr($directory, 0, 1) != '/') {
22 $directory = $_SERVER["PWD"] . '/' . $directory;
24 $directory = realpath($directory . '/..');
29 require dirname(__DIR__) . '/vendor/autoload.php';
31 $a = new App(dirname(__DIR__));
33 // Check the database structure and possibly fixes it
36 // Quit when in maintenance
37 if (!$a->getMode()->has(App\Mode::MAINTENANCEDISABLED)) {
41 $a->setBaseURL(Config::get('system', 'url'));
43 $spawn = array_key_exists('s', $options) || array_key_exists('spawn', $options);
46 Worker::spawnWorker();
50 $run_cron = !array_key_exists('n', $options) && !array_key_exists('no_cron', $options);
52 Worker::processQueue($run_cron);
54 Worker::unclaimProcess();