friendica-github/bin/worker.php

36 lines
1,007 B
PHP
Raw Normal View History

2017-12-14 16:38:51 +00:00
#!/usr/bin/env php
2010-07-18 20:49:54 -07:00
<?php
2017-12-14 16:38:51 +00:00
/**
* Copyright (C) 2010-2024, the Friendica project
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*
2020-01-19 06:05:23 +00:00
* Starts the background processing
*
* @deprecated 2025.02 use `bin/console.php worker` instead
2017-12-14 16:38:51 +00:00
*/
if (php_sapi_name() !== 'cli') {
header($_SERVER["SERVER_PROTOCOL"] . ' 403 Forbidden');
exit();
}
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-15 23:40:43 -07:00
require dirname(__DIR__) . '/vendor/autoload.php';
fwrite(STDOUT, '`bin/worker.php` is deprecated since 2024.02 and will be removed in 5 months, please use `bin/console.php worker` instead.' . \PHP_EOL);
// BC: Add console command as second argument
$argv = $_SERVER['argv'] ?? [];
array_splice($argv, 1, 0, "worker");
$_SERVER['argv'] = $argv;
$container = \Friendica\Core\DiceContainer::fromBasePath(dirname(__DIR__));
2025-01-08 22:20:06 +00:00
$app = \Friendica\App::fromContainer($container);
$app->processConsole($_SERVER);