2010-07-18 23:49:54 -04:00
|
|
|
<?php
|
2017-04-30 00:07:00 -04:00
|
|
|
use Friendica\App;
|
2017-11-05 05:33:46 -05:00
|
|
|
use Friendica\Core\Worker;
|
2017-04-30 00:01:26 -04:00
|
|
|
use Friendica\Core\Config;
|
|
|
|
|
2017-06-07 22:00:59 -04:00
|
|
|
if (!file_exists("boot.php") && (sizeof($_SERVER["argv"]) != 0)) {
|
2015-02-19 04:45:46 -05:00
|
|
|
$directory = dirname($_SERVER["argv"][0]);
|
2015-02-19 04:26:49 -05:00
|
|
|
|
2017-06-04 16:03:37 -04:00
|
|
|
if (substr($directory, 0, 1) != "/") {
|
2015-02-19 04:45:46 -05:00
|
|
|
$directory = $_SERVER["PWD"]."/".$directory;
|
2017-06-04 16:03:37 -04:00
|
|
|
}
|
2015-02-19 04:45:46 -05:00
|
|
|
$directory = realpath($directory."/..");
|
2015-02-19 04:26:49 -05:00
|
|
|
|
2015-02-19 04:45:46 -05:00
|
|
|
chdir($directory);
|
|
|
|
}
|
2011-04-16 02:40:43 -04:00
|
|
|
|
2011-01-28 08:04:18 -05:00
|
|
|
require_once("boot.php");
|
|
|
|
|
2017-11-05 05:33:46 -05:00
|
|
|
function poller_run($argv, $argc) {
|
|
|
|
global $a;
|
2011-01-28 08:04:18 -05:00
|
|
|
|
2017-10-11 10:52:08 -04:00
|
|
|
if (empty($a)) {
|
|
|
|
$a = new App(dirname(__DIR__));
|
|
|
|
}
|
2013-01-20 08:08:28 -05:00
|
|
|
|
2017-10-11 08:56:36 -04:00
|
|
|
require_once ".htconfig.php";
|
|
|
|
require_once "include/dba.php";
|
|
|
|
dba::connect($db_host, $db_user, $db_pass, $db_data);
|
2017-06-04 11:59:20 -04:00
|
|
|
unset($db_host, $db_user, $db_pass, $db_data);
|
2013-01-20 08:08:28 -05:00
|
|
|
|
2017-02-25 08:59:24 -05:00
|
|
|
Config::load();
|
|
|
|
|
2017-09-30 13:42:03 -04:00
|
|
|
// Check the database structure and possibly fixes it
|
|
|
|
check_db(true);
|
|
|
|
|
2016-10-02 09:52:52 -04:00
|
|
|
// Quit when in maintenance
|
2017-01-21 01:06:29 -05:00
|
|
|
if (Config::get('system', 'maintenance', true)) {
|
2016-10-02 09:52:52 -04:00
|
|
|
return;
|
2017-01-21 01:06:29 -05:00
|
|
|
}
|
2016-10-02 09:52:52 -04:00
|
|
|
|
2017-02-26 18:16:49 -05:00
|
|
|
$a->set_baseurl(Config::get('system', 'url'));
|
|
|
|
|
|
|
|
load_hooks();
|
|
|
|
|
2017-11-05 05:33:46 -05:00
|
|
|
$run_cron = (($argc <= 1) || ($argv[1] != "no_cron"));
|
|
|
|
Worker::processQueue($run_cron);
|
|
|
|
return;
|
2016-11-26 19:55:05 -05:00
|
|
|
}
|
|
|
|
|
2017-11-05 05:33:46 -05:00
|
|
|
if (array_search(__file__, get_included_files()) === 0) {
|
|
|
|
poller_run($_SERVER["argv"], $_SERVER["argc"]);
|
2016-09-09 16:55:49 -04:00
|
|
|
|
2017-11-05 05:33:46 -05:00
|
|
|
Worker::unclaimProcess();
|
2017-05-30 09:20:29 -04:00
|
|
|
|
2016-09-09 16:55:49 -04:00
|
|
|
get_app()->end_process();
|
|
|
|
|
|
|
|
killme();
|
2011-01-28 08:04:18 -05:00
|
|
|
}
|