mirror of
https://github.com/friendica/friendica
synced 2024-11-10 05:02:58 +00:00
cd52d0b3e9
* Adding Argument class to Friendica * Adding Argument class to Friendica * Adding Argument class to Friendica * fixing arguments for `spawnWorker` * Adding `use Friendica\BaseObject` to `ApiTest.php` * Refactoring the argument-usages of Friendica * Refactoring the argument-usages of Friendica * removing superfluous []
64 lines
1.3 KiB
PHP
Executable file
64 lines
1.3 KiB
PHP
Executable file
#!/usr/bin/env php
|
|
<?php
|
|
/**
|
|
* @file bin/worker.php
|
|
* @brief Starts the background processing
|
|
*/
|
|
|
|
use Friendica\App;
|
|
use Friendica\Core\Addon;
|
|
use Friendica\Core\Config;
|
|
use Friendica\Core\Worker;
|
|
|
|
// Get options
|
|
$shortopts = '';
|
|
$shortopts .= 'sc';
|
|
$longopts = [ 'spawn', 'cron' ];
|
|
$options = getopt($shortopts, $longopts);
|
|
|
|
// 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;
|
|
}
|
|
$directory = realpath($directory."/..");
|
|
|
|
chdir($directory);
|
|
}
|
|
|
|
require_once "boot.php";
|
|
|
|
$a = new App(dirname(__DIR__));
|
|
|
|
Config::load();
|
|
|
|
// Check the database structure and possibly fixes it
|
|
check_db(true);
|
|
|
|
// Quit when in maintenance
|
|
if (Config::get('system', 'maintenance', false, true)) {
|
|
return;
|
|
}
|
|
|
|
$a->set_baseurl(Config::get('system', 'url'));
|
|
|
|
Addon::loadHooks();
|
|
|
|
$spawn = array_key_exists('s', $options) || array_key_exists('spawn', $options);
|
|
|
|
if ($spawn) {
|
|
Worker::spawnWorker();
|
|
killme();
|
|
}
|
|
|
|
$run_cron = array_key_exists('c', $options) || array_key_exists('cron', $options);
|
|
|
|
Worker::processQueue($run_cron);
|
|
|
|
Worker::unclaimProcess();
|
|
|
|
Worker::endProcess();
|
|
|
|
killme();
|