3 * @copyright Copyright (C) 2010-2022, the Friendica project
5 * @license GNU AGPL version 3 or any later version
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 * Automatic post-database structure change updates
22 * These functions are responsible for doing critical post update changes to the data (not the structure) in the database.
24 * Database structure changes are done in static/dbstructure.config.php
26 * For non-critical database migrations, please add a method in the Database\PostUpdate class
28 * If there is a need for a post update to a structure change, update this file
29 * by adding a new function at the end with the number of the new DB_UPDATE_VERSION.
31 * The numbered script in this file has to be exactly like the DB_UPDATE_VERSION
34 * You are currently on version 4711 and you are preparing changes that demand an update script.
36 * 1. Create a function "update_4712()" here in the update.php
37 * 2. Apply the needed structural changes in static/dbStructure.php
38 * 3. Set DB_UPDATE_VERSION in static/dbstructure.config.php to 4712.
40 * If you need to run a script before the database update, name the function "pre_update_4712()"
43 use Friendica\Core\Config\ValueObject\Cache;
44 use Friendica\Core\Logger;
45 use Friendica\Core\Storage\Capability\ICanReadFromStorage;
46 use Friendica\Core\Storage\Type\Database as DatabaseStorage;
47 use Friendica\Core\Update;
48 use Friendica\Core\Worker;
49 use Friendica\Database\Database;
50 use Friendica\Database\DBA;
51 use Friendica\Database\DBStructure;
53 use Friendica\Model\Contact;
54 use Friendica\Model\Item;
55 use Friendica\Model\ItemURI;
56 use Friendica\Model\Notification;
57 use Friendica\Model\Photo;
58 use Friendica\Model\Post;
59 use Friendica\Model\Profile;
60 use Friendica\Model\User;
61 use Friendica\Security\PermissionSet\Repository\PermissionSet;
62 use Friendica\Worker\Delivery;
64 // Post-update script of PR 5751
65 function update_1298()
67 $keys = ['gender', 'marital', 'sexual'];
68 foreach ($keys as $translateKey) {
69 $allData = DBA::select('profile', ['id', $translateKey]);
70 $allLangs = DI::l10n()->getAvailableLanguages();
73 foreach ($allData as $key => $data) {
74 $toTranslate = $data[$translateKey];
75 if ($toTranslate != '') {
76 foreach ($allLangs as $key => $lang) {
80 // First we get the the localizations
81 if (file_exists("view/lang/$lang/strings.php")) {
82 include "view/lang/$lang/strings.php";
84 if (file_exists("addon/morechoice/lang/$lang/strings.php")) {
85 include "addon/morechoice/lang/$lang/strings.php";
88 $localizedStrings = $a->strings;
91 $key = array_search($toTranslate, $localizedStrings);
96 // defaulting to empty string
103 DBA::update('profile', [$translateKey => $key], ['id' => $data['id']]);
104 Logger::notice('Updated contact', ['action' => 'update', 'contact' => $data['id'], "$translateKey" => $key,
105 'was' => $data[$translateKey]]);
107 Contact::updateSelfFromUserID($data['id']);
108 Profile::publishUpdate($data['id']);
114 Logger::notice($translateKey . " fix completed", ['action' => 'update', 'translateKey' => $translateKey, 'Success' => $success, 'Fail' => $fail ]);
116 return Update::SUCCESS;
119 function update_1309()
121 $queue = DBA::select('queue', ['id', 'cid', 'guid']);
122 while ($entry = DBA::fetch($queue)) {
123 $contact = DBA::selectFirst('contact', ['uid'], ['id' => $entry['cid']]);
124 if (!DBA::isResult($contact)) {
128 $item = Post::selectFirst(['id', 'gravity'], ['uid' => $contact['uid'], 'guid' => $entry['guid']]);
129 if (!DBA::isResult($item)) {
133 $deliver_options = ['priority' => PRIORITY_MEDIUM, 'dont_fork' => true];
134 Worker::add($deliver_options, 'Delivery', Delivery::POST, $item['id'], $entry['cid']);
135 Logger::info('Added delivery worker', ['item' => $item['id'], 'contact' => $entry['cid']]);
136 DBA::delete('queue', ['id' => $entry['id']]);
138 return Update::SUCCESS;
141 function update_1315()
143 if (DBStructure::existsTable('item-delivery-data')) {
144 DBA::delete('item-delivery-data', ['postopts' => '', 'inform' => '', 'queue_count' => 0, 'queue_done' => 0]);
146 return Update::SUCCESS;
149 function update_1318()
151 DBA::update('profile', ['marital' => "In a relation"], ['marital' => "Unavailable"]);
152 DBA::update('profile', ['marital' => "Single"], ['marital' => "Available"]);
154 Worker::add(PRIORITY_LOW, 'ProfileUpdate');
155 return Update::SUCCESS;
158 function update_1323()
160 $users = DBA::select('user', ['uid']);
161 while ($user = DBA::fetch($users)) {
162 if (Contact::updateSelfFromUserID($user['uid'])) {
163 Profile::publishUpdate($user['uid']);
168 return Update::SUCCESS;
171 function update_1327()
173 $contacts = DBA::select('contact', ['uid', 'id', 'blocked', 'readonly'], ["`uid` != ? AND (`blocked` OR `readonly`) AND NOT `pending`", 0]);
174 while ($contact = DBA::fetch($contacts)) {
175 Contact\User::setBlocked($contact['id'], $contact['uid'], $contact['blocked']);
176 Contact\User::setIgnored($contact['id'], $contact['uid'], $contact['readonly']);
178 DBA::close($contacts);
180 return Update::SUCCESS;
183 function update_1330()
185 $currStorage = DI::config()->get('storage', 'class', '');
187 // set the name of the storage instead of the classpath as config
188 if (!empty($currStorage)) {
189 /** @var ICanReadFromStorage $currStorage */
190 if (!DI::config()->set('storage', 'name', $currStorage::getName())) {
191 return Update::FAILED;
194 // try to delete the class since it isn't needed. This won't work with config files
195 DI::config()->delete('storage', 'class');
198 // Update attachments and photos
199 if (!DBA::e("UPDATE `photo` SET `photo`.`backend-class` = SUBSTR(`photo`.`backend-class`, 25) WHERE `photo`.`backend-class` LIKE 'Friendica\\\Model\\\Storage\\\%' ESCAPE '|'") ||
200 !DBA::e("UPDATE `attach` SET `attach`.`backend-class` = SUBSTR(`attach`.`backend-class`, 25) WHERE `attach`.`backend-class` LIKE 'Friendica\\\Model\\\Storage\\\%' ESCAPE '|'")) {
201 return Update::FAILED;
204 return Update::SUCCESS;
207 function update_1332()
209 $condition = ["`is-default` IS NOT NULL"];
210 $profiles = DBA::select('profile', [], $condition);
212 while ($profile = DBA::fetch($profiles)) {
213 Profile::migrate($profile);
215 DBA::close($profiles);
217 DBA::update('contact', ['profile-id' => null], ['`profile-id` IS NOT NULL']);
219 return Update::SUCCESS;
222 function update_1347()
224 foreach (Item::ACTIVITIES as $index => $activity) {
225 DBA::insert('verb', ['id' => $index + 1, 'name' => $activity], Database::INSERT_IGNORE);
228 return Update::SUCCESS;
231 function pre_update_1348()
233 if (!DBA::exists('contact', ['id' => 0])) {
234 DBA::insert('contact', ['nurl' => '']);
235 $lastid = DBA::lastInsertId();
237 DBA::update('contact', ['id' => 0], ['id' => $lastid]);
241 // The tables "permissionset" and "tag" could or could not exist during the update.
242 // This depends upon the previous version. Depending upon this situation we have to add
243 // the "0" values before adding the foreign keys - or after would be sufficient.
247 if (DBStructure::existsTable('auth_codes') && DBStructure::existsTable('clients')) {
248 DBA::e("DELETE FROM `auth_codes` WHERE NOT `client_id` IN (SELECT `client_id` FROM `clients`)");
250 if (DBStructure::existsTable('tokens') && DBStructure::existsTable('clients')) {
251 DBA::e("DELETE FROM `tokens` WHERE NOT `client_id` IN (SELECT `client_id` FROM `clients`)");
253 return Update::SUCCESS;
256 function update_1348()
258 // Insert a permissionset with id=0
259 // Inserting it without an ID and then changing the value to 0 tricks the auto increment
260 if (!DBA::exists('permissionset', ['id' => 0])) {
261 DBA::insert('permissionset', ['allow_cid' => '', 'allow_gid' => '', 'deny_cid' => '', 'deny_gid' => '']);
262 $lastid = DBA::lastInsertId();
264 DBA::update('permissionset', ['id' => 0], ['id' => $lastid]);
268 if (!DBA::exists('tag', ['id' => 0])) {
269 DBA::insert('tag', ['name' => '']);
270 $lastid = DBA::lastInsertId();
272 DBA::update('tag', ['id' => 0], ['id' => $lastid]);
276 return Update::SUCCESS;
279 function update_1349()
281 if (!DBStructure::existsTable('item-activity')) {
282 return Update::SUCCESS;
286 foreach (Item::ACTIVITIES as $index => $activity) {
287 if (!DBA::exists('verb', ['id' => $index + 1, 'name' => $activity])) {
293 // The update failed - but it cannot be recovered, since the data doesn't match our expectation
294 // This means that we can't use this "shortcut" to fill the "vid" field and we have to rely upon
295 // the postupdate. This is not fatal, but means that it will take some longer time for the system
297 return Update::SUCCESS;
300 if (!DBA::e("UPDATE `item` INNER JOIN `item-activity` ON `item`.`uri-id` = `item-activity`.`uri-id`
301 SET `vid` = `item-activity`.`activity` + 1 WHERE `gravity` = ? AND (`vid` IS NULL OR `vid` = 0)", GRAVITY_ACTIVITY)) {
302 return Update::FAILED;
305 return Update::SUCCESS;
308 function update_1351()
310 if (DBStructure::existsTable('thread') && !DBA::e("UPDATE `thread` INNER JOIN `item` ON `thread`.`iid` = `item`.`id` SET `thread`.`uri-id` = `item`.`uri-id`")) {
311 return Update::FAILED;
314 return Update::SUCCESS;
317 function pre_update_1354()
319 if (DBStructure::existsColumn('contact', ['ffi_keyword_blacklist'])
320 && !DBStructure::existsColumn('contact', ['ffi_keyword_denylist'])
321 && !DBA::e("ALTER TABLE `contact` CHANGE `ffi_keyword_blacklist` `ffi_keyword_denylist` text null")) {
322 return Update::FAILED;
324 return Update::SUCCESS;
327 function update_1354()
329 if (DBStructure::existsColumn('contact', ['ffi_keyword_blacklist'])
330 && DBStructure::existsColumn('contact', ['ffi_keyword_denylist'])) {
331 if (!DBA::e("UPDATE `contact` SET `ffi_keyword_denylist` = `ffi_keyword_blacklist`")) {
332 return Update::FAILED;
335 // When the data had been copied then the main task is done.
336 // Having the old field removed is only beauty but not crucial.
337 // So we don't care if this was successful or not.
338 DBA::e("ALTER TABLE `contact` DROP `ffi_keyword_blacklist`");
340 return Update::SUCCESS;
343 function update_1357()
345 if (!DBA::e("UPDATE `contact` SET `failed` = true WHERE `success_update` < `failure_update` AND `failed` IS NULL")) {
346 return Update::FAILED;
349 if (!DBA::e("UPDATE `contact` SET `failed` = false WHERE `success_update` > `failure_update` AND `failed` IS NULL")) {
350 return Update::FAILED;
353 if (!DBA::e("UPDATE `contact` SET `failed` = false WHERE `updated` > `failure_update` AND `failed` IS NULL")) {
354 return Update::FAILED;
357 if (!DBA::e("UPDATE `contact` SET `failed` = false WHERE `last-item` > `failure_update` AND `failed` IS NULL")) {
358 return Update::FAILED;
361 if (!DBA::e("UPDATE `gserver` SET `failed` = true WHERE `last_contact` < `last_failure` AND `failed` IS NULL")) {
362 return Update::FAILED;
365 if (!DBA::e("UPDATE `gserver` SET `failed` = false WHERE `last_contact` > `last_failure` AND `failed` IS NULL")) {
366 return Update::FAILED;
369 return Update::SUCCESS;
372 function pre_update_1358()
374 if (!DBA::e("DELETE FROM `contact-relation` WHERE NOT `relation-cid` IN (SELECT `id` FROM `contact`) OR NOT `cid` IN (SELECT `id` FROM `contact`)")) {
375 return Update::FAILED;
378 return Update::SUCCESS;
381 function pre_update_1363()
383 Photo::delete(["`contact-id` != ? AND NOT `contact-id` IN (SELECT `id` FROM `contact`)", 0]);
384 return Update::SUCCESS;
387 function pre_update_1364()
389 if (!DBA::e("DELETE FROM `2fa_recovery_codes` WHERE NOT `uid` IN (SELECT `uid` FROM `user`)")) {
390 return Update::FAILED;
393 if (!DBA::e("DELETE FROM `2fa_app_specific_password` WHERE NOT `uid` IN (SELECT `uid` FROM `user`)")) {
394 return Update::FAILED;
397 if (!DBA::e("DELETE FROM `attach` WHERE NOT `uid` IN (SELECT `uid` FROM `user`)")) {
398 return Update::FAILED;
401 if (DBStructure::existsTable('clients') && !DBA::e("DELETE FROM `clients` WHERE NOT `uid` IN (SELECT `uid` FROM `user`)")) {
402 return Update::FAILED;
405 if (!DBA::e("DELETE FROM `conv` WHERE NOT `uid` IN (SELECT `uid` FROM `user`)")) {
406 return Update::FAILED;
409 if (!DBA::e("DELETE FROM `fsuggest` WHERE NOT `uid` IN (SELECT `uid` FROM `user`)")) {
410 return Update::FAILED;
413 if (!DBA::e("DELETE FROM `group` WHERE NOT `uid` IN (SELECT `uid` FROM `user`)")) {
414 return Update::FAILED;
417 if (!DBA::e("DELETE FROM `intro` WHERE NOT `uid` IN (SELECT `uid` FROM `user`)")) {
418 return Update::FAILED;
421 if (!DBA::e("DELETE FROM `manage` WHERE NOT `uid` IN (SELECT `uid` FROM `user`)")) {
422 return Update::FAILED;
425 if (!DBA::e("DELETE FROM `manage` WHERE NOT `mid` IN (SELECT `uid` FROM `user`)")) {
426 return Update::FAILED;
429 if (!DBA::e("DELETE FROM `mail` WHERE NOT `uid` IN (SELECT `uid` FROM `user`)")) {
430 return Update::FAILED;
433 if (!DBA::e("DELETE FROM `mailacct` WHERE NOT `uid` IN (SELECT `uid` FROM `user`)")) {
434 return Update::FAILED;
437 if (!DBA::e("DELETE FROM `notify` WHERE NOT `uid` IN (SELECT `uid` FROM `user`)")) {
438 return Update::FAILED;
441 if (!DBA::e("DELETE FROM `openwebauth-token` WHERE NOT `uid` IN (SELECT `uid` FROM `user`)")) {
442 return Update::FAILED;
445 if (!DBA::e("DELETE FROM `pconfig` WHERE NOT `uid` IN (SELECT `uid` FROM `user`)")) {
446 return Update::FAILED;
449 if (!DBA::e("DELETE FROM `profile` WHERE NOT `uid` IN (SELECT `uid` FROM `user`)")) {
450 return Update::FAILED;
453 if (DBStructure::existsTable('profile_check') && !DBA::e("DELETE FROM `profile_check` WHERE NOT `uid` IN (SELECT `uid` FROM `user`)")) {
454 return Update::FAILED;
457 if (!DBA::e("DELETE FROM `profile_field` WHERE NOT `uid` IN (SELECT `uid` FROM `user`)")) {
458 return Update::FAILED;
461 if (!DBA::e("DELETE FROM `push_subscriber` WHERE NOT `uid` IN (SELECT `uid` FROM `user`)")) {
462 return Update::FAILED;
465 if (!DBA::e("DELETE FROM `register` WHERE NOT `uid` IN (SELECT `uid` FROM `user`)")) {
466 return Update::FAILED;
469 if (!DBA::e("DELETE FROM `search` WHERE NOT `uid` IN (SELECT `uid` FROM `user`)")) {
470 return Update::FAILED;
473 if (DBStructure::existsTable('tokens') && !DBA::e("DELETE FROM `tokens` WHERE NOT `uid` IN (SELECT `uid` FROM `user`)")) {
474 return Update::FAILED;
477 if (!DBA::e("DELETE FROM `user-contact` WHERE NOT `uid` IN (SELECT `uid` FROM `user`)")) {
478 return Update::FAILED;
481 if (DBStructure::existsTable('user-item') && !DBA::e("DELETE FROM `user-item` WHERE NOT `uid` IN (SELECT `uid` FROM `user`)")) {
482 return Update::FAILED;
485 if (!DBA::e("DELETE FROM `notify-threads` WHERE NOT `receiver-uid` IN (SELECT `uid` FROM `user`)")) {
486 return Update::FAILED;
489 if (!DBA::e("DELETE FROM `event` WHERE NOT `cid` IN (SELECT `id` FROM `contact`)")) {
490 return Update::FAILED;
493 if (!DBA::e("DELETE FROM `fsuggest` WHERE NOT `cid` IN (SELECT `id` FROM `contact`)")) {
494 return Update::FAILED;
497 if (!DBA::e("DELETE FROM `group_member` WHERE NOT `contact-id` IN (SELECT `id` FROM `contact`)")) {
498 return Update::FAILED;
501 if (!DBA::e("DELETE FROM `intro` WHERE NOT `contact-id` IN (SELECT `id` FROM `contact`)")) {
502 return Update::FAILED;
505 if (DBStructure::existsTable('profile_check') && !DBA::e("DELETE FROM `profile_check` WHERE NOT `cid` IN (SELECT `id` FROM `contact`)")) {
506 return Update::FAILED;
509 if (!DBA::e("DELETE FROM `user-contact` WHERE NOT `cid` IN (SELECT `id` FROM `contact`)")) {
510 return Update::FAILED;
513 if (!DBA::e("DELETE FROM `group_member` WHERE NOT `gid` IN (SELECT `id` FROM `group`)")) {
514 return Update::FAILED;
517 if (!DBA::e("DELETE FROM `gserver-tag` WHERE NOT `gserver-id` IN (SELECT `id` FROM `gserver`)")) {
518 return Update::FAILED;
521 if (DBStructure::existsTable('user-item') && !DBA::e("DELETE FROM `user-item` WHERE NOT `iid` IN (SELECT `id` FROM `item`)")) {
522 return Update::FAILED;
525 return Update::SUCCESS;
528 function pre_update_1365()
530 if (!DBA::e("DELETE FROM `notify-threads` WHERE NOT `notify-id` IN (SELECT `id` FROM `notify`)")) {
531 return Update::FAILED;
534 if (DBStructure::existsTable('thread') && !DBA::e("DELETE FROM `thread` WHERE NOT `iid` IN (SELECT `id` FROM `item`)")) {
535 return Update::FAILED;
538 return Update::SUCCESS;
541 function update_1375()
543 if (!DBA::e("UPDATE `item` SET `thr-parent` = `parent-uri`, `thr-parent-id` = `parent-uri-id` WHERE `thr-parent` = ''")) {
544 return Update::FAILED;
547 return Update::SUCCESS;
550 function pre_update_1376()
552 // Insert a user with uid=0
553 DBStructure::checkInitialValues();
555 if (!DBA::e("DELETE FROM `item` WHERE NOT `uid` IN (SELECT `uid` FROM `user`)")) {
556 return Update::FAILED;
559 if (!DBA::e("DELETE FROM `event` WHERE NOT `uid` IN (SELECT `uid` FROM `user`)")) {
560 return Update::FAILED;
563 if (DBStructure::existsTable('thread') && !DBA::e("DELETE FROM `thread` WHERE NOT `uid` IN (SELECT `uid` FROM `user`)")) {
564 return Update::FAILED;
567 if (!DBA::e("DELETE FROM `permissionset` WHERE NOT `uid` IN (SELECT `uid` FROM `user`)")) {
568 return Update::FAILED;
571 if (!DBA::e("DELETE FROM `openwebauth-token` WHERE NOT `uid` IN (SELECT `uid` FROM `user`)")) {
572 return Update::FAILED;
575 if (!DBA::e("DELETE FROM `post-category` WHERE NOT `uid` IN (SELECT `uid` FROM `user`)")) {
576 return Update::FAILED;
579 Photo::delete(["NOT `uid` IN (SELECT `uid` FROM `user`)"]);
581 if (!DBA::e("DELETE FROM `contact` WHERE NOT `uid` IN (SELECT `uid` FROM `user`)")) {
582 return Update::FAILED;
585 return Update::SUCCESS;
588 function pre_update_1377()
590 DBStructure::checkInitialValues();
592 if (!DBA::e("DELETE FROM `item` WHERE NOT `author-id` IN (SELECT `id` FROM `contact`)")) {
593 return Update::FAILED;
596 if (!DBA::e("DELETE FROM `item` WHERE NOT `owner-id` IN (SELECT `id` FROM `contact`)")) {
597 return Update::FAILED;
600 if (!DBA::e("UPDATE `item` SET `contact-id` = `owner-id` WHERE NOT `contact-id` IN (SELECT `id` FROM `contact`)")) {
601 return Update::FAILED;
604 if (DBStructure::existsTable('thread') && !DBA::e("DELETE FROM `thread` WHERE NOT `author-id` IN (SELECT `id` FROM `contact`)")) {
605 return Update::FAILED;
608 if (DBStructure::existsTable('thread') && !DBA::e("DELETE FROM `thread` WHERE NOT `owner-id` IN (SELECT `id` FROM `contact`)")) {
609 return Update::FAILED;
612 if (DBStructure::existsTable('thread') && !DBA::e("UPDATE `thread` SET `contact-id` = `owner-id` WHERE NOT `contact-id` IN (SELECT `id` FROM `contact`)")) {
613 return Update::FAILED;
616 if (!DBA::e("UPDATE `notify` SET `uri-id` = NULL WHERE `uri-id` = 0")) {
617 return Update::FAILED;
620 if (DBStructure::existsTable('diaspora-interaction') && !DBA::e("DELETE FROM `diaspora-interaction` WHERE `uri-id` NOT IN (SELECT `id` FROM `item-uri`)")) {
621 return Update::FAILED;
624 if (DBStructure::existsTable('item-activity') && !DBA::e("DELETE FROM `item-activity` WHERE `uri-id` NOT IN (SELECT `id` FROM `item-uri`)")) {
625 return Update::FAILED;
628 if (DBStructure::existsTable('item-content') && !DBA::e("DELETE FROM `item-content` WHERE `uri-id` NOT IN (SELECT `id` FROM `item-uri`)")) {
629 return Update::FAILED;
632 if (!DBA::e("DELETE FROM `notify` WHERE `uri-id` NOT IN (SELECT `id` FROM `item-uri`)")) {
633 return Update::FAILED;
636 if (!DBA::e("UPDATE `notify` SET `parent-uri-id` = NULL WHERE `parent-uri-id` = 0")) {
637 return Update::FAILED;
639 if (!DBA::e("DELETE FROM `notify` WHERE `parent-uri-id` NOT IN (SELECT `id` FROM `item-uri`)")) {
640 return Update::FAILED;
643 if (!DBA::e("UPDATE `notify-threads` SET `master-parent-uri-id` = NULL WHERE `master-parent-uri-id` = 0")) {
644 return Update::FAILED;
647 if (!DBA::e("DELETE FROM `notify-threads` WHERE `master-parent-uri-id` NOT IN (SELECT `id` FROM `item-uri`)")) {
648 return Update::FAILED;
651 if (!DBA::e("DELETE FROM `notify-threads` WHERE `master-parent-item` NOT IN (SELECT `id` FROM `item`)")) {
652 return Update::FAILED;
655 return Update::SUCCESS;
658 function update_1380()
660 if (!DBA::e("UPDATE `notify` INNER JOIN `item` ON `item`.`id` = `notify`.`iid` SET `notify`.`uri-id` = `item`.`uri-id` WHERE `notify`.`uri-id` IS NULL AND `notify`.`otype` IN (?, ?)",
661 Notification\ObjectType::ITEM, Notification\ObjectType::PERSON)) {
662 return Update::FAILED;
665 if (!DBA::e("UPDATE `notify` INNER JOIN `item` ON `item`.`id` = `notify`.`parent` SET `notify`.`parent-uri-id` = `item`.`uri-id` WHERE `notify`.`parent-uri-id` IS NULL AND `notify`.`otype` IN (?, ?)",
666 Notification\ObjectType::ITEM, Notification\ObjectType::PERSON)) {
667 return Update::FAILED;
670 return Update::SUCCESS;
673 function pre_update_1395()
675 if (DBStructure::existsTable('post-user') && !DBStructure::existsColumn('post-user', ['id']) && !DBA::e("DROP TABLE `post-user`")) {
676 return Update::FAILED;
678 return Update::SUCCESS;
681 function update_1395()
683 if (!DBA::e("INSERT INTO `post-user`(`id`, `uri-id`, `uid`, `contact-id`, `unseen`, `origin`, `psid`)
684 SELECT `id`, `uri-id`, `uid`, `contact-id`, `unseen`, `origin`, `psid` FROM `item`
685 ON DUPLICATE KEY UPDATE `contact-id` = `item`.`contact-id`, `unseen` = `item`.`unseen`, `origin` = `item`.`origin`, `psid` = `item`.`psid`")) {
686 return Update::FAILED;
689 if (DBStructure::existsTable('user-item') && !DBA::e("INSERT INTO `post-user`(`uri-id`, `uid`, `hidden`, `notification-type`)
690 SELECT `uri-id`, `user-item`.`uid`, `hidden`,`notification-type` FROM `user-item`
691 INNER JOIN `item` ON `item`.`id` = `user-item`.`iid`
692 ON DUPLICATE KEY UPDATE `hidden` = `user-item`.`hidden`, `notification-type` = `user-item`.`notification-type`")) {
693 return Update::FAILED;
695 return Update::SUCCESS;
698 function update_1396()
700 if (!DBStructure::existsTable('item-content')) {
701 return Update::SUCCESS;
704 if (DBStructure::existsColumn('item-content', ['raw-body'])) {
705 if (!DBA::e("INSERT IGNORE INTO `post-content`(`uri-id`, `title`, `content-warning`, `body`, `raw-body`,
706 `location`, `coord`, `language`, `app`, `rendered-hash`, `rendered-html`,
707 `object-type`, `object`, `target-type`, `target`, `resource-id`, `plink`)
708 SELECT `item-content`.`uri-id`, `item-content`.`title`, `item-content`.`content-warning`,
709 `item-content`.`body`, `item-content`.`raw-body`, `item-content`.`location`, `item-content`.`coord`,
710 `item-content`.`language`, `item-content`.`app`, `item-content`.`rendered-hash`,
711 `item-content`.`rendered-html`, `item-content`.`object-type`, `item-content`.`object`,
712 `item-content`.`target-type`, `item-content`.`target`, `item`.`resource-id`, `item-content`.`plink`
713 FROM `item-content` INNER JOIN `item` ON `item`.`uri-id` = `item-content`.`uri-id`")) {
714 return Update::FAILED;
717 if (!DBA::e("INSERT IGNORE INTO `post-content`(`uri-id`, `title`, `content-warning`, `body`,
718 `location`, `coord`, `language`, `app`, `rendered-hash`, `rendered-html`,
719 `object-type`, `object`, `target-type`, `target`, `resource-id`, `plink`)
720 SELECT `item-content`.`uri-id`, `item-content`.`title`, `item-content`.`content-warning`,
721 `item-content`.`body`, `item-content`.`location`, `item-content`.`coord`,
722 `item-content`.`language`, `item-content`.`app`, `item-content`.`rendered-hash`,
723 `item-content`.`rendered-html`, `item-content`.`object-type`, `item-content`.`object`,
724 `item-content`.`target-type`, `item-content`.`target`, `item`.`resource-id`, `item-content`.`plink`
725 FROM `item-content` INNER JOIN `item` ON `item`.`uri-id` = `item-content`.`uri-id`")) {
726 return Update::FAILED;
729 return Update::SUCCESS;
732 function update_1397()
734 if (!DBA::e("INSERT INTO `post-user-notification`(`uri-id`, `uid`, `notification-type`)
735 SELECT `uri-id`, `uid`, `notification-type` FROM `post-user` WHERE `notification-type` != 0
736 ON DUPLICATE KEY UPDATE `uri-id` = `post-user`.`uri-id`, `uid` = `post-user`.`uid`, `notification-type` = `post-user`.`notification-type`")) {
737 return Update::FAILED;
740 if (!DBStructure::existsTable('user-item')) {
741 return Update::SUCCESS;
744 if (!DBA::e("INSERT INTO `post-user-notification`(`uri-id`, `uid`, `notification-type`)
745 SELECT `uri-id`, `user-item`.`uid`, `notification-type` FROM `user-item`
746 INNER JOIN `item` ON `item`.`id` = `user-item`.`iid` WHERE `notification-type` != 0
747 ON DUPLICATE KEY UPDATE `notification-type` = `user-item`.`notification-type`")) {
748 return Update::FAILED;
751 if (!DBStructure::existsTable('thread')) {
752 return Update::SUCCESS;
755 if (!DBA::e("INSERT IGNORE INTO `post-thread-user`(`uri-id`, `uid`, `pinned`, `starred`, `ignored`, `wall`, `pubmail`, `forum_mode`)
756 SELECT `thread`.`uri-id`, `thread`.`uid`, `user-item`.`pinned`, `thread`.`starred`,
757 `thread`.`ignored`, `thread`.`wall`, `thread`.`pubmail`, `thread`.`forum_mode`
758 FROM `thread` LEFT JOIN `user-item` ON `user-item`.`iid` = `thread`.`iid`")) {
759 return Update::FAILED;
762 return Update::SUCCESS;
765 function update_1398()
767 if (!DBStructure::existsTable('thread')) {
768 return Update::SUCCESS;
771 if (!DBA::e("INSERT IGNORE INTO `post-thread` (`uri-id`, `owner-id`, `author-id`, `network`, `created`, `received`, `changed`, `commented`)
772 SELECT `uri-id`, `owner-id`, `author-id`, `network`, `created`, `received`, `changed`, `commented` FROM `thread`")) {
773 return Update::FAILED;
776 if (!DBStructure::existsTable('thread')) {
777 return Update::SUCCESS;
780 if (!DBA::e("UPDATE `post-thread-user` INNER JOIN `thread` ON `thread`.`uid` = `post-thread-user`.`uid` AND `thread`.`uri-id` = `post-thread-user`.`uri-id`
781 SET `post-thread-user`.`mention` = `thread`.`mention`")) {
782 return Update::FAILED;
785 return Update::SUCCESS;
788 function update_1399()
790 if (!DBA::e("UPDATE `post-thread-user` INNER JOIN `post-user` ON `post-user`.`uid` = `post-thread-user`.`uid` AND `post-user`.`uri-id` = `post-thread-user`.`uri-id`
791 SET `post-thread-user`.`contact-id` = `post-user`.`contact-id`, `post-thread-user`.`unseen` = `post-user`.`unseen`,
792 `post-thread-user`.`hidden` = `post-user`.`hidden`, `post-thread-user`.`origin` = `post-user`.`origin`,
793 `post-thread-user`.`psid` = `post-user`.`psid`, `post-thread-user`.`post-user-id` = `post-user`.`id`")) {
794 return Update::FAILED;
797 return Update::SUCCESS;
800 function update_1400()
802 if (!DBA::e("INSERT IGNORE INTO `post` (`uri-id`, `parent-uri-id`, `thr-parent-id`, `owner-id`, `author-id`, `network`,
803 `created`, `received`, `edited`, `gravity`, `causer-id`, `post-type`, `vid`, `private`, `visible`, `deleted`, `global`)
804 SELECT `uri-id`, `parent-uri-id`, `thr-parent-id`, `owner-id`, `author-id`, `network`, `created`, `received`, `edited`,
805 `gravity`, `causer-id`, `post-type`, `vid`, `private`, `visible`, `deleted`, `global` FROM `item`")) {
806 return Update::FAILED;
809 if (!DBA::e("UPDATE `post-user` INNER JOIN `item` ON `item`.`uri-id` = `post-user`.`uri-id` AND `item`.`uid` = `post-user`.`uid`
810 INNER JOIN `event` ON `item`.`event-id` = `event`.`id` AND `event`.`id` != 0
811 SET `post-user`.`event-id` = `item`.`event-id`")) {
812 return Update::FAILED;
815 if (!DBA::e("UPDATE `post-user` INNER JOIN `item` ON `item`.`uri-id` = `post-user`.`uri-id` AND `item`.`uid` = `post-user`.`uid`
816 SET `post-user`.`wall` = `item`.`wall`, `post-user`.`parent-uri-id` = `item`.`parent-uri-id`,
817 `post-user`.`thr-parent-id` = `item`.`thr-parent-id`,
818 `post-user`.`created` = `item`.`created`, `post-user`.`edited` = `item`.`edited`,
819 `post-user`.`received` = `item`.`received`, `post-user`.`gravity` = `item`.`gravity`,
820 `post-user`.`network` = `item`.`network`, `post-user`.`owner-id` = `item`.`owner-id`,
821 `post-user`.`author-id` = `item`.`author-id`, `post-user`.`causer-id` = `item`.`causer-id`,
822 `post-user`.`post-type` = `item`.`post-type`, `post-user`.`vid` = `item`.`vid`,
823 `post-user`.`private` = `item`.`private`, `post-user`.`global` = `item`.`global`,
824 `post-user`.`visible` = `item`.`visible`, `post-user`.`deleted` = `item`.`deleted`")) {
825 return Update::FAILED;
828 if (!DBA::e("INSERT IGNORE INTO `post-thread-user` (`uri-id`, `owner-id`, `author-id`, `causer-id`, `network`,
829 `created`, `received`, `changed`, `commented`, `uid`, `wall`, `contact-id`, `unseen`, `hidden`, `origin`, `psid`, `post-user-id`)
830 SELECT `uri-id`, `owner-id`, `author-id`, `causer-id`, `network`, `created`, `received`, `received`, `received`,
831 `uid`, `wall`, `contact-id`, `unseen`, `hidden`, `origin`, `psid`, `id`
832 FROM `post-user` WHERE `gravity` = 0 AND NOT EXISTS(SELECT `uri-id` FROM `post-thread-user` WHERE `post-user-id` = `post-user`.id)")) {
833 return Update::FAILED;
836 if (!DBA::e("UPDATE `post-thread-user` INNER JOIN `post-thread` ON `post-thread-user`.`uri-id` = `post-thread`.`uri-id`
837 SET `post-thread-user`.`owner-id` = `post-thread`.`owner-id`, `post-thread-user`.`author-id` = `post-thread`.`author-id`,
838 `post-thread-user`.`causer-id` = `post-thread`.`causer-id`, `post-thread-user`.`network` = `post-thread`.`network`,
839 `post-thread-user`.`created` = `post-thread`.`created`, `post-thread-user`.`received` = `post-thread`.`received`,
840 `post-thread-user`.`changed` = `post-thread`.`changed`, `post-thread-user`.`commented` = `post-thread`.`commented`")) {
841 return Update::FAILED;
844 return Update::SUCCESS;
847 function pre_update_1403()
849 // Necessary before a primary key change
850 if (DBStructure::existsTable('parsed_url') && !DBA::e("DROP TABLE `parsed_url`")) {
851 return Update::FAILED;
854 return Update::SUCCESS;
857 function update_1404()
859 $tasks = DBA::select('workerqueue', ['id', 'command', 'parameter'], ['command' => ['notifier', 'delivery', 'apdelivery', 'done' => false]]);
860 while ($task = DBA::fetch($tasks)) {
861 $parameters = json_decode($task['parameter'], true);
863 if (is_array($parameters) && count($parameters) && in_array($parameters[0], [Delivery::MAIL, Delivery::SUGGESTION, Delivery::REMOVAL, Delivery::RELOCATION])) {
867 switch (strtolower($task['command'])) {
869 if (count($parameters) == 3) {
872 $item = DBA::selectFirst('item', ['uid', 'uri-id'], ['id' => $parameters[1]]);
873 if (!DBA::isResult($item)) {
877 $parameters[1] = $item['uri-id'];
878 $parameters[2] = $item['uid'];
881 if (count($parameters) == 4) {
884 $item = DBA::selectFirst('item', ['uid', 'uri-id'], ['id' => $parameters[1]]);
885 if (!DBA::isResult($item)) {
889 $parameters[1] = $item['uri-id'];
890 $parameters[3] = $item['uid'];
893 if (count($parameters) == 6) {
897 if (empty($parameters[4])) {
901 $item = DBA::selectFirst('item', ['uri-id'], ['id' => $parameters[1]]);
902 if (!DBA::isResult($item)) {
906 $parameters[5] = $item['uri-id'];
911 DBA::update('workerqueue', ['parameter' => json_encode($parameters)], ['id' => $task['id']]);
913 return Update::SUCCESS;
917 function update_1407()
919 if (!DBA::e("UPDATE `post` SET `causer-id` = NULL WHERE `causer-id` = 0")) {
920 return Update::FAILED;
922 if (!DBA::e("UPDATE `post-user` SET `causer-id` = NULL WHERE `causer-id` = 0")) {
923 return Update::FAILED;
925 if (!DBA::e("UPDATE `post-thread` SET `causer-id` = NULL WHERE `causer-id` = 0")) {
926 return Update::FAILED;
928 if (!DBA::e("UPDATE `post-thread-user` SET `causer-id` = NULL WHERE `causer-id` = 0")) {
929 return Update::FAILED;
932 return Update::SUCCESS;
935 function update_1413()
937 if (!DBA::e("UPDATE `post-user` SET `post-reason` = `post-type` WHERE `post-type` >= 64 and `post-type` <= 75")) {
938 return Update::FAILED;
942 function update_1419()
944 $mails = DBA::select('mail', ['id', 'from-url', 'uri', 'parent-uri', 'guid'], [], ['order' => ['id']]);
945 while ($mail = DBA::fetch($mails)) {
947 $fields['author-id'] = Contact::getIdForURL($mail['from-url'], 0, false);
948 if (empty($fields['author-id'])) {
952 $fields['uri-id'] = ItemURI::insert(['uri' => $mail['uri'], 'guid' => $mail['guid']]);
953 $fields['parent-uri-id'] = ItemURI::getIdByURI($mail['parent-uri']);
955 $reply = DBA::selectFirst('mail', ['uri', 'uri-id', 'guid'], ['parent-uri' => $mail['parent-uri'], 'reply' => false]);
956 if (!empty($reply)) {
957 $fields['thr-parent'] = $reply['uri'];
958 if (!empty($reply['uri-id'])) {
959 $fields['thr-parent-id'] = $reply['uri-id'];
961 $fields['thr-parent-id'] = ItemURI::insert(['uri' => $reply['uri'], 'guid' => $reply['guid']]);
965 DBA::update('mail', $fields, ['id' => $mail['id']]);
967 return Update::SUCCESS;
970 function update_1429()
972 if (!DBA::e("UPDATE `contact` SET `uri-id` = null WHERE NOT `uri-id` IS NULL")) {
973 return Update::FAILED;
976 if (!DBA::e("UPDATE `fcontact` SET `uri-id` = null WHERE NOT `uri-id` IS NULL")) {
977 return Update::FAILED;
980 if (!DBA::e("UPDATE `apcontact` SET `uri-id` = null WHERE NOT `uri-id` IS NULL")) {
981 return Update::FAILED;
984 DI::config()->set("system", "post_update_version", 1423);
986 return Update::SUCCESS;
989 function update_1434()
991 $name = DI::config()->get('storage', 'name');
993 // In case of an empty config, set "Database" as default storage backend
995 DI::config()->set('storage', 'name', DatabaseStorage::getName());
998 // In case of a Using deprecated storage class value, set the right name for it
999 if (stristr($name, 'Friendica\Model\Storage\\')) {
1000 DI::config()->set('storage', 'name', substr($name, 24));
1003 return Update::SUCCESS;
1006 function update_1438()
1008 DBA::update('photo', ['photo-type' => Photo::USER_AVATAR], ['profile' => true]);
1009 DBA::update('photo', ['photo-type' => Photo::CONTACT_AVATAR], ["NOT `profile` AND NOT `contact-id` IS NULL AND `contact-id` != ?", 0]);
1010 DBA::update('photo', ['photo-type' => Photo::DEFAULT], ["NOT `profile` AND (`contact-id` IS NULL OR `contact-id` = ?) AND `photo-type` IS NULL AND `album` != ?", 0, Photo::CONTACT_PHOTOS]);
1013 function update_1439()
1015 $intros = DBA::select('intro', ['id', 'fid'], ["NOT `fid` IS NULL AND `fid` != ?", 0]);
1016 while ($intro = DBA::fetch($intros)) {
1017 $fcontact = DBA::selectFirst('fcontact', ['url'], ['id' => $intro['fid']]);
1018 if (!empty($fcontact['url'])) {
1019 $id = Contact::getIdForURL($fcontact['url']);
1021 DBA::update('intro',['suggest-cid' => $id], ['id' => $intro['id']]);
1025 DBA::close($intros);
1028 function update_1440()
1030 // Fix wrong public permissionset
1031 DBA::p("UPDATE `profile_field` SET `psid` = ? WHERE psid IN (SELECT `id` FROM `permissionset` WHERE `id` != ? AND `allow_cid` = '' AND `allow_gid` = '' AND `deny_cid` = '' AND `deny_gid` = '')", PermissionSet::PUBLIC, PermissionSet::PUBLIC);
1032 DBA::delete('permissionset', ["`id` != ? AND `allow_cid` = '' AND `allow_gid` = '' AND `deny_cid` = '' AND `deny_gid` = ''", PermissionSet::PUBLIC]);
1034 return Update::SUCCESS;
1037 function update_1441()
1039 $languages = DI::l10n()->getAvailableLanguages();
1041 $albums = [Photo::PROFILE_PHOTOS];
1042 foreach ($languages as $language) {
1043 $albums[] = DI::l10n()->withLang($language)->t(Photo::PROFILE_PHOTOS);
1045 $albums = array_unique($albums);
1047 Photo::update(['photo-type' => Photo::USER_AVATAR], ['album' => $albums]);
1049 return Update::SUCCESS;
1052 function update_1442()
1054 // transform blocked intros into ignored intros
1055 DBA::update('intro', ['ignore' => 1, 'blocked' => 0], ['blocked' => 1]);
1057 return Update::SUCCESS;
1061 * A bug in Contact\User::updateByContactUpdate prevented any update to the user-contact table since the rows have been
1062 * created in version 1435. This version fixes this bug but the user-contact rows are outdated, we need to regenerate
1065 function update_1444()
1067 DBA::e('TRUNCATE TABLE `user-contact`');
1069 $contacts = DBA::select('contact', [], ["`uid` != ?", 0]);
1070 while ($contact = DBA::fetch($contacts)) {
1071 Contact\User::insertForContactArray($contact);
1074 return Update::SUCCESS;
1077 function update_1446()
1079 $distributed_cache_driver_source = DI::config()->getCache()->getSource('system', 'distributed_cache_driver');
1080 $cache_driver_source = DI::config()->getCache()->getSource('system', 'cache_driver');
1082 // In case the distributed cache driver is the default value, but the current cache driver isn't default,
1083 // we assume that the distributed cache driver should be the same as the current cache driver
1084 if ($distributed_cache_driver_source === Cache::SOURCE_STATIC && $cache_driver_source > Cache::SOURCE_STATIC) {
1085 DI::config()->set('system', 'distributed_cache_driver', DI::config()->get('system', 'cache_driver'));
1088 return Update::SUCCESS;
1091 function update_1451()
1093 DBA::update('user', ['account-type' => User::ACCOUNT_TYPE_COMMUNITY], ['page-flags' => [User::PAGE_FLAGS_COMMUNITY, User::PAGE_FLAGS_PRVGROUP]]);
1094 DBA::update('contact', ['contact-type' => Contact::TYPE_COMMUNITY], ["`forum` OR `prv`"]);
1095 DBA::update('contact', ['manually-approve' => true], ['prv' => true]);
1097 return Update::SUCCESS;
1100 function update_1457()
1102 $pinned = DBA::select('post-thread-user', ['uri-id'], ['pinned' => true]);
1103 while ($post = DBA::fetch($pinned)) {
1104 Post\Collection::add($post['uri-id'], Post\Collection::FEATURED);
1106 DBA::close($pinned);
1108 return Update::SUCCESS;