2017-11-14 22:50:16 +01:00
|
|
|
<?php
|
2017-11-18 08:31:33 +01:00
|
|
|
/**
|
2020-02-09 16:18:46 +01:00
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2017-11-18 08:31:33 +01:00
|
|
|
*/
|
2020-02-09 16:18:46 +01:00
|
|
|
|
2017-11-14 22:50:16 +01:00
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
2018-01-17 19:42:40 +01:00
|
|
|
use Friendica\Core\Addon;
|
2018-10-21 07:15:02 +02:00
|
|
|
use Friendica\Core\Hook;
|
2018-10-29 22:20:46 +01:00
|
|
|
use Friendica\Core\Logger;
|
2018-08-11 22:40:44 +02:00
|
|
|
use Friendica\Core\Protocol;
|
2017-11-14 22:50:16 +01:00
|
|
|
use Friendica\Core\Worker;
|
2018-07-20 14:19:26 +02:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-15 22:34:11 +01:00
|
|
|
use Friendica\DI;
|
2018-07-25 04:53:46 +02:00
|
|
|
use Friendica\Model\Contact;
|
2018-01-27 03:38:34 +01:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2017-11-14 22:50:16 +01:00
|
|
|
|
2018-07-10 04:39:59 +02:00
|
|
|
class Cron
|
|
|
|
{
|
2019-06-26 07:18:11 +02:00
|
|
|
public static function execute()
|
2018-07-10 04:39:59 +02:00
|
|
|
{
|
2019-12-15 22:34:11 +01:00
|
|
|
$a = DI::app();
|
2017-11-14 22:50:16 +01:00
|
|
|
|
2020-01-19 21:21:13 +01:00
|
|
|
$last = DI::config()->get('system', 'last_cron');
|
2017-11-14 22:50:16 +01:00
|
|
|
|
2020-01-19 21:21:13 +01:00
|
|
|
$poll_interval = intval(DI::config()->get('system', 'cron_interval'));
|
2017-11-14 22:50:16 +01:00
|
|
|
|
|
|
|
if ($last) {
|
|
|
|
$next = $last + ($poll_interval * 60);
|
|
|
|
if ($next > time()) {
|
2018-10-29 22:20:46 +01:00
|
|
|
Logger::log('cron intervall not reached');
|
2017-11-14 22:50:16 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-29 22:20:46 +01:00
|
|
|
Logger::log('cron: start');
|
2017-11-14 22:50:16 +01:00
|
|
|
|
2018-02-06 23:52:36 +01:00
|
|
|
// Fork the cron jobs in separate parts to avoid problems when one of them is crashing
|
2018-10-21 07:15:02 +02:00
|
|
|
Hook::fork($a->queue['priority'], "cron");
|
2018-02-06 23:52:36 +01:00
|
|
|
|
2019-12-21 19:57:00 +01:00
|
|
|
// run the process to update server directories in the background
|
|
|
|
Worker::add(PRIORITY_LOW, 'UpdateServerDirectories');
|
2017-11-14 22:50:16 +01:00
|
|
|
|
|
|
|
// Expire and remove user entries
|
2020-08-16 10:39:04 +02:00
|
|
|
Worker::add(PRIORITY_MEDIUM, 'ExpireAndRemoveUsers');
|
2017-11-14 22:50:16 +01:00
|
|
|
|
|
|
|
// Call possible post update functions
|
2020-08-16 10:39:04 +02:00
|
|
|
Worker::add(PRIORITY_LOW, 'PostUpdate');
|
2017-11-14 22:50:16 +01:00
|
|
|
|
|
|
|
// Repair entries in the database
|
2020-08-16 10:39:04 +02:00
|
|
|
Worker::add(PRIORITY_LOW, 'RepairDatabase');
|
2017-11-14 22:50:16 +01:00
|
|
|
|
|
|
|
// once daily run birthday_updates and then expire in background
|
2020-01-19 21:21:13 +01:00
|
|
|
$d1 = DI::config()->get('system', 'last_expire_day');
|
2018-01-27 03:38:34 +01:00
|
|
|
$d2 = intval(DateTimeFormat::utcNow('d'));
|
2017-11-14 22:50:16 +01:00
|
|
|
|
2018-05-15 19:50:29 +02:00
|
|
|
// Daily cron calls
|
2017-11-14 22:50:16 +01:00
|
|
|
if ($d2 != intval($d1)) {
|
|
|
|
|
2020-08-16 10:39:04 +02:00
|
|
|
Worker::add(PRIORITY_LOW, 'UpdateContactBirthdays');
|
2017-11-14 22:50:16 +01:00
|
|
|
|
2020-08-16 10:39:04 +02:00
|
|
|
Worker::add(PRIORITY_LOW, 'UpdatePhotoAlbums');
|
2018-05-22 22:10:18 +02:00
|
|
|
|
|
|
|
// update nodeinfo data
|
2020-08-16 10:39:04 +02:00
|
|
|
Worker::add(PRIORITY_LOW, 'NodeInfo');
|
2018-05-22 22:10:18 +02:00
|
|
|
|
2019-12-21 19:57:00 +01:00
|
|
|
Worker::add(PRIORITY_LOW, 'UpdateGServers');
|
2017-11-14 22:50:16 +01:00
|
|
|
|
2017-11-19 17:25:13 +01:00
|
|
|
Worker::add(PRIORITY_LOW, 'Expire');
|
2017-11-14 22:50:16 +01:00
|
|
|
|
2017-11-18 06:45:44 +01:00
|
|
|
Worker::add(PRIORITY_MEDIUM, 'DBClean');
|
2017-11-14 22:50:16 +01:00
|
|
|
|
|
|
|
// check upstream version?
|
2017-11-15 22:12:33 +01:00
|
|
|
Worker::add(PRIORITY_LOW, 'CheckVersion');
|
2018-05-22 22:10:18 +02:00
|
|
|
|
2020-01-11 18:22:37 +01:00
|
|
|
self::checkdeletedContacts();
|
|
|
|
|
2020-08-19 20:16:48 +02:00
|
|
|
if (!DI::config()->get('system', 'optimize_tables')) {
|
|
|
|
self::optimizeTables();
|
|
|
|
}
|
|
|
|
|
2020-01-19 21:21:53 +01:00
|
|
|
DI::config()->set('system', 'last_expire_day', $d2);
|
2017-11-14 22:50:16 +01:00
|
|
|
}
|
|
|
|
|
2018-05-15 19:50:29 +02:00
|
|
|
// Hourly cron calls
|
2020-01-19 21:21:13 +01:00
|
|
|
if (DI::config()->get('system', 'last_cron_hourly', 0) + 3600 < time()) {
|
2018-05-15 19:50:29 +02:00
|
|
|
|
2020-07-31 11:08:51 +02:00
|
|
|
// Search for new contacts in the directory
|
|
|
|
if (DI::config()->get('system', 'synchronize_directory')) {
|
|
|
|
Worker::add(PRIORITY_LOW, 'PullDirectory');
|
|
|
|
}
|
|
|
|
|
2018-05-15 19:50:29 +02:00
|
|
|
// Delete all done workerqueue entries
|
2018-07-20 14:19:26 +02:00
|
|
|
DBA::delete('workerqueue', ['`done` AND `executed` < UTC_TIMESTAMP() - INTERVAL 1 HOUR']);
|
2018-05-15 19:50:29 +02:00
|
|
|
|
|
|
|
// Optimizing this table only last seconds
|
2020-08-04 14:24:24 +02:00
|
|
|
if (DI::config()->get('system', 'optimize_tables')) {
|
2020-08-19 20:16:48 +02:00
|
|
|
// We are acquiring the two locks from the worker to avoid locking problems
|
|
|
|
if (DI::lock()->acquire(Worker::LOCK_PROCESS, 10)) {
|
|
|
|
if (DI::lock()->acquire(Worker::LOCK_WORKER, 10)) {
|
|
|
|
DBA::e("OPTIMIZE TABLE `workerqueue`");
|
|
|
|
DBA::e("OPTIMIZE TABLE `process`");
|
|
|
|
DI::lock()->release(Worker::LOCK_WORKER);
|
|
|
|
}
|
|
|
|
DI::lock()->release(Worker::LOCK_PROCESS);
|
|
|
|
}
|
2018-05-27 08:23:18 +02:00
|
|
|
}
|
2018-05-15 19:50:29 +02:00
|
|
|
|
2020-08-19 20:16:48 +02:00
|
|
|
// Clear cache entries
|
|
|
|
Worker::add(PRIORITY_LOW, 'ClearCache');
|
|
|
|
|
2020-01-19 21:21:53 +01:00
|
|
|
DI::config()->set('system', 'last_cron_hourly', time());
|
2018-05-15 19:50:29 +02:00
|
|
|
}
|
|
|
|
|
2018-07-21 07:41:19 +02:00
|
|
|
// Ensure to have a .htaccess file.
|
|
|
|
// this is a precaution for systems that update automatically
|
2018-10-09 19:58:58 +02:00
|
|
|
$basepath = $a->getBasePath();
|
2019-09-14 12:30:41 +02:00
|
|
|
if (!file_exists($basepath . '/.htaccess') && is_writable($basepath)) {
|
2018-07-21 07:41:19 +02:00
|
|
|
copy($basepath . '/.htaccess-dist', $basepath . '/.htaccess');
|
|
|
|
}
|
|
|
|
|
2017-11-14 22:50:16 +01:00
|
|
|
// Poll contacts
|
2019-06-26 07:18:11 +02:00
|
|
|
self::pollContacts();
|
2017-11-14 22:50:16 +01:00
|
|
|
|
2019-06-23 11:27:40 +02:00
|
|
|
// Update contact information
|
|
|
|
self::updatePublicContacts();
|
|
|
|
|
2018-10-29 22:20:46 +01:00
|
|
|
Logger::log('cron: end');
|
2017-11-14 22:50:16 +01:00
|
|
|
|
2020-01-19 21:21:53 +01:00
|
|
|
DI::config()->set('system', 'last_cron', time());
|
2017-11-14 22:50:16 +01:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-08-19 20:16:48 +02:00
|
|
|
/**
|
|
|
|
* Optimize tables that are known to grow and shrink all the time
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
private static function optimizeTables()
|
|
|
|
{
|
|
|
|
Logger::info('Optimize start');
|
|
|
|
|
|
|
|
DBA::e("OPTIMIZE TABLE `auth_codes`");
|
|
|
|
DBA::e("OPTIMIZE TABLE `challenge`");
|
|
|
|
DBA::e("OPTIMIZE TABLE `locks`");
|
|
|
|
DBA::e("OPTIMIZE TABLE `profile_check`");
|
|
|
|
DBA::e("OPTIMIZE TABLE `session`");
|
|
|
|
DBA::e("OPTIMIZE TABLE `tokens`");
|
|
|
|
|
|
|
|
DI::lock()->release('optimize_tables');
|
|
|
|
}
|
|
|
|
|
2020-01-11 18:22:37 +01:00
|
|
|
/**
|
|
|
|
* Checks for contacts that are about to be deleted and ensures that they are removed.
|
|
|
|
* This should be done automatically in the "remove" function. This here is a cleanup job.
|
|
|
|
*/
|
|
|
|
private static function checkdeletedContacts()
|
|
|
|
{
|
|
|
|
$contacts = DBA::select('contact', ['id'], ['deleted' => true]);
|
|
|
|
while ($contact = DBA::fetch($contacts)) {
|
|
|
|
Worker::add(PRIORITY_MEDIUM, 'RemoveContact', $contact['id']);
|
|
|
|
}
|
|
|
|
DBA::close($contacts);
|
|
|
|
}
|
|
|
|
|
2019-06-23 11:27:40 +02:00
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* Update public contacts
|
2020-01-19 10:51:37 +01:00
|
|
|
*
|
2019-06-23 11:27:40 +02:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
*/
|
|
|
|
private static function updatePublicContacts() {
|
|
|
|
$count = 0;
|
2019-06-24 05:25:01 +02:00
|
|
|
$last_updated = DateTimeFormat::utc('now - 1 week');
|
2019-06-23 11:27:40 +02:00
|
|
|
$condition = ["`network` IN (?, ?, ?, ?) AND `uid` = ? AND NOT `self` AND `last-update` < ?",
|
|
|
|
Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS, 0, $last_updated];
|
|
|
|
|
2019-06-25 19:36:24 +02:00
|
|
|
$oldest_date = '';
|
|
|
|
$oldest_id = '';
|
|
|
|
$contacts = DBA::select('contact', ['id', 'last-update'], $condition, ['limit' => 100, 'order' => ['last-update']]);
|
2019-06-23 11:27:40 +02:00
|
|
|
while ($contact = DBA::fetch($contacts)) {
|
2019-06-25 19:36:24 +02:00
|
|
|
if (empty($oldest_id)) {
|
|
|
|
$oldest_id = $contact['id'];
|
|
|
|
$oldest_date = $contact['last-update'];
|
|
|
|
}
|
2020-08-06 20:53:45 +02:00
|
|
|
Worker::add(PRIORITY_LOW, "UpdateContact", $contact['id']);
|
2019-06-23 11:27:40 +02:00
|
|
|
++$count;
|
|
|
|
}
|
2020-07-18 17:49:10 +02:00
|
|
|
Logger::info('Initiated update for public contacts', ['interval' => $count, 'id' => $oldest_id, 'oldest' => $oldest_date]);
|
2019-06-23 11:27:40 +02:00
|
|
|
DBA::close($contacts);
|
|
|
|
}
|
|
|
|
|
2017-11-14 22:50:16 +01:00
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* Poll contacts for unreceived messages
|
2017-11-14 22:50:16 +01:00
|
|
|
*
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2017-11-14 22:50:16 +01:00
|
|
|
*/
|
2019-06-26 07:18:11 +02:00
|
|
|
private static function pollContacts() {
|
2020-08-15 22:05:08 +02:00
|
|
|
$min_poll_interval = DI::config()->get('system', 'min_poll_interval');
|
2017-11-14 22:50:16 +01:00
|
|
|
|
2018-01-17 19:42:40 +01:00
|
|
|
Addon::reload();
|
2017-11-14 22:50:16 +01:00
|
|
|
|
2019-06-26 07:18:11 +02:00
|
|
|
$sql = "SELECT `contact`.`id`, `contact`.`nick`, `contact`.`name`, `contact`.`network`, `contact`.`archive`,
|
2020-08-16 23:38:26 +02:00
|
|
|
`contact`.`last-update`, `contact`.`priority`, `contact`.`rating`, `contact`.`rel`, `contact`.`subhub`
|
2019-06-26 07:18:11 +02:00
|
|
|
FROM `user`
|
|
|
|
STRAIGHT_JOIN `contact`
|
|
|
|
ON `contact`.`uid` = `user`.`uid` AND `contact`.`poll` != ''
|
2020-01-16 07:43:21 +01:00
|
|
|
AND `contact`.`network` IN (?, ?, ?, ?, ?)
|
2019-06-26 07:18:11 +02:00
|
|
|
AND NOT `contact`.`self` AND NOT `contact`.`blocked`
|
|
|
|
AND `contact`.`rel` != ?
|
|
|
|
WHERE NOT `user`.`account_expired` AND NOT `user`.`account_removed`";
|
|
|
|
|
2020-01-16 07:43:21 +01:00
|
|
|
$parameters = [Protocol::DFRN, Protocol::ACTIVITYPUB, Protocol::OSTATUS, Protocol::FEED, Protocol::MAIL, Contact::FOLLOWER];
|
2019-06-26 07:18:11 +02:00
|
|
|
|
2017-11-14 22:50:16 +01: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.
|
2020-01-19 21:21:13 +01:00
|
|
|
$abandon_days = intval(DI::config()->get('system', 'account_abandon_days'));
|
2017-11-14 22:50:16 +01:00
|
|
|
if ($abandon_days < 1) {
|
|
|
|
$abandon_days = 0;
|
|
|
|
}
|
|
|
|
|
2019-06-26 07:18:11 +02:00
|
|
|
if (!empty($abandon_days)) {
|
|
|
|
$sql .= " AND `user`.`login_date` > UTC_TIMESTAMP() - INTERVAL ? DAY";
|
|
|
|
$parameters[] = $abandon_days;
|
|
|
|
}
|
|
|
|
|
|
|
|
$contacts = DBA::p($sql, $parameters);
|
2017-11-14 22:50:16 +01:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($contacts)) {
|
2017-11-14 22:50:16 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-06-26 07:18:11 +02:00
|
|
|
while ($contact = DBA::fetch($contacts)) {
|
2020-08-17 09:44:59 +02:00
|
|
|
$ratings = [0, 3, 7, 8, 9, 10];
|
2020-08-16 23:38:26 +02:00
|
|
|
if (DI::config()->get('system', 'adjust_poll_frequency') && ($contact['network'] == Protocol::FEED)) {
|
2020-08-17 08:47:29 +02:00
|
|
|
$rating = $contact['rating'];
|
2020-08-17 10:55:20 +02:00
|
|
|
} elseif (array_key_exists($contact['priority'], $ratings)) {
|
2020-08-17 09:44:59 +02:00
|
|
|
$rating = $ratings[$contact['priority']];
|
2020-08-17 08:47:29 +02:00
|
|
|
} else {
|
|
|
|
$rating = -1;
|
2020-08-16 23:38:26 +02:00
|
|
|
}
|
|
|
|
|
2017-12-06 15:23:38 +01:00
|
|
|
// Friendica and OStatus are checked once a day
|
2018-08-11 22:40:44 +02:00
|
|
|
if (in_array($contact['network'], [Protocol::DFRN, Protocol::OSTATUS])) {
|
2020-08-17 08:47:29 +02:00
|
|
|
$rating = 8;
|
2017-12-06 15:23:38 +01:00
|
|
|
}
|
|
|
|
|
2020-01-16 07:43:21 +01:00
|
|
|
// ActivityPub is checked once a week
|
|
|
|
if ($contact['network'] == Protocol::ACTIVITYPUB) {
|
2020-08-17 08:47:29 +02:00
|
|
|
$rating = 9;
|
2020-01-16 07:43:21 +01:00
|
|
|
}
|
|
|
|
|
2017-12-06 15:23:38 +01:00
|
|
|
// Check archived contacts once a month
|
|
|
|
if ($contact['archive']) {
|
2020-08-17 08:47:29 +02:00
|
|
|
$rating = 10;
|
2017-12-03 09:59:24 +01:00
|
|
|
}
|
2017-11-14 22:50:16 +01:00
|
|
|
|
2020-08-17 09:44:59 +02:00
|
|
|
if ($rating < 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Based on $contact['priority'], should we poll this site now? Or later?
|
|
|
|
*/
|
|
|
|
$t = $contact['last-update'];
|
|
|
|
|
|
|
|
$poll_intervals = [$min_poll_interval . ' minute', '15 minute', '30 minute',
|
|
|
|
'1 hour', '2 hour', '3 hour', '6 hour', '12 hour' ,'1 day', '1 week', '1 month'];
|
|
|
|
|
|
|
|
if (empty($poll_intervals[$rating]) || (DateTimeFormat::utcNow() > DateTimeFormat::utc($t . ' + ' . $poll_intervals[$rating]))) {
|
|
|
|
continue;
|
2017-12-03 09:59:24 +01:00
|
|
|
}
|
2017-11-14 22:50:16 +01:00
|
|
|
|
2020-03-10 10:44:26 +01:00
|
|
|
if ((($contact['network'] == Protocol::FEED) && ($contact['priority'] <= 3)) || ($contact['network'] == Protocol::MAIL)) {
|
2017-12-03 09:59:24 +01:00
|
|
|
$priority = PRIORITY_MEDIUM;
|
2017-12-06 15:23:38 +01:00
|
|
|
} elseif ($contact['archive']) {
|
|
|
|
$priority = PRIORITY_NEGLIGIBLE;
|
2017-12-03 09:59:24 +01:00
|
|
|
} else {
|
|
|
|
$priority = PRIORITY_LOW;
|
2017-11-14 22:50:16 +01:00
|
|
|
}
|
2017-12-06 15:23:38 +01:00
|
|
|
|
2018-10-29 22:20:46 +01:00
|
|
|
Logger::log("Polling " . $contact["network"] . " " . $contact["id"] . " " . $contact['priority'] . " " . $contact["nick"] . " " . $contact["name"]);
|
2017-12-06 15:23:38 +01:00
|
|
|
|
2019-02-10 00:10:15 +01:00
|
|
|
Worker::add(['priority' => $priority, 'dont_fork' => true, 'force_priority' => true], 'OnePoll', (int)$contact['id']);
|
2017-11-14 22:50:16 +01:00
|
|
|
}
|
2019-06-26 07:18:11 +02:00
|
|
|
DBA::close($contacts);
|
2017-11-14 22:50:16 +01:00
|
|
|
}
|
|
|
|
}
|