]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/UserImport.php
Merge pull request #10446 from MrPetovan/bug/10439-addon-settings-forms
[friendica.git] / src / Core / UserImport.php
index c77674127af5b55e5f161f77f512b5a64b81be1d..f0d8f762e214cbaac022b311bb4c752451d27d7e 100644 (file)
@@ -1,15 +1,34 @@
 <?php
 /**
- * @file src/Core/UserImport.php
+ * @copyright Copyright (C) 2010-2021, the Friendica project
+ *
+ * @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/>.
+ *
  */
+
 namespace Friendica\Core;
 
 use Friendica\App;
 use Friendica\Database\DBA;
 use Friendica\Database\DBStructure;
 use Friendica\DI;
+use Friendica\Model\Contact;
 use Friendica\Model\Photo;
 use Friendica\Object\Image;
+use Friendica\Repository\PermissionSet;
 use Friendica\Util\Strings;
 use Friendica\Worker\Delivery;
 
@@ -161,23 +180,6 @@ class UserImport
 
                DI::pConfig()->set($newuid, 'system', 'previous_addr', $old_handle);
 
-               foreach ($account['profile'] as &$profile) {
-                       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);
-                               }
-                       }
-                       $profile['uid'] = $newuid;
-                       $r = self::dbImportAssoc('profile', $profile);
-                       if ($r === false) {
-                               Logger::log("uimport:insert profile " . $profile['profile-name'] . " : ERROR : " . DBA::errorMessage(), Logger::INFO);
-                               info(DI::l10n()->t("User profile creation error"));
-                               DBA::delete('user', ['uid' => $newuid]);
-                               return;
-                       }
-               }
-
                $errorcount = 0;
                foreach ($account['contact'] as &$contact) {
                        if ($contact['uid'] == $olduid && $contact['self'] == '1') {
@@ -253,6 +255,50 @@ class UserImport
                        }
                }
 
+               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);
+                                       notice(DI::l10n()->t("User profile creation error"));
+                                       DBA::delete('user', ['uid' => $newuid]);
+                                       DBA::delete('profile_field', ['uid' => $newuid]);
+                                       return;
+                               }
+
+                               $profile['id'] = DBA::lastInsertId();
+                       }
+
+                       DI::profileField()->migrateFromLegacyProfile($profile);
+               }
+
+               ///@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());
+                       }
+               }
+
                foreach ($account['photo'] as &$photo) {
                        $photo['uid'] = $newuid;
                        $photo['data'] = hex2bin($photo['data']);