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.
11 // | There are only two ways to violate the license:
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).
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).
21 // | This license applies to this document only, not any other software
22 // | that it may be combined with.
24 // +----------------------------------------------------------------------+
26 // | https://www.anuko.com/time_tracker/credits.htm
27 // +----------------------------------------------------------------------+
29 import('ttUserHelper');
30 import('DateAndTime');
31 import('ttInvoiceHelper');
33 // Class ttTeamHelper - contains helper functions that operate with teams.
36 // The getUserCount function returns number of people in team.
37 static function getUserCount($team_id) {
38 $mdb2 = getConnection();
40 $sql = "select count(id) as cnt from tt_users where team_id = $team_id and status = 1";
41 $res = $mdb2->query($sql);
43 if (!is_a($res, 'PEAR_Error')) {
44 $val = $res->fetchRow();
50 // The getUsersForClient obtains all active and inactive users in a team that are relevant to a client.
51 static function getUsersForClient() {
53 $mdb2 = getConnection();
55 $sql = "select u.id, u.name from tt_user_project_binds upb
56 inner join tt_client_project_binds cpb on (upb.project_id = cpb.project_id and cpb.client_id = $user->client_id)
57 inner join tt_users u on (u.id = upb.user_id)
58 where (u.status = 1 or u.status = 0)
60 order by upper(u.name)";
61 $res = $mdb2->query($sql);
63 if (is_a($res, 'PEAR_Error'))
65 while ($val = $res->fetchRow()) {
71 // The getActiveUsers obtains all active users in a given team.
72 static function getActiveUsers($options = null) {
75 $mdb2 = getConnection();
77 if (isset($options['getAllFields']))
78 $sql = "select u.*, r.name as role_name, r.rank from tt_users u left join tt_roles r on (u.role_id = r.id) where u.team_id = $user->team_id and u.status = 1 order by upper(u.name)";
80 $sql = "select id, name from tt_users where team_id = $user->team_id and status = 1 order by upper(name)";
81 $res = $mdb2->query($sql);
83 if (is_a($res, 'PEAR_Error'))
85 while ($val = $res->fetchRow()) {
86 // Localize top manager role name, as it is not localized in db.
87 if ($val['rank'] == 512)
88 $val['role_name'] = $i18n->get('role.top_manager.label');
92 if (isset($options['putSelfFirst'])) {
93 // Put own entry at the front.
94 $cnt = count($user_list);
95 for($i = 0; $i < $cnt; $i++) {
96 if ($user_list[$i]['id'] == $user->id) {
97 $self = $user_list[$i]; // Found self.
98 array_unshift($user_list, $self); // Put own entry at the front.
99 array_splice($user_list, $i+1, 1); // Remove duplicate.
106 // The swapRolesWith swaps existing user role with that of another user.
107 static function swapRolesWith($user_id) {
109 $mdb2 = getConnection();
111 // Obtain role id for the user we are swapping ourselves with.
112 $sql = "select u.id, u.role_id from tt_users u left join tt_roles r on (u.role_id = r.id) where u.id = $user_id and u.team_id = $user->team_id and u.status = 1 and r.rank < $user->rank";
113 $res = $mdb2->query($sql);
114 if (is_a($res, 'PEAR_Error'))
116 $val = $res->fetchRow();
117 if (!$val['id'] || !$val['role_id'])
120 $modified_part = ', modified = now(), modified_ip = '.$mdb2->quote($_SERVER['REMOTE_ADDR']).', modified_by = '.$mdb2->quote($user->id);
123 $sql = "update tt_users set role_id = $user->role_id".$modified_part." where id = $user_id and team_id = $user->team_id";
124 $affected = $mdb2->exec($sql);
125 if (is_a($affected, 'PEAR_Error')) return false;
128 $role_id = $val['role_id'];
129 $sql = "update tt_users set role_id = $role_id".$modified_part." where id = $user->id and team_id = $user->team_id";
130 $affected = $mdb2->exec($sql);
131 if (is_a($affected, 'PEAR_Error')) return false;
136 // The getUsersForSwap obtains all users a current user can swap roles with.
137 static function getUsersForSwap() {
139 $mdb2 = getConnection();
141 $sql = "select u.id, u.name, r.rank, r.rights from tt_users u left join tt_roles r on (u.role_id = r.id) where u.team_id = $user->team_id and u.status = 1 and r.rank < $user->rank order by upper(u.name)";
142 $res = $mdb2->query($sql);
143 $user_list = array();
144 if (is_a($res, 'PEAR_Error'))
146 while ($val = $res->fetchRow()) {
147 $isClient = in_array('track_own_time', explode(',', $val['rights'])) ? 0 : 1; // Clients do not have track_own_time right.
149 continue; // Skip adding clients.
156 // The getUsers obtains all active and inactive (but not deleted) users in a given team.
157 static function getUsers() {
159 $mdb2 = getConnection();
160 $sql = "select id, name from tt_users where team_id = $user->team_id and (status = 1 or status = 0) order by upper(name)";
161 $res = $mdb2->query($sql);
162 $user_list = array();
163 if (is_a($res, 'PEAR_Error'))
165 while ($val = $res->fetchRow()) {
171 // The getInactiveUsers obtains all inactive users in a given team.
172 static function getInactiveUsers($team_id, $all_fields = false) {
173 $mdb2 = getConnection();
176 $sql = "select u.*, r.name as role_name from tt_users u left join tt_roles r on (u.role_id = r.id) where u.team_id = $team_id and u.status = 0 order by upper(u.name)";
178 $sql = "select id, name from tt_users where team_id = $team_id and status = 0 order by upper(name)";
179 $res = $mdb2->query($sql);
181 if (!is_a($res, 'PEAR_Error')) {
182 while ($val = $res->fetchRow()) {
190 // The getAllUsers obtains all users in a given team.
191 static function getAllUsers($team_id, $all_fields = false) {
192 $mdb2 = getConnection();
194 $sql = "select * from tt_users where team_id = $team_id order by upper(name)";
196 $sql = "select id, name from tt_users where team_id = $team_id order by upper(name)";
197 $res = $mdb2->query($sql);
199 if (!is_a($res, 'PEAR_Error')) {
200 while ($val = $res->fetchRow()) {
208 // getActiveProjects - returns an array of active projects for team.
209 static function getActiveProjects($team_id)
212 $mdb2 = getConnection();
214 $sql = "select id, name, description, tasks from tt_projects
215 where team_id = $team_id and status = 1 order by upper(name)";
216 $res = $mdb2->query($sql);
218 if (!is_a($res, 'PEAR_Error')) {
219 while ($val = $res->fetchRow()) {
226 // getInactiveProjects - returns an array of inactive projects for team.
227 static function getInactiveProjects($team_id)
230 $mdb2 = getConnection();
232 $sql = "select id, name, description, tasks from tt_projects
233 where team_id = $team_id and status = 0 order by upper(name)";
234 $res = $mdb2->query($sql);
236 if (!is_a($res, 'PEAR_Error')) {
237 while ($val = $res->fetchRow()) {
244 // The getAllProjects obtains all projects in a given team.
245 static function getAllProjects($team_id, $all_fields = false) {
246 $mdb2 = getConnection();
249 $sql = "select * from tt_projects where team_id = $team_id order by status, upper(name)";
251 $sql = "select id, name from tt_projects where team_id = $team_id order by status, upper(name)";
252 $res = $mdb2->query($sql);
254 if (!is_a($res, 'PEAR_Error')) {
255 while ($val = $res->fetchRow()) {
263 // getActiveTasks - returns an array of active tasks for team.
264 static function getActiveTasks($team_id)
267 $mdb2 = getConnection();
269 $sql = "select id, name, description from tt_tasks where team_id = $team_id and status = 1 order by upper(name)";
270 $res = $mdb2->query($sql);
272 if (!is_a($res, 'PEAR_Error')) {
273 while ($val = $res->fetchRow()) {
280 // getInactiveTasks - returns an array of inactive tasks for team.
281 static function getInactiveTasks($team_id)
284 $mdb2 = getConnection();
286 $sql = "select id, name, description from tt_tasks
287 where team_id = $team_id and status = 0 order by upper(name)";
288 $res = $mdb2->query($sql);
290 if (!is_a($res, 'PEAR_Error')) {
291 while ($val = $res->fetchRow()) {
298 // The getAllTasks obtains all tasks in a given team.
299 static function getAllTasks($team_id, $all_fields = false) {
300 $mdb2 = getConnection();
303 $sql = "select * from tt_tasks where team_id = $team_id order by status, upper(name)";
305 $sql = "select id, name from tt_tasks where team_id = $team_id order by status, upper(name)";
306 $res = $mdb2->query($sql);
308 if (!is_a($res, 'PEAR_Error')) {
309 while ($val = $res->fetchRow()) {
317 // getActiveRolesForUser - returns an array of relevant active roles for user with rank less than self.
318 // "Relevant" means that client roles are filtered out if Client plugin is disabled.
319 static function getActiveRolesForUser()
323 $mdb2 = getConnection();
325 $sql = "select id, name, description, rank, rights from tt_roles where team_id = $user->team_id and rank < $user->rank and status = 1 order by rank";
326 $res = $mdb2->query($sql);
328 if (!is_a($res, 'PEAR_Error')) {
329 while ($val = $res->fetchRow()) {
330 $val['is_client'] = in_array('track_own_time', explode(',', $val['rights'])) ? 0 : 1; // Clients do not have data entry right.
331 if ($val['is_client'] && !$user->isPluginEnabled('cl'))
332 continue; // Skip adding a client role.
339 // getActiveRoles - returns an array of active roles for team.
340 static function getActiveRoles($team_id)
343 $mdb2 = getConnection();
345 $sql = "select id, name, description, rank, rights from tt_roles where team_id = $team_id and status = 1 order by rank";
346 $res = $mdb2->query($sql);
348 if (!is_a($res, 'PEAR_Error')) {
349 while ($val = $res->fetchRow()) {
350 $val['is_client'] = in_array('track_own_time', explode(',', $val['rights'])) ? 0 : 1; // Clients do not have data entry right.
357 // getInactiveRoles - returns an array of inactive roles for team.
358 static function getInactiveRoles($team_id)
361 $mdb2 = getConnection();
363 $sql = "select id, name, rank, description from tt_roles
364 where team_id = $team_id and status = 0 order by rank";
365 $res = $mdb2->query($sql);
367 if (!is_a($res, 'PEAR_Error')) {
368 while ($val = $res->fetchRow()) {
375 // getInactiveRolesForUser - returns an array of relevant active roles for user with rank less than self.
376 // "Relevant" means that client roles are filtered out if Client plugin is disabled.
377 static function getInactiveRolesForUser()
381 $mdb2 = getConnection();
383 $sql = "select id, name, description, rank, rights from tt_roles where team_id = $user->team_id and rank < $user->rank and status = 0 order by rank";
384 $res = $mdb2->query($sql);
386 if (!is_a($res, 'PEAR_Error')) {
387 while ($val = $res->fetchRow()) {
388 $val['is_client'] = in_array('track_own_time', explode(',', $val['rights'])) ? 0 : 1; // Clients do not have data entry right.
389 if ($val['is_client'] && !$user->isPluginEnabled('cl'))
390 continue; // Skip adding a client role.
397 // The getActiveClients returns an array of active clients for team.
398 static function getActiveClients($team_id, $all_fields = false)
401 $mdb2 = getConnection();
404 $sql = "select * from tt_clients where team_id = $team_id and status = 1 order by upper(name)";
406 $sql = "select id, name from tt_clients where team_id = $team_id and status = 1 order by upper(name)";
408 $res = $mdb2->query($sql);
410 if (!is_a($res, 'PEAR_Error')) {
411 while ($val = $res->fetchRow()) {
418 // The getInactiveClients returns an array of inactive clients for team.
419 static function getInactiveClients($team_id, $all_fields = false)
422 $mdb2 = getConnection();
425 $sql = "select * from tt_clients where team_id = $team_id and status = 0 order by upper(name)";
427 $sql = "select id, name from tt_clients where team_id = $team_id and status = 0 order by upper(name)";
429 $res = $mdb2->query($sql);
431 if (!is_a($res, 'PEAR_Error')) {
432 while ($val = $res->fetchRow()) {
439 // The getAllClients obtains all clients in a given team.
440 static function getAllClients($team_id, $all_fields = false) {
441 $mdb2 = getConnection();
444 $sql = "select * from tt_clients where team_id = $team_id order by status, upper(name)";
446 $sql = "select id, name from tt_clients where team_id = $team_id order by status, upper(name)";
448 $res = $mdb2->query($sql);
450 if (!is_a($res, 'PEAR_Error')) {
451 while ($val = $res->fetchRow()) {
459 // The getActiveInvoices returns an array of active invoices for team.
460 static function getActiveInvoices($localizeDates = true)
463 $addPaidStatus = $user->isPluginEnabled('ps');
466 $mdb2 = getConnection();
468 if ($user->isClient())
469 $client_part = " and i.client_id = $user->client_id";
471 $sql = "select i.id, i.name, i.date, i.client_id, i.status, c.name as client_name from tt_invoices i
472 left join tt_clients c on (c.id = i.client_id)
473 where i.status = 1 and i.team_id = $user->team_id $client_part order by i.name";
474 $res = $mdb2->query($sql);
476 if (!is_a($res, 'PEAR_Error')) {
477 $dt = new DateAndTime(DB_DATEFORMAT);
478 while ($val = $res->fetchRow()) {
479 if ($localizeDates) {
480 $dt->parseVal($val['date']);
481 $val['date'] = $dt->toString($user->date_format);
484 $val['paid'] = ttInvoiceHelper::isPaid($val['id']);
491 // The getAllInvoices returns an array of all invoices for team.
492 static function getAllInvoices()
497 $mdb2 = getConnection();
499 $sql = "select * from tt_invoices where team_id = $user->team_id";
500 $res = $mdb2->query($sql);
502 if (!is_a($res, 'PEAR_Error')) {
503 $dt = new DateAndTime(DB_DATEFORMAT);
504 while ($val = $res->fetchRow()) {
511 // The getRecentInvoices returns an array of recent invoices (max 3) for a client.
512 static function getRecentInvoices($team_id, $client_id)
517 $mdb2 = getConnection();
519 $sql = "select i.id, i.name from tt_invoices i
520 left join tt_clients c on (c.id = i.client_id)
521 where i.team_id = $team_id and i.status = 1 and c.id = $client_id
522 order by i.id desc limit 3";
523 $res = $mdb2->query($sql);
525 if (!is_a($res, 'PEAR_Error')) {
526 $dt = new DateAndTime(DB_DATEFORMAT);
527 while ($val = $res->fetchRow()) {
534 // getUserToProjectBinds - obtains all user to project binds for a team.
535 static function getUserToProjectBinds($team_id) {
536 $mdb2 = getConnection();
539 $sql = "select * from tt_user_project_binds where user_id in (select id from tt_users where team_id = $team_id) order by user_id, status, project_id";
540 $res = $mdb2->query($sql);
542 if (!is_a($res, 'PEAR_Error')) {
543 while ($val = $res->fetchRow()) {
551 // The getAllCustomFields obtains all custom fields in a given team.
552 static function getAllCustomFields($team_id) {
553 $mdb2 = getConnection();
555 $sql = "select * from tt_custom_fields where team_id = $team_id order by status";
557 $res = $mdb2->query($sql);
559 if (!is_a($res, 'PEAR_Error')) {
560 while ($val = $res->fetchRow()) {
568 // The getAllCustomFieldOptions obtains all custom field options in a given team.
569 static function getAllCustomFieldOptions($team_id) {
570 $mdb2 = getConnection();
572 $sql = "select * from tt_custom_field_options where field_id in (select id from tt_custom_fields where team_id = $team_id) order by id";
574 $res = $mdb2->query($sql);
576 if (!is_a($res, 'PEAR_Error')) {
577 while ($val = $res->fetchRow()) {
585 // The getCustomFieldLog obtains all custom field log entries for a given team.
586 static function getCustomFieldLog($team_id) {
587 $mdb2 = getConnection();
589 $sql = "select * from tt_custom_field_log where field_id in (select id from tt_custom_fields where team_id = $team_id) order by id";
591 $res = $mdb2->query($sql);
593 if (!is_a($res, 'PEAR_Error')) {
594 while ($val = $res->fetchRow()) {
602 // getFavReports - obtains all favorite reports for all users in team.
603 static function getFavReports($team_id) {
604 $mdb2 = getConnection();
607 $sql = "select * from tt_fav_reports where user_id in (select id from tt_users where team_id = $team_id)";
608 $res = $mdb2->query($sql);
610 if (!is_a($res, 'PEAR_Error')) {
611 while ($val = $res->fetchRow()) {
619 // getExpenseItems - obtains all expense items for all users in team.
620 static function getExpenseItems($team_id) {
621 $mdb2 = getConnection();
624 $sql = "select * from tt_expense_items where user_id in (select id from tt_users where team_id = $team_id)";
625 $res = $mdb2->query($sql);
627 if (!is_a($res, 'PEAR_Error')) {
628 while ($val = $res->fetchRow()) {
636 // getPredefinedExpenses - obtains predefined expenses for team.
637 static function getPredefinedExpenses($team_id) {
639 $replaceDecimalMark = ('.' != $user->decimal_mark);
641 $mdb2 = getConnection();
644 $sql = "select id, name, cost from tt_predefined_expenses where team_id = $team_id";
645 $res = $mdb2->query($sql);
647 if (!is_a($res, 'PEAR_Error')) {
648 while ($val = $res->fetchRow()) {
649 if ($replaceDecimalMark)
650 $val['cost'] = str_replace('.', $user->decimal_mark, $val['cost']);
658 // getNotifications - obtains notification descriptions for team.
659 static function getNotifications($team_id) {
660 $mdb2 = getConnection();
663 $sql = "select c.id, c.cron_spec, c.email, c.report_condition, fr.name from tt_cron c
664 left join tt_fav_reports fr on (fr.id = c.report_id)
665 where c.team_id = $team_id and c.status = 1 and fr.status = 1";
666 $res = $mdb2->query($sql);
668 if (!is_a($res, 'PEAR_Error')) {
669 while ($val = $res->fetchRow()) {
677 // getMonthlyQuotas - obtains monthly quotas for team.
678 static function getMonthlyQuotas($team_id) {
679 $mdb2 = getConnection();
682 $sql = "select year, month, minutes from tt_monthly_quotas where team_id = $team_id";
683 $res = $mdb2->query($sql);
685 if (!is_a($res, 'PEAR_Error')) {
686 while ($val = $res->fetchRow()) {
694 // The markDeleted function marks the team and everything in it as deleted.
695 static function markDeleted($team_id) {
697 // Iterate through team users and mark them as deleted.
698 $users = ttTeamHelper::getAllUsers($team_id);
699 foreach ($users as $one_user) {
700 if (!ttUserHelper::markDeleted($one_user['id'])) return false;
703 // Mark tasks deleted.
704 if (!ttTeamHelper::markTasksDeleted($team_id)) return false;
706 $mdb2 = getConnection();
708 // Mark roles deleted.
709 $sql = "update tt_roles set status = NULL where team_id = $team_id";
710 $affected = $mdb2->exec($sql);
711 if (is_a($affected, 'PEAR_Error')) return false;
713 // Mark projects deleted.
714 $sql = "update tt_projects set status = NULL where team_id = $team_id";
715 $affected = $mdb2->exec($sql);
716 if (is_a($affected, 'PEAR_Error')) return false;
718 // Mark clients deleted.
719 $sql = "update tt_clients set status = NULL where team_id = $team_id";
720 $affected = $mdb2->exec($sql);
721 if (is_a($affected, 'PEAR_Error')) return false;
723 // Mark custom fields deleted.
724 $sql = "update tt_custom_fields set status = NULL where team_id = $team_id";
725 $affected = $mdb2->exec($sql);
726 if (is_a($affected, 'PEAR_Error')) return false;
728 // Mark team deleted.
729 $sql = "update tt_teams set status = NULL where id = $team_id";
730 $affected = $mdb2->exec($sql);
731 if (is_a($affected, 'PEAR_Error')) return false;
736 // The getTeamDetails function returns team details.
737 static function getTeamDetails($team_id) {
739 $mdb2 = getConnection();
741 $sql = "select t.name as team_name, u.id as manager_id, u.name as manager_name, u.login as manager_login, u.email as manager_email
743 inner join tt_users u on (u.team_id = t.id)
744 inner join tt_roles r on (r.id = u.role_id and r.rank = 512)
745 where t.id = $team_id";
747 $res = $mdb2->query($sql);
748 if (!is_a($res, 'PEAR_Error')) {
749 $val = $res->fetchRow();
756 // The insert function creates a new team.
757 static function insert($fields) {
760 $mdb2 = getConnection();
762 // Start with team name and currency.
763 $columns = 'name, currency';
764 $values = $mdb2->quote(trim($fields['name'])).', '.$mdb2->quote(trim($fields['currency']));
766 if ($fields['decimal_mark']) {
767 $columns .= ', decimal_mark';
768 $values .= ', '.$mdb2->quote($fields['decimal_mark']);
771 $lang = $fields['lang'];
776 $columns .= ', lang';
777 $values .= ', '.$mdb2->quote($lang);
779 if ($fields['date_format'] || defined('DATE_FORMAT_DEFAULT')) {
780 $date_format = $fields['date_format'] ? $fields['date_format'] : DATE_FORMAT_DEFAULT;
781 $columns .= ', date_format';
782 $values .= ', '.$mdb2->quote($date_format);
785 if ($fields['time_format'] || defined('TIME_FORMAT_DEFAULT')) {
786 $time_format = $fields['time_format'] ? $fields['time_format'] : TIME_FORMAT_DEFAULT;
787 $columns .= ', time_format';
788 $values .= ', '.$mdb2->quote($time_format);
791 if ($fields['week_start'] || defined('WEEK_START_DEFAULT')) {
792 $week_start = $fields['week_start'] ? $fields['week_start'] : WEEK_START_DEFAULT;
793 $columns .= ', week_start';
794 $values .= ', '.(int)$week_start;
797 if ($fields['tracking_mode']) {
798 $columns .= ', tracking_mode';
799 $values .= ', '.(int)$fields['tracking_mode'];
802 if ($fields['project_required']) {
803 $columns .= ', project_required';
804 $values .= ', '.(int)$fields['project_required'];
807 if ($fields['task_required']) {
808 $columns .= ', task_required';
809 $values .= ', '.(int)$fields['task_required'];
812 if ($fields['record_type']) {
813 $columns .= ', record_type';
814 $values .= ', '.(int)$fields['record_type'];
817 if ($fields['bcc_email']) {
818 $columns .= ', bcc_email';
819 $values .= ', '.$mdb2->quote($fields['bcc_email']);
822 if ($fields['plugins']) {
823 $columns .= ', plugins';
824 $values .= ', '.$mdb2->quote($fields['plugins']);
827 if ($fields['lock_spec']) {
828 $columns .= ', lock_spec';
829 $values .= ', '.$mdb2->quote($fields['lock_spec']);
832 if ($fields['workday_minutes']) {
833 $columns .= ', workday_minutes';
834 $values .= ', '.(int)$fields['workday_minutes'];
837 if ($fields['config']) {
838 $columns .= ', config';
839 $values .= ', '.$mdb2->quote($fields['config']);
842 $columns .= ', created, created_ip, created_by';
843 $values .= ', now(), '.$mdb2->quote($_SERVER['REMOTE_ADDR']).', '.$mdb2->quote($user->id);
845 $sql = "insert into tt_teams ($columns) values($values)";
846 $affected = $mdb2->exec($sql);
848 if (!is_a($affected, 'PEAR_Error')) {
849 $team_id = $mdb2->lastInsertID('tt_teams', 'id');
856 // The update function updates team information.
857 static function update($team_id, $fields)
860 $mdb2 = getConnection();
861 $name_part = 'name = '.$mdb2->quote($fields['name']);
864 $decimal_mark_part = '';
865 $date_format_part = '';
866 $time_format_part = '';
867 $week_start_part = '';
868 $tracking_mode_part = '';
869 $task_required_part = ' , task_required = '.(int) $fields['task_required'];
870 $record_type_part = '';
871 $bcc_email_part = '';
874 $lock_spec_part = '';
875 $workday_minutes_part = '';
877 if (isset($fields['currency'])) $currency_part = ', currency = '.$mdb2->quote($fields['currency']);
878 if (isset($fields['lang'])) $lang_part = ', lang = '.$mdb2->quote($fields['lang']);
879 if (isset($fields['decimal_mark'])) $decimal_mark_part = ', decimal_mark = '.$mdb2->quote($fields['decimal_mark']);
880 if (isset($fields['date_format'])) $date_format_part = ', date_format = '.$mdb2->quote($fields['date_format']);
881 if (isset($fields['time_format'])) $time_format_part = ', time_format = '.$mdb2->quote($fields['time_format']);
882 if (isset($fields['week_start'])) $week_start_part = ', week_start = '.(int) $fields['week_start'];
883 if (isset($fields['tracking_mode'])) $tracking_mode_part = ', tracking_mode = '.(int) $fields['tracking_mode'];
884 if (isset($fields['record_type'])) $record_type_part = ', record_type = '.(int) $fields['record_type'];
885 if (isset($fields['bcc_email'])) $bcc_email_part = ', bcc_email = '.$mdb2->quote($fields['bcc_email']);
886 if (isset($fields['plugins'])) $plugins_part = ', plugins = '.$mdb2->quote($fields['plugins']);
887 if (isset($fields['config'])) $config_part = ', config = '.$mdb2->quote($fields['config']);
888 if (isset($fields['lock_spec'])) $lock_spec_part = ', lock_spec = '.$mdb2->quote($fields['lock_spec']);
889 if (isset($fields['workday_minutes'])) $workday_minutes_part = ', workday_minutes = '.$mdb2->quote($fields['workday_minutes']);
890 $modified_part = ', modified = now(), modified_ip = '.$mdb2->quote($_SERVER['REMOTE_ADDR']).', modified_by = '.$mdb2->quote($user->id);
892 $sql = "update tt_teams set $name_part $currency_part $lang_part $decimal_mark_part
893 $date_format_part $time_format_part $week_start_part $tracking_mode_part $task_required_part $record_type_part
894 $bcc_email_part $plugins_part $config_part $lock_spec_part $workday_minutes_part $modified_part where id = $team_id";
895 $affected = $mdb2->exec($sql);
896 if (is_a($affected, 'PEAR_Error')) return false;
901 // The getInactiveTeams is a maintenance function that returns an array of inactive team ids (max 100).
902 static function getInactiveTeams() {
903 $inactive_teams = array();
904 $mdb2 = getConnection();
906 // Get all team ids for teams created or modified more than 8 months ago.
907 // $ts = date('Y-m-d', strtotime('-1 year'));
908 $ts = $mdb2->quote(date('Y-m-d', strtotime('-8 month')));
909 $sql = "select id from tt_teams where created < $ts and (modified is null or modified < $ts) order by id";
910 $res = $mdb2->query($sql);
913 if (!is_a($res, 'PEAR_Error')) {
914 while ($val = $res->fetchRow()) {
915 $team_id = $val['id'];
916 if (ttTeamHelper::isTeamActive($team_id) == false) {
918 $inactive_teams[] = $team_id;
919 // Limit the array size for perfomance by allowing this operation on small chunks only.
920 if ($count >= 100) break;
923 return $inactive_teams;
928 // The isTeamActive determines if a team is using Time Tracker or abandoned it.
929 static function isTeamActive($team_id) {
932 $mdb2 = getConnection();
933 $sql = "select id from tt_users where team_id = $team_id";
934 $res = $mdb2->query($sql);
935 if (is_a($res, 'PEAR_Error')) die($res->getMessage());
936 while ($val = $res->fetchRow()) {
937 $users[] = $val['id'];
939 $user_list = implode(',', $users); // This is a comma-separated list of user ids.
941 return false; // No users in team.
944 $ts = date('Y-m-d', strtotime('-2 years'));
945 $sql = "select count(*) as cnt from tt_log where user_id in ($user_list) and created > '$ts'";
946 $res = $mdb2->query($sql);
947 if (!is_a($res, 'PEAR_Error')) {
948 if ($val = $res->fetchRow()) {
949 $count = $val['cnt'];
954 return false; // No time entries for the last 2 years.
957 // We will consider a team inactive if it has 5 or less time entries made more than 1 year ago.
958 $count_last_year = 0;
959 $ts = date('Y-m-d', strtotime('-1 year'));
960 $sql = "select count(*) as cnt from tt_log where user_id in ($user_list) and created > '$ts'";
961 $res = $mdb2->query($sql);
962 if (!is_a($res, 'PEAR_Error')) {
963 if ($val = $res->fetchRow()) {
964 $count_last_year = $val['cnt'];
966 if ($count_last_year == 0)
967 return false; // No time entries for the last year and only a few entries before that.
973 // The delete function permanently deletes all data for a team.
974 static function delete($team_id) {
975 $mdb2 = getConnection();
978 $sql = "select id from tt_users where team_id = $team_id";
979 $res = $mdb2->query($sql);
980 if (is_a($res, 'PEAR_Error')) return false;
981 while ($val = $res->fetchRow()) {
982 $user_id = $val['id'];
983 if (!ttUserHelper::delete($user_id)) return false;
987 if (!ttTeamHelper::deleteTasks($team_id)) return false;
989 // Delete client to project binds.
990 $sql = "delete from tt_client_project_binds where client_id in (select id from tt_clients where team_id = $team_id)";
991 $affected = $mdb2->exec($sql);
992 if (is_a($affected, 'PEAR_Error')) return false;
995 $sql = "delete from tt_projects where team_id = $team_id";
996 $affected = $mdb2->exec($sql);
997 if (is_a($affected, 'PEAR_Error')) return false;
1000 $sql = "delete from tt_clients where team_id = $team_id";
1001 $affected = $mdb2->exec($sql);
1002 if (is_a($affected, 'PEAR_Error')) return false;
1005 $sql = "delete from tt_invoices where team_id = $team_id";
1006 $affected = $mdb2->exec($sql);
1007 if (is_a($affected, 'PEAR_Error')) return false;
1009 // Delete custom fields.
1010 if (!ttTeamHelper::deleteCustomFields($team_id)) return false;
1013 $sql = "delete from tt_roles where team_id = $team_id";
1014 $affected = $mdb2->exec($sql);
1015 if (is_a($affected, 'PEAR_Error')) return false;
1018 $sql = "delete from tt_teams where id = $team_id";
1019 $affected = $mdb2->exec($sql);
1020 if (is_a($affected, 'PEAR_Error')) return false;
1025 // The markTasksDeleted deletes task binds and marks the tasks as deleted for a team.
1026 static function markTasksDeleted($team_id) {
1027 $mdb2 = getConnection();
1028 $sql = "select id from tt_tasks where team_id = $team_id";
1029 $res = $mdb2->query($sql);
1030 if (is_a($res, 'PEAR_Error')) return false;
1032 while ($val = $res->fetchRow()) {
1034 // Delete task binds.
1035 $task_id = $val['id'];
1036 $sql = "delete from tt_project_task_binds where task_id = $task_id";
1037 $affected = $mdb2->exec($sql);
1038 if (is_a($affected, 'PEAR_Error')) return false;
1040 // Mark task as deleted.
1041 $sql = "update tt_tasks set status = NULL where id = $task_id";
1042 $affected = $mdb2->exec($sql);
1043 if (is_a($affected, 'PEAR_Error')) return false;
1049 // The deleteTasks deletes all tasks and task binds for an inactive team.
1050 static function deleteTasks($team_id) {
1051 $mdb2 = getConnection();
1052 $sql = "select id from tt_tasks where team_id = $team_id";
1053 $res = $mdb2->query($sql);
1054 if (is_a($res, 'PEAR_Error')) return false;
1056 while ($val = $res->fetchRow()) {
1058 // Delete task binds.
1059 $task_id = $val['id'];
1060 $sql = "delete from tt_project_task_binds where task_id = $task_id";
1061 $affected = $mdb2->exec($sql);
1062 if (is_a($affected, 'PEAR_Error')) return false;
1065 $sql = "delete from tt_tasks where id = $task_id";
1066 $affected = $mdb2->exec($sql);
1067 if (is_a($affected, 'PEAR_Error')) return false;
1073 // The deleteCustomFields cleans up tt_custom_field_log, tt_custom_field_options and tt_custom_fields tables for an inactive team.
1074 static function deleteCustomFields($team_id) {
1075 $mdb2 = getConnection();
1076 $sql = "select id from tt_custom_fields where team_id = $team_id";
1077 $res = $mdb2->query($sql);
1078 if (is_a($res, 'PEAR_Error')) return false;
1080 while ($val = $res->fetchRow()) {
1081 $field_id = $val['id'];
1083 // Clean up tt_custom_field_log.
1084 $sql = "delete from tt_custom_field_log where field_id = $field_id";
1085 $affected = $mdb2->exec($sql);
1086 if (is_a($affected, 'PEAR_Error')) return false;
1088 // Clean up tt_custom_field_options.
1089 $sql = "delete from tt_custom_field_options where field_id = $field_id";
1090 $affected = $mdb2->exec($sql);
1091 if (is_a($affected, 'PEAR_Error')) return false;
1093 // Delete custom field.
1094 $sql = "delete from tt_custom_fields where id = $field_id";
1095 $affected = $mdb2->exec($sql);
1096 if (is_a($affected, 'PEAR_Error')) return false;
1102 // enablePlugin either enables or disables a specific plugin for team.
1103 static function enablePlugin($plugin, $enable = true)
1106 if (!$user->can('manage_features'))
1109 $plugin_array = explode(',', $user->plugins);
1110 if ($enable && !in_array($plugin, $plugin_array))
1111 $plugin_array[] = $plugin; // Add plugin to array.
1113 if (!$enable && in_array($plugin, $plugin_array)) {
1114 $key = array_search($plugin, $plugin_array);
1116 unset($plugin_array[$key]); // Remove plugin from array.
1119 $plugins = implode(',', $plugin_array);
1120 if ($plugins != $user->plugins) {
1121 if (!ttTeamHelper::update($user->team_id, array('name' => $user->team,'plugins' => $plugins)))
1123 $user->plugins = $plugins;