2017-11-17 23:16:34 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Worker/RemoveContact.php
|
|
|
|
* @brief Removes orphaned data from deleted contacts
|
|
|
|
*/
|
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
|
|
|
use Friendica\Core\Config;
|
2017-11-18 06:12:57 +01:00
|
|
|
use dba;
|
2017-11-17 23:16:34 +01:00
|
|
|
|
2017-12-17 21:24:57 +01:00
|
|
|
require_once 'include/dba.php';
|
|
|
|
|
2017-11-17 23:16:34 +01:00
|
|
|
class RemoveContact {
|
|
|
|
public static function execute($id) {
|
|
|
|
|
|
|
|
// Only delete if the contact doesn't exist (anymore)
|
2018-01-15 14:05:12 +01:00
|
|
|
$r = dba::exists('contact', ['id' => $id]);
|
2017-11-17 23:16:34 +01:00
|
|
|
if ($r) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now we delete all the depending table entries
|
2018-01-15 14:05:12 +01:00
|
|
|
dba::delete('contact', ['id' => $id]);
|
2017-11-17 23:16:34 +01:00
|
|
|
}
|
|
|
|
}
|