2010-07-18 23:49:54 -04:00
|
|
|
<?php
|
2011-04-16 02:40:43 -04:00
|
|
|
|
2011-01-28 08:04:18 -05:00
|
|
|
require_once("boot.php");
|
|
|
|
|
2011-07-01 00:56:07 -04:00
|
|
|
|
2011-01-28 08:04:18 -05:00
|
|
|
function poller_run($argv, $argc){
|
2011-03-04 23:55:32 -05:00
|
|
|
global $a, $db;
|
2011-01-28 08:04:18 -05:00
|
|
|
|
2011-03-04 23:55:32 -05:00
|
|
|
if(is_null($a)) {
|
|
|
|
$a = new App;
|
|
|
|
}
|
2011-01-28 08:04:18 -05:00
|
|
|
|
2011-03-04 23:55:32 -05:00
|
|
|
if(is_null($db)) {
|
|
|
|
@include(".htconfig.php");
|
|
|
|
require_once("dba.php");
|
|
|
|
$db = new dba($db_host, $db_user, $db_pass, $db_data);
|
|
|
|
unset($db_host, $db_user, $db_pass, $db_data);
|
|
|
|
};
|
2010-08-16 23:47:40 -04:00
|
|
|
|
2011-04-16 02:40:43 -04:00
|
|
|
|
2011-06-29 00:11:52 -04:00
|
|
|
require_once('include/session.php');
|
|
|
|
require_once('include/datetime.php');
|
|
|
|
require_once('library/simplepie/simplepie.inc');
|
2010-09-02 03:31:11 -04:00
|
|
|
require_once('include/items.php');
|
2010-09-08 23:14:17 -04:00
|
|
|
require_once('include/Contact.php');
|
2011-04-16 02:40:43 -04:00
|
|
|
require_once('include/email.php');
|
2011-10-31 23:54:24 -04:00
|
|
|
require_once('include/socgraph.php');
|
2012-04-01 14:52:33 -04:00
|
|
|
require_once('include/pidfile.php');
|
2010-09-08 23:14:17 -04:00
|
|
|
|
2011-06-30 04:15:18 -04:00
|
|
|
load_config('config');
|
|
|
|
load_config('system');
|
|
|
|
|
2012-05-04 00:50:48 -04:00
|
|
|
$maxsysload = intval(get_config('system','maxloadavg'));
|
|
|
|
if($maxsysload < 1)
|
|
|
|
$maxsysload = 50;
|
|
|
|
if(function_exists('sys_getloadavg')) {
|
|
|
|
$load = sys_getloadavg();
|
|
|
|
if(intval($load[0]) > $maxsysload) {
|
|
|
|
logger('system: load ' . $load . ' too high. Poller deferred to next scheduled run.');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-01 14:52:33 -04:00
|
|
|
$lockpath = get_config('system','lockpath');
|
|
|
|
if ($lockpath != '') {
|
|
|
|
$pidfile = new pidfile($lockpath, 'poller.lck');
|
|
|
|
if($pidfile->is_already_running()) {
|
|
|
|
logger("poller: Already running");
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-04 00:50:48 -04:00
|
|
|
|
|
|
|
|
2010-08-16 23:47:40 -04:00
|
|
|
$a->set_baseurl(get_config('system','url'));
|
2010-07-18 23:49:54 -04:00
|
|
|
|
2011-04-26 07:39:27 -04:00
|
|
|
load_hooks();
|
|
|
|
|
2010-11-25 21:31:33 -05:00
|
|
|
logger('poller: start');
|
2011-01-24 16:01:56 -05:00
|
|
|
|
2010-11-25 21:22:54 -05:00
|
|
|
// run queue delivery process in the background
|
2010-11-22 18:30:52 -05:00
|
|
|
|
2011-02-23 18:16:12 -05:00
|
|
|
proc_run('php',"include/queue.php");
|
2011-01-31 11:16:35 -05:00
|
|
|
|
2011-09-26 08:43:22 -04:00
|
|
|
// expire any expired accounts
|
|
|
|
|
|
|
|
q("UPDATE user SET `account_expired` = 1 where `account_expired` = 0
|
|
|
|
AND `account_expires_on` != '0000-00-00 00:00:00'
|
|
|
|
AND `account_expires_on` < UTC_TIMESTAMP() ");
|
2012-11-02 16:43:47 -04:00
|
|
|
|
|
|
|
// delete user and contact records for recently removed accounts
|
|
|
|
|
|
|
|
$r = q("SELECT * FROM `user` WHERE `account_removed` = 1 AND `account_expires_on` < UTC_TIMESTAMP() - INTERVAL 3 DAY");
|
|
|
|
if (count($r)) {
|
|
|
|
foreach($r as $user) {
|
|
|
|
q("DELETE FROM `contact` WHERE `uid` = %d", intval($user['uid']));
|
|
|
|
q("DELETE FROM `user` WHERE `uid` = %d", intval($user['uid']));
|
|
|
|
}
|
|
|
|
}
|
2011-09-26 08:43:22 -04:00
|
|
|
|
2011-09-30 00:20:19 -04:00
|
|
|
$abandon_days = intval(get_config('system','account_abandon_days'));
|
|
|
|
if($abandon_days < 1)
|
|
|
|
$abandon_days = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-10-14 03:20:37 -04:00
|
|
|
// once daily run birthday_updates and then expire in background
|
2011-03-15 20:31:49 -04:00
|
|
|
|
|
|
|
$d1 = get_config('system','last_expire_day');
|
|
|
|
$d2 = intval(datetime_convert('UTC','UTC','now','d'));
|
|
|
|
|
|
|
|
if($d2 != intval($d1)) {
|
2011-10-14 03:20:37 -04:00
|
|
|
|
|
|
|
update_contact_birthdays();
|
|
|
|
|
2011-11-28 22:28:33 -05:00
|
|
|
update_suggestions();
|
|
|
|
|
2011-03-15 20:31:49 -04:00
|
|
|
set_config('system','last_expire_day',$d2);
|
|
|
|
proc_run('php','include/expire.php');
|
|
|
|
}
|
|
|
|
|
2011-01-31 11:16:35 -05:00
|
|
|
// clear old cache
|
2011-10-24 07:02:38 -04:00
|
|
|
Cache::clear();
|
2010-11-22 18:30:52 -05:00
|
|
|
|
2012-03-11 14:11:25 -04:00
|
|
|
// clear item cache files if they are older than one day
|
|
|
|
$cache = get_config('system','itemcache');
|
|
|
|
if (($cache != '') and is_dir($cache)) {
|
|
|
|
if ($dh = opendir($cache)) {
|
|
|
|
while (($file = readdir($dh)) !== false) {
|
|
|
|
$fullpath = $cache."/".$file;
|
2012-03-11 14:45:28 -04:00
|
|
|
if ((filetype($fullpath) == "file") and filectime($fullpath) < (time() - 86400))
|
2012-03-11 14:11:25 -04:00
|
|
|
unlink($fullpath);
|
|
|
|
}
|
|
|
|
closedir($dh);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-02 22:56:27 -05:00
|
|
|
$manual_id = 0;
|
2011-07-01 00:56:07 -04:00
|
|
|
$generation = 0;
|
2011-01-10 16:45:42 -05:00
|
|
|
$hub_update = false;
|
2011-02-02 22:56:27 -05:00
|
|
|
$force = false;
|
2011-07-01 00:56:07 -04:00
|
|
|
$restart = false;
|
2011-01-10 16:45:42 -05:00
|
|
|
|
2010-11-04 23:47:44 -04:00
|
|
|
if(($argc > 1) && ($argv[1] == 'force'))
|
|
|
|
$force = true;
|
|
|
|
|
2011-07-01 00:56:07 -04:00
|
|
|
if(($argc > 1) && ($argv[1] == 'restart')) {
|
|
|
|
$restart = true;
|
|
|
|
$generation = intval($argv[2]);
|
|
|
|
if(! $generation)
|
|
|
|
killme();
|
|
|
|
}
|
|
|
|
|
2011-01-23 23:09:34 -05:00
|
|
|
if(($argc > 1) && intval($argv[1])) {
|
|
|
|
$manual_id = intval($argv[1]);
|
2011-02-02 22:56:27 -05:00
|
|
|
$force = true;
|
2011-01-23 23:09:34 -05:00
|
|
|
}
|
|
|
|
|
2012-05-07 07:21:54 -04:00
|
|
|
$interval = intval(get_config('system','poll_interval'));
|
|
|
|
if(! $interval)
|
|
|
|
$interval = ((get_config('system','delivery_interval') === false) ? 3 : intval(get_config('system','delivery_interval')));
|
2012-04-28 02:17:40 -04:00
|
|
|
|
2011-01-23 23:09:34 -05:00
|
|
|
$sql_extra = (($manual_id) ? " AND `id` = $manual_id " : "");
|
|
|
|
|
2011-04-26 07:39:27 -04:00
|
|
|
reload_plugins();
|
|
|
|
|
2011-03-09 05:12:32 -05:00
|
|
|
$d = datetime_convert();
|
2011-04-26 07:39:27 -04:00
|
|
|
|
2011-07-01 00:56:07 -04:00
|
|
|
if(! $restart)
|
2011-08-15 01:59:34 -04:00
|
|
|
proc_run('php','include/cronhooks.php');
|
2011-03-09 05:12:32 -05:00
|
|
|
|
2011-08-23 21:17:35 -04:00
|
|
|
// Only poll from those with suitable relationships,
|
|
|
|
// and which have a polling address and ignore Diaspora since
|
|
|
|
// we are unable to match those posts with a Diaspora GUID and prevent duplicates.
|
|
|
|
|
2011-09-30 00:20:19 -04:00
|
|
|
$abandon_sql = (($abandon_days)
|
|
|
|
? sprintf(" AND `user`.`login_date` > UTC_TIMESTAMP() - INTERVAL %d DAY ", intval($abandon_days))
|
|
|
|
: ''
|
|
|
|
);
|
|
|
|
|
2011-09-19 04:17:12 -04:00
|
|
|
$contacts = q("SELECT `contact`.`id` FROM `contact` LEFT JOIN `user` ON `user`.`uid` = `contact`.`uid`
|
2011-03-04 23:55:32 -05:00
|
|
|
WHERE ( `rel` = %d OR `rel` = %d ) AND `poll` != ''
|
2011-11-04 18:21:46 -04:00
|
|
|
AND NOT `network` IN ( '%s', '%s' )
|
2011-01-23 23:09:34 -05:00
|
|
|
$sql_extra
|
2011-09-19 04:17:12 -04:00
|
|
|
AND `self` = 0 AND `contact`.`blocked` = 0 AND `contact`.`readonly` = 0
|
2012-04-28 02:17:40 -04:00
|
|
|
AND `contact`.`archive` = 0
|
2012-11-02 16:43:47 -04:00
|
|
|
AND `user`.`account_expired` = 0 AND `user`.`account_removed` = 0 $abandon_sql ORDER BY RAND()",
|
2011-08-07 19:15:54 -04:00
|
|
|
intval(CONTACT_IS_SHARING),
|
2011-08-23 21:17:35 -04:00
|
|
|
intval(CONTACT_IS_FRIEND),
|
2011-11-04 18:21:46 -04:00
|
|
|
dbesc(NETWORK_DIASPORA),
|
|
|
|
dbesc(NETWORK_FACEBOOK)
|
2011-03-04 23:55:32 -05:00
|
|
|
);
|
2010-07-18 23:49:54 -04:00
|
|
|
|
2011-03-04 23:55:32 -05:00
|
|
|
if(! count($contacts)) {
|
2011-01-28 08:04:18 -05:00
|
|
|
return;
|
2011-01-24 16:01:56 -05:00
|
|
|
}
|
2010-07-18 23:49:54 -04:00
|
|
|
|
2011-03-04 23:55:32 -05:00
|
|
|
foreach($contacts as $c) {
|
2010-07-18 23:49:54 -04:00
|
|
|
|
2011-03-04 23:55:32 -05:00
|
|
|
$res = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
|
|
|
|
intval($c['id'])
|
|
|
|
);
|
2011-01-30 22:38:03 -05:00
|
|
|
|
2011-08-15 01:59:34 -04:00
|
|
|
if((! $res) || (! count($res)))
|
2011-03-04 23:55:32 -05:00
|
|
|
continue;
|
2010-08-01 08:46:51 -04:00
|
|
|
|
2011-03-04 23:55:32 -05:00
|
|
|
foreach($res as $contact) {
|
2011-07-01 01:00:08 -04:00
|
|
|
|
2011-04-16 02:40:43 -04:00
|
|
|
$xml = false;
|
|
|
|
|
2011-03-04 23:55:32 -05:00
|
|
|
if($manual_id)
|
|
|
|
$contact['last-update'] = '0000-00-00 00:00:00';
|
2010-12-21 17:51:26 -05:00
|
|
|
|
2012-03-10 05:29:40 -05:00
|
|
|
if($contact['network'] === NETWORK_DFRN)
|
|
|
|
$contact['priority'] = 2;
|
|
|
|
|
|
|
|
if(!get_config('system','ostatus_use_priority') and ($contact['network'] === NETWORK_OSTATUS))
|
2011-11-04 18:21:46 -04:00
|
|
|
$contact['priority'] = 2;
|
|
|
|
|
2011-03-04 23:55:32 -05:00
|
|
|
if($contact['priority'] || $contact['subhub']) {
|
2010-10-15 07:58:13 -04:00
|
|
|
|
2011-03-04 23:55:32 -05:00
|
|
|
$hub_update = true;
|
|
|
|
$update = false;
|
2010-10-15 07:58:13 -04:00
|
|
|
|
2011-03-04 23:55:32 -05:00
|
|
|
$t = $contact['last-update'];
|
2010-10-15 07:58:13 -04:00
|
|
|
|
2011-03-04 23:55:32 -05:00
|
|
|
// We should be getting everything via a hub. But just to be sure, let's check once a day.
|
|
|
|
// (You can make this more or less frequent if desired by setting 'pushpoll_frequency' appropriately)
|
|
|
|
// This also lets us update our subscription to the hub, and add or replace hubs in case it
|
|
|
|
// changed. We will only update hubs once a day, regardless of 'pushpoll_frequency'.
|
2010-12-21 17:51:26 -05:00
|
|
|
|
|
|
|
|
2011-03-04 23:55:32 -05:00
|
|
|
if($contact['subhub']) {
|
2012-06-11 20:24:16 -04:00
|
|
|
$poll_interval = get_config('system','pushpoll_frequency');
|
|
|
|
$contact['priority'] = (($poll_interval !== false) ? intval($poll_interval) : 3);
|
2011-03-04 23:55:32 -05:00
|
|
|
$hub_update = false;
|
|
|
|
|
|
|
|
if((datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day")) || $force)
|
|
|
|
$hub_update = true;
|
|
|
|
}
|
2011-09-22 07:11:39 -04:00
|
|
|
else
|
|
|
|
$hub_update = false;
|
2010-12-21 17:51:26 -05:00
|
|
|
|
2011-03-04 23:55:32 -05:00
|
|
|
/**
|
|
|
|
* Based on $contact['priority'], should we poll this site now? Or later?
|
|
|
|
*/
|
|
|
|
|
|
|
|
switch ($contact['priority']) {
|
|
|
|
case 5:
|
|
|
|
if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 month"))
|
|
|
|
$update = true;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 week"))
|
|
|
|
$update = true;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day"))
|
|
|
|
$update = true;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 12 hour"))
|
|
|
|
$update = true;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
default:
|
|
|
|
if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 hour"))
|
|
|
|
$update = true;
|
|
|
|
break;
|
|
|
|
}
|
2012-02-22 23:31:33 -05:00
|
|
|
if((! $update) && (! $force))
|
|
|
|
continue;
|
2010-08-01 08:46:51 -04:00
|
|
|
}
|
2011-03-04 23:55:32 -05:00
|
|
|
|
2012-04-28 02:17:40 -04:00
|
|
|
proc_run('php','include/onepoll.php',$contact['id']);
|
|
|
|
if($interval)
|
|
|
|
@time_sleep_until(microtime(true) + (float) $interval);
|
2011-03-04 23:55:32 -05:00
|
|
|
}
|
|
|
|
}
|
2011-04-16 11:45:08 -04:00
|
|
|
|
2011-01-28 08:04:18 -05:00
|
|
|
return;
|
|
|
|
}
|
2010-07-18 23:49:54 -04:00
|
|
|
|
2011-01-28 08:04:18 -05:00
|
|
|
if (array_search(__file__,get_included_files())===0){
|
|
|
|
poller_run($argv,$argc);
|
|
|
|
killme();
|
|
|
|
}
|