X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FCore%2FUserImport.php;h=efd4bd2f8fea963872d79b467118be380903d7d1;hb=8789aedf6b9c68ba6d71d3dd2e285aed3e052ac4;hp=9965bdc5216bd88b93388390252ff55815b74ec5;hpb=f5d2b83938dcffbe027e7d2e0441dba715c38e95;p=friendica.git diff --git a/src/Core/UserImport.php b/src/Core/UserImport.php index 9965bdc521..efd4bd2f8f 100644 --- a/src/Core/UserImport.php +++ b/src/Core/UserImport.php @@ -5,29 +5,26 @@ namespace Friendica\Core; use Friendica\App; -use Friendica\Core\System; -use Friendica\Core\PConfig; -use Friendica\Core\Worker; -use Friendica\Database\DBM; +use Friendica\Database\DBA; use Friendica\Model\Photo; use Friendica\Object\Image; -use dba; require_once "include/dba.php"; -define("IMPORT_DEBUG", false); - /** * @brief UserImport class */ class UserImport { - function last_insert_id() { - if (IMPORT_DEBUG) { + const IMPORT_DEBUG = false; + + private static function lastInsertId() + { + if (self::IMPORT_DEBUG) { return 1; } - - return dba::lastInsertId(); + + return DBA::lastInsertId(); } /** @@ -36,12 +33,12 @@ class UserImport * @param string $table Table name * @param array &$arr Column=>Value array from json (by ref) */ - function check_cols($table, &$arr) + private static function checkCols($table, &$arr) { - $query = sprintf("SHOW COLUMNS IN `%s`", dbesc($table)); + $query = sprintf("SHOW COLUMNS IN `%s`", DBA::escape($table)); logger("uimport: $query", LOGGER_DEBUG); $r = q($query); - $tcols = array(); + $tcols = []; // get a plain array of column names foreach ($r as $tcol) { $tcols[] = $tcol['Field']; @@ -60,19 +57,19 @@ class UserImport * @param string $table Table name * @param array $arr Column=>Value array from json */ - function db_import_assoc($table, $arr) + private static function dbImportAssoc($table, $arr) { if (isset($arr['id'])) { unset($arr['id']); } - check_cols($table, $arr); - $cols = implode("`,`", array_map('dbesc', array_keys($arr))); - $vals = implode("','", array_map('dbesc', array_values($arr))); + self::checkCols($table, $arr); + $cols = implode("`,`", array_map(['Friendica\Database\DBA', 'escape'], array_keys($arr))); + $vals = implode("','", array_map(['Friendica\Database\DBA', 'escape'], array_values($arr))); $query = "INSERT INTO `$table` (`$cols`) VALUES ('$vals')"; logger("uimport: $query", LOGGER_TRACE); - if (IMPORT_DEBUG) { + if (self::IMPORT_DEBUG) { return true; } @@ -85,7 +82,8 @@ class UserImport * @param App $a Friendica App Class * @param array $file array from $_FILES */ - function import_account(App $a, $file) { + public static function importAccount(App $a, $file) + { logger("Start user import from " . $file['tmp_name']); /* STEPS @@ -98,37 +96,21 @@ class UserImport $account = json_decode(file_get_contents($file['tmp_name']), true); if ($account === null) { - notice(t("Error decoding account file")); + notice(L10n::t("Error decoding account file")); return; } if (!x($account, 'version')) { - notice(t("Error! No version data in file! This is not a Friendica account file?")); + notice(L10n::t("Error! No version data in file! This is not a Friendica account file?")); return; } // check for username - $r = q("SELECT uid FROM user WHERE nickname='%s'", $account['user']['nickname']); - if ($r === false) { - logger("uimport:check nickname : ERROR : " . dba::errorMessage(), LOGGER_NORMAL); - notice(t('Error! Cannot check nickname')); - return; - } - if (DBM::is_result($r) > 0) { - notice(sprintf(t("User '%s' already exists on this server!"), $account['user']['nickname'])); - return; - } - // check if username matches deleted account - $r = q("SELECT id FROM userd WHERE username='%s'", $account['user']['nickname']); - if ($r === false) { - logger("uimport:check nickname : ERROR : " . dba::errorMessage(), LOGGER_NORMAL); - notice(t('Error! Cannot check nickname')); - return; - } - if (DBM::is_result($r) > 0) { - notice(sprintf(t("User '%s' already exists on this server!"), $account['user']['nickname'])); + if (DBA::exists('user', ['nickname' => $account['user']['nickname']]) + || DBA::exists('userd', ['username' => $account['user']['nickname']])) { + notice(L10n::t("User '%s' already exists on this server!", $account['user']['nickname'])); return; } @@ -151,38 +133,36 @@ class UserImport unset($account['user']['account_expires_on']); unset($account['user']['expire_notification_sent']); - foreach ($account['user'] as $k => &$v) { - $v = str_replace(array($oldbaseurl, $oldaddr), array($newbaseurl, $newaddr), $v); - } + $callback = function (&$value) use ($oldbaseurl, $oldaddr, $newbaseurl, $newaddr) { + $value = str_replace([$oldbaseurl, $oldaddr], [$newbaseurl, $newaddr], $value); + }; + + array_walk($account['user'], $callback); // import user - $r = db_import_assoc('user', $account['user']); + $r = self::dbImportAssoc('user', $account['user']); if ($r === false) { - logger("uimport:insert user : ERROR : " . dba::errorMessage(), LOGGER_NORMAL); - notice(t("User creation error")); + logger("uimport:insert user : ERROR : " . DBA::errorMessage(), LOGGER_INFO); + notice(L10n::t("User creation error")); return; } - $newuid = last_insert_id(); + $newuid = self::lastInsertId(); PConfig::set($newuid, 'system', 'previous_addr', $old_handle); - // Generate a new guid for the account. Otherwise there will be problems with diaspora - q("UPDATE `user` SET `guid` = '%s' WHERE `uid` = %d", - dbesc(generate_user_guid()), intval($newuid)); - foreach ($account['profile'] as &$profile) { foreach ($profile as $k => &$v) { - $v = str_replace(array($oldbaseurl, $oldaddr), array($newbaseurl, $newaddr), $v); - foreach (array("profile", "avatar") as $k) { + $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); } } $profile['uid'] = $newuid; - $r = db_import_assoc('profile', $profile); + $r = self::dbImportAssoc('profile', $profile); if ($r === false) { - logger("uimport:insert profile " . $profile['profile-name'] . " : ERROR : " . dba::errorMessage(), LOGGER_NORMAL); - info(t("User profile creation error")); - dba::delete('user', array('uid' => $newuid)); + logger("uimport:insert profile " . $profile['profile-name'] . " : ERROR : " . DBA::errorMessage(), LOGGER_INFO); + info(L10n::t("User profile creation error")); + DBA::delete('user', ['uid' => $newuid]); return; } } @@ -191,8 +171,8 @@ class UserImport foreach ($account['contact'] as &$contact) { if ($contact['uid'] == $olduid && $contact['self'] == '1') { foreach ($contact as $k => &$v) { - $v = str_replace(array($oldbaseurl, $oldaddr), array($newbaseurl, $newaddr), $v); - foreach (array("profile", "avatar", "micro") as $k) { + $v = str_replace([$oldbaseurl, $oldaddr], [$newbaseurl, $newaddr], $v); + foreach (["profile", "avatar", "micro"] as $k) { $v = str_replace($oldbaseurl . "/photo/" . $k . "/" . $olduid . ".jpg", $newbaseurl . "/photo/" . $k . "/" . $newuid . ".jpg", $v); } } @@ -216,25 +196,25 @@ class UserImport } } $contact['uid'] = $newuid; - $r = db_import_assoc('contact', $contact); + $r = self::dbImportAssoc('contact', $contact); if ($r === false) { - logger("uimport:insert contact " . $contact['nick'] . "," . $contact['network'] . " : ERROR : " . dba::errorMessage(), LOGGER_NORMAL); + logger("uimport:insert contact " . $contact['nick'] . "," . $contact['network'] . " : ERROR : " . DBA::errorMessage(), LOGGER_INFO); $errorcount++; } else { - $contact['newid'] = last_insert_id(); + $contact['newid'] = self::lastInsertId(); } } if ($errorcount > 0) { - notice(sprintf(tt("%d contact not imported", "%d contacts not imported", $errorcount), $errorcount)); + notice(L10n::tt("%d contact not imported", "%d contacts not imported", $errorcount)); } foreach ($account['group'] as &$group) { $group['uid'] = $newuid; - $r = db_import_assoc('group', $group); + $r = self::dbImportAssoc('group', $group); if ($r === false) { - logger("uimport:insert group " . $group['name'] . " : ERROR : " . dba::errorMessage(), LOGGER_NORMAL); + logger("uimport:insert group " . $group['name'] . " : ERROR : " . DBA::errorMessage(), LOGGER_INFO); } else { - $group['newid'] = last_insert_id(); + $group['newid'] = self::lastInsertId(); } } @@ -255,9 +235,9 @@ class UserImport } } if ($import == 2) { - $r = db_import_assoc('group_member', $group_member); + $r = self::dbImportAssoc('group_member', $group_member); if ($r === false) { - logger("uimport:insert group member " . $group_member['id'] . " : ERROR : " . dba::errorMessage(), LOGGER_NORMAL); + logger("uimport:insert group member " . $group_member['id'] . " : ERROR : " . DBA::errorMessage(), LOGGER_INFO); } } } @@ -275,22 +255,22 @@ class UserImport ); if ($r === false) { - logger("uimport:insert photo " . $photo['resource-id'] . "," . $photo['scale'] . " : ERROR : " . dba::errorMessage(), LOGGER_NORMAL); + logger("uimport:insert photo " . $photo['resource-id'] . "," . $photo['scale'] . " : ERROR : " . DBA::errorMessage(), LOGGER_INFO); } } foreach ($account['pconfig'] as &$pconfig) { $pconfig['uid'] = $newuid; - $r = db_import_assoc('pconfig', $pconfig); + $r = self::dbImportAssoc('pconfig', $pconfig); if ($r === false) { - logger("uimport:insert pconfig " . $pconfig['id'] . " : ERROR : " . dba::errorMessage(), LOGGER_NORMAL); + logger("uimport:insert pconfig " . $pconfig['id'] . " : ERROR : " . DBA::errorMessage(), LOGGER_INFO); } } // send relocate messages Worker::add(PRIORITY_HIGH, 'Notifier', 'relocate', $newuid); - info(t("Done. You can now login with your username and password")); + info(L10n::t("Done. You can now login with your username and password")); goaway(System::baseUrl() . "/login"); } }