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