]> git.mxchange.org Git - friendica-addons.git/blobdiff - twitter/twitter_sync.php
Deprecated parts removed
[friendica-addons.git] / twitter / twitter_sync.php
index 434cb20421132b2315938b368aa7292aa313973e..6c76af7ce9b49cdefba058fa9b5ad47c7f924248 100644 (file)
@@ -49,19 +49,21 @@ function twitter_sync_run($argv, $argc){
        $mode = intval($argv[1]);
        $uid = intval($argv[2]);
 
-       /// @todo Replace it with "App::is_already_running" in the next release
-       $lockpath = get_lockpath();
-       if ($lockpath != '') {
-               $pidfile = new pidfile($lockpath, 'twitter_sync-'.$mode.'-'.$uid);
-               if ($pidfile->is_already_running()) {
-                       logger("Already running");
-                       if ($pidfile->running_time() > 9*60) {
-                               $pidfile->kill();
-                               logger("killed stale process");
-                               // Calling a new instance
-                               proc_run('php','addon/twitter/twitter_sync.php', $mode, $uid);
+       // This is deprecated with the worker
+       if (function_exists("get_lockpath")) {
+               $lockpath = get_lockpath();
+               if ($lockpath != '') {
+                       $pidfile = new pidfile($lockpath, 'twitter_sync-'.$mode.'-'.$uid);
+                       if ($pidfile->is_already_running()) {
+                               logger("Already running");
+                               if ($pidfile->running_time() > 9*60) {
+                                       $pidfile->kill();
+                                       logger("killed stale process");
+                                       // Calling a new instance
+                                       proc_run('php','addon/twitter/twitter_sync.php', $mode, $uid);
+                               }
+                               exit;
                        }
-                       exit;
                }
        }