]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/RemoveContact.php
Merge pull request #6595 from annando/notice
[friendica.git] / src / Worker / RemoveContact.php
index 8f986eab11559c18630315429dd783910dfa9205..00027dca40a2e46dd2b78352a274885634ff0519 100644 (file)
@@ -7,20 +7,28 @@ namespace Friendica\Worker;
 
 use Friendica\Database\DBA;
 use Friendica\Core\Protocol;
-
-require_once 'include/dba.php';
+use Friendica\Model\Item;
 
 class RemoveContact {
        public static function execute($id) {
 
                // Only delete if the contact is to be deleted
                $condition = ['network' => Protocol::PHANTOM, 'id' => $id];
-               $r = DBA::exists('contact', $condition);
-               if (!DBA::isResult($r)) {
+               $contact = DBA::selectFirst('contact', ['uid'], $condition);
+               if (!DBA::isResult($contact)) {
                        return;
                }
 
                // Now we delete the contact and all depending tables
+               $condition = ['uid' => $contact['uid'], 'contact-id' => $id];
+               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));
+
                DBA::delete('contact', ['id' => $id]);
        }
 }