2 use \Friendica\Core\Config;
4 function cron_run(&$argv, &$argc){
7 require_once('include/datetime.php');
9 // Poll contacts with specific parameters
11 cron_poll_contacts($argc, $argv);
15 $last = get_config('system','last_cron');
17 $poll_interval = intval(get_config('system','cron_interval'));
18 if (! $poll_interval) {
22 $next = $last + ($poll_interval * 60);
24 logger('cron intervall not reached');
29 logger('cron: start');
31 // run queue delivery process in the background
32 proc_run(PRIORITY_NEGLIGIBLE, "include/queue.php");
34 // run the process to discover global contacts in the background
35 proc_run(PRIORITY_LOW, "include/discover_poco.php");
37 // run the process to update locally stored global contacts in the background
38 proc_run(PRIORITY_LOW, "include/discover_poco.php", "checkcontact");
40 // Expire and remove user entries
41 proc_run(PRIORITY_MEDIUM, "include/cronjobs.php", "expire_and_remove_users");
43 // Check OStatus conversations
44 proc_run(PRIORITY_MEDIUM, "include/cronjobs.php", "ostatus_mentions");
46 // Check every conversation
47 proc_run(PRIORITY_MEDIUM, "include/cronjobs.php", "ostatus_conversations");
49 // Call possible post update functions
50 proc_run(PRIORITY_LOW, "include/cronjobs.php", "post_update");
52 // update nodeinfo data
53 proc_run(PRIORITY_LOW, "include/cronjobs.php", "nodeinfo");
55 // Clear cache entries
56 proc_run(PRIORITY_LOW, "include/cronjobs.php", "clear_cache");
58 // Repair missing Diaspora values in contacts
59 proc_run(PRIORITY_LOW, "include/cronjobs.php", "repair_diaspora");
61 // Repair entries in the database
62 proc_run(PRIORITY_LOW, "include/cronjobs.php", "repair_database");
64 // once daily run birthday_updates and then expire in background
65 $d1 = get_config('system','last_expire_day');
66 $d2 = intval(datetime_convert('UTC','UTC','now','d'));
68 if($d2 != intval($d1)) {
70 proc_run(PRIORITY_LOW, "include/cronjobs.php", "update_contact_birthdays");
72 proc_run(PRIORITY_LOW, "include/discover_poco.php", "update_server");
74 proc_run(PRIORITY_LOW, "include/discover_poco.php", "suggestions");
76 set_config('system','last_expire_day',$d2);
78 proc_run(PRIORITY_LOW, 'include/expire.php');
80 proc_run(PRIORITY_MEDIUM, 'include/dbclean.php');
82 proc_run(PRIORITY_LOW, "include/cronjobs.php", "update_photo_albums");
86 cron_poll_contacts($argc, $argv);
90 set_config('system','last_cron', time());
96 * @brief Poll contacts for unreceived messages
98 * @param Integer $argc Number of command line arguments
99 * @param Array $argv Array of command line arguments
101 function cron_poll_contacts($argc, $argv) {
107 if (($argc > 1) && ($argv[1] == 'force')) {
110 if (($argc > 1) && ($argv[1] == 'restart')) {
112 $generation = intval($argv[2]);
118 if (($argc > 1) && intval($argv[1])) {
119 $manual_id = intval($argv[1]);
123 $sql_extra = (($manual_id) ? " AND `id` = $manual_id " : "");
127 $d = datetime_convert();
129 // Only poll from those with suitable relationships,
130 // and which have a polling address and ignore Diaspora since
131 // we are unable to match those posts with a Diaspora GUID and prevent duplicates.
133 $abandon_days = intval(get_config('system','account_abandon_days'));
134 if ($abandon_days < 1) {
137 $abandon_sql = (($abandon_days)
138 ? sprintf(" AND `user`.`login_date` > UTC_TIMESTAMP() - INTERVAL %d DAY ", intval($abandon_days))
142 $contacts = q("SELECT `contact`.`id` FROM `user`
143 STRAIGHT_JOIN `contact`
144 ON `contact`.`uid` = `user`.`uid` AND `contact`.`rel` IN (%d, %d) AND `contact`.`poll` != ''
145 AND `contact`.`network` IN ('%s', '%s', '%s', '%s', '%s', '%s') $sql_extra
146 AND NOT `contact`.`self` AND NOT `contact`.`blocked` AND NOT `contact`.`readonly`
147 AND NOT `contact`.`archive`
148 WHERE NOT `user`.`account_expired` AND NOT `user`.`account_removed` $abandon_sql ORDER BY RAND()",
149 intval(CONTACT_IS_SHARING),
150 intval(CONTACT_IS_FRIEND),
153 dbesc(NETWORK_OSTATUS),
159 if (!count($contacts)) {
163 foreach ($contacts as $c) {
165 $res = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
169 if (!dbm::is_result($res)) {
173 foreach($res as $contact) {
178 $contact['last-update'] = NULL_DATE;
181 if (in_array($contact['network'], array(NETWORK_DFRN, NETWORK_ZOT, NETWORK_OSTATUS))) {
182 $contact['priority'] = 2;
185 if ($contact['subhub'] AND in_array($contact['network'], array(NETWORK_DFRN, NETWORK_ZOT, NETWORK_OSTATUS))) {
186 // We should be getting everything via a hub. But just to be sure, let's check once a day.
187 // (You can make this more or less frequent if desired by setting 'pushpoll_frequency' appropriately)
188 // This also lets us update our subscription to the hub, and add or replace hubs in case it
189 // changed. We will only update hubs once a day, regardless of 'pushpoll_frequency'.
191 $poll_interval = get_config('system','pushpoll_frequency');
192 $contact['priority'] = (($poll_interval !== false) ? intval($poll_interval) : 3);
195 if($contact['priority'] AND !$force) {
199 $t = $contact['last-update'];
202 * Based on $contact['priority'], should we poll this site now? Or later?
205 switch ($contact['priority']) {
207 if (datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 month")) {
212 if (datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 week")) {
217 if (datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day")) {
222 if (datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 12 hour")) {
228 if (datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 hour")) {
238 logger("Polling ".$contact["network"]." ".$contact["id"]." ".$contact["nick"]." ".$contact["name"]);
240 if (($contact['network'] == NETWORK_FEED) AND ($contact['priority'] <= 3)) {
241 proc_run(PRIORITY_MEDIUM, 'include/onepoll.php', intval($contact['id']));
243 proc_run(PRIORITY_LOW, 'include/onepoll.php', intval($contact['id']));