]> git.mxchange.org Git - friendica.git/blobdiff - mod/worker.php
Just some more fixed notice
[friendica.git] / mod / worker.php
index f540010bd64102b0e2f21f1517bd6a6851f530b9..da354445f4588b24c7396fc18dbe1ee56647af71 100644 (file)
@@ -1,14 +1,16 @@
 <?php
 /**
  * @file mod/worker.php
- * @brief Module for running the poller as frontend process
+ * @brief Module for running the worker as frontend process
  */
 
-use Friendica\Core\Worker;
 use Friendica\Core\Config;
-use Friendica\Core\PConfig;
+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;
@@ -29,19 +31,20 @@ function worker_init($a){
                return;
        }
 
-       $a->start_process();
+       Worker::startProcess();
 
        logger("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,7 +53,7 @@ function worker_init($a){
 
        Worker::unclaimProcess();
 
-       $a->end_process();
+       Worker::endProcess();
 
        logger("Front end worker ended: ".getmypid());