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;
12 * update.php - automatic system update
14 * This function is responsible for doing post update changes to the data
15 * (not the structure) in the database.
17 * Database structure changes are done in src/Database/DBStructure.php
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.
22 * The numbered script in this file has to be exactly like the DB_UPDATE_VERSION
25 * You are currently on version 4711 and you are preparing changes that demand an update script.
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.
32 function update_1178() {
33 require_once 'mod/profiles.php';
35 $profiles = q("SELECT `uid`, `about`, `locality`, `pub_keywords`, `gender` FROM `profile` WHERE `is-default`");
37 foreach ($profiles AS $profile) {
38 if ($profile["about"].$profile["locality"].$profile["pub_keywords"].$profile["gender"] == "")
41 $profile["pub_keywords"] = profile_clean_keywords($profile["pub_keywords"]);
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"])
53 function update_1179() {
54 if (Config::get('system','no_community_page'))
55 Config::set('system','community_page_style', CP_NO_COMMUNITY_PAGE);
57 // Update the central item storage with uid=0
58 Worker::add(PRIORITY_LOW, "threadupdate");
60 return UPDATE_SUCCESS;
63 function update_1181() {
65 // Fill the new fields in the term table.
66 Worker::add(PRIORITY_LOW, "TagUpdate");
68 return UPDATE_SUCCESS;
71 function update_1189() {
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');
79 return UPDATE_SUCCESS;
82 function update_1191() {
84 require_once 'include/plugin.php';
86 Config::set('system', 'maintenance', 1);
88 if (plugin_enabled('forumlist')) {
89 $plugin = 'forumlist';
90 $plugins = Config::get('system','addon');
94 $plugins_arr = explode(",",str_replace(" ", "",$plugins));
96 $idx = array_search($plugin, $plugins_arr);
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));
108 // select old formlist addon entries
109 $r = q("SELECT `uid`, `cat`, `k`, `v` FROM `pconfig` WHERE `cat` = '%s' ",
113 // convert old forumlist addon entries in new config entries
114 if (DBM::is_result($r)) {
115 foreach ($r as $rr) {
117 $family = $rr['cat'];
121 if ($key === 'randomise')
122 PConfig::delete($uid,$family,$key);
124 if ($key === 'show_on_profile') {
126 PConfig::set($uid,feature,forumlist_profile,$value);
128 PConfig::delete($uid,$family,$key);
131 if ($key === 'show_on_network') {
133 PConfig::set($uid,feature,forumlist_widget,$value);
135 PConfig::delete($uid,$family,$key);
140 Config::set('system', 'maintenance', 0);
142 return UPDATE_SUCCESS;
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));