X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2FttTeamHelper.class.php;h=1e6263131c00e9a1ceea25f74d519a14fa020400;hb=aeb30899d6ec142220d83b34fd8f6c68c05e8e90;hp=631d21202598e69a25dd776dc4dc4fb6923f9dec;hpb=3293ee1f5f59dca3c19a9b9ac21dca90e572b8dd;p=timetracker.git diff --git a/WEB-INF/lib/ttTeamHelper.class.php b/WEB-INF/lib/ttTeamHelper.class.php index 631d2120..1e626313 100644 --- a/WEB-INF/lib/ttTeamHelper.class.php +++ b/WEB-INF/lib/ttTeamHelper.class.php @@ -60,10 +60,13 @@ class ttTeamHelper { global $i18n; $mdb2 = getConnection(); + $group_id = $user->getGroup(); + $org_id = $user->org_id; + if (isset($options['getAllFields'])) - $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.group_id = $user->group_id and u.status = 1 order by upper(u.name)"; + $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.group_id = $group_id and u.org_id = $org_id and u.status = 1 order by upper(u.name)"; else - $sql = "select id, name from tt_users where group_id = $user->group_id and status = 1 order by upper(name)"; + $sql = "select id, name from tt_users where group_id = $group_id and org_id = $org_id and status = 1 order by upper(name)"; $res = $mdb2->query($sql); $user_list = array(); if (is_a($res, 'PEAR_Error')) @@ -103,7 +106,7 @@ class ttTeamHelper { if (!$val['id'] || !$val['role_id']) return false; - $modified_part = ', modified = now(), modified_ip = '.$mdb2->quote($_SERVER['REMOTE_ADDR']).', modified_by = '.$mdb2->quote($user->id); + $modified_part = ', modified = now(), modified_ip = '.$mdb2->quote($_SERVER['REMOTE_ADDR']).', modified_by = '.$user->id; // Promote user. $sql = "update tt_users set role_id = $user->role_id".$modified_part." where id = $user_id and group_id = $user->group_id"; @@ -173,42 +176,6 @@ class ttTeamHelper { return false; } - // getActiveProjects - returns an array of active projects for a group. - static function getActiveProjects($group_id) - { - $result = array(); - $mdb2 = getConnection(); - - $sql = "select id, name, description, tasks from tt_projects - where group_id = $group_id and status = 1 order by upper(name)"; - $res = $mdb2->query($sql); - $result = array(); - if (!is_a($res, 'PEAR_Error')) { - while ($val = $res->fetchRow()) { - $result[] = $val; - } - } - return $result; - } - - // getInactiveProjects - returns an array of inactive projects for a group. - static function getInactiveProjects($group_id) - { - $result = array(); - $mdb2 = getConnection(); - - $sql = "select id, name, description, tasks from tt_projects - where group_id = $group_id and status = 0 order by upper(name)"; - $res = $mdb2->query($sql); - $result = array(); - if (!is_a($res, 'PEAR_Error')) { - while ($val = $res->fetchRow()) { - $result[] = $val; - } - } - return $result; - } - // The getAllProjects obtains all projects in a group. static function getAllProjects($group_id, $all_fields = false) { $mdb2 = getConnection(); @@ -290,7 +257,14 @@ class ttTeamHelper { $result = array(); $mdb2 = getConnection(); - $sql = "select id, name, description, rank, rights from tt_roles where group_id = $user->group_id and rank < $user->rank and status = 1 order by rank"; + $group_id = $user->getGroup(); + $org_id = $user->org_id; + + // Determine max rank. If we are working in on behalf group + // then rank restriction does not apply. + $max_rank = $user->behalfGroup ? MAX_RANK : $user->rank; + + $sql = "select id, name, description, rank, rights from tt_roles where group_id = $group_id and org_id = $org_id and rank < $max_rank and status = 1 order by rank"; $res = $mdb2->query($sql); $result = array(); if (!is_a($res, 'PEAR_Error')) { @@ -348,7 +322,14 @@ class ttTeamHelper { $result = array(); $mdb2 = getConnection(); - $sql = "select id, name, description, rank, rights from tt_roles where group_id = $user->group_id and rank < $user->rank and status = 0 order by rank"; + $group_id = $user->getGroup(); + $org_id = $user->org_id; + + // Determine max rank. If we are working in on behalf group + // then rank restriction does not apply. + $max_rank = $user->behalfGroup ? MAX_RANK : $user->rank; + + $sql = "select id, name, description, rank, rights from tt_roles where group_id = $group_id and org_id = $org_id and rank < $max_rank and status = 0 order by rank"; $res = $mdb2->query($sql); $result = array(); if (!is_a($res, 'PEAR_Error')) { @@ -362,48 +343,6 @@ class ttTeamHelper { return $result; } - // The getActiveClients returns an array of active clients for a group. - static function getActiveClients($group_id, $all_fields = false) - { - $result = array(); - $mdb2 = getConnection(); - - if ($all_fields) - $sql = "select * from tt_clients where group_id = $group_id and status = 1 order by upper(name)"; - else - $sql = "select id, name from tt_clients where group_id = $group_id and status = 1 order by upper(name)"; - - $res = $mdb2->query($sql); - $result = array(); - if (!is_a($res, 'PEAR_Error')) { - while ($val = $res->fetchRow()) { - $result[] = $val; - } - } - return $result; - } - - // The getInactiveClients returns an array of inactive clients for a group. - static function getInactiveClients($group_id, $all_fields = false) - { - $result = array(); - $mdb2 = getConnection(); - - if ($all_fields) - $sql = "select * from tt_clients where group_id = $group_id and status = 0 order by upper(name)"; - else - $sql = "select id, name from tt_clients where group_id = $group_id and status = 0 order by upper(name)"; - - $res = $mdb2->query($sql); - $result = array(); - if (!is_a($res, 'PEAR_Error')) { - while ($val = $res->fetchRow()) { - $result[] = $val; - } - } - return $result; - } - // The getAllClients obtains all clients in a group. static function getAllClients($group_id, $all_fields = false) { $mdb2 = getConnection(); @@ -601,28 +540,6 @@ class ttTeamHelper { return false; } - // getPredefinedExpenses - obtains predefined expenses for a group. - static function getPredefinedExpenses($group_id) { - global $user; - $replaceDecimalMark = ('.' != $user->decimal_mark); - - $mdb2 = getConnection(); - - $result = array(); - $sql = "select id, name, cost from tt_predefined_expenses where group_id = $group_id"; - $res = $mdb2->query($sql); - $result = array(); - if (!is_a($res, 'PEAR_Error')) { - while ($val = $res->fetchRow()) { - if ($replaceDecimalMark) - $val['cost'] = str_replace('.', $user->decimal_mark, $val['cost']); - $result[] = $val; - } - return $result; - } - return false; - } - // getNotifications - obtains notification descriptions for a group. static function getNotifications($group_id) { $mdb2 = getConnection(); @@ -659,78 +576,6 @@ class ttTeamHelper { return false; } - // The getInactiveGroups is a maintenance function that returns an array of inactive group ids (max 100). - static function getInactiveGroups() { - $inactive_groups = array(); - $mdb2 = getConnection(); - - // Get all group ids for groups created or modified more than 9 months ago. - // $ts = date('Y-m-d', strtotime('-1 year')); - $ts = $mdb2->quote(date('Y-m-d', strtotime('-9 month'))); - $sql = "select id from tt_groups where created < $ts and (modified is null or modified < $ts) order by id"; - $res = $mdb2->query($sql); - - $count = 0; - if (!is_a($res, 'PEAR_Error')) { - while ($val = $res->fetchRow()) { - $group_id = $val['id']; - if (ttTeamHelper::isGroupActive($group_id) == false) { - $count++; - $inactive_groups[] = $group_id; - // Limit the array size for perfomance by allowing this operation on small chunks only. - if ($count >= 100) break; - } - } - return $inactive_groups; - } - return false; - } - - // The isGroupActive determines if a group is using Time Tracker or abandoned it. - static function isGroupActive($group_id) { - $users = array(); - - $mdb2 = getConnection(); - $sql = "select id from tt_users where group_id = $group_id"; - $res = $mdb2->query($sql); - if (is_a($res, 'PEAR_Error')) die($res->getMessage()); - while ($val = $res->fetchRow()) { - $users[] = $val['id']; - } - $user_list = implode(',', $users); // This is a comma-separated list of user ids. - if (!$user_list) - return false; // No users in group. - - $count = 0; - $ts = date('Y-m-d', strtotime('-2 years')); - $sql = "select count(*) as cnt from tt_log where user_id in ($user_list) and created > '$ts'"; - $res = $mdb2->query($sql); - if (!is_a($res, 'PEAR_Error')) { - if ($val = $res->fetchRow()) { - $count = $val['cnt']; - } - } - - if ($count == 0) - return false; // No time entries for the last 2 years. - - if ($count <= 5) { - // We will consider a group inactive if it has 5 or less time entries made more than 1 year ago. - $count_last_year = 0; - $ts = date('Y-m-d', strtotime('-1 year')); - $sql = "select count(*) as cnt from tt_log where user_id in ($user_list) and created > '$ts'"; - $res = $mdb2->query($sql); - if (!is_a($res, 'PEAR_Error')) { - if ($val = $res->fetchRow()) { - $count_last_year = $val['cnt']; - } - if ($count_last_year == 0) - return false; // No time entries for the last year and only a few entries before that. - } - } - return true; - } - // The delete function permanently deletes all data for a group. static function delete($group_id) { $mdb2 = getConnection(); @@ -775,6 +620,21 @@ class ttTeamHelper { $affected = $mdb2->exec($sql); if (is_a($affected, 'PEAR_Error')) return false; + // Delete cron entries. + $sql = "delete from tt_cron where group_id = $group_id"; + $affected = $mdb2->exec($sql); + if (is_a($affected, 'PEAR_Error')) return false; + + // Delete predefined expenses. + $sql = "delete from tt_predefined_expenses where group_id = $group_id"; + $affected = $mdb2->exec($sql); + if (is_a($affected, 'PEAR_Error')) return false; + + // Delete monthly quotas. + $sql = "delete from tt_monthly_quotas where group_id = $group_id"; + $affected = $mdb2->exec($sql); + if (is_a($affected, 'PEAR_Error')) return false; + // Delete group. $sql = "delete from tt_groups where id = $group_id"; $affected = $mdb2->exec($sql);