2017-12-14 16:38:51 +00:00
|
|
|
#!/usr/bin/env php
|
2010-07-19 03:49:54 +00:00
|
|
|
<?php
|
2017-12-14 16:38:51 +00:00
|
|
|
/**
|
2021-03-29 06:40:20 +00:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 15:18:46 +00:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2020-01-19 06:05:23 +00:00
|
|
|
* Starts the background processing
|
2017-12-14 16:38:51 +00:00
|
|
|
*/
|
2019-02-03 21:46:50 +00:00
|
|
|
|
2020-09-07 09:51:26 +00:00
|
|
|
if (php_sapi_name() !== 'cli') {
|
|
|
|
header($_SERVER["SERVER_PROTOCOL"] . ' 403 Forbidden');
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2019-08-05 07:02:55 +00:00
|
|
|
use Dice\Dice;
|
2017-04-30 04:07:00 +00:00
|
|
|
use Friendica\App;
|
2021-01-01 19:35:29 +00:00
|
|
|
use Friendica\App\Mode;
|
2018-10-14 11:26:53 +00:00
|
|
|
use Friendica\Core\Update;
|
2019-02-03 21:46:50 +00:00
|
|
|
use Friendica\Core\Worker;
|
2019-12-15 22:52:15 +00:00
|
|
|
use Friendica\DI;
|
2019-09-17 14:47:00 +00:00
|
|
|
use Psr\Log\LoggerInterface;
|
2017-04-30 04:01:26 +00:00
|
|
|
|
2018-07-23 11:40:52 +00:00
|
|
|
// Get options
|
2018-07-24 06:15:58 +00:00
|
|
|
$shortopts = 'sn';
|
|
|
|
$longopts = ['spawn', 'no_cron'];
|
2018-07-23 11:40:52 +00:00
|
|
|
$options = getopt($shortopts, $longopts);
|
|
|
|
|
2017-11-19 22:00:43 +00:00
|
|
|
// Ensure that worker.php is executed from the base path of the installation
|
2017-06-08 02:00:59 +00:00
|
|
|
if (!file_exists("boot.php") && (sizeof($_SERVER["argv"]) != 0)) {
|
2015-02-19 09:45:46 +00:00
|
|
|
$directory = dirname($_SERVER["argv"][0]);
|
2015-02-19 09:26:49 +00:00
|
|
|
|
2018-10-22 02:25:53 +00:00
|
|
|
if (substr($directory, 0, 1) != '/') {
|
|
|
|
$directory = $_SERVER["PWD"] . '/' . $directory;
|
2017-06-04 20:03:37 +00:00
|
|
|
}
|
2018-10-22 02:25:53 +00:00
|
|
|
$directory = realpath($directory . '/..');
|
2015-02-19 09:26:49 +00:00
|
|
|
|
2015-02-19 09:45:46 +00:00
|
|
|
chdir($directory);
|
|
|
|
}
|
2011-04-16 06:40:43 +00:00
|
|
|
|
2018-12-24 14:56:48 +00:00
|
|
|
require dirname(__DIR__) . '/vendor/autoload.php';
|
2011-01-28 13:04:18 +00:00
|
|
|
|
2019-08-05 07:02:55 +00:00
|
|
|
$dice = (new Dice())->addRules(include __DIR__ . '/../static/dependencies.config.php');
|
2019-09-17 14:47:00 +00:00
|
|
|
$dice = $dice->addRule(LoggerInterface::class,['constructParams' => ['worker']]);
|
2019-07-20 23:22:10 +00:00
|
|
|
|
2019-12-15 22:52:15 +00:00
|
|
|
DI::init($dice);
|
|
|
|
$a = DI::app();
|
2011-01-28 13:04:18 +00:00
|
|
|
|
2021-01-01 19:35:29 +00:00
|
|
|
DI::mode()->setExecutor(Mode::WORKER);
|
|
|
|
|
2017-11-18 11:01:01 +00:00
|
|
|
// Check the database structure and possibly fixes it
|
2019-12-15 22:52:15 +00:00
|
|
|
Update::check($a->getBasePath(), true, DI::mode());
|
2017-09-30 17:42:03 +00:00
|
|
|
|
2017-11-18 11:01:01 +00:00
|
|
|
// Quit when in maintenance
|
2019-12-15 22:52:15 +00:00
|
|
|
if (!DI::mode()->has(App\Mode::MAINTENANCEDISABLED)) {
|
2017-11-18 11:01:01 +00:00
|
|
|
return;
|
|
|
|
}
|
2016-10-02 13:52:52 +00:00
|
|
|
|
2020-01-19 20:21:13 +00:00
|
|
|
DI::baseUrl()->saveByURL(DI::config()->get('system', 'url'));
|
2017-02-26 23:16:49 +00:00
|
|
|
|
2018-07-23 11:40:52 +00:00
|
|
|
$spawn = array_key_exists('s', $options) || array_key_exists('spawn', $options);
|
2017-12-14 16:38:51 +00:00
|
|
|
|
|
|
|
if ($spawn) {
|
|
|
|
Worker::spawnWorker();
|
2018-12-26 05:40:12 +00:00
|
|
|
exit();
|
2017-12-14 16:38:51 +00:00
|
|
|
}
|
|
|
|
|
2018-07-24 06:15:58 +00:00
|
|
|
$run_cron = !array_key_exists('n', $options) && !array_key_exists('no_cron', $options);
|
2017-12-14 16:38:51 +00:00
|
|
|
|
2017-11-18 11:01:01 +00:00
|
|
|
Worker::processQueue($run_cron);
|
2016-11-27 00:55:05 +00:00
|
|
|
|
2017-11-18 11:01:01 +00:00
|
|
|
Worker::unclaimProcess();
|
2016-09-09 20:55:49 +00:00
|
|
|
|
2020-09-15 16:16:44 +00:00
|
|
|
DI::process()->end();
|