]> git.mxchange.org Git - friendica.git/blob - update.php
Filesystem storage: set permission on folders and files
[friendica.git] / update.php
1 <?php
2
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;
16
17 /**
18  *
19  * update.php - automatic system update
20  *
21  * This function is responsible for doing post update changes to the data
22  * (not the structure) in the database.
23  *
24  * Database structure changes are done in config/dbstructure.config.php
25  *
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.
28  *
29  * The numbered script in this file has to be exactly like the DB_UPDATE_VERSION
30  *
31  * Example:
32  * You are currently on version 4711 and you are preparing changes that demand an update script.
33  *
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.
37  *
38  * If you need to run a script before the database update, name the function "pre_update_4712()"
39  */
40
41 function update_1178()
42 {
43         require_once 'mod/profiles.php';
44
45         $profiles = q("SELECT `uid`, `about`, `locality`, `pub_keywords`, `gender` FROM `profile` WHERE `is-default`");
46
47         foreach ($profiles as $profile) {
48                 if ($profile["about"].$profile["locality"].$profile["pub_keywords"].$profile["gender"] == "") {
49                         continue;
50                 }
51
52                 $profile["pub_keywords"] = profile_clean_keywords($profile["pub_keywords"]);
53
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"])
60                 );
61         }
62 }
63
64 function update_1179()
65 {
66         if (Config::get('system', 'no_community_page')) {
67                 Config::set('system', 'community_page_style', CP_NO_COMMUNITY_PAGE);
68         }
69
70         // Update the central item storage with uid=0
71         Worker::add(PRIORITY_LOW, "threadupdate");
72
73         return Update::SUCCESS;
74 }
75
76 function update_1181()
77 {
78
79         // Fill the new fields in the term table.
80         Worker::add(PRIORITY_LOW, "TagUpdate");
81
82         return Update::SUCCESS;
83 }
84
85 function update_1189()
86 {
87
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');
92         }
93
94         return Update::SUCCESS;
95 }
96
97 function update_1191()
98 {
99         Config::set('system', 'maintenance', 1);
100
101         if (Addon::isEnabled('forumlist')) {
102                 $addon = 'forumlist';
103                 $addons = Config::get('system', 'addon');
104                 $addons_arr = [];
105
106                 if ($addons) {
107                         $addons_arr = explode(",", str_replace(" ", "", $addons));
108
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));
117                         }
118                 }
119         }
120
121         // select old formlist addon entries
122         $r = q("SELECT `uid`, `cat`, `k`, `v` FROM `pconfig` WHERE `cat` = '%s' ",
123                 DBA::escape('forumlist')
124         );
125
126         // convert old forumlist addon entries in new config entries
127         if (DBA::isResult($r)) {
128                 foreach ($r as $rr) {
129                         $uid = $rr['uid'];
130                         $family = $rr['cat'];
131                         $key = $rr['k'];
132                         $value = $rr['v'];
133
134                         if ($key === 'randomise') {
135                                 PConfig::delete($uid, $family, $key);
136                         }
137
138                         if ($key === 'show_on_profile') {
139                                 if ($value) {
140                                         PConfig::set($uid, feature, forumlist_profile, $value);
141                                 }
142
143                                 PConfig::delete($uid, $family, $key);
144                         }
145
146                         if ($key === 'show_on_network') {
147                                 if ($value) {
148                                         PConfig::set($uid, feature, forumlist_widget, $value);
149                                 }
150
151                                 PConfig::delete($uid, $family, $key);
152                         }
153                 }
154         }
155
156         Config::set('system', 'maintenance', 0);
157
158         return Update::SUCCESS;
159 }
160
161 function update_1203()
162 {
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)
167         );
168 }
169
170 function update_1244()
171 {
172         // Sets legacy_password for all legacy hashes
173         DBA::update('user', ['legacy_password' => true], ['SUBSTR(password, 1, 4) != "$2y$"']);
174
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']]);
179         }
180
181         // Logged in users are forcibly logged out
182         DBA::delete('session', ['1 = 1']);
183
184         return Update::SUCCESS;
185 }
186
187 function update_1245()
188 {
189         $rino = Config::get('system', 'rino_encrypt');
190
191         if (!$rino) {
192                 return Update::SUCCESS;
193         }
194
195         Config::set('system', 'rino_encrypt', 1);
196
197         return Update::SUCCESS;
198 }
199
200 function update_1247()
201 {
202         // Removing hooks with the old name
203         DBA::e("DELETE FROM `hook`
204 WHERE `hook` LIKE 'plugin_%'");
205
206         // Make sure we install the new renamed ones
207         Addon::reload();
208 }
209
210 function update_1260()
211 {
212         Config::set('system', 'maintenance', 1);
213         Config::set(
214                 'system',
215                 'maintenance_reason',
216                 L10n::t(
217                         '%s: Updating author-id and owner-id in item and thread table. ',
218                         DateTimeFormat::utcNow().' '.date('e')
219                 )
220         );
221
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);
228                 if (empty($cid)) {
229                         continue;
230                 }
231                 Item::update(['owner-id' => $cid], ['id' => $item['id']]);
232         }
233         DBA::close($items);
234
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");
237
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);
244                 if (empty($cid)) {
245                         continue;
246                 }
247                 Item::update(['author-id' => $cid], ['id' => $item['id']]);
248         }
249         DBA::close($items);
250
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");
253
254         Config::set('system', 'maintenance', 0);
255         return Update::SUCCESS;
256 }
257
258 function update_1261()
259 {
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;
263 }
264
265 function update_1278()
266 {
267         Config::set('system', 'maintenance', 1);
268         Config::set(
269                 'system',
270                 'maintenance_reason',
271                 L10n::t(
272                         '%s: Updating post-type.',
273                         DateTimeFormat::utcNow().' '.date('e')
274                 )
275         );
276
277         Item::update(['post-type' => Item::PT_PAGE], ['bookmark' => true]);
278         Item::update(['post-type' => Item::PT_PERSONAL_NOTE], ['type' => 'note']);
279
280         Config::set('system', 'maintenance', 0);
281
282         return Update::SUCCESS;
283 }
284
285 function update_1288()
286 {
287         // Updates missing `uri-id` values
288
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");
291
292         return Update::SUCCESS;
293 }
294
295 // Post-update script of PR 5751
296 function update_1298()
297 {
298         $keys = ['gender', 'marital', 'sexual'];
299         foreach ($keys as $translateKey) {
300                 $allData = DBA::select('profile', ['id', $translateKey]);
301                 $allLangs = L10n::getAvailableLanguages();
302                 $success = 0;
303                 $fail = 0;
304                 foreach ($allData as $key => $data) {
305                         $toTranslate = $data[$translateKey];
306                         if ($toTranslate != '') {
307                                 foreach ($allLangs as $key => $lang) {
308                                         $a = new \stdClass();
309                                         $a->strings = [];
310
311                                         // First we get the the localizations
312                                         if (file_exists("view/lang/$lang/strings.php")) {
313                                                 include "view/lang/$lang/strings.php";
314                                         }
315                                         if (file_exists("addon/morechoice/lang/$lang/strings.php")) {
316                                                 include "addon/morechoice/lang/$lang/strings.php";
317                                         }
318
319                                         $localizedStrings = $a->strings;
320                                         unset($a);
321
322                                         $key = array_search($toTranslate, $localizedStrings);
323                                         if ($key !== false) {
324                                                 break;
325                                         }
326
327                                         // defaulting to empty string
328                                         $key = '';
329                                 }
330
331                                 if ($key == '') {
332                                         $fail++;
333                                 } else {
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']);
340                                         $success++;
341                                 }
342                         }
343                 }
344
345                 Logger::notice($translateKey . " fix completed", ['action' => 'update', 'translateKey' => $translateKey, 'Success' => $success, 'Fail' => $fail ]);
346         }
347         return Update::SUCCESS;
348 }