friendica/include/poller.php

307 lines
8.5 KiB
PHP
Raw Normal View History

2010-07-19 05:49:54 +02:00
<?php
2011-04-16 08:40:43 +02:00
require_once("boot.php");
function poller_run(&$argv, &$argc){
global $a, $db;
if(is_null($a)) {
$a = new App;
}
if(is_null($db)) {
@include(".htconfig.php");
2012-12-28 22:51:50 +01:00
require_once("include/dba.php");
$db = new dba($db_host, $db_user, $db_pass, $db_data);
unset($db_host, $db_user, $db_pass, $db_data);
};
2010-08-17 05:47:40 +02:00
2011-04-16 08:40:43 +02:00
require_once('include/session.php');
require_once('include/datetime.php');
require_once('library/simplepie/simplepie.inc');
2010-09-02 09:31:11 +02:00
require_once('include/items.php');
2010-09-09 05:14:17 +02:00
require_once('include/Contact.php');
2011-04-16 08:40:43 +02:00
require_once('include/email.php');
2011-11-01 04:54:24 +01:00
require_once('include/socgraph.php');
require_once('include/pidfile.php');
2010-09-09 05:14:17 +02:00
load_config('config');
load_config('system');
$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;
}
}
$lockpath = get_lockpath();
if ($lockpath != '') {
$pidfile = new pidfile($lockpath, 'poller');
if($pidfile->is_already_running()) {
logger("poller: Already running");
if ($pidfile->running_time() > 9*60) {
$pidfile->kill();
logger("poller: killed stale process");
// Calling a new instance
proc_run('php','include/poller.php');
}
exit;
}
}
2010-08-17 05:47:40 +02:00
$a->set_baseurl(get_config('system','url'));
2010-07-19 05:49:54 +02:00
2011-04-26 13:39:27 +02:00
load_hooks();
2010-11-26 03:31:33 +01:00
logger('poller: start');
2010-11-26 03:22:54 +01:00
// run queue delivery process in the background
2010-11-23 00:30:52 +01:00
2011-02-24 00:16:12 +01:00
proc_run('php',"include/queue.php");
// run diaspora photo queue process in the background
proc_run('php',"include/dsprphotoq.php");
2011-09-26 14:43:22 +02: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() ");
// 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 ($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-30 06:20:19 +02:00
$abandon_days = intval(get_config('system','account_abandon_days'));
if($abandon_days < 1)
$abandon_days = 0;
// Check OStatus conversations
check_conversations();
2011-09-30 06:20:19 +02:00
// To-Do: Regenerate usage statistics
// q("ANALYZE TABLE `item`");
2011-10-14 09:20:37 +02:00
// once daily run birthday_updates and then expire in background
2011-03-16 01:31:49 +01:00
$d1 = get_config('system','last_expire_day');
$d2 = intval(datetime_convert('UTC','UTC','now','d'));
if($d2 != intval($d1)) {
2011-10-14 09:20:37 +02:00
update_contact_birthdays();
update_suggestions();
2011-03-16 01:31:49 +01:00
set_config('system','last_expire_day',$d2);
proc_run('php','include/expire.php');
}
$last = get_config('system','cache_last_cleared');
2010-11-23 00:30:52 +01:00
if($last) {
$next = $last + (3600); // Once per hour
$clear_cache = ($next <= time());
} else
$clear_cache = true;
if ($clear_cache) {
// clear old cache
Cache::clear();
// clear old item cache files
clear_cache();
// clear cache for photos
clear_cache($a->get_basepath(), $a->get_basepath()."/photo");
// clear smarty cache
clear_cache($a->get_basepath()."/view/smarty3/compiled", $a->get_basepath()."/view/smarty3/compiled");
// clear cache for image proxy
if (!get_config("system", "proxy_disabled")) {
clear_cache($a->get_basepath(), $a->get_basepath()."/proxy");
$cachetime = get_config('system','proxy_cache_time');
if (!$cachetime) $cachetime = PROXY_DEFAULT_TIME;
q('DELETE FROM `photo` WHERE `uid` = 0 AND `resource-id` LIKE "pic:%%" AND `created` < NOW() - INTERVAL %d SECOND', $cachetime);
}
set_config('system','cache_last_cleared', time());
}
2012-12-14 22:47:30 +01:00
$manual_id = 0;
$generation = 0;
$hub_update = false;
$force = false;
$restart = false;
2010-11-05 04:47:44 +01:00
if(($argc > 1) && ($argv[1] == 'force'))
$force = true;
if(($argc > 1) && ($argv[1] == 'restart')) {
$restart = true;
$generation = intval($argv[2]);
if(! $generation)
2012-11-17 00:50:39 +01:00
killme();
}
2011-01-24 05:09:34 +01:00
if(($argc > 1) && intval($argv[1])) {
$manual_id = intval($argv[1]);
$force = true;
2011-01-24 05:09:34 +01:00
}
$interval = intval(get_config('system','poll_interval'));
if(! $interval)
$interval = ((get_config('system','delivery_interval') === false) ? 3 : intval(get_config('system','delivery_interval')));
2011-01-24 05:09:34 +01:00
$sql_extra = (($manual_id) ? " AND `id` = $manual_id " : "");
2011-04-26 13:39:27 +02:00
reload_plugins();
2011-03-09 11:12:32 +01:00
$d = datetime_convert();
2011-04-26 13:39:27 +02:00
if(! $restart)
proc_run('php','include/cronhooks.php');
2011-03-09 11:12:32 +01:00
2011-08-24 03:17:35 +02: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 06:20:19 +02:00
$abandon_sql = (($abandon_days)
? sprintf(" AND `user`.`login_date` > UTC_TIMESTAMP() - INTERVAL %d DAY ", intval($abandon_days))
: ''
);
$contacts = q("SELECT `contact`.`id` FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid`
WHERE ( `rel` = %d OR `rel` = %d ) AND `poll` != ''
AND NOT `network` IN ( '%s', '%s', '%s' )
2011-01-24 05:09:34 +01:00
$sql_extra
2011-09-19 10:17:12 +02:00
AND `self` = 0 AND `contact`.`blocked` = 0 AND `contact`.`readonly` = 0
AND `contact`.`archive` = 0
AND `user`.`account_expired` = 0 AND `user`.`account_removed` = 0 $abandon_sql ORDER BY RAND()",
2011-08-08 01:15:54 +02:00
intval(CONTACT_IS_SHARING),
2011-08-24 03:17:35 +02:00
intval(CONTACT_IS_FRIEND),
2011-11-04 23:21:46 +01:00
dbesc(NETWORK_DIASPORA),
dbesc(NETWORK_FACEBOOK),
dbesc(NETWORK_PUMPIO)
);
2010-07-19 05:49:54 +02:00
if(! count($contacts)) {
return;
}
2010-07-19 05:49:54 +02:00
foreach($contacts as $c) {
2010-07-19 05:49:54 +02:00
$res = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
intval($c['id'])
);
if((! $res) || (! count($res)))
continue;
foreach($res as $contact) {
2011-07-01 07:00:08 +02:00
2011-04-16 08:40:43 +02:00
$xml = false;
if($manual_id)
$contact['last-update'] = '0000-00-00 00:00:00';
if($contact['network'] === NETWORK_DFRN)
$contact['priority'] = 2;
if(!get_config('system','ostatus_use_priority') and ($contact['network'] === NETWORK_OSTATUS))
2011-11-04 23:21:46 +01:00
$contact['priority'] = 2;
if($contact['priority'] || $contact['subhub']) {
$hub_update = true;
$update = false;
$t = $contact['last-update'];
// 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'.
if($contact['subhub']) {
$poll_interval = get_config('system','pushpoll_frequency');
$contact['priority'] = (($poll_interval !== false) ? intval($poll_interval) : 3);
$hub_update = false;
if((datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day")) || $force)
$hub_update = true;
}
2011-09-22 13:11:39 +02:00
else
$hub_update = false;
/**
* 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-23 05:31:33 +01:00
if((! $update) && (! $force))
continue;
}
// Don't run onepoll.php if the contact isn't pollable
// This check also is inside the onepoll.php - but this will reduce the load
if (in_array($contact["rel"], array(CONTACT_IS_SHARING, CONTACT_IS_FRIEND)) AND ($contact["poll"] != "")
AND !in_array($contact['network'], array(NETWORK_DIASPORA, NETWORK_FACEBOOK, NETWORK_PUMPIO, NETWORK_TWITTER, NETWORK_APPNET))
AND !$contact["self"] AND !$contact["blocked"] AND !$contact["readonly"] AND !$contact["archive"])
proc_run('php','include/onepoll.php',$contact['id']);
if($interval)
@time_sleep_until(microtime(true) + (float) $interval);
}
}
2011-04-16 17:45:08 +02:00
return;
}
2010-07-19 05:49:54 +02:00
if (array_search(__file__,get_included_files())===0){
poller_run($argv,$argc);
killme();
}