friendica/src/Worker/MergeContact.php

84 lines
3.1 KiB
PHP
Raw Normal View History

2019-08-26 17:51:56 +02:00
<?php
/**
* @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/>.
*
2019-08-26 17:51:56 +02:00
*/
namespace Friendica\Worker;
use Friendica\Core\Logger;
use Friendica\Database\DBA;
use Friendica\Database\DBStructure;
use Friendica\Model\Post;
2019-08-26 17:51:56 +02:00
class MergeContact
{
/**
* Replace all occurences of the given contact id and replace it
*
2020-05-30 19:06:59 +02:00
* @param integer $new_cid
* @param integer $old_cid
* @param integer $uid
*/
2020-05-30 19:06:59 +02:00
public static function execute(int $new_cid, int $old_cid, int $uid)
2019-08-26 17:51:56 +02:00
{
2020-05-30 19:06:59 +02:00
if (empty($new_cid) || empty($old_cid) || ($new_cid == $old_cid)) {
2019-08-26 17:51:56 +02:00
// Invalid request
return;
}
2020-05-30 19:06:59 +02:00
Logger::info('Handling duplicate', ['search' => $old_cid, 'replace' => $new_cid]);
2019-08-26 17:51:56 +02:00
// Search and replace
Post::update(['contact-id' => $new_cid], ['contact-id' => $old_cid]);
2020-05-30 19:06:59 +02:00
DBA::update('mail', ['contact-id' => $new_cid], ['contact-id' => $old_cid]);
DBA::update('photo', ['contact-id' => $new_cid], ['contact-id' => $old_cid]);
DBA::update('event', ['cid' => $new_cid], ['cid' => $old_cid]);
if (DBStructure::existsTable('item')) {
DBA::update('item', ['contact-id' => $new_cid], ['contact-id' => $old_cid]);
}
if (DBStructure::existsTable('thread')) {
DBA::update('thread', ['contact-id' => $new_cid], ['contact-id' => $old_cid]);
}
// These fields only contain public contact entries (uid = 0)
2019-08-26 17:51:56 +02:00
if ($uid == 0) {
2020-05-30 19:06:59 +02:00
DBA::update('post-tag', ['cid' => $new_cid], ['cid' => $old_cid]);
DBA::delete('post-tag', ['cid' => $old_cid]);
Post::update(['author-id' => $new_cid], ['author-id' => $old_cid]);
Post::update(['owner-id' => $new_cid], ['owner-id' => $old_cid]);
Post::update(['causer-id' => $new_cid], ['causer-id' => $old_cid]);
if (DBStructure::existsTable('item')) {
DBA::update('item', ['author-id' => $new_cid], ['author-id' => $old_cid]);
DBA::update('item', ['owner-id' => $new_cid], ['owner-id' => $old_cid]);
DBA::update('item', ['causer-id' => $new_cid], ['causer-id' => $old_cid]);
}
if (DBStructure::existsTable('thread')) {
DBA::update('thread', ['author-id' => $new_cid], ['author-id' => $old_cid]);
DBA::update('thread', ['owner-id' => $new_cid], ['owner-id' => $old_cid]);
DBA::update('thread', ['causer-id' => $new_cid], ['causer-id' => $old_cid]);
}
2019-08-26 17:51:56 +02:00
} else {
/// @todo Check if some other data needs to be adjusted as well, possibly the "rel" status?
}
// Remove the duplicate
2020-05-30 19:06:59 +02:00
DBA::delete('contact', ['id' => $old_cid]);
2019-08-26 17:51:56 +02:00
}
}