friendica/bin/worker.php

65 lines
1.5 KiB
PHP
Raw Normal View History

2017-12-14 11:38:51 -05:00
#!/usr/bin/env php
2010-07-18 23:49:54 -04:00
<?php
2017-12-14 11:38:51 -05:00
/**
2018-03-18 23:25:21 -04:00
* @file bin/worker.php
2020-01-19 01:05:23 -05:00
* Starts the background processing
2017-12-14 11:38:51 -05:00
*/
2019-08-05 03:02:55 -04:00
use Dice\Dice;
use Friendica\App;
2017-04-30 00:01:26 -04:00
use Friendica\Core\Config;
use Friendica\Core\Update;
use Friendica\Core\Worker;
use Friendica\DI;
2019-09-17 10:47:00 -04:00
use Psr\Log\LoggerInterface;
2017-04-30 00:01:26 -04:00
// Get options
$shortopts = 'sn';
$longopts = ['spawn', 'no_cron'];
$options = getopt($shortopts, $longopts);
2017-11-19 17:00:43 -05:00
// Ensure that worker.php is executed from the base path of the installation
if (!file_exists("boot.php") && (sizeof($_SERVER["argv"]) != 0)) {
$directory = dirname($_SERVER["argv"][0]);
if (substr($directory, 0, 1) != '/') {
$directory = $_SERVER["PWD"] . '/' . $directory;
2017-06-04 16:03:37 -04:00
}
$directory = realpath($directory . '/..');
chdir($directory);
}
2011-04-16 02:40:43 -04:00
require dirname(__DIR__) . '/vendor/autoload.php';
2019-08-05 03:02:55 -04:00
$dice = (new Dice())->addRules(include __DIR__ . '/../static/dependencies.config.php');
2019-09-17 10:47:00 -04:00
$dice = $dice->addRule(LoggerInterface::class,['constructParams' => ['worker']]);
DI::init($dice);
$a = DI::app();
// Check the database structure and possibly fixes it
Update::check($a->getBasePath(), true, DI::mode());
2017-09-30 13:42:03 -04:00
// Quit when in maintenance
if (!DI::mode()->has(App\Mode::MAINTENANCEDISABLED)) {
return;
}
DI::baseUrl()->saveByURL(Config::get('system', 'url'));
2017-02-26 18:16:49 -05:00
$spawn = array_key_exists('s', $options) || array_key_exists('spawn', $options);
2017-12-14 11:38:51 -05:00
if ($spawn) {
Worker::spawnWorker();
2018-12-26 00:40:12 -05:00
exit();
2017-12-14 11:38:51 -05:00
}
$run_cron = !array_key_exists('n', $options) && !array_key_exists('no_cron', $options);
2017-12-14 11:38:51 -05:00
Worker::processQueue($run_cron);
Worker::unclaimProcess();
Worker::endProcess();