2017-11-17 17:16:34 -05:00
|
|
|
<?php
|
|
|
|
/**
|
2020-02-09 10:18:46 -05:00
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @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/>.
|
|
|
|
*
|
2017-11-17 17:16:34 -05:00
|
|
|
*/
|
2020-02-09 10:18:46 -05:00
|
|
|
|
2017-11-17 17:16:34 -05:00
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
2020-03-01 10:36:54 -05:00
|
|
|
use Friendica\Core\Logger;
|
2018-07-20 08:19:26 -04:00
|
|
|
use Friendica\Database\DBA;
|
2021-02-14 15:27:31 -05:00
|
|
|
use Friendica\Database\DBStructure;
|
2020-08-21 14:39:18 -04:00
|
|
|
use Friendica\Model\Photo;
|
2021-01-15 23:14:58 -05:00
|
|
|
use Friendica\Model\Post;
|
2017-11-17 17:16:34 -05:00
|
|
|
|
2020-02-09 10:18:46 -05:00
|
|
|
/**
|
|
|
|
* Removes orphaned data from deleted contacts
|
|
|
|
*/
|
2017-11-17 17:16:34 -05:00
|
|
|
class RemoveContact {
|
|
|
|
public static function execute($id) {
|
2021-02-16 17:04:03 -05:00
|
|
|
if (empty($id)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-09-12 02:05:14 -04:00
|
|
|
// Only delete if the contact is to be deleted
|
2021-02-19 12:56:13 -05:00
|
|
|
$contact = DBA::selectFirst('contact', ['id', 'uid', 'url', 'nick', 'name'], ['deleted' => true, 'id' => $id]);
|
2018-10-24 00:50:27 -04:00
|
|
|
if (!DBA::isResult($contact)) {
|
2017-11-17 17:16:34 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-02-19 12:56:13 -05:00
|
|
|
Logger::info('Start deleting contact', ['contact' => $contact]);
|
|
|
|
|
2018-08-12 13:15:47 -04:00
|
|
|
// Now we delete the contact and all depending tables
|
2021-02-19 12:56:13 -05:00
|
|
|
DBA::delete('post-tag', ['cid' => $id]);
|
|
|
|
|
2021-02-16 17:04:03 -05:00
|
|
|
if (DBStructure::existsTable('item')) {
|
2021-02-19 12:56:13 -05:00
|
|
|
DBA::delete('item', ['author-id' => $id]);
|
|
|
|
DBA::delete('item', ['owner-id' => $id]);
|
|
|
|
DBA::delete('item', ['causer-id' => $id]);
|
|
|
|
DBA::delete('item', ['contact-id' => $id]);
|
2021-02-16 17:04:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
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]);
|
2021-02-19 12:56:13 -05:00
|
|
|
Post\User::delete(['author-id' => $id]);
|
|
|
|
Post\User::delete(['owner-id' => $id]);
|
|
|
|
Post\User::delete(['causer-id' => $id]);
|
|
|
|
Post\User::delete(['contact-id' => $id]);
|
2021-02-16 17:04:03 -05:00
|
|
|
Post::delete(['author-id' => $id]);
|
|
|
|
Post::delete(['owner-id' => $id]);
|
|
|
|
Post::delete(['causer-id' => $id]);
|
2018-10-24 00:46:45 -04:00
|
|
|
|
2020-12-15 17:56:46 -05:00
|
|
|
Photo::delete(['contact-id' => $id]);
|
|
|
|
$ret = DBA::delete('contact', ['id' => $id]);
|
|
|
|
Logger::info('Deleted contact', ['id' => $id, 'result' => $ret]);
|
2017-11-17 17:16:34 -05:00
|
|
|
}
|
|
|
|
}
|