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
|
|
|
/**
|
2024-08-23 13:11:15 +00:00
|
|
|
* Copyright (C) 2010-2024, the Friendica project
|
|
|
|
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
2020-02-09 15:18:46 +00:00
|
|
|
*
|
2024-08-23 13:11:15 +00:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2020-02-09 15:18:46 +00:00
|
|
|
*
|
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:01:26 +00:00
|
|
|
|
2018-07-23 11:40:52 +00:00
|
|
|
// Get options
|
2024-12-26 13:57:46 +00:00
|
|
|
$options = getopt('sn', ['spawn', 'no_cron']);
|
2018-07-23 11:40:52 +00:00
|
|
|
|
2017-11-19 22:00:43 +00:00
|
|
|
// Ensure that worker.php is executed from the base path of the installation
|
2024-12-26 11:56:25 +00:00
|
|
|
chdir(dirname(__DIR__));
|
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
|
|
|
|
2024-12-26 14:08:40 +00:00
|
|
|
$dice = (new Dice())->addRules(require(dirname(__DIR__) . '/static/dependencies.config.php'));
|
|
|
|
|
2024-12-26 19:04:27 +00:00
|
|
|
$app = \Friendica\App::fromDice($dice);
|
2019-07-20 23:22:10 +00:00
|
|
|
|
2024-12-26 19:04:27 +00:00
|
|
|
$app->processWorker($options ?: []);
|