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