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