]> git.mxchange.org Git - friendica.git/blob - update.php
Merge remote-tracking branch 'upstream/develop' into comment-public
[friendica.git] / update.php
1 <?php
2
3 use Friendica\Core\Config;
4 use Friendica\Core\PConfig;
5 use Friendica\Core\Worker;
6 use Friendica\Database\DBM;
7 use Friendica\Model\Photo;
8 use Friendica\Object\Image;
9
10 /**
11  *
12  * update.php - automatic system update
13  *
14  * This function is responsible for doing post update changes to the data
15  * (not the structure) in the database.
16  *
17  * Database structure changes are done in src/Database/DBStructure.php
18  *
19  * If there is a need for a post process to a structure change, update this file
20  * by adding a new function at the end with the number of the new DB_UPDATE_VERSION.
21  *
22  * The numbered script in this file has to be exactly like the DB_UPDATE_VERSION
23  *
24  * Example:
25  * You are currently on version 4711 and you are preparing changes that demand an update script.
26  *
27  * 1. Create a function "update_4712()" here in the update.php
28  * 2. Apply the needed structural changes in src/Database/DBStructure.php
29  * 3. Set DB_UPDATE_VERSION in boot.php to 4712.
30  */
31
32 function update_1178() {
33         require_once 'mod/profiles.php';
34
35         $profiles = q("SELECT `uid`, `about`, `locality`, `pub_keywords`, `gender` FROM `profile` WHERE `is-default`");
36
37         foreach ($profiles AS $profile) {
38                 if ($profile["about"].$profile["locality"].$profile["pub_keywords"].$profile["gender"] == "")
39                         continue;
40
41                 $profile["pub_keywords"] = profile_clean_keywords($profile["pub_keywords"]);
42
43                 $r = q("UPDATE `contact` SET `about` = '%s', `location` = '%s', `keywords` = '%s', `gender` = '%s' WHERE `self` AND `uid` = %d",
44                                 dbesc($profile["about"]),
45                                 dbesc($profile["locality"]),
46                                 dbesc($profile["pub_keywords"]),
47                                 dbesc($profile["gender"]),
48                                 intval($profile["uid"])
49                         );
50         }
51 }
52
53 function update_1179() {
54         if (Config::get('system','no_community_page'))
55                 Config::set('system','community_page_style', CP_NO_COMMUNITY_PAGE);
56
57         // Update the central item storage with uid=0
58         Worker::add(PRIORITY_LOW, "threadupdate");
59
60         return UPDATE_SUCCESS;
61 }
62
63 function update_1181() {
64
65         // Fill the new fields in the term table.
66         Worker::add(PRIORITY_LOW, "TagUpdate");
67
68         return UPDATE_SUCCESS;
69 }
70
71 function update_1189() {
72
73         if (strlen(Config::get('system','directory_submit_url')) &&
74                 !strlen(Config::get('system','directory'))) {
75                 Config::set('system','directory', dirname(Config::get('system','directory_submit_url')));
76                 Config::delete('system','directory_submit_url');
77         }
78
79         return UPDATE_SUCCESS;
80 }
81
82 function update_1191() {
83
84         require_once 'include/plugin.php';
85
86         Config::set('system', 'maintenance', 1);
87
88         if (plugin_enabled('forumlist')) {
89                 $plugin = 'forumlist';
90                 $plugins = Config::get('system','addon');
91                 $plugins_arr = array();
92
93                 if ($plugins) {
94                         $plugins_arr = explode(",",str_replace(" ", "",$plugins));
95
96                         $idx = array_search($plugin, $plugins_arr);
97                         if ($idx !== false){
98                                 unset($plugins_arr[$idx]);
99                                 //delete forumlist manually from addon and hook table
100                                 // since uninstall_plugin() don't work here
101                                 q("DELETE FROM `addon` WHERE `name` = 'forumlist' ");
102                                 q("DELETE FROM `hook` WHERE `file` = 'addon/forumlist/forumlist.php' ");
103                                 Config::set('system','addon', implode(", ",$plugins_arr));
104                         }
105                 }
106         }
107
108         // select old formlist addon entries
109         $r = q("SELECT `uid`, `cat`, `k`, `v` FROM `pconfig` WHERE `cat` = '%s' ",
110                 dbesc('forumlist')
111         );
112
113         // convert old forumlist addon entries in new config entries
114         if (DBM::is_result($r)) {
115                 foreach ($r as $rr) {
116                         $uid = $rr['uid'];
117                         $family = $rr['cat'];
118                         $key = $rr['k'];
119                         $value = $rr['v'];
120
121                         if ($key === 'randomise')
122                                 PConfig::delete($uid,$family,$key);
123
124                         if ($key === 'show_on_profile') {
125                                 if ($value)
126                                         PConfig::set($uid,feature,forumlist_profile,$value);
127
128                                 PConfig::delete($uid,$family,$key);
129                         }
130
131                         if ($key === 'show_on_network') {
132                                 if ($value)
133                                         PConfig::set($uid,feature,forumlist_widget,$value);
134
135                                 PConfig::delete($uid,$family,$key);
136                         }
137                 }
138         }
139
140         Config::set('system', 'maintenance', 0);
141
142         return UPDATE_SUCCESS;
143
144 }
145
146 function update_1203() {
147         $r = q("UPDATE `user` SET `account-type` = %d WHERE `page-flags` IN (%d, %d)",
148                 dbesc(ACCOUNT_TYPE_COMMUNITY), dbesc(PAGE_COMMUNITY), dbesc(PAGE_PRVGROUP));
149 }