2017-11-17 17:16:34 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Worker/RemoveContact.php
|
2020-01-19 01:05:23 -05:00
|
|
|
* Removes orphaned data from deleted contacts
|
2017-11-17 17:16:34 -05:00
|
|
|
*/
|
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
2018-07-20 08:19:26 -04:00
|
|
|
use Friendica\Database\DBA;
|
2018-08-15 05:27:25 -04:00
|
|
|
use Friendica\Core\Protocol;
|
2018-10-24 00:46:45 -04:00
|
|
|
use Friendica\Model\Item;
|
2017-11-17 17:16:34 -05:00
|
|
|
|
|
|
|
class RemoveContact {
|
|
|
|
public static function execute($id) {
|
|
|
|
|
2018-09-12 02:05:14 -04:00
|
|
|
// Only delete if the contact is to be deleted
|
2020-01-11 12:22:37 -05:00
|
|
|
$contact = DBA::selectFirst('contact', ['uid'], ['deleted' => true]);
|
2018-10-24 00:50:27 -04:00
|
|
|
if (!DBA::isResult($contact)) {
|
2017-11-17 17:16:34 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-08-12 13:15:47 -04:00
|
|
|
// Now we delete the contact and all depending tables
|
2018-10-24 00:50:27 -04:00
|
|
|
$condition = ['uid' => $contact['uid'], 'contact-id' => $id];
|
2018-10-24 00:46:45 -04:00
|
|
|
do {
|
|
|
|
$items = Item::select(['id'], $condition, ['limit' => 100]);
|
|
|
|
while ($item = Item::fetch($items)) {
|
|
|
|
DBA::delete('item', ['id' => $item['id']]);
|
|
|
|
}
|
|
|
|
DBA::close($items);
|
|
|
|
} while (Item::exists($condition));
|
|
|
|
|
2018-07-20 08:19:26 -04:00
|
|
|
DBA::delete('contact', ['id' => $id]);
|
2017-11-17 17:16:34 -05:00
|
|
|
}
|
|
|
|
}
|