mirror of
https://github.com/friendica/friendica
synced 2025-04-27 15:10:11 +00:00
Move ProfileFieldRepository::migrateFromLegacyProfile() & delete old repository
This commit is contained in:
parent
f403851946
commit
838cdac5d1
9 changed files with 93 additions and 166 deletions
|
@ -38,6 +38,7 @@ use Friendica\DI;
|
|||
use Friendica\Network\HTTPException;
|
||||
use Friendica\Protocol\Activity;
|
||||
use Friendica\Protocol\Diaspora;
|
||||
use Friendica\Security\PermissionSet\Entity\PermissionSet;
|
||||
use Friendica\Util\DateTimeFormat;
|
||||
use Friendica\Util\HTTPSignature;
|
||||
use Friendica\Util\Network;
|
||||
|
@ -936,4 +937,86 @@ class Profile
|
|||
|
||||
return ['total' => $total, 'entries' => $profiles];
|
||||
}
|
||||
|
||||
/**
|
||||
* Migrates a legacy profile to the new slimmer profile with extra custom fields.
|
||||
* Multi profiles are converted to ACl-protected custom fields and deleted.
|
||||
*
|
||||
* @param array $profile One profile array
|
||||
* @throws \Exception
|
||||
*/
|
||||
public static function migrateFromLegacyProfile(array $profile)
|
||||
{
|
||||
// Already processed, aborting
|
||||
if ($profile['is-default'] === null) {
|
||||
return;
|
||||
}
|
||||
|
||||
$contacts = [];
|
||||
|
||||
if (!$profile['is-default']) {
|
||||
$contacts = Contact::selectToArray(['id'], [
|
||||
'uid' => $profile['uid'],
|
||||
'profile-id' => $profile['id']
|
||||
]);
|
||||
if (!count($contacts)) {
|
||||
// No contact visibility selected defaults to user-only permission
|
||||
$contacts = Contact::selectToArray(['id'], ['uid' => $profile['uid'], 'self' => true]);
|
||||
}
|
||||
}
|
||||
|
||||
$permissionSet = DI::permissionSet()->selectOrCreate(
|
||||
new PermissionSet(
|
||||
$profile['uid'],
|
||||
array_column($contacts, 'id') ?? []
|
||||
)
|
||||
);
|
||||
|
||||
$order = 1;
|
||||
|
||||
$custom_fields = [
|
||||
'hometown' => DI::l10n()->t('Hometown:'),
|
||||
'marital' => DI::l10n()->t('Marital Status:'),
|
||||
'with' => DI::l10n()->t('With:'),
|
||||
'howlong' => DI::l10n()->t('Since:'),
|
||||
'sexual' => DI::l10n()->t('Sexual Preference:'),
|
||||
'politic' => DI::l10n()->t('Political Views:'),
|
||||
'religion' => DI::l10n()->t('Religious Views:'),
|
||||
'likes' => DI::l10n()->t('Likes:'),
|
||||
'dislikes' => DI::l10n()->t('Dislikes:'),
|
||||
'pdesc' => DI::l10n()->t('Title/Description:'),
|
||||
'summary' => DI::l10n()->t('Summary'),
|
||||
'music' => DI::l10n()->t('Musical interests'),
|
||||
'book' => DI::l10n()->t('Books, literature'),
|
||||
'tv' => DI::l10n()->t('Television'),
|
||||
'film' => DI::l10n()->t('Film/dance/culture/entertainment'),
|
||||
'interest' => DI::l10n()->t('Hobbies/Interests'),
|
||||
'romance' => DI::l10n()->t('Love/romance'),
|
||||
'work' => DI::l10n()->t('Work/employment'),
|
||||
'education' => DI::l10n()->t('School/education'),
|
||||
'contact' => DI::l10n()->t('Contact information and Social Networks'),
|
||||
];
|
||||
|
||||
foreach ($custom_fields as $field => $label) {
|
||||
if (!empty($profile[$field]) && $profile[$field] > DBA::NULL_DATE && $profile[$field] > DBA::NULL_DATETIME) {
|
||||
DI::profileField()->save(DI::profileFieldFactory()->createFromString(
|
||||
$profile['uid'],
|
||||
$order,
|
||||
trim($label, ':'),
|
||||
$profile[$field],
|
||||
$permissionSet
|
||||
));
|
||||
}
|
||||
|
||||
$profile[$field] = null;
|
||||
}
|
||||
|
||||
if ($profile['is-default']) {
|
||||
$profile['profile-name'] = null;
|
||||
$profile['is-default'] = null;
|
||||
DBA::update('profile', $profile, ['id' => $profile['id']]);
|
||||
} else if (!empty($profile['id'])) {
|
||||
DBA::delete('profile', ['id' => $profile['id']]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue