2018-01-13 15:01:32 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Core/UserImport.php
|
|
|
|
*/
|
|
|
|
namespace Friendica\Core;
|
|
|
|
|
|
|
|
use Friendica\App;
|
2018-10-29 22:20:46 +01:00
|
|
|
use Friendica\Core\Logger;
|
2018-08-11 22:40:44 +02:00
|
|
|
use Friendica\Core\Protocol;
|
2018-07-20 14:19:26 +02:00
|
|
|
use Friendica\Database\DBA;
|
2018-01-13 15:01:32 +01:00
|
|
|
use Friendica\Model\Photo;
|
|
|
|
use Friendica\Object\Image;
|
2018-11-08 17:28:29 +01:00
|
|
|
use Friendica\Util\Strings;
|
2018-01-13 15:01:32 +01:00
|
|
|
|
|
|
|
require_once "include/dba.php";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief UserImport class
|
|
|
|
*/
|
|
|
|
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
|
|
|
|
* @param array &$arr Column=>Value array from json (by ref)
|
|
|
|
*/
|
2018-01-13 15:14:37 +01:00
|
|
|
private static function checkCols($table, &$arr)
|
2018-01-13 15:01:32 +01:00
|
|
|
{
|
2018-07-21 15:10:13 +02:00
|
|
|
$query = sprintf("SHOW COLUMNS IN `%s`", DBA::escape($table));
|
2018-10-30 14:58:45 +01:00
|
|
|
Logger::log("uimport: $query", Logger::DEBUG);
|
2018-01-13 15:01:32 +01:00
|
|
|
$r = q($query);
|
2018-01-15 14:05:12 +01:00
|
|
|
$tcols = [];
|
2018-01-13 15:01:32 +01:00
|
|
|
// get a plain array of column names
|
|
|
|
foreach ($r as $tcol) {
|
|
|
|
$tcols[] = $tcol['Field'];
|
|
|
|
}
|
|
|
|
// remove inexistent columns
|
|
|
|
foreach ($arr as $icol => $ival) {
|
|
|
|
if (!in_array($icol, $tcols)) {
|
|
|
|
unset($arr[$icol]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Import data into table $table
|
|
|
|
*
|
|
|
|
* @param string $table Table name
|
|
|
|
* @param array $arr Column=>Value array from json
|
|
|
|
*/
|
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-07-21 15:10:13 +02:00
|
|
|
$cols = implode("`,`", array_map(['Friendica\Database\DBA', 'escape'], array_keys($arr)));
|
|
|
|
$vals = implode("','", array_map(['Friendica\Database\DBA', 'escape'], array_values($arr)));
|
2018-01-13 15:01:32 +01:00
|
|
|
$query = "INSERT INTO `$table` (`$cols`) VALUES ('$vals')";
|
2018-10-30 14:58:45 +01:00
|
|
|
Logger::log("uimport: $query", Logger::TRACE);
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
return q($query);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Import account file exported from mod/uexport
|
|
|
|
*
|
|
|
|
* @param App $a Friendica App Class
|
|
|
|
* @param array $file array from $_FILES
|
|
|
|
*/
|
2018-01-13 15:14:37 +01:00
|
|
|
public static function importAccount(App $a, $file)
|
|
|
|
{
|
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) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t("Error decoding account file"));
|
2018-01-13 15:01:32 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!x($account, 'version')) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(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']])) {
|
2018-01-24 03:59:16 +01:00
|
|
|
notice(L10n::t("User '%s' already exists on this server!", $account['user']['nickname']));
|
2018-01-13 15:01:32 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$oldbaseurl = $account['baseurl'];
|
|
|
|
$newbaseurl = System::baseUrl();
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
$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);
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(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
|
|
|
|
|
|
|
PConfig::set($newuid, 'system', 'previous_addr', $old_handle);
|
|
|
|
|
|
|
|
foreach ($account['profile'] as &$profile) {
|
|
|
|
foreach ($profile as $k => &$v) {
|
2018-01-15 14:05:12 +01:00
|
|
|
$v = str_replace([$oldbaseurl, $oldaddr], [$newbaseurl, $newaddr], $v);
|
|
|
|
foreach (["profile", "avatar"] as $k) {
|
2018-01-13 15:01:32 +01:00
|
|
|
$v = str_replace($oldbaseurl . "/photo/" . $k . "/" . $olduid . ".jpg", $newbaseurl . "/photo/" . $k . "/" . $newuid . ".jpg", $v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$profile['uid'] = $newuid;
|
2018-01-13 15:14:37 +01:00
|
|
|
$r = self::dbImportAssoc('profile', $profile);
|
2018-01-13 15:01:32 +01:00
|
|
|
if ($r === false) {
|
2018-10-30 14:58:45 +01:00
|
|
|
Logger::log("uimport:insert profile " . $profile['profile-name'] . " : ERROR : " . DBA::errorMessage(), Logger::INFO);
|
2018-01-22 22:59:31 +01:00
|
|
|
info(L10n::t("User profile creation error"));
|
2018-07-20 14:19:26 +02:00
|
|
|
DBA::delete('user', ['uid' => $newuid]);
|
2018-01-13 15:01:32 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$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) {
|
2018-01-24 03:59:16 +01:00
|
|
|
notice(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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
Worker::add(PRIORITY_HIGH, 'Notifier', 'relocate', $newuid);
|
|
|
|
|
2018-01-22 22:59:31 +01:00
|
|
|
info(L10n::t("Done. You can now login with your username and password"));
|
2018-10-19 20:11:27 +02:00
|
|
|
$a->internalRedirect('login');
|
2018-01-13 15:01:32 +01:00
|
|
|
}
|
|
|
|
}
|