]> git.mxchange.org Git - friendica.git/blobdiff - bin/daemon.php
Changed statistics query for nodeinfo
[friendica.git] / bin / daemon.php
index 1b0a7edb3ca227667ad4f39fc3c5efebfdecc870..8ba85033ce118946fd0dba298a13daef8da45b29 100755 (executable)
@@ -2,16 +2,17 @@
 <?php
 /**
  * @file bin/daemon.php
- * @brief Run the worker from a daemon.
+ * Run the worker from a daemon.
  *
  * This script was taken from http://php.net/manual/en/function.pcntl-fork.php
  */
 
-use Friendica\Core\Config;
+use Dice\Dice;
 use Friendica\Core\Logger;
 use Friendica\Core\Worker;
 use Friendica\Database\DBA;
-use Friendica\Factory;
+use Friendica\DI;
+use Psr\Log\LoggerInterface;
 
 // Get options
 $shortopts = 'f';
@@ -32,18 +33,19 @@ if (!file_exists("boot.php") && (sizeof($_SERVER["argv"]) != 0)) {
 
 require dirname(__DIR__) . '/vendor/autoload.php';
 
-$dice = new \Dice\Dice();
-$dice = $dice->addRules(include __DIR__ . '/../static/dependencies.config.php');
+$dice = (new Dice())->addRules(include __DIR__ . '/../static/dependencies.config.php');
+$dice = $dice->addRule(LoggerInterface::class,['constructParams' => ['daemon']]);
 
-$a = Factory\DependencyFactory::setUp('daemon', $dice);
+DI::init($dice);
+$a = DI::app();
 
-if ($a->getMode()->isInstall()) {
+if (DI::mode()->isInstall()) {
        die("Friendica isn't properly installed yet.\n");
 }
 
-Config::load();
+DI::config()->load();
 
-if (empty(Config::get('system', 'pidfile'))) {
+if (empty(DI::config()->get('system', 'pidfile'))) {
        die(<<<TXT
 Please set system.pidfile in config/local.config.php. For example:
     
@@ -54,7 +56,7 @@ TXT
     );
 }
 
-$pidfile = Config::get('system', 'pidfile');
+$pidfile = DI::config()->get('system', 'pidfile');
 
 if (in_array("start", $_SERVER["argv"])) {
        $mode = "start";
@@ -85,7 +87,7 @@ if (is_readable($pidfile)) {
 }
 
 if (empty($pid) && in_array($mode, ["stop", "status"])) {
-       Config::set('system', 'worker_daemon_mode', false);
+       DI::config()->set('system', 'worker_daemon_mode', false);
        die("Pidfile wasn't found. Is the daemon running?\n");
 }
 
@@ -96,7 +98,7 @@ if ($mode == "status") {
 
        unlink($pidfile);
 
-       Config::set('system', 'worker_daemon_mode', false);
+       DI::config()->set('system', 'worker_daemon_mode', false);
        die("Daemon process $pid isn't running.\n");
 }
 
@@ -107,7 +109,7 @@ if ($mode == "stop") {
 
        Logger::notice("Worker daemon process was killed", ["pid" => $pid]);
 
-       Config::set('system', 'worker_daemon_mode', false);
+       DI::config()->set('system', 'worker_daemon_mode', false);
        die("Worker daemon process $pid was killed.\n");
 }
 
@@ -147,15 +149,15 @@ if (!$foreground) {
        file_put_contents($pidfile, $pid);
 
        // We lose the database connection upon forking
-       $a->getDatabase()->reconnect();
+       DBA::reconnect();
 }
 
-Config::set('system', 'worker_daemon_mode', true);
+DI::config()->set('system', 'worker_daemon_mode', true);
 
 // Just to be sure that this script really runs endlessly
 set_time_limit(0);
 
-$wait_interval = intval(Config::get('system', 'cron_interval', 5)) * 60;
+$wait_interval = intval(DI::config()->get('system', 'cron_interval', 5)) * 60;
 
 $do_cron = true;
 $last_cron = 0;