Expense Item description - Follow-up to pull request #22 (#23)
[timetracker.git] / dbinstall.php
1 <?php
2 // +----------------------------------------------------------------------+
3 // | Anuko Time Tracker
4 // +----------------------------------------------------------------------+
5 // | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
6 // +----------------------------------------------------------------------+
7 // | LIBERAL FREEWARE LICENSE: This source code document may be used
8 // | by anyone for any purpose, and freely redistributed alone or in
9 // | combination with other software, provided that the license is obeyed.
10 // |
11 // | There are only two ways to violate the license:
12 // |
13 // | 1. To redistribute this code in source form, with the copyright
14 // |    notice or license removed or altered. (Distributing in compiled
15 // |    forms without embedded copyright notices is permitted).
16 // |
17 // | 2. To redistribute modified versions of this code in *any* form
18 // |    that bears insufficient indications that the modifications are
19 // |    not the work of the original author(s).
20 // |
21 // | This license applies to this document only, not any other software
22 // | that it may be combined with.
23 // |
24 // +----------------------------------------------------------------------+
25 // | Contributors:
26 // | https://www.anuko.com/time_tracker/credits.htm
27 // +----------------------------------------------------------------------+
28
29 require_once('WEB-INF/config.php');
30 require_once('WEB-INF/lib/common.lib.php');
31 require_once('initialize.php');
32 import('ttUserHelper');
33 import('ttTaskHelper');
34
35 function setChange($sql) {
36   print "<pre>".$sql."</pre>";
37   $mdb2 = getConnection();
38   $affected = $mdb2->exec($sql);
39   if (is_a($affected, 'PEAR_Error'))
40     print "error: ".$affected->getMessage()."<br>";
41   else
42     print "successful update<br>\n";
43 }
44
45 if ($request->isGet()) {
46   echo('<h2>Environment Checks</h2>');
47
48   // Check if WEB-INF/templates_c dir is writable.
49   if (is_writable(APP_DIR.'/WEB-INF/templates_c/')) {
50     echo('WEB-INF/templates_c/ directory is writable.<br>');
51   } else {
52     echo('<font color="red">Error: WEB-INF/templates_c/ directory is not writable.</font><br>');
53   }
54
55   // Require the configuration file with application settings.
56   if (file_exists(APP_DIR."/WEB-INF/config.php")) {
57     echo('WEB-INF/config.php file exists.<br>');
58
59     // Config file must start with the PHP opening tag. We are checking this because
60     // a Unicode editor may insert a byte order mark (BOM) before it. This is not good as it will
61     // spit white space before output in some situations such as in PDF reports.
62     $file = fopen(APP_DIR.'/WEB-INF/config.php', 'r');
63     $line = fgets($file);
64     if (strcmp('<?php'.PHP_EOL, $line) !== 0) {
65       echo('<font color="red">Error: WEB-INF/config.php file does not start with PHP opening tag.</font><br>');
66     }
67     fclose($file);
68   } else {
69     echo('<font color="red">Error: WEB-INF/config.php file does not exist.</font><br>');
70   }
71
72   // Check whether DSN is defined.
73   if (defined('DSN')) {
74     // echo('DSN is defined as '.DSN.'<br>');
75     echo('DSN is defined.<br>');
76   } else {
77     echo('<font color="red">Error: DSN value is not defined. Check your config.php file.</font><br>');
78   }
79
80   // Check if PHP version is good enough.
81   $required_version = '5.2.1'; // Something in TCPDF library does not work below this one.
82   if (version_compare(phpversion(), $required_version, '>=')) {
83     echo('PHP version: '.phpversion().', good enough.<br>');
84   } else {
85     echo('<font color="red">Error: PHP version is not high enough: '.phpversion().'. Required: '.$required_version.'.</font><br>');
86   }
87
88   // Depending on DSN, require either mysqli or mysql extensions.
89   if (strrpos(DSN, 'mysqli://', -strlen(DSN)) !== FALSE) {
90     if (extension_loaded('mysqli')) {
91       echo('mysqli PHP extension is loaded.<br>');
92     } else {
93       echo('<font color="red">Error: mysqli PHP extension is required but is not loaded.</font><br>');
94     }
95   }
96   if (strrpos(DSN, 'mysql://', -strlen(DSN)) !== FALSE) {
97     if (extension_loaded('mysql')) {
98       echo('mysql PHP extension is loaded.<br>');
99     } else {
100       echo('<font color="red">Error: mysql PHP extension is required but is not loaded.</font><br>');
101     }
102   }
103
104   // Check mbstring extension.
105   if (extension_loaded('mbstring')) {
106     echo('mbstring PHP extension is loaded.<br>');
107   } else {
108     echo('<font color="red">Error: mbstring PHP extension is not loaded.</font><br>');
109   }
110
111   // Check gd extension.
112   if (extension_loaded('gd')) {
113     echo('gd PHP extension is loaded.<br>');
114   } else {
115     echo('<font color="red">Error: gd PHP extension is not loaded. It is required for charts plugin.</font><br>');
116   }
117
118   // Check ldap extension.
119   if (AUTH_MODULE == 'ldap') {
120     if (extension_loaded('ldap_')) {
121       echo('ldap PHP extension is loaded.<br>');
122     } else {
123       echo('<font color="red">Error: ldap PHP extension is not loaded. It is required for LDAP authentication.</font><br>');
124     }
125   }
126
127   // Check database access.
128   require_once('MDB2.php');
129   $conn = MDB2::connect(DSN);
130   if (!is_a($conn, 'MDB2_Error')) {
131     echo('Connection to database successful.<br>');
132   } else {
133     die('<font color="red">Error: connection to database failed. '.$conn->getMessage().'</font><br>');
134   }
135
136   $conn->setOption('debug', true);
137   $conn->setFetchMode(MDB2_FETCHMODE_ASSOC);
138
139   $sql = "show tables";
140   $res = $conn->query($sql);
141   if (is_a($res, 'MDB2_Error')) {
142     die('<font color="red">Error: show tables returned an error. '.$res->getMessage().'</font><br>');
143   }
144   $tblCnt = 0;
145   while ($val = $res->fetchRow()) {
146     $tblCnt++;
147   }
148   if ($tblCnt > 0) {
149     echo("There are $tblCnt tables in database.<br>");
150   } else {
151     echo('<font color="red">There are no tables in database. Execute step 1 - Create database structure.</font><br>');
152   }
153   $conn->disconnect();
154 }
155
156
157 if ($_POST) {
158   print "Processing...<br>\n";
159
160   if ($_POST["crstructure"]) {
161     $sqlQuery = join("\n", file("mysql.sql"));
162     $sqlQuery = str_replace("TYPE=MyISAM","",$sqlQuery);
163     $queries  = explode(";",$sqlQuery);
164     if (is_array($queries)) {
165       foreach ($queries as $query) {
166         $query = trim($query);
167         if (strlen($query)>0) {
168           setChange($query);
169         }
170       }
171     }
172   }
173
174   if ($_POST["convert5to7"]) {
175     setChange("alter table `activity_log` CHANGE al_comment al_comment BLOB");
176     setChange("CREATE TABLE `sysconfig` (`sysc_id` int(11) unsigned NOT NULL auto_increment,`sysc_name` varchar(32) NOT NULL default '',`sysc_value` varchar(70) default NULL, PRIMARY KEY  (`sysc_id`), UNIQUE KEY `sysc_id` (`sysc_id`), UNIQUE KEY `sysc_name` (`sysc_name`))");
177     setChange("alter table `companies` add c_locktime int(4) default -1");
178     setChange("alter table `activity_log` add al_billable tinyint(4) default 0");
179     setChange("alter table `sysconfig` drop INDEX `sysc_name`");
180     setChange("alter table `sysconfig` add sysc_id_u int(4)");
181     setChange("alter table `report_filter_set` add rfs_billable VARCHAR(10)");
182     setChange("ALTER TABLE clients MODIFY clnt_id int(11) NOT NULL AUTO_INCREMENT");
183     setChange("ALTER TABLE `users` ADD `u_show_pie` smallint(2) DEFAULT '1'");
184     setChange("alter table `users` ADD `u_pie_mode` smallint(2) DEFAULT '1'");
185     setChange("alter table users drop `u_aprojects`");
186   }
187
188   if ($_POST["convert7to133"]) {
189     setChange("ALTER TABLE users ADD COLUMN u_lang VARCHAR(20) DEFAULT NULL");
190     setChange("ALTER TABLE users ADD COLUMN u_email VARCHAR(100) DEFAULT NULL");
191     setChange("ALTER TABLE `activity_log` drop `al_proof`");
192     setChange("ALTER TABLE `activity_log` drop `al_charge`");
193     setChange("ALTER TABLE `activities` drop `a_project_id`");
194     setChange("DROP TABLE `activity_status_list`");
195     setChange("DROP TABLE `project_status_list`");
196     setChange("DROP TABLE `user_status_list`");
197     setChange("DROP TABLE `companies_c_id_seq`");
198     setChange("ALTER TABLE projects ADD COLUMN p_activities TEXT");
199   }
200
201   // The update_projects function updates p_activities field in the projects table so that we could
202   // improve performance of the application by using this field instead of activity_bind table.
203   if ($_POST["update_projects"]) {
204     $mdb2 = getConnection();
205     // $sql = "select p_id from projects where p_status = 1 and p_activities is NULL";
206     $sql = "select p_id from projects where p_status = 1";
207     $res = $mdb2->query($sql);
208     if (is_a($res, 'PEAR_Error')) {
209       die($res->getMessage());
210     }
211     // Iterate through projects.
212     while ($val = $res->fetchRow()) {
213       $project_id = $val['p_id'];
214
215       // Get activity binds for project (old way).
216       // $sql = "select ab_id_a from activity_bind where ab_id_p = $project_id";
217       $sql = "select ab_id_a, a_id, a_name from activity_bind
218         inner join activities on (ab_id_a = a_id)
219         where ab_id_p = $project_id order by a_name";
220
221       $result = $mdb2->query($sql);
222       if (is_a($result, 'PEAR_Error')) {
223         die($result->getMessage());
224       }
225       $activity_arr = array();
226       while ($value = $result->fetchRow()) {
227         $activity_arr[] = $value['ab_id_a'];
228       }
229       $a_comma_separated = implode(",", $activity_arr); // This is a comma-separated list of associated activity ids.
230
231       // Re-bind the project to activities (new way).
232       $sql = "update projects set p_activities = ".$mdb2->quote($a_comma_separated)." where p_id = $project_id";
233       $affected = $mdb2->exec($sql);
234       if (is_a($affected, 'PEAR_Error')) {
235         die($affected->getMessage());
236       }
237     }
238   }
239
240   if ($_POST["convert133to1340"]) {
241     setChange("ALTER TABLE companies ADD COLUMN c_show_pie smallint(2) DEFAULT 1");
242     setChange("ALTER TABLE companies ADD COLUMN c_pie_mode smallint(2) DEFAULT 1");
243     setChange("ALTER TABLE companies ADD COLUMN c_lang varchar(20) default NULL");
244   }
245
246   // The update_companies function sets up c_show_pie, c_pie_mode, and c_lang
247   // fields in the companies table from the corresponding manager fields. 
248   if ($_POST["update_companies"]) {
249     $mdb2 = getConnection();
250     // Get all active managers.
251     $sql = "select u_company_id, u_show_pie, u_pie_mode, u_lang from users
252       where u_manager_id is NULL and u_login <> 'admin' and u_company_id is not NULL and u_active = 1"; 
253     $res = $mdb2->query($sql);
254     if (is_a($res, 'PEAR_Error')) {
255       die($res->getMessage());
256     }
257     // Iterate through managers and set fields in the companies table.
258     while ($val = $res->fetchRow()) {
259       $company_id = $val['u_company_id'];
260       $show_pie = $val['u_show_pie'];
261       $pie_mode = $val['u_pie_mode'];
262       $lang = $val['u_lang'];
263
264       $sql = "update companies set
265         c_show_pie = $show_pie, c_pie_mode = $pie_mode, c_lang = ".$mdb2->quote($lang).
266         " where c_id = $company_id";
267
268       $result = $mdb2->query($sql);
269       if (is_a($result, 'PEAR_Error')) {
270         die($result->getMessage());
271       }
272     }
273   }
274
275   if ($_POST["convert1340to1485"]) {
276     setChange("ALTER TABLE users DROP u_show_pie");
277     setChange("ALTER TABLE users DROP u_pie_mode");
278     setChange("ALTER TABLE users DROP u_lang");
279     setChange("ALTER TABLE `users` modify u_login varchar(100) NOT NULL");
280     setChange("ALTER TABLE `users` modify u_active smallint(6) default '1'");
281     setChange("drop index u_login_idx on users");
282     setChange("create unique index u_login_idx on users(u_login, u_active)");
283     setChange("ALTER TABLE companies MODIFY `c_lang` varchar(20) NOT NULL default 'en'");
284     setChange("ALTER TABLE companies ADD COLUMN `c_date_format` varchar(20) NOT NULL default '%Y-%m-%d'");
285     setChange("ALTER TABLE companies ADD COLUMN `c_time_format` varchar(20) NOT NULL default '%H:%M'");
286     setChange("ALTER TABLE companies ADD COLUMN `c_week_start` smallint(2) NOT NULL DEFAULT '0'");
287     setChange("ALTER TABLE clients MODIFY `clnt_status` smallint(6) default '1'");
288     setChange("create unique index clnt_name_idx on clients(clnt_id_um, clnt_name, clnt_status)");
289     setChange("ALTER TABLE projects modify p_status smallint(6) default '1'");
290     setChange("update projects set p_status = NULL where p_status = 1000");
291     setChange("drop index p_manager_idx on projects");
292     setChange("create unique index p_name_idx on projects(p_manager_id, p_name, p_status)");
293     setChange("ALTER TABLE activities modify a_status smallint(6) default '1'");
294     setChange("update activities set a_status = NULL where a_status = 1000");
295     setChange("drop index a_manager_idx on activities");
296     setChange("create unique index a_name_idx on activities(a_manager_id, a_name, a_status)");
297     setChange("RENAME TABLE companies TO teams");
298     setChange("RENAME TABLE teams TO att_teams");
299     setChange("ALTER TABLE att_teams CHANGE c_id id int(11) NOT NULL auto_increment");
300     setChange("RENAME TABLE users TO att_users");
301     setChange("update att_users set u_company_id = 0 where u_company_id is NULL");
302     setChange("ALTER TABLE att_users CHANGE u_company_id team_id int(11) NOT NULL");
303     setChange("RENAME TABLE att_teams TO tt_teams");
304     setChange("RENAME TABLE att_users TO tt_users");
305     setChange("ALTER TABLE tt_teams CHANGE c_name name varchar(80) NOT NULL");
306     setChange("ALTER TABLE `tt_teams` drop `c_www`");
307     setChange("ALTER TABLE `tt_teams` MODIFY `name` varchar(80) default NULL");
308     setChange("ALTER TABLE clients ADD COLUMN `your_name` varchar(255) default NULL");
309     setChange("ALTER TABLE tt_teams ADD COLUMN `address` varchar(255) default NULL");
310     setChange("ALTER TABLE invoice_header ADD COLUMN `client_name` varchar(255) default NULL");
311     setChange("ALTER TABLE invoice_header ADD COLUMN `client_addr` varchar(255) default NULL");
312     setChange("ALTER TABLE report_filter_set ADD COLUMN `rfs_cb_cost` tinyint(4) default '0'");
313     setChange("ALTER TABLE activity_log DROP primary key");
314     setChange("ALTER TABLE activity_log ADD COLUMN `id` bigint NOT NULL auto_increment primary key"); 
315     setChange("CREATE TABLE `tt_custom_fields` (`id` int(11) NOT NULL auto_increment, `team_id` int(11) NOT NULL, `type` tinyint(4) NOT NULL default '0', `label` varchar(32) NOT NULL default '', PRIMARY KEY (`id`))");
316     setChange("CREATE TABLE `tt_custom_field_options` (`id` int(11) NOT NULL auto_increment, `field_id` int(11) NOT NULL, `value` varchar(32) NOT NULL default '', PRIMARY KEY (`id`))");
317     setChange("CREATE TABLE `tt_custom_field_log` (`id` bigint NOT NULL auto_increment, `al_id` bigint NOT NULL, `field_id` int(11) NOT NULL, `value` varchar(255) default NULL, PRIMARY KEY (`id`))");
318     setChange("ALTER TABLE tt_users DROP u_level");
319     setChange("ALTER TABLE tt_custom_fields ADD COLUMN `status` tinyint(4) default '1'");
320     setChange("ALTER TABLE report_filter_set ADD COLUMN `rfs_cb_cf_1` tinyint(4) default '0'");
321     setChange("ALTER TABLE tt_teams ADD COLUMN `plugins` varchar(255) default NULL");
322     setChange("ALTER TABLE tt_teams MODIFY c_locktime int(4) default '0'");
323     setChange("ALTER TABLE clients DROP your_name");
324     setChange("ALTER TABLE clients DROP clnt_addr_your");
325     setChange("ALTER TABLE `tt_custom_fields` ADD COLUMN `required` tinyint(4) default '0'");
326     setChange("ALTER TABLE tt_teams DROP c_pie_mode");
327     setChange("RENAME TABLE report_filter_set TO tt_fav_reports");
328     setChange("ALTER TABLE tt_fav_reports CHANGE rfs_id id int(11) unsigned NOT NULL auto_increment");
329     setChange("ALTER TABLE tt_fav_reports CHANGE rfs_name name varchar(200) NOT NULL");
330     setChange("ALTER TABLE tt_fav_reports CHANGE rfs_id_u user_id int(11) NOT NULL");
331     setChange("ALTER TABLE tt_fav_reports CHANGE rfs_id_p project_id int(11) default NULL");
332     setChange("ALTER TABLE tt_fav_reports CHANGE rfs_id_a task_id int(11) default NULL");
333     setChange("ALTER TABLE tt_fav_reports CHANGE rfs_users users text default NULL");
334     setChange("ALTER TABLE tt_fav_reports CHANGE rfs_period period tinyint(4) default NULL");
335     setChange("ALTER TABLE tt_fav_reports CHANGE rfs_period_start period_start date default NULL");
336     setChange("ALTER TABLE tt_fav_reports CHANGE rfs_period_finish period_end date default NULL");
337     setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_project show_project tinyint(4) NOT NULL default '0'");
338     setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_activity show_task tinyint(4) NOT NULL default '0'");
339     setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_note show_note tinyint(4) NOT NULL default '0'");
340     setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_start show_start tinyint(4) NOT NULL default '0'");
341     setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_finish show_end tinyint(4) NOT NULL default '0'");
342     setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_duration show_duration tinyint(4) NOT NULL default '0'");
343     setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_cost show_cost tinyint(4) NOT NULL default '0'");
344     setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_cf_1 show_custom_field_1 tinyint(4) NOT NULL default '0'");
345     setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_idle show_empty_days tinyint(4) NOT NULL default '0'");
346     setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_totals_only show_totals_only tinyint(4) NOT NULL default '0'");
347     setChange("ALTER TABLE tt_fav_reports CHANGE rfs_groupby group_by varchar(20) default NULL");
348     setChange("ALTER TABLE tt_fav_reports CHANGE rfs_billable billable tinyint(4) default NULL");
349     setChange("ALTER TABLE projects CHANGE p_activities tasks text default NULL");
350     setChange("ALTER TABLE tt_teams CHANGE c_currency currency varchar(7) default NULL");
351     setChange("ALTER TABLE tt_teams CHANGE c_locktime locktime int(4) default '0'");
352     setChange("ALTER TABLE tt_teams CHANGE c_show_pie show_pie smallint(2) DEFAULT '1'");
353     setChange("ALTER TABLE tt_teams CHANGE c_lang lang varchar(10) NOT NULL default 'en'");
354     setChange("ALTER TABLE tt_teams CHANGE c_date_format date_format varchar(20) NOT NULL default '%Y-%m-%d'");
355     setChange("ALTER TABLE tt_teams CHANGE c_time_format time_format varchar(20) NOT NULL default '%H:%M'");
356     setChange("ALTER TABLE tt_teams CHANGE c_week_start week_start smallint(2) NOT NULL DEFAULT '0'");
357     setChange("ALTER TABLE tt_users CHANGE u_id id int(11) NOT NULL auto_increment");
358     setChange("ALTER TABLE tt_users CHANGE u_timestamp timestamp timestamp NOT NULL");
359     setChange("ALTER TABLE tt_users CHANGE u_login login varchar(50) NOT NULL");
360     setChange("drop index u_login_idx on tt_users");
361     setChange("create unique index login_idx on tt_users(login, u_active)");
362     setChange("ALTER TABLE tt_users CHANGE u_password password varchar(50) default NULL");
363     setChange("ALTER TABLE tt_users CHANGE u_name name varchar(100) default NULL");
364     setChange("ALTER TABLE tt_users CHANGE u_email email varchar(100) default NULL");
365     setChange("ALTER TABLE tt_users CHANGE u_rate rate float(6,2) NOT NULL default '0.00'");
366     setChange("update tt_users set u_active = NULL where u_active = 1000");
367     setChange("ALTER TABLE tt_users CHANGE u_active status tinyint(4) default '1'");
368     setChange("ALTER TABLE tt_teams ADD COLUMN status tinyint(4) default '1'");
369     setChange("ALTER TABLE tt_users ADD COLUMN role int(11) default '4'");
370     setChange("update tt_users set role = 1024 where login = 'admin'");
371     setChange("update tt_users set role = 68 where u_comanager = 1");
372     setChange("update tt_users set role = 324 where u_manager_id is null and login != 'admin'");
373     setChange("ALTER TABLE user_bind CHANGE ub_checked status tinyint(4) default '1'");
374     setChange("ALTER TABLE activities ADD COLUMN team_id int(11) NOT NULL");
375     setChange("ALTER TABLE clients ADD COLUMN team_id int(11) NOT NULL");
376     setChange("ALTER TABLE projects ADD COLUMN team_id int(11) NOT NULL");
377   }
378
379   // The update_to_team_id function sets team_id field projects, activities, and clients tables.
380   if ($_POST["update_to_team_id"]) {
381     $mdb2 = getConnection();
382
383     // Update projects.
384     $sql = "select p_id, p_manager_id from projects where team_id = 0 limit 1000";
385     $res = $mdb2->query($sql);
386     if (is_a($res, 'PEAR_Error')) {
387       die($res->getMessage());
388     }
389     // Iterate through projects.
390     $projects_updated = 0;
391     while ($val = $res->fetchRow()) {
392       $project_id = $val['p_id'];
393       $manager_id = $val['p_manager_id'];
394
395       $sql = "select team_id from tt_users where id = $manager_id";
396       $res2 = $mdb2->query($sql);
397       if (is_a($res2, 'PEAR_Error')) {
398         die($res2->getMessage());
399       }
400       $val2 = $res2->fetchRow();
401       $team_id = $val2['team_id'];
402
403       if ($team_id) {
404         $sql = "update projects set team_id = $team_id where p_id = $project_id";
405         $affected = $mdb2->exec($sql);
406         if (is_a($affected, 'PEAR_Error')) {
407           die($affected->getMessage());
408         }
409         $projects_updated += $affected; 
410       }
411     }
412     print "Updated $projects_updated projects...<br>\n";
413
414     // Update tasks.
415     $sql = "select a_id, a_manager_id from activities where team_id = 0 limit 1000";
416     $res = $mdb2->query($sql);
417     if (is_a($res, 'PEAR_Error')) {
418       die($res->getMessage());
419     }
420     // Iterate through tasks.
421     $tasks_updated = 0;
422     while ($val = $res->fetchRow()) {
423       $task_id = $val['a_id'];
424       $manager_id = $val['a_manager_id'];
425
426       $sql = "select team_id from tt_users where id = $manager_id";
427       $res2 = $mdb2->query($sql);
428       if (is_a($res2, 'PEAR_Error')) {
429         die($res2->getMessage());
430       }
431       $val2 = $res2->fetchRow();
432       $team_id = $val2['team_id'];
433
434       if ($team_id) {
435         $sql = "update activities set team_id = $team_id where a_id = $task_id";
436         $affected = $mdb2->exec($sql);
437         if (is_a($affected, 'PEAR_Error')) {
438           die($affected->getMessage());
439         }
440         $tasks_updated += $affected;
441       }
442     }
443     print "Updated $tasks_updated tasks...<br>\n";
444
445     // Update clients.
446     $sql = "select clnt_id, clnt_id_um from clients where team_id = 0 limit 1000";
447     $res = $mdb2->query($sql);
448     if (is_a($res, 'PEAR_Error')) {
449       die($res->getMessage());
450     }
451     // Iterate through clients.
452     $clients_updated = 0;
453     while ($val = $res->fetchRow()) {
454       $client_id = $val['clnt_id'];
455       $manager_id = $val['clnt_id_um'];
456
457       $sql = "select team_id from tt_users where id = $manager_id";
458       $res2 = $mdb2->query($sql);
459       if (is_a($res2, 'PEAR_Error')) {
460         die($res2->getMessage());
461       }
462       $val2 = $res2->fetchRow();
463       $team_id = $val2['team_id'];
464
465       if ($team_id) {
466         $sql = "update clients set team_id = $team_id where clnt_id = $client_id";
467         $affected = $mdb2->exec($sql);
468         if (is_a($affected, 'PEAR_Error')) {
469           die($affected->getMessage());
470         }
471         $clients_updated += $affected;
472       }
473     }
474     print "Updated $clients_updated clients...<br>\n";
475   }
476
477   if ($_POST["convert1485to1579"]) {
478     setChange("ALTER TABLE tt_fav_reports MODIFY id int(11) NOT NULL auto_increment");
479     setChange("RENAME TABLE clients TO tt_clients");
480     setChange("ALTER TABLE tt_clients CHANGE clnt_id id int(11) NOT NULL AUTO_INCREMENT");
481     setChange("ALTER TABLE tt_clients CHANGE clnt_status status tinyint(4) default '1'");
482     setChange("ALTER TABLE tt_clients DROP clnt_id_um");
483     setChange("ALTER TABLE tt_clients CHANGE clnt_name name varchar(80) NOT NULL");
484     setChange("drop index clnt_name_idx on tt_clients");
485     setChange("drop index client_name_idx on tt_clients");
486     setChange("create unique index client_name_idx on tt_clients(team_id, name, status)");
487     setChange("ALTER TABLE tt_teams ADD COLUMN `timestamp` timestamp NOT NULL");
488     setChange("ALTER TABLE tt_clients CHANGE clnt_addr_cust address varchar(255) default NULL");
489     setChange("ALTER TABLE tt_clients DROP clnt_discount");
490     setChange("ALTER TABLE tt_clients DROP clnt_comment");
491     setChange("ALTER TABLE tt_clients DROP clnt_fsubtotals");
492     setChange("ALTER TABLE tt_clients CHANGE clnt_tax tax float(6,2) NOT NULL default '0.00'");
493     setChange("ALTER TABLE activity_log ADD COLUMN client_id int(11) default NULL");
494     setChange("ALTER TABLE tt_teams DROP show_pie");
495     setChange("ALTER TABLE tt_fav_reports CHANGE group_by sort_by varchar(20) default 'date'");
496     setChange("RENAME TABLE tmp_refs TO tt_tmp_refs");
497     setChange("ALTER TABLE tt_tmp_refs CHANGE tr_created timestamp timestamp NOT NULL");
498     setChange("ALTER TABLE tt_tmp_refs CHANGE tr_code ref char(32) NOT NULL default ''");
499     setChange("ALTER TABLE tt_tmp_refs CHANGE tr_userid user_id int(11) NOT NULL");
500     setChange("RENAME TABLE projects TO tt_projects");
501     setChange("ALTER TABLE tt_projects CHANGE p_id id int(11) NOT NULL auto_increment");
502     setChange("ALTER TABLE tt_projects DROP p_timestamp");
503     setChange("ALTER TABLE tt_projects CHANGE p_name name varchar(80) NOT NULL");
504     setChange("ALTER TABLE tt_projects CHANGE p_status status tinyint(4) default '1'");
505     setChange("drop index p_name_idx on tt_projects");
506     setChange("create unique index project_idx on tt_projects(team_id, name, status)");
507     setChange("RENAME TABLE activities TO tt_tasks");
508     setChange("ALTER TABLE tt_tasks CHANGE a_id id int(11) NOT NULL auto_increment");
509     setChange("ALTER TABLE tt_tasks DROP a_timestamp");
510     setChange("ALTER TABLE tt_tasks CHANGE a_name name varchar(80) NOT NULL");
511     setChange("ALTER TABLE tt_tasks CHANGE a_status status tinyint(4) default '1'");
512     setChange("drop index a_name_idx on tt_tasks");
513     setChange("create unique index task_idx on tt_tasks(team_id, name, status)");
514     setChange("RENAME TABLE invoice_header TO tt_invoice_headers");
515     setChange("ALTER TABLE tt_invoice_headers CHANGE ih_user_id user_id int(11) NOT NULL");
516     setChange("ALTER TABLE tt_invoice_headers CHANGE ih_number number varchar(20) default NULL");
517     setChange("ALTER TABLE tt_invoice_headers DROP ih_addr_your");
518     setChange("ALTER TABLE tt_invoice_headers DROP ih_addr_cust");
519     setChange("ALTER TABLE tt_invoice_headers CHANGE ih_comment comment varchar(255) default NULL");
520     setChange("ALTER TABLE tt_invoice_headers CHANGE ih_tax tax float(6,2) default '0.00'");
521     setChange("ALTER TABLE tt_invoice_headers CHANGE ih_discount discount float(6,2) default '0.00'");
522     setChange("ALTER TABLE tt_invoice_headers CHANGE ih_fsubtotals subtotals tinyint(4) NOT NULL default '0'");
523     setChange("ALTER TABLE tt_users DROP u_comanager");
524     setChange("ALTER TABLE tt_tasks DROP a_manager_id");
525     setChange("ALTER TABLE tt_projects DROP p_manager_id");
526     setChange("ALTER TABLE tt_users DROP u_manager_id");
527     setChange("ALTER TABLE activity_bind DROP ab_id");
528     setChange("RENAME TABLE activity_bind TO tt_project_task_binds");
529     setChange("ALTER TABLE tt_project_task_binds CHANGE ab_id_p project_id int(11) NOT NULL");
530     setChange("ALTER TABLE tt_project_task_binds CHANGE ab_id_a task_id int(11) NOT NULL");
531     setChange("RENAME TABLE user_bind TO tt_user_project_binds");
532     setChange("ALTER TABLE tt_user_project_binds CHANGE ub_rate rate float(6,2) NOT NULL default '0.00'");
533     setChange("ALTER TABLE tt_user_project_binds CHANGE ub_id_p project_id int(11) NOT NULL");
534     setChange("ALTER TABLE tt_user_project_binds CHANGE ub_id_u user_id int(11) NOT NULL");
535     setChange("ALTER TABLE tt_user_project_binds CHANGE ub_id id int(11) NOT NULL auto_increment");
536     setChange("CREATE TABLE `tt_client_project_binds` (`client_id` int(11) NOT NULL, `project_id` int(11) NOT NULL)");
537     setChange("ALTER TABLE tt_user_project_binds MODIFY rate float(6,2) default '0.00'");
538     setChange("ALTER TABLE tt_clients MODIFY tax float(6,2) default '0.00'");
539     setChange("RENAME TABLE activity_log TO tt_log");
540     setChange("ALTER TABLE tt_log CHANGE al_timestamp timestamp timestamp NOT NULL");
541     setChange("ALTER TABLE tt_log CHANGE al_user_id user_id int(11) NOT NULL");
542     setChange("ALTER TABLE tt_log CHANGE al_date date date NOT NULL");
543     setChange("drop index al_date_idx on tt_log");
544     setChange("create index date_idx on tt_log(date)");
545     setChange("ALTER TABLE tt_log CHANGE al_from start time default NULL");
546     setChange("ALTER TABLE tt_log CHANGE al_duration duration time default NULL");
547     setChange("ALTER TABLE tt_log CHANGE al_project_id project_id int(11) NOT NULL");
548     setChange("ALTER TABLE tt_log MODIFY project_id int(11) default NULL");
549     setChange("ALTER TABLE tt_log CHANGE al_activity_id task_id int(11) default NULL");
550     setChange("ALTER TABLE tt_log CHANGE al_comment comment blob");
551     setChange("ALTER TABLE tt_log CHANGE al_billable billable tinyint(4) default '0'");
552     setChange("drop index al_user_id_idx on tt_log");
553     setChange("drop index al_project_id_idx on tt_log");
554     setChange("drop index al_activity_id_idx on tt_log");
555     setChange("create index user_idx on tt_log(user_id)");
556     setChange("create index project_idx on tt_log(project_id)");
557     setChange("create index task_idx on tt_log(task_id)");
558     setChange("ALTER TABLE tt_custom_field_log CHANGE al_id log_id bigint NOT NULL");
559     setChange("RENAME TABLE sysconfig TO tt_config");
560     setChange("ALTER TABLE tt_config DROP sysc_id");
561     setChange("ALTER TABLE tt_config CHANGE sysc_id_u user_id int(11) NOT NULL");
562     setChange("ALTER TABLE tt_config CHANGE sysc_name param_name varchar(32) NOT NULL");
563     setChange("ALTER TABLE tt_config CHANGE sysc_value param_value varchar(80) default NULL");
564     setChange("create unique index param_idx on tt_config(user_id, param_name)");
565     setChange("ALTER TABLE tt_log ADD COLUMN invoice_id int(11) default NULL");
566     setChange("ALTER TABLE tt_projects ADD COLUMN description varchar(255) default NULL");
567     setChange("CREATE TABLE `tt_invoices` (`id` int(11) NOT NULL auto_increment, `team_id` int(11) NOT NULL, `number` varchar(20) default NULL, `client_name` varchar(255) default NULL, `client_addr` varchar(255) default NULL, `comment` varchar(255) default NULL, `tax` float(6,2) default '0.00', `discount` float(6,2) default '0.00', PRIMARY KEY (`id`))");
568     setChange("ALTER TABLE tt_invoices drop number");
569     setChange("ALTER TABLE tt_invoices drop client_name");
570     setChange("ALTER TABLE tt_invoices drop client_addr");
571     setChange("ALTER TABLE tt_invoices drop comment");
572     setChange("ALTER TABLE tt_invoices drop tax");
573     setChange("ALTER TABLE tt_invoices ADD COLUMN name varchar(80) NOT NULL");
574     setChange("ALTER TABLE tt_invoices ADD COLUMN client_id int(11) NOT NULL");
575     setChange("ALTER TABLE tt_invoices ADD COLUMN start_date date NOT NULL");
576     setChange("ALTER TABLE tt_invoices ADD COLUMN end_date date NOT NULL");
577     setChange("create unique index name_idx on tt_invoices(team_id, name)");
578     setChange("drop index ub_id_u on tt_user_project_binds");
579     setChange("create unique index bind_idx on tt_user_project_binds(user_id, project_id)");
580     setChange("create index client_idx on tt_log(client_id)");
581     setChange("create index invoice_idx on tt_log(invoice_id)");
582   }
583
584   if ($_POST["convert1579to1600"]) {
585     setChange("ALTER TABLE tt_invoices ADD COLUMN date date NOT NULL");
586     setChange("ALTER TABLE tt_teams ADD COLUMN custom_logo tinyint(4) default '0'");
587     setChange("ALTER TABLE tt_tasks ADD COLUMN description varchar(255) default NULL");
588     setChange("ALTER TABLE tt_projects MODIFY name varchar(80) COLLATE utf8_bin NOT NULL");
589     setChange("ALTER TABLE tt_users MODIFY login varchar(50) COLLATE utf8_bin NOT NULL");
590     setChange("ALTER TABLE tt_tasks MODIFY name varchar(80) COLLATE utf8_bin NOT NULL");
591     setChange("ALTER TABLE tt_invoices MODIFY name varchar(80) COLLATE utf8_bin NOT NULL");
592     setChange("ALTER TABLE tt_clients MODIFY name varchar(80) COLLATE utf8_bin NOT NULL");
593     setChange("ALTER TABLE tt_clients ADD COLUMN projects text default NULL");
594     setChange("ALTER TABLE tt_custom_field_log ADD COLUMN option_id int(11) default NULL");
595     setChange("ALTER TABLE tt_teams ADD COLUMN tracking_mode smallint(2) NOT NULL DEFAULT '2'");
596     setChange("ALTER TABLE tt_teams ADD COLUMN record_type smallint(2) NOT NULL DEFAULT '0'");
597     setChange("ALTER TABLE tt_invoices DROP start_date");
598     setChange("ALTER TABLE tt_invoices DROP end_date");
599   }
600
601   if ($_POST["convert1600to1900"]) {
602     setChange("DROP TABLE IF EXISTS tt_invoice_headers");
603     setChange("ALTER TABLE tt_fav_reports ADD COLUMN `client_id` int(11) default NULL");
604     setChange("ALTER TABLE tt_fav_reports ADD COLUMN `cf_1_option_id` int(11) default NULL");
605     setChange("ALTER TABLE tt_fav_reports ADD COLUMN `show_client` tinyint(4) NOT NULL default '0'");
606     setChange("ALTER TABLE tt_fav_reports ADD COLUMN `show_invoice` tinyint(4) NOT NULL default '0'");
607     setChange("ALTER TABLE tt_fav_reports ADD COLUMN `group_by` varchar(20) default NULL");
608     
609     setChange("CREATE TABLE `tt_expense_items` (`id` bigint NOT NULL auto_increment, `date` date NOT NULL,
610     `user_id` int(11) NOT NULL, `client_id` int(11) default NULL, `project_id` int(11) default NULL, 
611     
612    /* Kimberly Keown suggested revision to increase character length of expenses.php and expense_edit.php $cl_item_name textarea.
613    Updated mysql.sql also.
614    Original: `name` varchar(255) NOT NULL, */
615     `name` text NOT NULL, 
616     
617     `cost` decimal(10,2) default '0.00', `invoice_id` int(11) default NULL, 
618     PRIMARY KEY  (`id`))");
619     
620     setChange("create index date_idx on tt_expense_items(date)");
621     setChange("create index user_idx on tt_expense_items(user_id)");
622     setChange("create index client_idx on tt_expense_items(client_id)");
623     setChange("create index project_idx on tt_expense_items(project_id)");
624     setChange("create index invoice_idx on tt_expense_items(invoice_id)");
625     setChange("ALTER TABLE tt_fav_reports DROP sort_by");
626     setChange("ALTER TABLE tt_fav_reports DROP show_empty_days");
627     setChange("ALTER TABLE tt_invoices DROP discount");
628     setChange("ALTER TABLE tt_users ADD COLUMN `client_id` int(11) default NULL");
629     setChange("ALTER TABLE tt_teams ADD COLUMN `decimal_mark` char(1) NOT NULL default '.'");
630     setChange("ALTER TABLE tt_fav_reports ADD COLUMN `invoice` tinyint(4) default NULL");
631     setChange("CREATE TABLE `tt_cron` (`id` int(11) NOT NULL auto_increment, `cron_spec` varchar(255) NOT NULL, `last` int(11) default NULL, `next` int(11) default NULL, `report_id` int(11) default NULL, `email` varchar(100) default NULL, `status` tinyint(4) default '1', PRIMARY KEY (`id`))");
632     setChange("ALTER TABLE tt_cron ADD COLUMN `team_id` int(11) NOT NULL");
633     setChange("create index client_idx on tt_client_project_binds(client_id)");
634     setChange("create index project_idx on tt_client_project_binds(project_id)");
635     setChange("ALTER TABLE tt_log ADD COLUMN status tinyint(4) default '1'");
636     setChange("ALTER TABLE tt_custom_field_log ADD COLUMN status tinyint(4) default '1'");
637     setChange("ALTER TABLE tt_expense_items ADD COLUMN status tinyint(4) default '1'");
638     setChange("ALTER TABLE tt_invoices ADD COLUMN status tinyint(4) default '1'");
639     setChange("DROP INDEX name_idx on tt_invoices");
640     setChange("create unique index name_idx on tt_invoices(team_id, name, status)");
641     setChange("ALTER TABLE tt_teams ADD COLUMN lock_spec varchar(255) default NULL");
642     setChange("ALTER TABLE tt_teams DROP locktime");
643     setChange("CREATE TABLE `tt_monthly_quota` (`team_id` int(11) NOT NULL, `year` smallint(5) UNSIGNED NOT NULL, `month` tinyint(3) UNSIGNED NOT NULL, `quota` smallint(5) UNSIGNED NOT NULL, PRIMARY KEY (`year`,`month`,`team_id`))");
644     setChange("ALTER TABLE `tt_monthly_quota` ADD CONSTRAINT `FK_TT_TEAM_CONSTRAING` FOREIGN KEY (`team_id`) REFERENCES `tt_teams` (`id`) ON DELETE CASCADE ON UPDATE CASCADE");
645     setChange("ALTER TABLE `tt_teams` ADD `workday_hours` SMALLINT NULL DEFAULT '8' AFTER `lock_spec`");
646     setChange("RENAME TABLE tt_monthly_quota TO tt_monthly_quotas");
647   }
648   
649   // The update_clients function updates projects field in tt_clients table.
650   if ($_POST["update_clients"]) {
651     $mdb2 = getConnection();
652     $sql = "select id from tt_clients where status = 1 or status = 0";
653     $res = $mdb2->query($sql);
654     if (is_a($res, 'PEAR_Error')) {
655       die($res->getMessage());
656     }
657
658     $clients_updated = 0;
659     // Iterate through clients.
660     while ($val = $res->fetchRow()) {
661       $client_id = $val['id'];
662
663       // Get projects binds for client.
664       $sql = "select cpb.project_id from tt_client_project_binds cpb
665         left join tt_projects p on (p.id = cpb.project_id)
666         where cpb.client_id = $client_id order by p.name";
667
668       $result = $mdb2->query($sql);
669       if (is_a($result, 'PEAR_Error'))
670         die($result->getMessage());
671
672       $project_arr = array();
673       while ($value = $result->fetchRow()) {
674         $project_arr[] = $value['project_id'];  
675       }
676       $comma_separated = implode(',', $project_arr); // This is a comma-separated list of associated project ids.
677
678       // Update the projects field.
679       $sql = "update tt_clients set projects = ".$mdb2->quote($comma_separated)." where id = $client_id";
680       $affected = $mdb2->exec($sql);
681       if (is_a($affected, 'PEAR_Error'))
682         die($affected->getMessage());
683       $clients_updated += $affected;
684     }
685     print "Updated $clients_updated clients...<br>\n";
686   }
687
688   // The update_custom_fields function updates option_id field field in tt_custom_field_log table.
689   if ($_POST['update_custom_fields']) {
690     $mdb2 = getConnection();
691     $sql = "update tt_custom_field_log set option_id = value where field_id in (select id from tt_custom_fields where type = 2)";
692     $affected = $mdb2->exec($sql);
693     if (is_a($affected, 'PEAR_Error'))
694       die($affected->getMessage());
695
696     print "Updated $affected custom fields...<br>\n";
697   }
698
699   // The update_tracking_mode function sets the tracking_mode field in tt_teams table to 2 (== MODE_PROJECTS_AND_TASKS).
700   if ($_POST['update_tracking_mode']) {
701     $mdb2 = getConnection();
702     $sql = "update tt_teams set tracking_mode = 2 where tracking_mode = 0";
703     $affected = $mdb2->exec($sql);
704     if (is_a($affected, 'PEAR_Error'))
705       die($affected->getMessage());
706
707     print "Updated $affected teams...<br>\n";
708   }
709
710   if ($_POST["cleanup"]) {
711
712     $mdb2 = getConnection();
713     $inactive_teams = ttTeamHelper::getInactiveTeams();
714
715     $count = count($inactive_teams);
716     print "$count inactive teams found...<br>\n";
717     for ($i = 0; $i < $count; $i++) {
718       print "  deleting team ".$inactive_teams[$i]."<br>\n";
719       $res = ttTeamHelper::delete($inactive_teams[$i]);
720     }
721
722     setChange("OPTIMIZE TABLE tt_client_project_binds");
723     setChange("OPTIMIZE TABLE tt_clients");
724     setChange("OPTIMIZE TABLE tt_config");
725     setChange("OPTIMIZE TABLE tt_custom_field_log");
726     setChange("OPTIMIZE TABLE tt_custom_field_options");
727     setChange("OPTIMIZE TABLE tt_custom_fields"); 
728     setChange("OPTIMIZE TABLE tt_expense_items");
729     setChange("OPTIMIZE TABLE tt_fav_reports");
730     setChange("OPTIMIZE TABLE tt_invoices");
731     setChange("OPTIMIZE TABLE tt_log");
732     setChange("OPTIMIZE TABLE tt_monthly_quotas");
733     setChange("OPTIMIZE TABLE tt_project_task_binds");
734     setChange("OPTIMIZE TABLE tt_projects");
735     setChange("OPTIMIZE TABLE tt_tasks");
736     setChange("OPTIMIZE TABLE tt_teams");
737     setChange("OPTIMIZE TABLE tt_tmp_refs");
738     setChange("OPTIMIZE TABLE tt_user_project_binds");
739     setChange("OPTIMIZE TABLE tt_users");
740   }
741
742   print "done.<br>\n";
743 }
744 ?>
745 <html>
746 <body>
747 <div align="center">
748 <form method="POST">
749 <h2>DB Install</h2>
750 <table width="80%" border="1" cellpadding="10" cellspacing="0">
751   <tr>
752     <td width="80%"><b>Create database structure (v1.9.30)</b>
753     <br>(applies only to new installations, do not execute when updating)</br></td><td><input type="submit" name="crstructure" value="Create"></td>
754   </tr>
755 </table>
756
757 <h2>Updates</h2>
758
759 <table width="80%" border="1" cellpadding="10" cellspacing="0">
760   <tr valign="top">
761     <td>Update database structure (v0.5 to v0.7)</td><td><input type="submit" name="convert5to7" value="Update"></td>
762   </tr>
763   <tr valign="top">
764     <td>Update database structure (v0.7 to v1.3.3)</td>
765     <td><input type="submit" name="convert7to133" value="Update"><br><input type="submit" name="update_projects" value="Update projects"></td>
766   </tr>
767   <tr valign="top">
768     <td>Update database structure (v1.3.3 to v1.3.40)</td>
769     <td><input type="submit" name="convert133to1340" value="Update"><br><input type="submit" name="update_companies" value="Update companies"></td>
770   </tr>
771   <tr valign="top">
772     <td>Update database structure (v1.3.40 to v1.4.85)</td>
773     <td><input type="submit" name="convert1340to1485" value="Update"><br><input type="submit" name="update_to_team_id" value="Update team_id"></td>
774   </tr>
775   <tr valign="top">
776     <td>Update database structure (v1.4.85 to v1.5.79)</td>
777     <td><input type="submit" name="convert1485to1579" value="Update"></td>
778   </tr>
779   <tr valign="top">
780     <td>Update database structure (v1.5.79 to v1.6)</td>
781     <td><input type="submit" name="convert1579to1600" value="Update"><br><input type="submit" name="update_clients" value="Update clients"><br><input type="submit" name="update_custom_fields" value="Update custom fields"><br><input type="submit" name="update_tracking_mode" value="Update tracking mode"></td>
782   </tr>
783   <tr valign="top">
784     <td>Update database structure (v1.6 to v1.9)</td>
785     <td><input type="submit" name="convert1600to1900" value="Update"><br></td>
786   </tr>
787 </table>
788
789 <h2>DB Maintenance</h2>
790 <table width="80%" border="1" cellpadding="10" cellspacing="0">
791   <tr>
792     <td width="80%">Clean up DB from inactive teams</td><td><input type="submit" name="cleanup" value="Clean up"></td>
793   </tr>
794 </table>
795
796 </form>
797 </div>
798 </body>
799 </html>