2 if (!file_exists("boot.php") AND (sizeof($_SERVER["argv"]) != 0)) {
3 $directory = dirname($_SERVER["argv"][0]);
5 if (substr($directory, 0, 1) != "/")
6 $directory = $_SERVER["PWD"]."/".$directory;
8 $directory = realpath($directory."/..");
13 require_once("boot.php");
16 function twitter_sync_run($argv, $argc){
24 @include(".htconfig.php");
25 require_once("include/dba.php");
26 $db = new dba($db_host, $db_user, $db_pass, $db_data);
27 unset($db_host, $db_user, $db_pass, $db_data);
30 require_once("addon/twitter/twitter.php");
31 require_once("include/pidfile.php");
33 $maxsysload = intval(get_config('system','maxloadavg'));
34 if ($maxsysload < 1) {
37 if (function_exists('sys_getloadavg')) {
38 $load = sys_getloadavg();
39 if (intval($load[0]) > $maxsysload) {
40 logger('system: load ' . $load[0] . ' too high. Twitter sync deferred to next scheduled run.');
49 $mode = intval($argv[1]);
50 $uid = intval($argv[2]);
52 // This is deprecated with the worker
53 if (function_exists("get_lockpath")) {
54 $lockpath = get_lockpath();
55 if ($lockpath != '') {
56 $pidfile = new pidfile($lockpath, 'twitter_sync-'.$mode.'-'.$uid);
57 if ($pidfile->is_already_running()) {
58 logger("Already running");
59 if ($pidfile->running_time() > 9*60) {
61 logger("killed stale process");
62 // Calling a new instance
63 proc_run('php','addon/twitter/twitter_sync.php', $mode, $uid);
71 twitter_fetchtimeline($a, $uid);
72 } elseif ($mode == 2) {
73 twitter_fetchhometimeline($a, $uid);
77 if (array_search(__file__,get_included_files())===0){
78 twitter_sync_run($_SERVER["argv"],$_SERVER["argc"]);