]> git.mxchange.org Git - friendica.git/commitdiff
Move Worker task RemoveContact to Contact\Remove
authorHypolite Petovan <hypolite@mrpetovan.com>
Wed, 13 Oct 2021 00:14:56 +0000 (20:14 -0400)
committerHypolite Petovan <hypolite@mrpetovan.com>
Sat, 16 Oct 2021 23:22:24 +0000 (19:22 -0400)
src/Model/Contact.php
src/Worker/CheckDeletedContacts.php
src/Worker/Contact/Remove.php [new file with mode: 0644]
src/Worker/RemoveContact.php [deleted file]

index 88cd8fdaf371d41f7d64e81dbc1f63000512580b..9aed40cf598b6261028cc7685e5e99fb88f1275d 100644 (file)
@@ -823,7 +823,7 @@ class Contact
                self::update(['archive' => true, 'network' => Protocol::PHANTOM, 'deleted' => true], ['id' => $id]);
 
                // Delete it in the background
-               Worker::add(PRIORITY_MEDIUM, 'RemoveContact', $id);
+               Worker::add(PRIORITY_MEDIUM, 'Contact\Remove', $id);
        }
 
        /**
index 505d026e3a7d8a3357afd84be4fc2274dfb8baa7..385cdc12d5ec5495cbdd87ec7d691862e9b6f89d 100644 (file)
@@ -34,7 +34,7 @@ class CheckDeletedContacts
        {
                $contacts = DBA::select('contact', ['id'], ['deleted' => true]);
                while ($contact = DBA::fetch($contacts)) {
-                       Worker::add(PRIORITY_MEDIUM, 'RemoveContact', $contact['id']);
+                       Worker::add(PRIORITY_MEDIUM, 'Contact\Remove', $contact['id']);
                }
                DBA::close($contacts);
        }
diff --git a/src/Worker/Contact/Remove.php b/src/Worker/Contact/Remove.php
new file mode 100644 (file)
index 0000000..a3378fd
--- /dev/null
@@ -0,0 +1,47 @@
+<?php
+/**
+ * @copyright Copyright (C) 2010-2021, the Friendica project
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
+
+namespace Friendica\Worker\Contact;
+
+use Friendica\Core\Logger;
+use Friendica\Database\DBA;
+
+/**
+ * Removes a contact and all its related content
+ */
+class Remove extends RemoveContent
+{
+       public static function execute(int $id): array
+       {
+               $contact = parent::execute($id);
+
+               if (!empty($contact)) {
+                       return [];
+               }
+
+               $ret = DBA::delete('contact', ['id' => $id]);
+               Logger::info('Deleted contact', ['id' => $id, 'result' => $ret]);
+
+               $contact['id'] = null;
+
+               return $contact;
+       }
+}
diff --git a/src/Worker/RemoveContact.php b/src/Worker/RemoveContact.php
deleted file mode 100644 (file)
index f64d4d0..0000000
+++ /dev/null
@@ -1,79 +0,0 @@
-<?php
-/**
- * @copyright Copyright (C) 2010-2021, the Friendica project
- *
- * @license GNU AGPL version 3 or any later version
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <https://www.gnu.org/licenses/>.
- *
- */
-
-namespace Friendica\Worker;
-
-use Friendica\Core\Logger;
-use Friendica\Database\DBA;
-use Friendica\Database\DBStructure;
-use Friendica\Model\Photo;
-use Friendica\Model\Post;
-
-/**
- * Removes orphaned data from deleted contacts
- */
-class RemoveContact {
-       public static function execute($id) {
-               if (empty($id)) {
-                       return;
-               }
-
-               // Only delete if the contact is to be deleted
-               $contact = DBA::selectFirst('contact', ['id', 'uid', 'url', 'nick', 'name'], ['deleted' => true, 'id' => $id]);
-               if (!DBA::isResult($contact)) {
-                       return;
-               }
-
-               Logger::info('Start deleting contact', ['contact' => $contact]);
-
-               // Now we delete the contact and all depending tables
-               DBA::delete('post-tag', ['cid' => $id]);
-
-               if (DBStructure::existsTable('item')) {
-                       DBA::delete('item', ['author-id' => $id]);
-                       DBA::delete('item', ['owner-id' => $id]);
-                       DBA::delete('item', ['causer-id' => $id]);
-                       DBA::delete('item', ['contact-id' => $id]);
-               }
-
-               DBA::delete('mail', ['contact-id' => $id]);
-               DBA::delete('mail', ['author-id' => $id]);
-
-               Post\ThreadUser::delete(['author-id' => $id]);
-               Post\ThreadUser::delete(['owner-id' => $id]);
-               Post\ThreadUser::delete(['causer-id' => $id]);
-               Post\ThreadUser::delete(['contact-id' => $id]);
-               Post\Thread::delete(['author-id' => $id]);
-               Post\Thread::delete(['owner-id' => $id]);
-               Post\Thread::delete(['causer-id' => $id]);
-               Post\User::delete(['author-id' => $id]);
-               Post\User::delete(['owner-id' => $id]);
-               Post\User::delete(['causer-id' => $id]);
-               Post\User::delete(['contact-id' => $id]);
-               Post::delete(['author-id' => $id]);
-               Post::delete(['owner-id' => $id]);
-               Post::delete(['causer-id' => $id]);
-
-               Photo::delete(['contact-id' => $id]);
-               $ret = DBA::delete('contact', ['id' => $id]);
-               Logger::info('Deleted contact', ['id' => $id, 'result' => $ret]);
-       }
-}