friendica/src/Worker/RemoveContact.php

55 lines
1.7 KiB
PHP
Raw Normal View History

2017-11-17 23:16:34 +01:00
<?php
/**
* @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-17 23:16:34 +01:00
*/
2017-11-17 23:16:34 +01:00
namespace Friendica\Worker;
2020-03-01 16:36:54 +01:00
use Friendica\Core\Logger;
use Friendica\Database\DBA;
use Friendica\Core\Protocol;
2018-10-24 06:46:45 +02:00
use Friendica\Model\Item;
2017-11-17 23:16:34 +01:00
/**
* Removes orphaned data from deleted contacts
*/
2017-11-17 23:16:34 +01:00
class RemoveContact {
public static function execute($id) {
// Only delete if the contact is to be deleted
$contact = DBA::selectFirst('contact', ['uid'], ['deleted' => true]);
2018-10-24 06:50:27 +02:00
if (!DBA::isResult($contact)) {
2017-11-17 23:16:34 +01:00
return;
}
2018-08-12 19:15:47 +02:00
// Now we delete the contact and all depending tables
2018-10-24 06:50:27 +02:00
$condition = ['uid' => $contact['uid'], 'contact-id' => $id];
2018-10-24 06:46:45 +02:00
do {
$items = Item::select(['id', 'guid'], $condition, ['limit' => 100]);
2018-10-24 06:46:45 +02:00
while ($item = Item::fetch($items)) {
Logger::info('Delete removed contact item', ['id' => $item['id'], 'guid' => $item['guid']]);
2018-10-24 06:46:45 +02:00
DBA::delete('item', ['id' => $item['id']]);
}
DBA::close($items);
} while (Item::exists($condition));
DBA::delete('contact', ['id' => $id]);
2017-11-17 23:16:34 +01:00
}
}