2018-01-13 14:01:32 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2022-01-02 07:27:47 +00:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 14:45:36 +00:00
|
|
|
*
|
|
|
|
* @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/>.
|
|
|
|
*
|
2018-01-13 14:01:32 +00:00
|
|
|
*/
|
2020-02-09 14:45:36 +00:00
|
|
|
|
2018-01-13 14:01:32 +00:00
|
|
|
namespace Friendica\Core;
|
|
|
|
|
2018-07-20 12:19:26 +00:00
|
|
|
use Friendica\Database\DBA;
|
2019-03-01 11:35:59 +00:00
|
|
|
use Friendica\Database\DBStructure;
|
2019-12-15 23:28:31 +00:00
|
|
|
use Friendica\DI;
|
2018-01-13 14:01:32 +00:00
|
|
|
use Friendica\Model\Photo;
|
2021-10-10 18:54:29 +00:00
|
|
|
use Friendica\Model\Profile;
|
2018-01-13 14:01:32 +00:00
|
|
|
use Friendica\Object\Image;
|
2021-10-21 21:18:08 +00:00
|
|
|
use Friendica\Security\PermissionSet\Repository\PermissionSet;
|
2018-11-08 16:28:29 +00:00
|
|
|
use Friendica\Util\Strings;
|
2019-06-10 14:19:24 +00:00
|
|
|
use Friendica\Worker\Delivery;
|
2018-01-13 14:01:32 +00:00
|
|
|
|
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* UserImport class
|
2018-01-13 14:01:32 +00:00
|
|
|
*/
|
|
|
|
class UserImport
|
|
|
|
{
|
2018-01-13 18:10:14 +00:00
|
|
|
const IMPORT_DEBUG = false;
|
|
|
|
|
2018-01-13 14:14:37 +00:00
|
|
|
private static function lastInsertId()
|
|
|
|
{
|
2018-01-14 20:56:36 +00:00
|
|
|
if (self::IMPORT_DEBUG) {
|
2018-01-13 14:01:32 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2018-01-15 13:05:12 +00:00
|
|
|
|
2018-07-20 12:19:26 +00:00
|
|
|
return DBA::lastInsertId();
|
2018-01-13 14:01:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove columns from array $arr that aren't in table $table
|
|
|
|
*
|
|
|
|
* @param string $table Table name
|
2019-01-06 21:06:53 +00:00
|
|
|
* @param array &$arr Column=>Value array from json (by ref)
|
|
|
|
* @throws \Exception
|
2018-01-13 14:01:32 +00:00
|
|
|
*/
|
2018-01-13 14:14:37 +00:00
|
|
|
private static function checkCols($table, &$arr)
|
2018-01-13 14:01:32 +00:00
|
|
|
{
|
2019-03-01 16:15:34 +00:00
|
|
|
$tableColumns = DBStructure::getColumns($table);
|
2019-03-01 11:35:59 +00:00
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
$tcols = [];
|
2019-05-26 13:49:44 +00:00
|
|
|
$ttype = [];
|
2018-01-13 14:01:32 +00:00
|
|
|
// get a plain array of column names
|
2019-03-01 16:15:34 +00:00
|
|
|
foreach ($tableColumns as $tcol) {
|
2018-01-13 14:01:32 +00:00
|
|
|
$tcols[] = $tcol['Field'];
|
2019-05-26 13:49:44 +00:00
|
|
|
$ttype[$tcol['Field']] = $tcol['Type'];
|
2018-01-13 14:01:32 +00:00
|
|
|
}
|
|
|
|
// remove inexistent columns
|
|
|
|
foreach ($arr as $icol => $ival) {
|
|
|
|
if (!in_array($icol, $tcols)) {
|
|
|
|
unset($arr[$icol]);
|
2019-05-26 13:49:44 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($ttype[$icol] === 'datetime') {
|
2019-05-26 19:53:24 +00:00
|
|
|
$arr[$icol] = $ival ?? DBA::NULL_DATETIME;
|
2018-01-13 14:01:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Import data into table $table
|
|
|
|
*
|
|
|
|
* @param string $table Table name
|
2019-01-06 21:06:53 +00:00
|
|
|
* @param array $arr Column=>Value array from json
|
|
|
|
* @return array|bool
|
|
|
|
* @throws \Exception
|
2018-01-13 14:01:32 +00:00
|
|
|
*/
|
2022-06-21 09:44:23 +00:00
|
|
|
private static function dbImportAssoc(string $table, array $arr)
|
2018-01-13 14:01:32 +00:00
|
|
|
{
|
|
|
|
if (isset($arr['id'])) {
|
|
|
|
unset($arr['id']);
|
|
|
|
}
|
|
|
|
|
2018-02-14 23:13:53 +00:00
|
|
|
self::checkCols($table, $arr);
|
2018-01-13 14:01:32 +00:00
|
|
|
|
2018-01-14 20:56:36 +00:00
|
|
|
if (self::IMPORT_DEBUG) {
|
2018-01-13 14:01:32 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-03-01 11:35:59 +00:00
|
|
|
return DBA::insert($table, $arr);
|
2018-01-13 14:01:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Import account file exported from mod/uexport
|
2018-01-13 14:01:32 +00:00
|
|
|
*
|
|
|
|
* @param array $file array from $_FILES
|
2022-06-21 09:44:23 +00:00
|
|
|
* @return void
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2018-01-13 14:01:32 +00:00
|
|
|
*/
|
2022-06-21 09:44:23 +00:00
|
|
|
public static function importAccount(array $file)
|
2018-01-13 14:14:37 +00:00
|
|
|
{
|
2021-11-03 23:19:24 +00:00
|
|
|
Logger::notice("Start user import from " . $file['tmp_name']);
|
2018-01-13 14:01:32 +00:00
|
|
|
/*
|
|
|
|
STEPS
|
|
|
|
1. checks
|
|
|
|
2. replace old baseurl with new baseurl
|
|
|
|
3. import data (look at user id and contacts id)
|
|
|
|
4. archive non-dfrn contacts
|
|
|
|
5. send message to dfrn contacts
|
|
|
|
*/
|
|
|
|
|
|
|
|
$account = json_decode(file_get_contents($file['tmp_name']), true);
|
|
|
|
if ($account === null) {
|
2022-10-17 18:55:22 +00:00
|
|
|
DI::sysmsg()->addNotice(DI::l10n()->t("Error decoding account file"));
|
2018-01-13 14:01:32 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-11-30 14:06:22 +00:00
|
|
|
if (empty($account['version'])) {
|
2022-10-17 18:55:22 +00:00
|
|
|
DI::sysmsg()->addNotice(DI::l10n()->t("Error! No version data in file! This is not a Friendica account file?"));
|
2018-01-13 14:01:32 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// check for username
|
|
|
|
// check if username matches deleted account
|
2018-07-20 12:19:26 +00:00
|
|
|
if (DBA::exists('user', ['nickname' => $account['user']['nickname']])
|
|
|
|
|| DBA::exists('userd', ['username' => $account['user']['nickname']])) {
|
2022-10-17 18:55:22 +00:00
|
|
|
DI::sysmsg()->addNotice(DI::l10n()->t("User '%s' already exists on this server!", $account['user']['nickname']));
|
2018-01-13 14:01:32 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$oldbaseurl = $account['baseurl'];
|
2019-12-30 22:00:08 +00:00
|
|
|
$newbaseurl = DI::baseUrl();
|
2018-01-13 14:01:32 +00:00
|
|
|
|
2018-11-08 16:28:29 +00:00
|
|
|
$oldaddr = str_replace('http://', '@', Strings::normaliseLink($oldbaseurl));
|
|
|
|
$newaddr = str_replace('http://', '@', Strings::normaliseLink($newbaseurl));
|
2018-01-13 14:01:32 +00:00
|
|
|
|
|
|
|
if (!empty($account['profile']['addr'])) {
|
|
|
|
$old_handle = $account['profile']['addr'];
|
|
|
|
} else {
|
|
|
|
$old_handle = $account['user']['nickname'].$oldaddr;
|
|
|
|
}
|
|
|
|
|
2018-11-14 05:58:03 +00:00
|
|
|
// Creating a new guid to avoid problems with Diaspora
|
|
|
|
$account['user']['guid'] = System::createUUID();
|
|
|
|
|
2018-01-13 14:01:32 +00:00
|
|
|
$olduid = $account['user']['uid'];
|
|
|
|
|
|
|
|
unset($account['user']['uid']);
|
|
|
|
unset($account['user']['account_expired']);
|
|
|
|
unset($account['user']['account_expires_on']);
|
|
|
|
unset($account['user']['expire_notification_sent']);
|
|
|
|
|
2018-01-14 20:56:36 +00:00
|
|
|
$callback = function (&$value) use ($oldbaseurl, $oldaddr, $newbaseurl, $newaddr) {
|
2018-01-15 13:05:12 +00:00
|
|
|
$value = str_replace([$oldbaseurl, $oldaddr], [$newbaseurl, $newaddr], $value);
|
2018-01-13 18:08:18 +00:00
|
|
|
};
|
|
|
|
|
2018-01-14 20:56:36 +00:00
|
|
|
array_walk($account['user'], $callback);
|
2018-01-13 14:01:32 +00:00
|
|
|
|
|
|
|
// import user
|
2018-01-13 14:14:37 +00:00
|
|
|
$r = self::dbImportAssoc('user', $account['user']);
|
2018-01-13 14:01:32 +00:00
|
|
|
if ($r === false) {
|
2021-11-03 23:19:24 +00:00
|
|
|
Logger::warning("uimport:insert user : ERROR : " . DBA::errorMessage());
|
2022-10-17 18:55:22 +00:00
|
|
|
DI::sysmsg()->addNotice(DI::l10n()->t("User creation error"));
|
2018-01-13 14:01:32 +00:00
|
|
|
return;
|
|
|
|
}
|
2018-01-13 14:14:37 +00:00
|
|
|
$newuid = self::lastInsertId();
|
2018-01-13 14:01:32 +00:00
|
|
|
|
2020-01-18 15:54:50 +00:00
|
|
|
DI::pConfig()->set($newuid, 'system', 'previous_addr', $old_handle);
|
2018-01-13 14:01:32 +00:00
|
|
|
|
|
|
|
$errorcount = 0;
|
|
|
|
foreach ($account['contact'] as &$contact) {
|
|
|
|
if ($contact['uid'] == $olduid && $contact['self'] == '1') {
|
|
|
|
foreach ($contact as $k => &$v) {
|
2018-01-15 13:05:12 +00:00
|
|
|
$v = str_replace([$oldbaseurl, $oldaddr], [$newbaseurl, $newaddr], $v);
|
|
|
|
foreach (["profile", "avatar", "micro"] as $k) {
|
2018-01-13 14:01:32 +00:00
|
|
|
$v = str_replace($oldbaseurl . "/photo/" . $k . "/" . $olduid . ".jpg", $newbaseurl . "/photo/" . $k . "/" . $newuid . ".jpg", $v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($contact['uid'] == $olduid && $contact['self'] == '0') {
|
|
|
|
// set contacts 'avatar-date' to NULL_DATE to let worker to update urls
|
2018-10-21 05:53:47 +00:00
|
|
|
$contact["avatar-date"] = DBA::NULL_DATETIME;
|
2018-01-13 14:01:32 +00:00
|
|
|
|
|
|
|
switch ($contact['network']) {
|
2018-08-11 20:40:44 +00:00
|
|
|
case Protocol::DFRN:
|
|
|
|
case Protocol::DIASPORA:
|
2018-01-13 14:01:32 +00:00
|
|
|
// send relocate message (below)
|
|
|
|
break;
|
2018-08-11 20:40:44 +00:00
|
|
|
case Protocol::FEED:
|
|
|
|
case Protocol::MAIL:
|
2018-01-13 14:01:32 +00:00
|
|
|
// Nothing to do
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// archive other contacts
|
|
|
|
$contact['archive'] = "1";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$contact['uid'] = $newuid;
|
2018-01-13 14:14:37 +00:00
|
|
|
$r = self::dbImportAssoc('contact', $contact);
|
2018-01-13 14:01:32 +00:00
|
|
|
if ($r === false) {
|
2021-11-03 23:19:24 +00:00
|
|
|
Logger::warning("uimport:insert contact " . $contact['nick'] . "," . $contact['network'] . " : ERROR : " . DBA::errorMessage());
|
2018-01-13 14:01:32 +00:00
|
|
|
$errorcount++;
|
|
|
|
} else {
|
2018-01-13 14:14:37 +00:00
|
|
|
$contact['newid'] = self::lastInsertId();
|
2018-01-13 14:01:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($errorcount > 0) {
|
2022-10-17 18:55:22 +00:00
|
|
|
DI::sysmsg()->addNotice(DI::l10n()->tt("%d contact not imported", "%d contacts not imported", $errorcount));
|
2018-01-13 14:01:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($account['group'] as &$group) {
|
|
|
|
$group['uid'] = $newuid;
|
2018-01-13 14:14:37 +00:00
|
|
|
$r = self::dbImportAssoc('group', $group);
|
2018-01-13 14:01:32 +00:00
|
|
|
if ($r === false) {
|
2021-11-03 23:19:24 +00:00
|
|
|
Logger::warning("uimport:insert group " . $group['name'] . " : ERROR : " . DBA::errorMessage());
|
2018-01-13 14:01:32 +00:00
|
|
|
} else {
|
2018-01-13 14:14:37 +00:00
|
|
|
$group['newid'] = self::lastInsertId();
|
2018-01-13 14:01:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($account['group_member'] as &$group_member) {
|
|
|
|
$import = 0;
|
|
|
|
foreach ($account['group'] as $group) {
|
|
|
|
if ($group['id'] == $group_member['gid'] && isset($group['newid'])) {
|
|
|
|
$group_member['gid'] = $group['newid'];
|
|
|
|
$import++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
foreach ($account['contact'] as $contact) {
|
|
|
|
if ($contact['id'] == $group_member['contact-id'] && isset($contact['newid'])) {
|
|
|
|
$group_member['contact-id'] = $contact['newid'];
|
|
|
|
$import++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($import == 2) {
|
2018-01-13 14:14:37 +00:00
|
|
|
$r = self::dbImportAssoc('group_member', $group_member);
|
2018-01-13 14:01:32 +00:00
|
|
|
if ($r === false) {
|
2021-11-03 23:19:24 +00:00
|
|
|
Logger::warning("uimport:insert group member " . $group_member['id'] . " : ERROR : " . DBA::errorMessage());
|
2018-01-13 14:01:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-23 00:36:20 +00:00
|
|
|
foreach ($account['profile'] as &$profile) {
|
|
|
|
unset($profile['id']);
|
|
|
|
$profile['uid'] = $newuid;
|
|
|
|
|
|
|
|
foreach ($profile as $k => &$v) {
|
|
|
|
$v = str_replace([$oldbaseurl, $oldaddr], [$newbaseurl, $newaddr], $v);
|
|
|
|
foreach (["profile", "avatar"] as $k) {
|
|
|
|
$v = str_replace($oldbaseurl . "/photo/" . $k . "/" . $olduid . ".jpg", $newbaseurl . "/photo/" . $k . "/" . $newuid . ".jpg", $v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count($account['profile']) === 1 || $profile['is-default']) {
|
|
|
|
$r = self::dbImportAssoc('profile', $profile);
|
|
|
|
|
|
|
|
if ($r === false) {
|
2021-11-03 23:19:24 +00:00
|
|
|
Logger::warning("uimport:insert profile: ERROR : " . DBA::errorMessage());
|
2022-10-17 18:55:22 +00:00
|
|
|
DI::sysmsg()->addNotice(DI::l10n()->t("User profile creation error"));
|
2020-01-23 00:36:20 +00:00
|
|
|
DBA::delete('user', ['uid' => $newuid]);
|
|
|
|
DBA::delete('profile_field', ['uid' => $newuid]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$profile['id'] = DBA::lastInsertId();
|
|
|
|
}
|
|
|
|
|
2021-10-17 13:32:50 +00:00
|
|
|
Profile::migrate($profile);
|
2020-01-23 00:36:20 +00:00
|
|
|
}
|
|
|
|
|
2021-10-05 21:30:10 +00:00
|
|
|
$permissionSet = DI::permissionSet()->selectDefaultForUser($newuid);
|
2020-01-23 00:36:20 +00:00
|
|
|
|
|
|
|
foreach ($account['profile_fields'] ?? [] as $profile_field) {
|
|
|
|
$profile_field['uid'] = $newuid;
|
|
|
|
|
|
|
|
///@TODO Replace with permissionset import
|
2021-10-05 21:30:10 +00:00
|
|
|
$profile_field['psid'] = $profile_field['psid'] ? $permissionSet->uid : PermissionSet::PUBLIC;
|
2020-01-23 00:36:20 +00:00
|
|
|
|
|
|
|
if (self::dbImportAssoc('profile_field', $profile_field) === false) {
|
|
|
|
Logger::info("uimport:insert profile field " . $profile_field['id'] . " : ERROR : " . DBA::errorMessage());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-13 14:01:32 +00:00
|
|
|
foreach ($account['photo'] as &$photo) {
|
|
|
|
$photo['uid'] = $newuid;
|
|
|
|
$photo['data'] = hex2bin($photo['data']);
|
|
|
|
|
|
|
|
$Image = new Image($photo['data'], $photo['type']);
|
|
|
|
$r = Photo::store(
|
|
|
|
$Image,
|
|
|
|
$photo['uid'], $photo['contact-id'], //0
|
|
|
|
$photo['resource-id'], $photo['filename'], $photo['album'], $photo['scale'], $photo['profile'], //1
|
|
|
|
$photo['allow_cid'], $photo['allow_gid'], $photo['deny_cid'], $photo['deny_gid']
|
|
|
|
);
|
|
|
|
|
|
|
|
if ($r === false) {
|
2021-11-03 23:19:24 +00:00
|
|
|
Logger::warning("uimport:insert photo " . $photo['resource-id'] . "," . $photo['scale'] . " : ERROR : " . DBA::errorMessage());
|
2018-01-13 14:01:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($account['pconfig'] as &$pconfig) {
|
|
|
|
$pconfig['uid'] = $newuid;
|
2018-01-13 14:14:37 +00:00
|
|
|
$r = self::dbImportAssoc('pconfig', $pconfig);
|
2018-01-13 14:01:32 +00:00
|
|
|
if ($r === false) {
|
2021-11-03 23:19:24 +00:00
|
|
|
Logger::warning("uimport:insert pconfig " . $pconfig['id'] . " : ERROR : " . DBA::errorMessage());
|
2018-01-13 14:01:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// send relocate messages
|
2022-10-17 05:49:55 +00:00
|
|
|
Worker::add(Worker::PRIORITY_HIGH, 'Notifier', Delivery::RELOCATION, $newuid);
|
2018-01-13 14:01:32 +00:00
|
|
|
|
2022-10-17 18:55:22 +00:00
|
|
|
DI::sysmsg()->addInfo(DI::l10n()->t("Done. You can now login with your username and password"));
|
2019-12-15 23:28:31 +00:00
|
|
|
DI::baseUrl()->redirect('login');
|
2018-01-13 14:01:32 +00:00
|
|
|
}
|
|
|
|
}
|