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