friendica/include/poller.php

59 lines
1.1 KiB
PHP
Raw Normal View History

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