2022-05-20 22:52:44 +00:00
|
|
|
#!/usr/bin/env php
|
2016-11-27 20:57:18 +00:00
|
|
|
<?php
|
2016-11-27 22:52:21 +00:00
|
|
|
/**
|
2024-08-23 15:11:15 +02:00
|
|
|
* Copyright (C) 2010-2024, the Friendica project
|
|
|
|
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
2020-02-09 16:18:46 +01:00
|
|
|
*
|
2024-08-23 15:11:15 +02:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2025-01-02 13:03:28 +01:00
|
|
|
*
|
2025-01-06 18:45:33 +01:00
|
|
|
* @deprecated 2025.02 use bin/console.php daemon instead
|
2022-05-20 04:52:18 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2020-01-19 20:44:01 +00:00
|
|
|
* Run the worker from a daemon.
|
2022-05-20 22:52:44 +00:00
|
|
|
*
|
2016-11-27 22:52:21 +00:00
|
|
|
* This script was taken from http://php.net/manual/en/function.pcntl-fork.php
|
|
|
|
*/
|
2020-09-07 05:51:26 -04:00
|
|
|
if (php_sapi_name() !== 'cli') {
|
2022-06-23 01:46:37 +02:00
|
|
|
header($_SERVER['SERVER_PROTOCOL'] . ' 403 Forbidden');
|
2020-09-07 05:51:26 -04:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2018-06-01 22:09:27 +00:00
|
|
|
// Ensure that daemon.php is executed from the base path of the installation
|
2024-12-26 09:05:50 +00:00
|
|
|
chdir(dirname(__DIR__));
|
2018-06-01 22:09:27 +00:00
|
|
|
|
2018-12-24 09:56:48 -05:00
|
|
|
require dirname(__DIR__) . '/vendor/autoload.php';
|
2018-06-01 22:09:27 +00:00
|
|
|
|
2024-12-30 12:40:42 +01:00
|
|
|
$argv = $_SERVER['argv'] ?? [];
|
|
|
|
array_splice($argv, 1, 0, "daemon");
|
|
|
|
|
2025-01-08 22:59:29 +00:00
|
|
|
$container = \Friendica\Core\DiceContainer::fromBasePath(dirname(__DIR__));
|
2025-01-08 22:20:06 +00:00
|
|
|
|
|
|
|
$app = \Friendica\App::fromContainer($container);
|
|
|
|
|
|
|
|
$app->processConsole($argv);
|