2020-08-16 10:39:04 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2024-01-02 21:57:26 +01:00
|
|
|
* @copyright Copyright (C) 2010-2024, the Friendica project
|
2020-08-16 10:39:04 +02:00
|
|
|
*
|
|
|
|
* @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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
2023-03-29 22:24:16 +02:00
|
|
|
use Friendica\Core\Logger;
|
2020-08-16 10:39:04 +02:00
|
|
|
use Friendica\Database\DBA;
|
2021-02-14 21:27:31 +01:00
|
|
|
use Friendica\Database\DBStructure;
|
2023-03-30 23:23:46 +02:00
|
|
|
use Friendica\Model\Contact;
|
2020-08-21 20:39:18 +02:00
|
|
|
use Friendica\Model\Photo;
|
2020-08-16 10:39:04 +02:00
|
|
|
use Friendica\Model\User;
|
2021-12-02 15:19:01 +01:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2020-08-16 10:39:04 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Expire and remove user entries
|
|
|
|
*/
|
|
|
|
class ExpireAndRemoveUsers
|
|
|
|
{
|
|
|
|
public static function execute()
|
|
|
|
{
|
2023-05-30 15:15:17 +02:00
|
|
|
// expire any expired regular accounts. Don't expire groups.
|
2021-12-02 15:19:01 +01:00
|
|
|
$condition = ["NOT `account_expired` AND `account_expires_on` > ? AND `account_expires_on` < ? AND `page-flags` = ? AND `uid` != ?",
|
|
|
|
DBA::NULL_DATETIME, DateTimeFormat::utcNow(), User::PAGE_FLAGS_NORMAL, 0];
|
2020-08-16 10:39:04 +02:00
|
|
|
DBA::update('user', ['account_expired' => true], $condition);
|
|
|
|
|
2020-11-18 06:24:04 +01:00
|
|
|
// Ensure to never remove the user with uid=0
|
2023-09-08 17:01:51 +02:00
|
|
|
DBA::update('user', ['verified' => true, 'blocked' => false, 'account_removed' => false, 'account_expired' => false,
|
2020-11-18 06:24:04 +01:00
|
|
|
'account_expires_on' => DBA::NULL_DATETIME], ['uid' => 0]);
|
|
|
|
|
2020-08-16 10:39:04 +02:00
|
|
|
// Remove any freshly expired account
|
|
|
|
$users = DBA::select('user', ['uid'], ['account_expired' => true, 'account_removed' => false]);
|
|
|
|
while ($user = DBA::fetch($users)) {
|
2021-03-18 16:44:02 +01:00
|
|
|
if ($user['uid'] != 0) {
|
|
|
|
User::remove($user['uid']);
|
|
|
|
}
|
2020-08-16 10:39:04 +02:00
|
|
|
}
|
|
|
|
DBA::close($users);
|
|
|
|
|
|
|
|
// delete user records for recently removed accounts
|
2021-12-02 15:19:01 +01:00
|
|
|
$users = DBA::select('user', ['uid'], ["`account_removed` AND `account_expires_on` < ? AND `uid` != ?", DateTimeFormat::utcNow(), 0]);
|
2020-08-16 10:39:04 +02:00
|
|
|
while ($user = DBA::fetch($users)) {
|
2023-03-30 23:23:46 +02:00
|
|
|
$pcid = Contact::getPublicIdByUserId($user['uid']);
|
|
|
|
|
|
|
|
Logger::info('Removing user - start', ['uid' => $user['uid'], 'pcid' => $pcid]);
|
2021-01-29 07:26:51 +01:00
|
|
|
// We have to delete photo entries by hand because otherwise the photo data won't be deleted
|
2023-03-29 22:24:16 +02:00
|
|
|
$result = Photo::delete(['uid' => $user['uid']]);
|
|
|
|
if ($result) {
|
|
|
|
Logger::debug('Deleted user photos', ['result' => $result, 'rows' => DBA::affectedRows()]);
|
|
|
|
} else {
|
|
|
|
Logger::warning('Error deleting user photos', ['errno' => DBA::errorNo(), 'errmsg' => DBA::errorMessage()]);
|
|
|
|
}
|
2020-08-21 20:39:18 +02:00
|
|
|
|
2023-03-30 23:48:41 +02:00
|
|
|
if (!empty($pcid)) {
|
|
|
|
$result = DBA::delete('post-tag', ['cid' => $pcid]);
|
|
|
|
if ($result) {
|
|
|
|
Logger::debug('Deleted post-tag entries', ['result' => $result, 'rows' => DBA::affectedRows()]);
|
|
|
|
} else {
|
|
|
|
Logger::warning('Error deleting post-tag entries', ['errno' => DBA::errorNo(), 'errmsg' => DBA::errorMessage()]);
|
|
|
|
}
|
2023-03-30 23:23:46 +02:00
|
|
|
|
2023-03-30 23:48:41 +02:00
|
|
|
$tables = ['post', 'post-user', 'post-thread', 'post-thread-user'];
|
2023-03-30 23:23:46 +02:00
|
|
|
|
2023-03-30 23:48:41 +02:00
|
|
|
if (DBStructure::existsTable('item')) {
|
|
|
|
$tables[] = 'item';
|
|
|
|
}
|
2023-03-30 23:23:46 +02:00
|
|
|
|
2023-03-30 23:48:41 +02:00
|
|
|
// Delete all entries with the public contact in post related tables
|
|
|
|
foreach ($tables as $table) {
|
|
|
|
foreach (['owner-id', 'author-id', 'causer-id'] as $field) {
|
|
|
|
$result = DBA::delete($table, [$field => $pcid]);
|
|
|
|
if ($result) {
|
|
|
|
Logger::debug('Deleted entries', ['table' => $table, 'field' => $field, 'result' => $result, 'rows' => DBA::affectedRows()]);
|
|
|
|
} else {
|
|
|
|
Logger::warning('Error deleting entries', ['table' => $table, 'field' => $field, 'errno' => DBA::errorNo(), 'errmsg' => DBA::errorMessage()]);
|
|
|
|
}
|
2023-03-30 23:23:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-18 16:44:02 +01:00
|
|
|
// Delete the contacts of this user
|
2021-03-18 16:56:50 +01:00
|
|
|
$self = DBA::selectFirst('contact', ['nurl'], ['self' => true, 'uid' => $user['uid']]);
|
|
|
|
if (DBA::isResult($self)) {
|
2023-03-31 05:37:48 +02:00
|
|
|
$result = DBA::delete('contact', ['nurl' => $self['nurl'], 'self' => false]);
|
2023-03-29 22:24:16 +02:00
|
|
|
if ($result) {
|
|
|
|
Logger::debug('Deleted the user contact for other users', ['result' => $result, 'rows' => DBA::affectedRows()]);
|
|
|
|
} else {
|
|
|
|
Logger::warning('Error deleting the user contact for other users', ['errno' => DBA::errorNo(), 'errmsg' => DBA::errorMessage()]);
|
|
|
|
}
|
2021-03-18 16:56:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Delete all contacts of this user
|
2023-03-29 22:24:16 +02:00
|
|
|
$result = DBA::delete('contact', ['uid' => $user['uid']]);
|
|
|
|
if ($result) {
|
|
|
|
Logger::debug('Deleted user contacts', ['result' => $result, 'rows' => DBA::affectedRows()]);
|
|
|
|
} else {
|
|
|
|
Logger::warning('Error deleting user contacts', ['errno' => DBA::errorNo(), 'errmsg' => DBA::errorMessage()]);
|
|
|
|
}
|
2021-03-18 16:44:02 +01:00
|
|
|
|
2021-01-29 07:26:51 +01:00
|
|
|
// These tables contain the permissionset which will also be deleted when a user is deleted.
|
|
|
|
// It seems that sometimes the system wants to delete the records in the wrong order.
|
|
|
|
// So when the permissionset is deleted and these tables are still filled then an error is thrown.
|
|
|
|
// So we now delete them before all other user related entries are deleted.
|
2021-02-14 21:27:31 +01:00
|
|
|
if (DBStructure::existsTable('item')) {
|
2023-03-29 22:24:16 +02:00
|
|
|
$result = DBA::delete('item', ['uid' => $user['uid']]);
|
|
|
|
if ($result) {
|
|
|
|
Logger::debug('Deleted user items', ['result' => $result, 'rows' => DBA::affectedRows()]);
|
|
|
|
} else {
|
|
|
|
Logger::warning('Error deleting user items', ['errno' => DBA::errorNo(), 'errmsg' => DBA::errorMessage()]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$result = DBA::delete('post-user', ['uid' => $user['uid']]);
|
|
|
|
if ($result) {
|
|
|
|
Logger::debug('Deleted post-user entries', ['result' => $result, 'rows' => DBA::affectedRows()]);
|
|
|
|
} else {
|
|
|
|
Logger::warning('Error deleting post-user entries', ['errno' => DBA::errorNo(), 'errmsg' => DBA::errorMessage()]);
|
|
|
|
}
|
|
|
|
|
|
|
|
$result = DBA::delete('profile_field', ['uid' => $user['uid']]);
|
|
|
|
if ($result) {
|
|
|
|
Logger::debug('Deleted profile_field entries', ['result' => $result, 'rows' => DBA::affectedRows()]);
|
|
|
|
} else {
|
|
|
|
Logger::warning('Error deleting profile_field entries', ['errno' => DBA::errorNo(), 'errmsg' => DBA::errorMessage()]);
|
|
|
|
}
|
|
|
|
|
|
|
|
$result = DBA::delete('user', ['uid' => $user['uid']]);
|
|
|
|
if ($result) {
|
|
|
|
Logger::debug('Deleted user record', ['result' => $result, 'rows' => DBA::affectedRows()]);
|
|
|
|
} else {
|
|
|
|
Logger::warning('Error deleting user record', ['errno' => DBA::errorNo(), 'errmsg' => DBA::errorMessage()]);
|
2021-02-14 21:27:31 +01:00
|
|
|
}
|
2021-01-29 07:26:51 +01:00
|
|
|
|
2023-03-29 22:24:16 +02:00
|
|
|
Logger::info('Removing user - done', ['uid' => $user['uid']]);
|
2020-08-16 10:39:04 +02:00
|
|
|
}
|
|
|
|
DBA::close($users);
|
|
|
|
}
|
|
|
|
}
|