]> git.mxchange.org Git - friendica.git/blobdiff - mod/worker.php
Merge pull request #7893 from annando/api-attachments
[friendica.git] / mod / worker.php
index d6ecbecc264935036eb1427e72f65f9c4da3ad62..23dfd6e0004ba7cc46ae7189270a856c40776abc 100644 (file)
@@ -4,16 +4,22 @@
  * @brief Module for running the worker as frontend process
  */
 
-use Friendica\Core\Worker;
 use Friendica\Core\Config;
-use Friendica\Core\PConfig;
+use Friendica\Core\Logger;
+use Friendica\Core\Worker;
+use Friendica\Database\DBA;
+use Friendica\Util\DateTimeFormat;
 
-function worker_init($a){
+function worker_init()
+{
 
        if (!Config::get("system", "frontend_worker")) {
                return;
        }
 
+       // Ensure that all "strtotime" operations do run timezone independent
+       date_default_timezone_set('UTC');
+
        // We don't need the following lines if we can execute background jobs.
        // So we just wake up the worker if it sleeps.
        if (function_exists("proc_open")) {
@@ -29,19 +35,20 @@ function worker_init($a){
                return;
        }
 
-       $a->start_process();
+       Worker::startProcess();
 
-       logger("Front end worker started: ".getmypid());
+       Logger::log("Front end worker started: ".getmypid());
 
        Worker::callWorker();
 
        if ($r = Worker::workerProcess()) {
-
                // On most configurations this parameter wouldn't have any effect.
                // But since it doesn't destroy anything, we just try to get more execution time in any way.
                set_time_limit(0);
 
-               if (poller_claim_process($r[0])) {
+               $fields = ['executed' => DateTimeFormat::utcNow(), 'pid' => getmypid(), 'done' => false];
+               $condition =  ['id' => $r[0]["id"], 'pid' => 0];
+               if (DBA::update('workerqueue', $fields, $condition)) {
                        Worker::execute($r[0]);
                }
        }
@@ -50,9 +57,9 @@ function worker_init($a){
 
        Worker::unclaimProcess();
 
-       $a->end_process();
+       Worker::endProcess();
 
-       logger("Front end worker ended: ".getmypid());
+       Logger::log("Front end worker ended: ".getmypid());
 
-       killme();
+       exit();
 }