mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-22 09:03:41 +00:00
Merge pull request #445 from annando/new-worker
Support for the new worker class
This commit is contained in:
commit
42eefed6e6
2 changed files with 8 additions and 4 deletions
|
@ -5,6 +5,9 @@
|
||||||
* Version: 0.2
|
* Version: 0.2
|
||||||
* Author: Michael Vogel <http://pirati.ca/profile/heluecht>
|
* Author: Michael Vogel <http://pirati.ca/profile/heluecht>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
use Friendica\Core\Worker;
|
||||||
|
|
||||||
require('addon/pumpio/oauth/http.php');
|
require('addon/pumpio/oauth/http.php');
|
||||||
require('addon/pumpio/oauth/oauth_client.php');
|
require('addon/pumpio/oauth/oauth_client.php');
|
||||||
require_once('include/enotify.php');
|
require_once('include/enotify.php');
|
||||||
|
@ -691,8 +694,7 @@ function pumpio_sync(&$a) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function pumpio_cron(&$a,$b) {
|
function pumpio_cron(&$a,$b) {
|
||||||
//pumpio_sync($a);
|
Worker::add(PRIORITY_MEDIUM,"addon/pumpio/pumpio_sync.php");
|
||||||
proc_run("php","addon/pumpio/pumpio_sync.php");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function pumpio_fetchtimeline(&$a, $uid) {
|
function pumpio_fetchtimeline(&$a, $uid) {
|
||||||
|
|
|
@ -60,6 +60,8 @@
|
||||||
* Requirements: PHP5, curl [Slinky library]
|
* Requirements: PHP5, curl [Slinky library]
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
use Friendica\Core\Worker;
|
||||||
|
|
||||||
require_once('include/enotify.php');
|
require_once('include/enotify.php');
|
||||||
require_once("include/socgraph.php");
|
require_once("include/socgraph.php");
|
||||||
|
|
||||||
|
@ -646,7 +648,7 @@ function twitter_cron($a,$b) {
|
||||||
if(count($r)) {
|
if(count($r)) {
|
||||||
foreach($r as $rr) {
|
foreach($r as $rr) {
|
||||||
logger('twitter: fetching for user '.$rr['uid']);
|
logger('twitter: fetching for user '.$rr['uid']);
|
||||||
proc_run(PRIORITY_MEDIUM, "addon/twitter/twitter_sync.php", 1, (int)$rr['uid']);
|
Worker::add(PRIORITY_MEDIUM, "addon/twitter/twitter_sync.php", 1, (int)$rr['uid']);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -668,7 +670,7 @@ function twitter_cron($a,$b) {
|
||||||
}
|
}
|
||||||
|
|
||||||
logger('twitter: importing timeline from user '.$rr['uid']);
|
logger('twitter: importing timeline from user '.$rr['uid']);
|
||||||
proc_run(PRIORITY_MEDIUM, "addon/twitter/twitter_sync.php", 2, (int)$rr['uid']);
|
Worker::add(PRIORITY_MEDIUM, "addon/twitter/twitter_sync.php", 2, (int)$rr['uid']);
|
||||||
/*
|
/*
|
||||||
// To-Do
|
// To-Do
|
||||||
// check for new contacts once a day
|
// check for new contacts once a day
|
||||||
|
|
Loading…
Reference in a new issue