Merge pull request #12511 from annando/only-active

Only check the homepage for active users with a homepage
This commit is contained in:
Hypolite Petovan 2022-12-23 01:29:20 -05:00 committed by GitHub
commit b898dd1c00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions

View File

@ -27,9 +27,9 @@ use Friendica\Core\Worker;
use Friendica\Database\DBA;
use Friendica\DI;
use Friendica\Model\Tag;
use Friendica\Model\User;
use Friendica\Protocol\ActivityPub\Queue;
use Friendica\Protocol\Relay;
use Friendica\Util\DateTimeFormat;
class Cron
{
@ -136,10 +136,12 @@ class Cron
Worker::add(Worker::PRIORITY_LOW, 'OptimizeTables');
}
foreach (User::getList(1, PHP_INT_MAX, 'active') as $user) {
$users = DBA::select('owner-view', ['uid'], ["`homepage_verified` OR (`last-activity` > ? AND `homepage` != ?)", DateTimeFormat::utc('now - 7 days', 'Y-m-d'), '']);
while ($user = DBA::fetch($users)) {
Worker::add(Worker::PRIORITY_LOW, 'CheckRelMeProfileLink', $user['uid']);
}
DBA::close($users);
// Resubscribe to relay servers
Relay::reSubscribe();