]> git.mxchange.org Git - friendica.git/blob - update.php
Corrected placeholders
[friendica.git] / update.php
1 <?php
2
3 use Friendica\Core\Addon;
4 use Friendica\Core\Config;
5 use Friendica\Core\PConfig;
6 use Friendica\Core\Worker;
7 use Friendica\Database\DBM;
8 use Friendica\Model\Contact;
9 use Friendica\Model\Item;
10 use Friendica\Model\User;
11
12 require_once 'include/dba.php';
13
14 /**
15  *
16  * update.php - automatic system update
17  *
18  * This function is responsible for doing post update changes to the data
19  * (not the structure) in the database.
20  *
21  * Database structure changes are done in src/Database/DBStructure.php
22  *
23  * If there is a need for a post process to a structure change, update this file
24  * by adding a new function at the end with the number of the new DB_UPDATE_VERSION.
25  *
26  * The numbered script in this file has to be exactly like the DB_UPDATE_VERSION
27  *
28  * Example:
29  * You are currently on version 4711 and you are preparing changes that demand an update script.
30  *
31  * 1. Create a function "update_4712()" here in the update.php
32  * 2. Apply the needed structural changes in src/Database/DBStructure.php
33  * 3. Set DB_UPDATE_VERSION in boot.php to 4712.
34  */
35
36 function update_1178() {
37         require_once 'mod/profiles.php';
38
39         $profiles = q("SELECT `uid`, `about`, `locality`, `pub_keywords`, `gender` FROM `profile` WHERE `is-default`");
40
41         foreach ($profiles AS $profile) {
42                 if ($profile["about"].$profile["locality"].$profile["pub_keywords"].$profile["gender"] == "")
43                         continue;
44
45                 $profile["pub_keywords"] = profile_clean_keywords($profile["pub_keywords"]);
46
47                 $r = q("UPDATE `contact` SET `about` = '%s', `location` = '%s', `keywords` = '%s', `gender` = '%s' WHERE `self` AND `uid` = %d",
48                                 dbesc($profile["about"]),
49                                 dbesc($profile["locality"]),
50                                 dbesc($profile["pub_keywords"]),
51                                 dbesc($profile["gender"]),
52                                 intval($profile["uid"])
53                         );
54         }
55 }
56
57 function update_1179() {
58         if (Config::get('system','no_community_page'))
59                 Config::set('system','community_page_style', CP_NO_COMMUNITY_PAGE);
60
61         // Update the central item storage with uid=0
62         Worker::add(PRIORITY_LOW, "threadupdate");
63
64         return UPDATE_SUCCESS;
65 }
66
67 function update_1181() {
68
69         // Fill the new fields in the term table.
70         Worker::add(PRIORITY_LOW, "TagUpdate");
71
72         return UPDATE_SUCCESS;
73 }
74
75 function update_1189() {
76
77         if (strlen(Config::get('system','directory_submit_url')) &&
78                 !strlen(Config::get('system','directory'))) {
79                 Config::set('system','directory', dirname(Config::get('system','directory_submit_url')));
80                 Config::delete('system','directory_submit_url');
81         }
82
83         return UPDATE_SUCCESS;
84 }
85
86 function update_1191() {
87
88         Config::set('system', 'maintenance', 1);
89
90         if (Addon::isEnabled('forumlist')) {
91                 $addon = 'forumlist';
92                 $addons = Config::get('system', 'addon');
93                 $addons_arr = [];
94
95                 if ($addons) {
96                         $addons_arr = explode(",",str_replace(" ", "", $addons));
97
98                         $idx = array_search($addon, $addons_arr);
99                         if ($idx !== false){
100                                 unset($addons_arr[$idx]);
101                                 //delete forumlist manually from addon and hook table
102                                 // since Addon::uninstall() don't work here
103                                 q("DELETE FROM `addon` WHERE `name` = 'forumlist' ");
104                                 q("DELETE FROM `hook` WHERE `file` = 'addon/forumlist/forumlist.php' ");
105                                 Config::set('system','addon', implode(", ", $addons_arr));
106                         }
107                 }
108         }
109
110         // select old formlist addon entries
111         $r = q("SELECT `uid`, `cat`, `k`, `v` FROM `pconfig` WHERE `cat` = '%s' ",
112                 dbesc('forumlist')
113         );
114
115         // convert old forumlist addon entries in new config entries
116         if (DBM::is_result($r)) {
117                 foreach ($r as $rr) {
118                         $uid = $rr['uid'];
119                         $family = $rr['cat'];
120                         $key = $rr['k'];
121                         $value = $rr['v'];
122
123                         if ($key === 'randomise')
124                                 PConfig::delete($uid,$family,$key);
125
126                         if ($key === 'show_on_profile') {
127                                 if ($value)
128                                         PConfig::set($uid,feature,forumlist_profile,$value);
129
130                                 PConfig::delete($uid,$family,$key);
131                         }
132
133                         if ($key === 'show_on_network') {
134                                 if ($value)
135                                         PConfig::set($uid,feature,forumlist_widget,$value);
136
137                                 PConfig::delete($uid,$family,$key);
138                         }
139                 }
140         }
141
142         Config::set('system', 'maintenance', 0);
143
144         return UPDATE_SUCCESS;
145
146 }
147
148 function update_1203() {
149         $r = q("UPDATE `user` SET `account-type` = %d WHERE `page-flags` IN (%d, %d)",
150                 dbesc(ACCOUNT_TYPE_COMMUNITY), dbesc(PAGE_COMMUNITY), dbesc(PAGE_PRVGROUP));
151 }
152
153 function update_1244() {
154         // Sets legacy_password for all legacy hashes
155         dba::update('user', ['legacy_password' => true], ['SUBSTR(password, 1, 4) != "$2y$"']);
156
157         // All legacy hashes are re-hashed using the new secure hashing function
158         $stmt = dba::select('user', ['uid', 'password'], ['legacy_password' => true]);
159         while($user = dba::fetch($stmt)) {
160                 dba::update('user', ['password' => User::hashPassword($user['password'])], ['uid' => $user['uid']]);
161         }
162
163         // Logged in users are forcibly logged out
164         dba::delete('session', ['1 = 1']);
165
166         return UPDATE_SUCCESS;
167 }
168
169 function update_1245() {
170         $rino = Config::get('system', 'rino_encrypt');
171
172         if (!$rino) {
173                 return UPDATE_SUCCESS;
174         }
175
176         Config::set('system', 'rino_encrypt', 1);
177
178         return UPDATE_SUCCESS;
179 }
180
181 function update_1247() {
182         // Removing hooks with the old name
183         dba::e("DELETE FROM `hook`
184 WHERE `hook` LIKE 'plugin_%'");
185
186         // Make sure we install the new renamed ones
187         Addon::reload();
188 }
189
190 function update_1260() {
191         Config::set('system', 'maintenance', 1);
192         Config::set('system', 'maintenance_reason', L10n::t('%s: Updating author-id and owner-id in item and thread table. ', DBM::date().' '.date('e')));
193
194         $items = dba::p("SELECT `id`, `owner-link`, `owner-name`, `owner-avatar`, `network` FROM `item`
195                 WHERE `owner-id` = 0 AND `owner-link` != ''");
196         while ($item = dba::fetch($items)) {
197                 $contact = ['url' => $item['owner-link'], 'name' => $item['owner-name'],
198                         'avatar' => $item['owner-avatar'], 'network' => $item['network']];
199                 $cid = Contact::getIdForURL($item['owner-link'], 0, false, $contact);
200                 if (empty($cid)) {
201                         continue;
202                 }
203                 Item::update(['owner-id' => $cid], ['id' => $item['id']]);
204         }
205         dba::close($items);
206
207         dba::e("UPDATE `thread` INNER JOIN `item` ON `thread`.`iid` = `item`.`id`
208                 SET `thread`.`owner-id` = `item`.`owner-id` WHERE `thread`.`owner-id` = 0");
209
210         $items = dba::p("SELECT `id`, `author-link`, `author-name`, `author-avatar`, `network` FROM `item`
211                 WHERE `author-id` = 0 AND `author-link` != ''");
212         while ($item = dba::fetch($items)) {
213                 $contact = ['url' => $item['author-link'], 'name' => $item['author-name'],
214                         'avatar' => $item['author-avatar'], 'network' => $item['network']];
215                 $cid = Contact::getIdForURL($item['author-link'], 0, false, $contact);
216                 if (empty($cid)) {
217                         continue;
218                 }
219                 Item::update(['author-id' => $cid], ['id' => $item['id']]);
220         }
221         dba::close($items);
222
223         dba::e("UPDATE `thread` INNER JOIN `item` ON `thread`.`iid` = `item`.`id`
224                 SET `thread`.`author-id` = `item`.`author-id` WHERE `thread`.`author-id` = 0");
225
226         Config::set('system', 'maintenance', 0);
227         return UPDATE_SUCCESS;
228 }