3 use Friendica\Core\Addon;
4 use Friendica\Core\Config;
5 use Friendica\Core\L10n;
6 use Friendica\Core\Logger;
7 use Friendica\Core\PConfig;
8 use Friendica\Core\Update;
9 use Friendica\Core\Worker;
10 use Friendica\Database\DBA;
11 use Friendica\Model\Contact;
12 use Friendica\Model\GContact;
13 use Friendica\Model\Item;
14 use Friendica\Model\User;
15 use Friendica\Util\DateTimeFormat;
19 * update.php - automatic system update
21 * This function is responsible for doing post update changes to the data
22 * (not the structure) in the database.
24 * Database structure changes are done in config/dbstructure.config.php
26 * If there is a need for a post process 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 config/dbStructure.php
36 * 3. Set DB_UPDATE_VERSION in config/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 (Config::get('system', 'no_community_page')) {
67 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(Config::get('system', 'directory_submit_url')) &&
89 !strlen(Config::get('system', 'directory'))) {
90 Config::set('system', 'directory', dirname(Config::get('system', 'directory_submit_url')));
91 Config::delete('system', 'directory_submit_url');
94 return Update::SUCCESS;
97 function update_1191()
99 Config::set('system', 'maintenance', 1);
101 if (Addon::isEnabled('forumlist')) {
102 $addon = 'forumlist';
103 $addons = 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 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 PConfig::delete($uid, $family, $key);
138 if ($key === 'show_on_profile') {
140 PConfig::set($uid, feature, forumlist_profile, $value);
143 PConfig::delete($uid, $family, $key);
146 if ($key === 'show_on_network') {
148 PConfig::set($uid, feature, forumlist_widget, $value);
151 PConfig::delete($uid, $family, $key);
156 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 = Config::get('system', 'rino_encrypt');
192 return Update::SUCCESS;
195 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 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 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 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 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 = 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;