2017-11-17 17:16:34 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Worker/RemoveContact.php
|
|
|
|
* @brief Removes orphaned data from deleted contacts
|
|
|
|
*/
|
|
|
|
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;
|
2017-11-17 17:16:34 -05:00
|
|
|
|
2017-12-17 15:24:57 -05:00
|
|
|
require_once 'include/dba.php';
|
|
|
|
|
2017-11-17 17:16:34 -05:00
|
|
|
class RemoveContact {
|
|
|
|
public static function execute($id) {
|
|
|
|
|
2018-08-12 13:15:47 -04:00
|
|
|
// Only delete if the contact is archived
|
|
|
|
$condition = ['archive' => true, 'network' => Protocol::PHANTOM, 'id' => $id];
|
|
|
|
$r = DBA::exists('contact', $condition);
|
|
|
|
if (!DBA::isResult($r)) {
|
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-07-20 08:19:26 -04:00
|
|
|
DBA::delete('contact', ['id' => $id]);
|
2017-11-17 17:16:34 -05:00
|
|
|
}
|
|
|
|
}
|