From f5d2b83938dcffbe027e7d2e0441dba715c38e95 Mon Sep 17 00:00:00 2001 From: Adam Magness Date: Sat, 13 Jan 2018 09:01:32 -0500 Subject: [PATCH 1/6] Create UserImport Create new class and copy over functions Add missed function --- src/Core/UserImport.php | 296 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 296 insertions(+) create mode 100644 src/Core/UserImport.php diff --git a/src/Core/UserImport.php b/src/Core/UserImport.php new file mode 100644 index 0000000000..9965bdc521 --- /dev/null +++ b/src/Core/UserImport.php @@ -0,0 +1,296 @@ +Value array from json (by ref) + */ + function check_cols($table, &$arr) + { + $query = sprintf("SHOW COLUMNS IN `%s`", dbesc($table)); + logger("uimport: $query", LOGGER_DEBUG); + $r = q($query); + $tcols = array(); + // 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 + */ + function db_import_assoc($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))); + $query = "INSERT INTO `$table` (`$cols`) VALUES ('$vals')"; + logger("uimport: $query", LOGGER_TRACE); + + if (IMPORT_DEBUG) { + 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 + */ + function import_account(App $a, $file) { + logger("Start user import from " . $file['tmp_name']); + /* + 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) { + notice(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?")); + 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'])); + return; + } + + $oldbaseurl = $account['baseurl']; + $newbaseurl = System::baseUrl(); + + $oldaddr = str_replace('http://', '@', normalise_link($oldbaseurl)); + $newaddr = str_replace('http://', '@', normalise_link($newbaseurl)); + + 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']); + + foreach ($account['user'] as $k => &$v) { + $v = str_replace(array($oldbaseurl, $oldaddr), array($newbaseurl, $newaddr), $v); + } + + // import user + $r = db_import_assoc('user', $account['user']); + if ($r === false) { + logger("uimport:insert user : ERROR : " . dba::errorMessage(), LOGGER_NORMAL); + notice(t("User creation error")); + return; + } + $newuid = last_insert_id(); + + 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 . "/photo/" . $k . "/" . $olduid . ".jpg", $newbaseurl . "/photo/" . $k . "/" . $newuid . ".jpg", $v); + } + } + $profile['uid'] = $newuid; + $r = db_import_assoc('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)); + return; + } + } + + $errorcount = 0; + 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 . "/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 + $contact["avatar-date"] = NULL_DATE; + + switch ($contact['network']) { + case NETWORK_DFRN: + case NETWORK_DIASPORA: + // send relocate message (below) + break; + case NETWORK_FEED: + case NETWORK_MAIL: + // Nothing to do + break; + default: + // archive other contacts + $contact['archive'] = "1"; + } + } + $contact['uid'] = $newuid; + $r = db_import_assoc('contact', $contact); + if ($r === false) { + logger("uimport:insert contact " . $contact['nick'] . "," . $contact['network'] . " : ERROR : " . dba::errorMessage(), LOGGER_NORMAL); + $errorcount++; + } else { + $contact['newid'] = last_insert_id(); + } + } + if ($errorcount > 0) { + notice(sprintf(tt("%d contact not imported", "%d contacts not imported", $errorcount), $errorcount)); + } + + foreach ($account['group'] as &$group) { + $group['uid'] = $newuid; + $r = db_import_assoc('group', $group); + if ($r === false) { + logger("uimport:insert group " . $group['name'] . " : ERROR : " . dba::errorMessage(), LOGGER_NORMAL); + } else { + $group['newid'] = last_insert_id(); + } + } + + 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) { + $r = db_import_assoc('group_member', $group_member); + if ($r === false) { + logger("uimport:insert group member " . $group_member['id'] . " : ERROR : " . dba::errorMessage(), LOGGER_NORMAL); + } + } + } + + 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) { + logger("uimport:insert photo " . $photo['resource-id'] . "," . $photo['scale'] . " : ERROR : " . dba::errorMessage(), LOGGER_NORMAL); + } + } + + foreach ($account['pconfig'] as &$pconfig) { + $pconfig['uid'] = $newuid; + $r = db_import_assoc('pconfig', $pconfig); + if ($r === false) { + logger("uimport:insert pconfig " . $pconfig['id'] . " : ERROR : " . dba::errorMessage(), LOGGER_NORMAL); + } + } + + // send relocate messages + Worker::add(PRIORITY_HIGH, 'Notifier', 'relocate', $newuid); + + info(t("Done. You can now login with your username and password")); + goaway(System::baseUrl() . "/login"); + } +} From c1baa5ed7d4d6ff8796d917a8e521076f646aaeb Mon Sep 17 00:00:00 2001 From: Adam Magness Date: Sat, 13 Jan 2018 09:14:37 -0500 Subject: [PATCH 2/6] Update functions Update function names and calls. update database functions to dba class calls. --- mod/uimport.php | 9 ++++----- src/Core/UserImport.php | 39 +++++++++++++++++++++------------------ 2 files changed, 25 insertions(+), 23 deletions(-) diff --git a/mod/uimport.php b/mod/uimport.php index cbfe9a7291..114e4d0ab6 100644 --- a/mod/uimport.php +++ b/mod/uimport.php @@ -1,13 +1,12 @@ config['register_policy']) { @@ -34,7 +33,7 @@ function uimport_post(App $a) { if (x($_FILES, 'accountfile')) { /// @TODO Pass $blocked / $verified, send email to admin on REGISTER_APPROVE - import_account($a, $_FILES['accountfile']); + UserImport::importAccount($a, $_FILES['accountfile']); return; } } diff --git a/src/Core/UserImport.php b/src/Core/UserImport.php index 9965bdc521..3557b12cb8 100644 --- a/src/Core/UserImport.php +++ b/src/Core/UserImport.php @@ -22,7 +22,8 @@ define("IMPORT_DEBUG", false); */ class UserImport { - function last_insert_id() { + private static function lastInsertId() + { if (IMPORT_DEBUG) { return 1; } @@ -36,7 +37,7 @@ 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)); logger("uimport: $query", LOGGER_DEBUG); @@ -60,13 +61,13 @@ 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); + self::check_cols($table, $arr); $cols = implode("`,`", array_map('dbesc', array_keys($arr))); $vals = implode("','", array_map('dbesc', array_values($arr))); $query = "INSERT INTO `$table` (`$cols`) VALUES ('$vals')"; @@ -85,7 +86,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 @@ -109,24 +111,26 @@ class UserImport } // check for username - $r = q("SELECT uid FROM user WHERE nickname='%s'", $account['user']['nickname']); + $r = dba::selectFirst('user', ['uid'], ['nickname' => $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']); + $r = dba::selectFirst('userd', ['id'], ['username' => $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; @@ -156,19 +160,18 @@ class UserImport } // 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")); 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)); + dba::update('user', ['guid' => generate_user_guid()], ['uid' => $newuid]); foreach ($account['profile'] as &$profile) { foreach ($profile as $k => &$v) { @@ -178,7 +181,7 @@ class UserImport } } $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")); @@ -216,12 +219,12 @@ 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); $errorcount++; } else { - $contact['newid'] = last_insert_id(); + $contact['newid'] = self::lastInsertId(); } } if ($errorcount > 0) { @@ -230,11 +233,11 @@ class UserImport 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); } else { - $group['newid'] = last_insert_id(); + $group['newid'] = self::lastInsertId(); } } @@ -255,7 +258,7 @@ 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); } @@ -281,7 +284,7 @@ class UserImport 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); } From 88aeddab8207879b21a8f504a23e4d0c0b48cfd4 Mon Sep 17 00:00:00 2001 From: Adam Magness Date: Sat, 13 Jan 2018 09:15:45 -0500 Subject: [PATCH 3/6] Remove old file Remove include/uimport.php --- include/uimport.php | 288 -------------------------------------------- 1 file changed, 288 deletions(-) delete mode 100644 include/uimport.php diff --git a/include/uimport.php b/include/uimport.php deleted file mode 100644 index d9b040597f..0000000000 --- a/include/uimport.php +++ /dev/null @@ -1,288 +0,0 @@ -Value array from json (by ref) - */ -function check_cols($table, &$arr) { - $query = sprintf("SHOW COLUMNS IN `%s`", dbesc($table)); - logger("uimport: $query", LOGGER_DEBUG); - $r = q($query); - $tcols = array(); - // 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 - */ -function db_import_assoc($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))); - $query = "INSERT INTO `$table` (`$cols`) VALUES ('$vals')"; - logger("uimport: $query", LOGGER_TRACE); - if (IMPORT_DEBUG) { - 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 - */ -function import_account(App $a, $file) { - logger("Start user import from " . $file['tmp_name']); - /* - 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) { - notice(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?")); - return; - } - - /* - * @TODO Old-lost code? - // this is not required as we remove columns in json not in current db schema - if ($account['schema'] != DB_UPDATE_VERSION) { - notice(t("Error! I can't import this file: DB schema version is not compatible.")); - 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'])); - return; - } - - $oldbaseurl = $account['baseurl']; - $newbaseurl = System::baseUrl(); - - $oldaddr = str_replace('http://', '@', normalise_link($oldbaseurl)); - $newaddr = str_replace('http://', '@', normalise_link($newbaseurl)); - - 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']); - - foreach ($account['user'] as $k => &$v) { - $v = str_replace(array($oldbaseurl, $oldaddr), array($newbaseurl, $newaddr), $v); - } - - // import user - $r = db_import_assoc('user', $account['user']); - if ($r === false) { - logger("uimport:insert user : ERROR : " . dba::errorMessage(), LOGGER_NORMAL); - notice(t("User creation error")); - return; - } - $newuid = last_insert_id(); - //~ $newuid = 1; - - 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 . "/photo/" . $k . "/" . $olduid . ".jpg", $newbaseurl . "/photo/" . $k . "/" . $newuid . ".jpg", $v); - } - } - $profile['uid'] = $newuid; - $r = db_import_assoc('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)); - return; - } - } - - $errorcount = 0; - 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 . "/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 - $contact["avatar-date"] = NULL_DATE; - - switch ($contact['network']) { - case NETWORK_DFRN: - case NETWORK_DIASPORA: - // send relocate message (below) - break; - case NETWORK_FEED: - case NETWORK_MAIL: - // Nothing to do - break; - default: - // archive other contacts - $contact['archive'] = "1"; - } - } - $contact['uid'] = $newuid; - $r = db_import_assoc('contact', $contact); - if ($r === false) { - logger("uimport:insert contact " . $contact['nick'] . "," . $contact['network'] . " : ERROR : " . dba::errorMessage(), LOGGER_NORMAL); - $errorcount++; - } else { - $contact['newid'] = last_insert_id(); - } - } - if ($errorcount > 0) { - notice(sprintf(tt("%d contact not imported", "%d contacts not imported", $errorcount), $errorcount)); - } - - foreach ($account['group'] as &$group) { - $group['uid'] = $newuid; - $r = db_import_assoc('group', $group); - if ($r === false) { - logger("uimport:insert group " . $group['name'] . " : ERROR : " . dba::errorMessage(), LOGGER_NORMAL); - } else { - $group['newid'] = last_insert_id(); - } - } - - 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) { - $r = db_import_assoc('group_member', $group_member); - if ($r === false) { - logger("uimport:insert group member " . $group_member['id'] . " : ERROR : " . dba::errorMessage(), LOGGER_NORMAL); - } - } - } - - 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) { - logger("uimport:insert photo " . $photo['resource-id'] . "," . $photo['scale'] . " : ERROR : " . dba::errorMessage(), LOGGER_NORMAL); - } - } - - foreach ($account['pconfig'] as &$pconfig) { - $pconfig['uid'] = $newuid; - $r = db_import_assoc('pconfig', $pconfig); - if ($r === false) { - logger("uimport:insert pconfig " . $pconfig['id'] . " : ERROR : " . dba::errorMessage(), LOGGER_NORMAL); - } - } - - // send relocate messages - Worker::add(PRIORITY_HIGH, 'Notifier', 'relocate', $newuid); - - info(t("Done. You can now login with your username and password")); - goaway(System::baseUrl() . "/login"); -} From 9e81d3dc40eca707c13af74a33e11ae5371cdef3 Mon Sep 17 00:00:00 2001 From: Adam Magness Date: Sat, 13 Jan 2018 13:08:18 -0500 Subject: [PATCH 4/6] Attempt anonymous Try anonymous function based on review suggestion. --- src/Core/UserImport.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/Core/UserImport.php b/src/Core/UserImport.php index 3557b12cb8..8b259b2dbe 100644 --- a/src/Core/UserImport.php +++ b/src/Core/UserImport.php @@ -155,9 +155,11 @@ 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 ($key, $value) use ($oldbaseurl, $oldaddr, $newbaseurl, $newaddr) { + return str_replace(array($oldbaseurl, $oldaddr), array($newbaseurl, $newaddr), $value); + }; + + $v = array_map($account['user'], $callback); // import user $r = self::dbImportAssoc('user', $account['user']); From e70e48abaabe8857d273450805e09d7385a1545e Mon Sep 17 00:00:00 2001 From: Adam Magness Date: Sat, 13 Jan 2018 13:10:14 -0500 Subject: [PATCH 5/6] constant move define to const --- src/Core/UserImport.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Core/UserImport.php b/src/Core/UserImport.php index 8b259b2dbe..2c41fb27b0 100644 --- a/src/Core/UserImport.php +++ b/src/Core/UserImport.php @@ -15,13 +15,13 @@ use dba; require_once "include/dba.php"; -define("IMPORT_DEBUG", false); - /** * @brief UserImport class */ class UserImport { + const IMPORT_DEBUG = false; + private static function lastInsertId() { if (IMPORT_DEBUG) { From 8be6989bd198d848ab5be743d475730012bb7894 Mon Sep 17 00:00:00 2001 From: Adam Magness Date: Sun, 14 Jan 2018 15:56:36 -0500 Subject: [PATCH 6/6] Review updates self:: const and fix up callback function and array_walk --- src/Core/UserImport.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Core/UserImport.php b/src/Core/UserImport.php index 2c41fb27b0..5ad4f57779 100644 --- a/src/Core/UserImport.php +++ b/src/Core/UserImport.php @@ -24,7 +24,7 @@ class UserImport private static function lastInsertId() { - if (IMPORT_DEBUG) { + if (self::IMPORT_DEBUG) { return 1; } @@ -73,7 +73,7 @@ class UserImport $query = "INSERT INTO `$table` (`$cols`) VALUES ('$vals')"; logger("uimport: $query", LOGGER_TRACE); - if (IMPORT_DEBUG) { + if (self::IMPORT_DEBUG) { return true; } @@ -155,11 +155,11 @@ class UserImport unset($account['user']['account_expires_on']); unset($account['user']['expire_notification_sent']); - $callback = function ($key, $value) use ($oldbaseurl, $oldaddr, $newbaseurl, $newaddr) { - return str_replace(array($oldbaseurl, $oldaddr), array($newbaseurl, $newaddr), $value); + $callback = function (&$value) use ($oldbaseurl, $oldaddr, $newbaseurl, $newaddr) { + $value = str_replace(array($oldbaseurl, $oldaddr), array($newbaseurl, $newaddr), $value); }; - $v = array_map($account['user'], $callback); + array_walk($account['user'], $callback); // import user $r = self::dbImportAssoc('user', $account['user']);