2015-09-10 23:32:56 +02:00
|
|
|
<?php
|
2017-04-30 06:29:14 +02:00
|
|
|
|
|
|
|
use Friendica\Core\Config;
|
2017-01-18 22:45:32 +01:00
|
|
|
|
2015-09-10 23:32:56 +02:00
|
|
|
function cron_run(&$argv, &$argc){
|
2017-02-27 00:16:49 +01:00
|
|
|
global $a;
|
2015-09-10 23:32:56 +02:00
|
|
|
|
2017-04-08 18:51:29 +02:00
|
|
|
require_once 'include/datetime.php';
|
2017-03-21 08:57:09 +01:00
|
|
|
|
|
|
|
// Poll contacts with specific parameters
|
|
|
|
if ($argc > 1) {
|
|
|
|
cron_poll_contacts($argc, $argv);
|
|
|
|
return;
|
|
|
|
}
|
2015-09-10 23:32:56 +02:00
|
|
|
|
2017-04-08 18:51:29 +02:00
|
|
|
$last = get_config('system', 'last_cron');
|
2015-09-11 21:35:58 +02:00
|
|
|
|
2017-04-08 18:51:29 +02:00
|
|
|
$poll_interval = intval(get_config('system', 'cron_interval'));
|
2017-03-21 08:57:09 +01:00
|
|
|
if (! $poll_interval) {
|
2015-09-11 21:35:58 +02:00
|
|
|
$poll_interval = 10;
|
2017-03-21 08:57:09 +01:00
|
|
|
}
|
2017-04-04 19:46:56 +02:00
|
|
|
|
2017-03-21 08:57:09 +01:00
|
|
|
if ($last) {
|
2015-09-11 21:35:58 +02:00
|
|
|
$next = $last + ($poll_interval * 60);
|
2017-04-04 19:46:56 +02:00
|
|
|
if ($next > time()) {
|
2015-09-11 21:35:58 +02:00
|
|
|
logger('cron intervall not reached');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-10 23:32:56 +02:00
|
|
|
logger('cron: start');
|
|
|
|
|
2015-09-11 21:35:58 +02:00
|
|
|
// run queue delivery process in the background
|
2016-10-24 00:12:45 +02:00
|
|
|
proc_run(PRIORITY_NEGLIGIBLE, "include/queue.php");
|
2015-09-11 21:35:58 +02:00
|
|
|
|
|
|
|
// run the process to discover global contacts in the background
|
2016-10-24 00:12:45 +02:00
|
|
|
proc_run(PRIORITY_LOW, "include/discover_poco.php");
|
2015-09-11 21:35:58 +02:00
|
|
|
|
|
|
|
// run the process to update locally stored global contacts in the background
|
2016-10-24 00:12:45 +02:00
|
|
|
proc_run(PRIORITY_LOW, "include/discover_poco.php", "checkcontact");
|
2015-09-11 21:35:58 +02:00
|
|
|
|
2016-08-03 10:03:05 +02:00
|
|
|
// Expire and remove user entries
|
2017-03-21 08:57:09 +01:00
|
|
|
proc_run(PRIORITY_MEDIUM, "include/cronjobs.php", "expire_and_remove_users");
|
2015-09-10 23:32:56 +02:00
|
|
|
|
2017-02-27 00:16:49 +01:00
|
|
|
// Check OStatus conversations
|
|
|
|
proc_run(PRIORITY_MEDIUM, "include/cronjobs.php", "ostatus_mentions");
|
2015-09-10 23:32:56 +02:00
|
|
|
|
2017-02-27 00:16:49 +01:00
|
|
|
// Check every conversation
|
|
|
|
proc_run(PRIORITY_MEDIUM, "include/cronjobs.php", "ostatus_conversations");
|
2015-09-10 23:32:56 +02:00
|
|
|
|
2017-02-27 00:16:49 +01:00
|
|
|
// Call possible post update functions
|
|
|
|
proc_run(PRIORITY_LOW, "include/cronjobs.php", "post_update");
|
2015-09-10 23:32:56 +02:00
|
|
|
|
2017-02-27 00:16:49 +01:00
|
|
|
// update nodeinfo data
|
|
|
|
proc_run(PRIORITY_LOW, "include/cronjobs.php", "nodeinfo");
|
2015-09-10 23:32:56 +02:00
|
|
|
|
2017-03-21 08:57:09 +01:00
|
|
|
// Clear cache entries
|
|
|
|
proc_run(PRIORITY_LOW, "include/cronjobs.php", "clear_cache");
|
2015-09-10 23:32:56 +02:00
|
|
|
|
2017-03-21 08:57:09 +01:00
|
|
|
// Repair missing Diaspora values in contacts
|
|
|
|
proc_run(PRIORITY_LOW, "include/cronjobs.php", "repair_diaspora");
|
|
|
|
|
|
|
|
// Repair entries in the database
|
|
|
|
proc_run(PRIORITY_LOW, "include/cronjobs.php", "repair_database");
|
|
|
|
|
|
|
|
// once daily run birthday_updates and then expire in background
|
2017-04-08 18:51:29 +02:00
|
|
|
$d1 = get_config('system', 'last_expire_day');
|
2017-04-14 17:38:11 +02:00
|
|
|
$d2 = intval(datetime_convert('UTC', 'UTC', 'now', 'd'));
|
2015-09-10 23:32:56 +02:00
|
|
|
|
2017-04-04 19:46:56 +02:00
|
|
|
if ($d2 != intval($d1)) {
|
2015-09-10 23:32:56 +02:00
|
|
|
|
2017-03-21 08:57:09 +01:00
|
|
|
proc_run(PRIORITY_LOW, "include/cronjobs.php", "update_contact_birthdays");
|
2015-09-10 23:32:56 +02:00
|
|
|
|
2017-03-13 23:16:09 +01:00
|
|
|
proc_run(PRIORITY_LOW, "include/discover_poco.php", "update_server");
|
|
|
|
|
2016-10-24 00:12:45 +02:00
|
|
|
proc_run(PRIORITY_LOW, "include/discover_poco.php", "suggestions");
|
2015-09-10 23:32:56 +02:00
|
|
|
|
2017-04-14 15:30:50 +02:00
|
|
|
set_config('system', 'last_expire_day', $d2);
|
2015-11-07 17:52:52 +01:00
|
|
|
|
2016-10-24 00:12:45 +02:00
|
|
|
proc_run(PRIORITY_LOW, 'include/expire.php');
|
2016-10-19 23:06:37 +02:00
|
|
|
|
2017-01-09 10:37:37 +01:00
|
|
|
proc_run(PRIORITY_MEDIUM, 'include/dbclean.php');
|
2016-10-24 10:10:27 +02:00
|
|
|
|
2017-03-21 08:57:09 +01:00
|
|
|
proc_run(PRIORITY_LOW, "include/cronjobs.php", "update_photo_albums");
|
2015-09-10 23:32:56 +02:00
|
|
|
}
|
|
|
|
|
2016-08-02 06:28:34 +02:00
|
|
|
// Poll contacts
|
|
|
|
cron_poll_contacts($argc, $argv);
|
|
|
|
|
|
|
|
logger('cron: end');
|
|
|
|
|
2017-04-08 18:51:29 +02:00
|
|
|
set_config('system', 'last_cron', time());
|
2016-08-02 06:28:34 +02:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-08-02 10:19:10 +02:00
|
|
|
* @brief Poll contacts for unreceived messages
|
2016-08-02 06:28:34 +02:00
|
|
|
*
|
2016-08-02 10:19:10 +02:00
|
|
|
* @param Integer $argc Number of command line arguments
|
|
|
|
* @param Array $argv Array of command line arguments
|
2016-08-02 06:28:34 +02:00
|
|
|
*/
|
|
|
|
function cron_poll_contacts($argc, $argv) {
|
2015-09-10 23:32:56 +02:00
|
|
|
$manual_id = 0;
|
|
|
|
$generation = 0;
|
|
|
|
$force = false;
|
|
|
|
$restart = false;
|
|
|
|
|
2017-03-21 16:24:49 +01:00
|
|
|
if (($argc > 1) && ($argv[1] == 'force')) {
|
2015-09-10 23:32:56 +02:00
|
|
|
$force = true;
|
2017-03-21 16:24:49 +01:00
|
|
|
}
|
2016-08-02 06:28:34 +02:00
|
|
|
if (($argc > 1) && ($argv[1] == 'restart')) {
|
2015-09-10 23:32:56 +02:00
|
|
|
$restart = true;
|
|
|
|
$generation = intval($argv[2]);
|
2017-03-21 16:24:49 +01:00
|
|
|
if (!$generation) {
|
2015-09-10 23:32:56 +02:00
|
|
|
killme();
|
2017-03-21 16:24:49 +01:00
|
|
|
}
|
2015-09-10 23:32:56 +02:00
|
|
|
}
|
|
|
|
|
2016-08-02 06:28:34 +02:00
|
|
|
if (($argc > 1) && intval($argv[1])) {
|
2015-09-10 23:32:56 +02:00
|
|
|
$manual_id = intval($argv[1]);
|
|
|
|
$force = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
$sql_extra = (($manual_id) ? " AND `id` = $manual_id " : "");
|
|
|
|
|
|
|
|
reload_plugins();
|
|
|
|
|
|
|
|
$d = datetime_convert();
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
|
2017-04-08 18:51:29 +02:00
|
|
|
$abandon_days = intval(get_config('system', 'account_abandon_days'));
|
2017-03-21 16:24:49 +01:00
|
|
|
if ($abandon_days < 1) {
|
2016-08-03 10:03:05 +02:00
|
|
|
$abandon_days = 0;
|
2017-03-21 16:24:49 +01:00
|
|
|
}
|
2015-09-10 23:32:56 +02:00
|
|
|
$abandon_sql = (($abandon_days)
|
|
|
|
? sprintf(" AND `user`.`login_date` > UTC_TIMESTAMP() - INTERVAL %d DAY ", intval($abandon_days))
|
|
|
|
: ''
|
|
|
|
);
|
|
|
|
|
2017-01-14 22:36:34 +01:00
|
|
|
$contacts = q("SELECT `contact`.`id` FROM `user`
|
|
|
|
STRAIGHT_JOIN `contact`
|
|
|
|
ON `contact`.`uid` = `user`.`uid` AND `contact`.`rel` IN (%d, %d) AND `contact`.`poll` != ''
|
|
|
|
AND `contact`.`network` IN ('%s', '%s', '%s', '%s', '%s', '%s') $sql_extra
|
|
|
|
AND NOT `contact`.`self` AND NOT `contact`.`blocked` AND NOT `contact`.`readonly`
|
|
|
|
AND NOT `contact`.`archive`
|
|
|
|
WHERE NOT `user`.`account_expired` AND NOT `user`.`account_removed` $abandon_sql ORDER BY RAND()",
|
2015-09-10 23:32:56 +02:00
|
|
|
intval(CONTACT_IS_SHARING),
|
|
|
|
intval(CONTACT_IS_FRIEND),
|
|
|
|
dbesc(NETWORK_DFRN),
|
|
|
|
dbesc(NETWORK_ZOT),
|
|
|
|
dbesc(NETWORK_OSTATUS),
|
|
|
|
dbesc(NETWORK_FEED),
|
|
|
|
dbesc(NETWORK_MAIL),
|
|
|
|
dbesc(NETWORK_MAIL2)
|
|
|
|
);
|
|
|
|
|
2017-04-08 18:51:29 +02:00
|
|
|
if (!dbm::is_result($contacts)) {
|
2015-09-10 23:32:56 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-08-02 06:28:34 +02:00
|
|
|
foreach ($contacts as $c) {
|
2015-09-10 23:32:56 +02:00
|
|
|
|
|
|
|
$res = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
|
|
|
|
intval($c['id'])
|
|
|
|
);
|
|
|
|
|
2017-01-12 00:18:51 +01:00
|
|
|
if (!dbm::is_result($res)) {
|
2015-09-10 23:32:56 +02:00
|
|
|
continue;
|
2017-01-12 00:18:51 +01:00
|
|
|
}
|
2015-09-10 23:32:56 +02:00
|
|
|
|
2017-04-04 19:46:56 +02:00
|
|
|
foreach ($res as $contact) {
|
2015-09-10 23:32:56 +02:00
|
|
|
|
|
|
|
$xml = false;
|
|
|
|
|
2017-03-19 09:04:04 +01:00
|
|
|
if ($manual_id) {
|
2017-02-28 00:37:15 +01:00
|
|
|
$contact['last-update'] = NULL_DATE;
|
2017-03-19 09:04:04 +01:00
|
|
|
}
|
2015-09-10 23:32:56 +02:00
|
|
|
|
2017-03-19 09:04:04 +01:00
|
|
|
if (in_array($contact['network'], array(NETWORK_DFRN, NETWORK_ZOT, NETWORK_OSTATUS))) {
|
2015-09-10 23:32:56 +02:00
|
|
|
$contact['priority'] = 2;
|
2017-03-19 09:04:04 +01:00
|
|
|
}
|
2015-09-10 23:32:56 +02:00
|
|
|
|
2017-03-19 15:43:24 +01:00
|
|
|
if ($contact['subhub'] AND in_array($contact['network'], array(NETWORK_DFRN, NETWORK_ZOT, NETWORK_OSTATUS))) {
|
2017-04-08 18:51:29 +02: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'.
|
|
|
|
*/
|
|
|
|
$poll_interval = get_config('system', 'pushpoll_frequency');
|
2015-09-10 23:32:56 +02:00
|
|
|
$contact['priority'] = (($poll_interval !== false) ? intval($poll_interval) : 3);
|
|
|
|
}
|
|
|
|
|
2017-04-04 19:46:56 +02:00
|
|
|
if ($contact['priority'] AND !$force) {
|
2017-04-08 18:51:29 +02:00
|
|
|
$update = false;
|
2015-09-10 23:32:56 +02:00
|
|
|
|
|
|
|
$t = $contact['last-update'];
|
|
|
|
|
2017-04-08 18:51:29 +02:00
|
|
|
/*
|
2015-09-10 23:32:56 +02:00
|
|
|
* Based on $contact['priority'], should we poll this site now? Or later?
|
|
|
|
*/
|
|
|
|
switch ($contact['priority']) {
|
|
|
|
case 5:
|
2017-04-04 19:46:56 +02:00
|
|
|
if (datetime_convert('UTC', 'UTC', 'now') > datetime_convert('UTC', 'UTC', $t . " + 1 month")) {
|
2015-09-10 23:32:56 +02:00
|
|
|
$update = true;
|
2017-03-21 16:24:49 +01:00
|
|
|
}
|
2015-09-10 23:32:56 +02:00
|
|
|
break;
|
|
|
|
case 4:
|
2017-04-04 19:46:56 +02:00
|
|
|
if (datetime_convert('UTC', 'UTC', 'now') > datetime_convert('UTC', 'UTC', $t . " + 1 week")) {
|
2015-09-10 23:32:56 +02:00
|
|
|
$update = true;
|
2017-03-21 16:24:49 +01:00
|
|
|
}
|
2015-09-10 23:32:56 +02:00
|
|
|
break;
|
|
|
|
case 3:
|
2017-04-04 19:46:56 +02:00
|
|
|
if (datetime_convert('UTC', 'UTC', 'now') > datetime_convert('UTC', 'UTC', $t . " + 1 day")) {
|
2015-09-10 23:32:56 +02:00
|
|
|
$update = true;
|
2017-03-21 16:24:49 +01:00
|
|
|
}
|
2015-09-10 23:32:56 +02:00
|
|
|
break;
|
|
|
|
case 2:
|
2017-04-04 19:46:56 +02:00
|
|
|
if (datetime_convert('UTC', 'UTC', 'now') > datetime_convert('UTC', 'UTC', $t . " + 12 hour")) {
|
2015-09-10 23:32:56 +02:00
|
|
|
$update = true;
|
2017-03-21 16:24:49 +01:00
|
|
|
}
|
2015-09-10 23:32:56 +02:00
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
default:
|
2017-04-04 19:46:56 +02:00
|
|
|
if (datetime_convert('UTC', 'UTC', 'now') > datetime_convert('UTC', 'UTC', $t . " + 1 hour")) {
|
2015-09-10 23:32:56 +02:00
|
|
|
$update = true;
|
2017-03-21 16:24:49 +01:00
|
|
|
}
|
2015-09-10 23:32:56 +02:00
|
|
|
break;
|
|
|
|
}
|
2017-03-21 16:24:49 +01:00
|
|
|
if (!$update) {
|
2015-09-10 23:32:56 +02:00
|
|
|
continue;
|
2017-03-21 16:24:49 +01:00
|
|
|
}
|
2015-09-10 23:32:56 +02:00
|
|
|
}
|
|
|
|
|
2017-04-08 18:51:29 +02:00
|
|
|
logger("Polling " . $contact["network"] . " " . $contact["id"] . " " . $contact["nick"] . " " . $contact["name"]);
|
2015-09-10 23:32:56 +02:00
|
|
|
|
2016-11-18 00:06:22 +01:00
|
|
|
if (($contact['network'] == NETWORK_FEED) AND ($contact['priority'] <= 3)) {
|
2017-03-21 08:57:09 +01:00
|
|
|
proc_run(PRIORITY_MEDIUM, 'include/onepoll.php', intval($contact['id']));
|
2016-10-31 22:32:08 +01:00
|
|
|
} else {
|
2017-03-21 08:57:09 +01:00
|
|
|
proc_run(PRIORITY_LOW, 'include/onepoll.php', intval($contact['id']));
|
2016-10-31 22:32:08 +01:00
|
|
|
}
|
2015-09-10 23:32:56 +02:00
|
|
|
}
|
|
|
|
}
|
2017-03-21 23:06:57 +01:00
|
|
|
}
|