X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=update.php;h=ce22a28d14e075a0aa3533e197b674f065361f1c;hb=c666cebe60438baabd56336a5f13233e67067910;hp=14219bcdcb3b7280d8c18159a25ab0e4da3785b2;hpb=4246ffc892d13fc7dd0057d8358fcacc44da5048;p=friendica.git diff --git a/update.php b/update.php index 14219bcdcb..ce22a28d14 100644 --- a/update.php +++ b/update.php @@ -62,6 +62,7 @@ use Friendica\Model\User; use Friendica\Protocol\Activity; use Friendica\Protocol\Delivery; use Friendica\Security\PermissionSet\Repository\PermissionSet; +use Friendica\Util\DateTimeFormat; // Post-update script of PR 5751 function update_1298() @@ -1333,3 +1334,80 @@ function update_1520(): int return Update::SUCCESS; } + +/** + * user-contact.remote_self was wrongly declared as boolean, possibly truncating integer values from contact.remote_self + * + * @return int + * @throws Exception + */ +function update_1524(): int +{ + $contacts = DBA::select('contact', ['uid', 'uri-id', 'remote_self'], ["`uid` != ?", 0]); + while ($contact = DBA::fetch($contacts)) { + Contact\User::insertForContactArray($contact); + } + + return Update::SUCCESS; +} + +function update_1525(): int +{ + // Use expected value for user.username + if (!DBA::e('UPDATE `user` u + JOIN `profile` p + ON p.`uid` = u.`uid` + SET u.`username` = p.`name` + WHERE p.`name` != ""')) { + return Update::FAILED; + } + + // Blank out deprecated field profile.name to avoid future confusion + if (!DBA::e('UPDATE `profile` p + SET p.`name` = ""')) { + return Update::FAILED; + } + + // Update users' self-contact name if needed + if (!DBA::e('UPDATE `contact` c + JOIN `user` u + ON u.`uid` = c.`uid` AND c.`self` = 1 + SET c.`name` = u.`username`')) { + return Update::FAILED; + } + + return Update::SUCCESS; +} + +function update_1531() +{ + $threads = Post::selectThread(Item::DELIVER_FIELDLIST, ["`uid` = ? AND `created` > ?", 0, DateTimeFormat::utc('now - ' . DI::config()->get('channel', 'engagement_hours') . ' hour')]); + while ($post = Post::fetch($threads)) { + $post['gravity'] = Item::GRAVITY_COMMENT; + Post\Engagement::storeFromItem($post); + } + DBA::close($threads); + + return Update::SUCCESS; +} + +function update_1535() +{ + if (DI::config()->get('system', 'compute_group_counts')) { + DI::config()->set('system', 'compute_circle_counts', true); + } + DI::config()->delete('system', 'compute_group_counts'); + + return Update::SUCCESS; +} + +function update_1539() +{ + $users = DBA::select('user', ['uid'], ['account-type' => User::ACCOUNT_TYPE_COMMUNITY]); + while ($user = DBA::fetch($users)) { + User::setCommunityUserSettings($user['uid']); + } + DBA::close($users); + + return Update::SUCCESS; +} \ No newline at end of file