friendica/src/Worker/RemoveContact.php

27 lines
588 B
PHP
Raw Normal View History

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\Database\DBA;
use Friendica\Core\Protocol;
2017-11-17 23:16:34 +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 is to be deleted
$condition = ['network' => Protocol::PHANTOM, 'id' => $id];
2018-08-12 19:15:47 +02:00
$r = DBA::exists('contact', $condition);
if (!DBA::isResult($r)) {
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
DBA::delete('contact', ['id' => $id]);
2017-11-17 23:16:34 +01:00
}
}