Replaced the global variables for table styles to defined CSS classes.
[fa-stable.git] / admin / inst_upgrade.php
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 $page_security = 'SA_SOFTWAREUPGRADE';
13 $path_to_root="..";
14 include_once($path_to_root . "/includes/session.inc");
15
16 page(_($help_context = "Software Upgrade"));
17
18 include_once($path_to_root . "/includes/date_functions.inc");
19 include_once($path_to_root . "/admin/db/company_db.inc");
20 include_once($path_to_root . "/admin/db/maintenance_db.inc");
21 include_once($path_to_root . "/includes/ui.inc");
22
23 //
24 //      Checks $field existence in $table with given field $properties
25 //      $table - table name without prefix
26 //  $field -  optional field name
27 //  $properties - optional properties of field defined by MySQL:
28 //              'Type', 'Null', 'Key', 'Default', 'Extra'
29 //
30 function check_table($pref, $table, $field=null, $properties=null)
31 {
32         $tables = @db_query("SHOW TABLES LIKE '".$pref.$table."'");
33         if (!db_num_rows($tables))
34                 return 1;               // no such table or error
35
36         $fields = @db_query("SHOW COLUMNS FROM ".$pref.$table);
37         if (!isset($field)) 
38                 return 0;               // table exists
39
40         while( $row = db_fetch_assoc($fields)) 
41         {
42                 if ($row['Field'] == $field) 
43                 {
44                         if (!isset($properties)) 
45                                 return 0;
46                         foreach($properties as $property => $value) 
47                         {
48                                 if ($row[$property] != $value) 
49                                         return 3;       // failed type/length check
50                         }
51                         return 0; // property check ok.
52                 }
53         }
54         return 2; // field not found
55 }
56 //
57 //      Creates table of installer objects sorted by version.
58 //
59 function get_installers()
60 {
61         global $path_to_root;
62
63         $patchdir = $path_to_root."/sql/";
64         $upgrades = array();    
65         $datadir = @opendir($patchdir);
66
67         if ($datadir)
68         {
69                 while(false !== ($fname = readdir($datadir)))
70                 { // check all php files but index.php
71                         if (!is_dir($patchdir . $fname) && ($fname != 'index.php')
72                                 && stristr($fname, '.php') != false)
73                         {
74                                 unset($install);
75                                 include_once($patchdir . $fname);
76                                 if (isset($install)) // add installer if found
77                                         $upgrades[$install->version] =  $install;
78                         }
79                 }
80                 ksort($upgrades); // sort by file name
81                 $upgrades = array_values($upgrades);
82         }
83         return $upgrades;
84 }
85 //
86 //      Apply one differential data set.
87 //
88 function upgrade_step($index, $conn) 
89 {
90         global $path_to_root, $installers;
91
92         $inst = $installers[$index];
93         $pref = $conn['tbpref'];
94         $ret = true;
95
96         $force = get_post('force_'.$index);
97         if ($force || get_post('install_'.$index)) 
98         {
99                 $state = $inst->installed($pref);
100                 if (!$state || $force) 
101                 {
102                         if (!$inst->pre_check($pref, $force)) return false;
103                         $sql = $inst->sql;
104
105                         if ($sql != '')
106                                 $ret &= db_import($path_to_root.'/sql/'.$sql, $conn, $force);
107
108                         $ret &= $inst->install($pref, $force);
109                 } else
110                         if ($state!==true) {
111                                 display_error(_("Upgrade cannot be done because database has been already partially upgraded. Please downgrade database to clean previous version or try forced upgrade."));
112                                 $ret = false;
113                         }
114         }
115         return $ret;
116 }
117
118 function db_open($conn)
119 {
120         $db = mysql_connect($conn["host"] ,$conn["dbuser"], $conn["dbpassword"]);
121         if (!$db)
122                 return false;
123         if (!mysql_select_db($conn["dbname"], $db))
124                 return false;
125         return $db;
126 }
127
128 $installers = get_installers();
129
130 if (get_post('Upgrade')) 
131 {
132
133         $ret = true;
134         foreach ($db_connections as $conn) 
135         {
136         // connect to database
137                 if (!($db = db_open($conn))) 
138                 {
139                         display_error(_("Cannot connect to database for company")
140                                 ." '".$conn['name']."'");
141                         continue;
142                 }
143         // create security backup       
144                 db_backup($conn, 'no', 'Security backup before upgrade', $conn['tbpref']);
145         // apply all upgrade data
146                 foreach ($installers as $i => $inst) 
147                 {
148                         $ret = upgrade_step($i, $conn);
149                         if (!$ret)
150                                 display_error(
151                                 sprintf(_("Database upgrade to version %s failed for company '%s'."),
152                                         $inst->version, $conn['name'])
153                                         .'<br>'
154                                         ._('You should restore company database from latest backup file'));
155                 }
156 //              db_close($conn); ?
157                 if (!$ret) break;
158         }
159         if($ret)
160         {       // re-read the prefs
161                 global $path_to_root;
162                 include_once($path_to_root . "/admin/db/users_db.inc");
163                 $user = get_user_by_login($_SESSION["wa_current_user"]->username);
164                 $_SESSION["wa_current_user"]->prefs = new user_prefs($user);
165                 display_notification(_('All companies data has been successfully updated'));
166         }       
167         unset($_SESSION['SysPrefs']); // re-read system setup
168         $Ajax->activate('_page_body');
169 }
170
171 start_form();
172 start_table(TABLESTYLE);
173 $th = array(_("Version"), _("Description"), _("Sql file"), _("Install"),
174         _("Force upgrade"));
175 table_header($th);
176
177 $k = 0; //row colour counter
178 $partial = 0;
179 foreach($installers as $i => $inst)
180 {
181         alt_table_row_color($k);
182         start_row();
183         label_cell($inst->version);
184         label_cell($inst->description);
185         label_cell($inst->sql ? $inst->sql : '<i>'._('None').'</i>', 'align=center');
186 // this is checked only for first (site admin) company, 
187 // but in fact we should always upgrade all data sets after
188 // source upgrade.
189         $check = $inst->installed(TB_PREF);
190         if ($check === true)
191                 label_cell(_("Installed"));
192         else 
193                 if (!$check)
194                         check_cells(null,'install_'.$i, 0);
195                 else {
196                         label_cell("<span class=redfg>"
197                                 . sprintf(_("Partially installed (%s)"), $check) . "</span>");
198                         $partial++;
199                 }
200
201         check_cells(null,'force_'.$i, 0);
202         end_row();
203 }
204 end_table(1);
205 if ($partial!=0)        {
206         display_note(_("Database upgrades marked as partially installed cannot be installed automatically.
207 You have to clean database manually to enable them, or try to perform forced upgrade."));
208         br();
209 }
210 submit_center('Upgrade', _('Upgrade system'), true, _('Save database and perform upgrade'), 'process');
211 end_form();
212
213 end_page();
214
215 ?>