3 use Friendica\Core\Addon;
4 use Friendica\Core\Logger;
5 use Friendica\Core\Update;
6 use Friendica\Core\Worker;
7 use Friendica\Database\DBA;
9 use Friendica\Model\Contact;
10 use Friendica\Model\GContact;
11 use Friendica\Model\Item;
12 use Friendica\Model\User;
13 use Friendica\Model\Storage;
14 use Friendica\Util\DateTimeFormat;
15 use Friendica\Worker\Delivery;
18 * update.php - automatic post-databse structure change updates
20 * These functions are responsible for doing critical post update changes to the data (not the structure) in the database.
22 * Database structure changes are done in static/dbstructure.config.php
24 * For non-critical database migrations, please add a method in the Database\PostUpdate class
26 * If there is a need for a post update to a structure change, update this file
27 * by adding a new function at the end with the number of the new DB_UPDATE_VERSION.
29 * The numbered script in this file has to be exactly like the DB_UPDATE_VERSION
32 * You are currently on version 4711 and you are preparing changes that demand an update script.
34 * 1. Create a function "update_4712()" here in the update.php
35 * 2. Apply the needed structural changes in static/dbStructure.php
36 * 3. Set DB_UPDATE_VERSION in static/dbstructure.config.php to 4712.
38 * If you need to run a script before the database update, name the function "pre_update_4712()"
41 function update_1178()
43 require_once 'mod/profiles.php';
45 $profiles = q("SELECT `uid`, `about`, `locality`, `pub_keywords`, `gender` FROM `profile` WHERE `is-default`");
47 foreach ($profiles as $profile) {
48 if ($profile["about"].$profile["locality"].$profile["pub_keywords"].$profile["gender"] == "") {
52 $profile["pub_keywords"] = profile_clean_keywords($profile["pub_keywords"]);
54 $r = q("UPDATE `contact` SET `about` = '%s', `location` = '%s', `keywords` = '%s', `gender` = '%s' WHERE `self` AND `uid` = %d",
55 DBA::escape($profile["about"]),
56 DBA::escape($profile["locality"]),
57 DBA::escape($profile["pub_keywords"]),
58 DBA::escape($profile["gender"]),
59 intval($profile["uid"])
64 function update_1179()
66 if (DI::config()->get('system', 'no_community_page')) {
67 DI::config()->set('system', 'community_page_style', CP_NO_COMMUNITY_PAGE);
70 // Update the central item storage with uid=0
71 Worker::add(PRIORITY_LOW, "threadupdate");
73 return Update::SUCCESS;
76 function update_1181()
79 // Fill the new fields in the term table.
80 Worker::add(PRIORITY_LOW, "TagUpdate");
82 return Update::SUCCESS;
85 function update_1189()
88 if (strlen(DI::config()->get('system', 'directory_submit_url')) &&
89 !strlen(DI::config()->get('system', 'directory'))) {
90 DI::config()->set('system', 'directory', dirname(DI::config()->get('system', 'directory_submit_url')));
91 DI::config()->delete('system', 'directory_submit_url');
94 return Update::SUCCESS;
97 function update_1191()
99 DI::config()->set('system', 'maintenance', 1);
101 if (Addon::isEnabled('forumlist')) {
102 $addon = 'forumlist';
103 $addons = DI::config()->get('system', 'addon');
107 $addons_arr = explode(",", str_replace(" ", "", $addons));
109 $idx = array_search($addon, $addons_arr);
110 if ($idx !== false) {
111 unset($addons_arr[$idx]);
112 //delete forumlist manually from addon and hook table
113 // since Addon::uninstall() don't work here
114 q("DELETE FROM `addon` WHERE `name` = 'forumlist' ");
115 q("DELETE FROM `hook` WHERE `file` = 'addon/forumlist/forumlist.php' ");
116 DI::config()->set('system', 'addon', implode(", ", $addons_arr));
121 // select old formlist addon entries
122 $r = q("SELECT `uid`, `cat`, `k`, `v` FROM `pconfig` WHERE `cat` = '%s' ",
123 DBA::escape('forumlist')
126 // convert old forumlist addon entries in new config entries
127 if (DBA::isResult($r)) {
128 foreach ($r as $rr) {
130 $family = $rr['cat'];
134 if ($key === 'randomise') {
135 DI::pConfig()->delete($uid, $family, $key);
138 if ($key === 'show_on_profile') {
140 DI::pConfig()->set($uid, feature, forumlist_profile, $value);
143 DI::pConfig()->delete($uid, $family, $key);
146 if ($key === 'show_on_network') {
148 DI::pConfig()->set($uid, feature, forumlist_widget, $value);
151 DI::pConfig()->delete($uid, $family, $key);
156 DI::config()->set('system', 'maintenance', 0);
158 return Update::SUCCESS;
161 function update_1203()
163 $r = q("UPDATE `user` SET `account-type` = %d WHERE `page-flags` IN (%d, %d)",
164 DBA::escape(User::ACCOUNT_TYPE_COMMUNITY),
165 DBA::escape(User::PAGE_FLAGS_COMMUNITY),
166 DBA::escape(User::PAGE_FLAGS_PRVGROUP)
170 function update_1244()
172 // Sets legacy_password for all legacy hashes
173 DBA::update('user', ['legacy_password' => true], ['SUBSTR(password, 1, 4) != "$2y$"']);
175 // All legacy hashes are re-hashed using the new secure hashing function
176 $stmt = DBA::select('user', ['uid', 'password'], ['legacy_password' => true]);
177 while ($user = DBA::fetch($stmt)) {
178 DBA::update('user', ['password' => User::hashPassword($user['password'])], ['uid' => $user['uid']]);
181 // Logged in users are forcibly logged out
182 DBA::delete('session', ['1 = 1']);
184 return Update::SUCCESS;
187 function update_1245()
189 $rino = DI::config()->get('system', 'rino_encrypt');
192 return Update::SUCCESS;
195 DI::config()->set('system', 'rino_encrypt', 1);
197 return Update::SUCCESS;
200 function update_1247()
202 // Removing hooks with the old name
203 DBA::e("DELETE FROM `hook`
204 WHERE `hook` LIKE 'plugin_%'");
206 // Make sure we install the new renamed ones
210 function update_1260()
212 DI::config()->set('system', 'maintenance', 1);
215 'maintenance_reason',
217 '%s: Updating author-id and owner-id in item and thread table. ',
218 DateTimeFormat::utcNow().' '.date('e')
222 $items = DBA::p("SELECT `id`, `owner-link`, `owner-name`, `owner-avatar`, `network` FROM `item`
223 WHERE `owner-id` = 0 AND `owner-link` != ''");
224 while ($item = DBA::fetch($items)) {
225 $contact = ['url' => $item['owner-link'], 'name' => $item['owner-name'],
226 'photo' => $item['owner-avatar'], 'network' => $item['network']];
227 $cid = Contact::getIdForURL($item['owner-link'], 0, false, $contact);
231 Item::update(['owner-id' => $cid], ['id' => $item['id']]);
235 DBA::e("UPDATE `thread` INNER JOIN `item` ON `thread`.`iid` = `item`.`id`
236 SET `thread`.`owner-id` = `item`.`owner-id` WHERE `thread`.`owner-id` = 0");
238 $items = DBA::p("SELECT `id`, `author-link`, `author-name`, `author-avatar`, `network` FROM `item`
239 WHERE `author-id` = 0 AND `author-link` != ''");
240 while ($item = DBA::fetch($items)) {
241 $contact = ['url' => $item['author-link'], 'name' => $item['author-name'],
242 'photo' => $item['author-avatar'], 'network' => $item['network']];
243 $cid = Contact::getIdForURL($item['author-link'], 0, false, $contact);
247 Item::update(['author-id' => $cid], ['id' => $item['id']]);
251 DBA::e("UPDATE `thread` INNER JOIN `item` ON `thread`.`iid` = `item`.`id`
252 SET `thread`.`author-id` = `item`.`author-id` WHERE `thread`.`author-id` = 0");
254 DI::config()->set('system', 'maintenance', 0);
255 return Update::SUCCESS;
258 function update_1261()
260 // This fixes the results of an issue in the develop branch of 2018-05.
261 DBA::update('contact', ['blocked' => false, 'pending' => false], ['uid' => 0, 'blocked' => true, 'pending' => true]);
262 return Update::SUCCESS;
265 function update_1278()
267 DI::config()->set('system', 'maintenance', 1);
270 'maintenance_reason',
272 '%s: Updating post-type.',
273 DateTimeFormat::utcNow().' '.date('e')
277 Item::update(['post-type' => Item::PT_PAGE], ['bookmark' => true]);
278 Item::update(['post-type' => Item::PT_PERSONAL_NOTE], ['type' => 'note']);
280 DI::config()->set('system', 'maintenance', 0);
282 return Update::SUCCESS;
285 function update_1288()
287 // Updates missing `uri-id` values
289 DBA::e("UPDATE `item-activity` INNER JOIN `item` ON `item`.`iaid` = `item-activity`.`id` SET `item-activity`.`uri-id` = `item`.`uri-id` WHERE `item-activity`.`uri-id` IS NULL OR `item-activity`.`uri-id` = 0");
290 DBA::e("UPDATE `item-content` INNER JOIN `item` ON `item`.`icid` = `item-content`.`id` SET `item-content`.`uri-id` = `item`.`uri-id` WHERE `item-content`.`uri-id` IS NULL OR `item-content`.`uri-id` = 0");
292 return Update::SUCCESS;
295 // Post-update script of PR 5751
296 function update_1298()
298 $keys = ['gender', 'marital', 'sexual'];
299 foreach ($keys as $translateKey) {
300 $allData = DBA::select('profile', ['id', $translateKey]);
301 $allLangs = DI::l10n()->getAvailableLanguages();
304 foreach ($allData as $key => $data) {
305 $toTranslate = $data[$translateKey];
306 if ($toTranslate != '') {
307 foreach ($allLangs as $key => $lang) {
308 $a = new \stdClass();
311 // First we get the the localizations
312 if (file_exists("view/lang/$lang/strings.php")) {
313 include "view/lang/$lang/strings.php";
315 if (file_exists("addon/morechoice/lang/$lang/strings.php")) {
316 include "addon/morechoice/lang/$lang/strings.php";
319 $localizedStrings = $a->strings;
322 $key = array_search($toTranslate, $localizedStrings);
323 if ($key !== false) {
327 // defaulting to empty string
334 DBA::update('profile', [$translateKey => $key], ['id' => $data['id']]);
335 Logger::notice('Updated contact', ['action' => 'update', 'contact' => $data['id'], "$translateKey" => $key,
336 'was' => $data[$translateKey]]);
337 Worker::add(PRIORITY_LOW, 'ProfileUpdate', $data['id']);
338 Contact::updateSelfFromUserID($data['id']);
339 GContact::updateForUser($data['id']);
345 Logger::notice($translateKey . " fix completed", ['action' => 'update', 'translateKey' => $translateKey, 'Success' => $success, 'Fail' => $fail ]);
347 return Update::SUCCESS;
350 function update_1309()
352 $queue = DBA::select('queue', ['id', 'cid', 'guid']);
353 while ($entry = DBA::fetch($queue)) {
354 $contact = DBA::selectFirst('contact', ['uid'], ['id' => $entry['cid']]);
355 if (!DBA::isResult($contact)) {
359 $item = Item::selectFirst(['id', 'gravity'], ['uid' => $contact['uid'], 'guid' => $entry['guid']]);
360 if (!DBA::isResult($item)) {
364 $deliver_options = ['priority' => PRIORITY_MEDIUM, 'dont_fork' => true];
365 Worker::add($deliver_options, 'Delivery', Delivery::POST, $item['id'], $entry['cid']);
366 Logger::info('Added delivery worker', ['command' => $cmd, 'item' => $item['id'], 'contact' => $entry['cid']]);
367 DBA::delete('queue', ['id' => $entry['id']]);
369 return Update::SUCCESS;
372 function update_1315()
374 DBA::delete('item-delivery-data', ['postopts' => '', 'inform' => '', 'queue_count' => 0, 'queue_done' => 0]);
375 return Update::SUCCESS;
378 function update_1318()
380 DBA::update('profile', ['marital' => "In a relation"], ['marital' => "Unavailable"]);
381 DBA::update('profile', ['marital' => "Single"], ['marital' => "Available"]);
383 Worker::add(PRIORITY_LOW, 'ProfileUpdate');
384 return Update::SUCCESS;
387 function update_1323()
389 $users = DBA::select('user', ['uid']);
390 while ($user = DBA::fetch($users)) {
391 Contact::updateSelfFromUserID($user['uid']);
395 return Update::SUCCESS;
398 function update_1327()
400 $contacts = DBA::select('contact', ['uid', 'id', 'blocked', 'readonly'], ["`uid` != ? AND (`blocked` OR `readonly`) AND NOT `pending`", 0]);
401 while ($contact = DBA::fetch($contacts)) {
402 Contact::setBlockedForUser($contact['id'], $contact['uid'], $contact['blocked']);
403 Contact::setIgnoredForUser($contact['id'], $contact['uid'], $contact['readonly']);
405 DBA::close($contacts);
407 return Update::SUCCESS;
410 function update_1330()
412 $currStorage = DI::config()->get('storage', 'class', '');
414 // set the name of the storage instead of the classpath as config
415 if (!empty($currStorage)) {
416 /** @var Storage\IStorage $currStorage */
417 if (!DI::config()->set('storage', 'name', $currStorage::getName())) {
418 return Update::FAILED;
421 // try to delete the class since it isn't needed. This won't work with config files
422 DI::config()->delete('storage', 'class');
425 // Update attachments and photos
426 if (!DBA::p("UPDATE `photo` SET `photo`.`backend-class` = SUBSTR(`photo`.`backend-class`, 25) WHERE `photo`.`backend-class` LIKE 'Friendica\\\Model\\\Storage\\\%' ESCAPE '|'") ||
427 !DBA::p("UPDATE `attach` SET `attach`.`backend-class` = SUBSTR(`attach`.`backend-class`, 25) WHERE `attach`.`backend-class` LIKE 'Friendica\\\Model\\\Storage\\\%' ESCAPE '|'")) {
428 return Update::FAILED;
431 return Update::SUCCESS;