X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2FttRoleHelper.class.php;h=4a666cb61e93c4155a919797a9d0745493a09168;hb=7218f84ad58ed22a926b3ffa7a152ca7f93f0204;hp=f96d7c477bcf655b1228bdcc6a2f5460f9c19012;hpb=ecbf1ecf19bfeb85794717fc7a6deb7ecc8c5f58;p=timetracker.git diff --git a/WEB-INF/lib/ttRoleHelper.class.php b/WEB-INF/lib/ttRoleHelper.class.php index f96d7c47..4a666cb6 100644 --- a/WEB-INF/lib/ttRoleHelper.class.php +++ b/WEB-INF/lib/ttRoleHelper.class.php @@ -68,20 +68,53 @@ class ttRoleHelper { return false; } - // The getRoleByRank looks up a role by its rank. - static function getRoleByRank($rank) { + // The getTopManagerRoleID obtains an ID for top manager role. + static function getTopManagerRoleID() { + $mdb2 = getConnection(); + + $sql = "select id from tt_roles where team_id = 0 and rank = 512"; + $res = $mdb2->query($sql); + + if (!is_a($res, 'PEAR_Error')) { + $val = $res->fetchRow(); + if ($val['id']) + return $val['id']; + } + return false; + } + + // isClientRole determines if the role is a "client" role. + // This simply means the role has no "track_own_time" right. + static function isClientRole($role_id) { + global $user; + $mdb2 = getConnection(); + + $sql = "select rights from tt_roles where team_id = $user->team_id and id = $role_id"; + $res = $mdb2->query($sql); + + if (!is_a($res, 'PEAR_Error')) { + $val = $res->fetchRow(); + if ($val['rights']) { + return !in_array('track_own_time', explode(',', $val['rights'])); + } + } + return false; + } + + // getRoleByRank looks up a role by its rank. + static function getRoleByRank($rank, $team_id) { global $user; $mdb2 = getConnection(); $rank = (int) $rank; // Cast to int just in case for better security. - $sql = "select id from tt_roles where team_id = $user->team_id and rank = $rank and (status = 1 or status = 0)"; + $sql = "select id from tt_roles where team_id = $team_id and rank = $rank and (status = 1 or status = 0)"; $res = $mdb2->query($sql); if (!is_a($res, 'PEAR_Error')) { $val = $res->fetchRow(); if ($val['id']) - return $val; + return $val['id']; } return false; } @@ -135,20 +168,65 @@ class ttRoleHelper { return true; } - // rolesExist - checks whether roles for team already exist. - static function rolesExist() + // createPredefinedRoles - creates a set of predefined roles for the team to use. + static function createPredefinedRoles($team_id, $lang) { + // We need localized role names and a new I18n object to obtain them. + import('I18n'); + $i18n = new I18n(); + $i18n->load($lang); + $mdb2 = getConnection(); - global $user; - $sql = "select count(*) as count from tt_roles where team_id = $user->team_id"; - $res = $mdb2->query($sql); - if (!is_a($res, 'PEAR_Error')) { - $val = $res->fetchRow(); - if ($val['count'] > 0) - return true; // Roles for team exist. - } - return false; + $rights_client = 'view_own_reports,view_own_charts,view_own_invoices,manage_own_settings'; + $rights_user = 'track_own_time,track_own_expenses,view_own_reports,view_own_charts,manage_own_settings,view_users'; + $rights_supervisor = $rights_user.',track_time,track_expenses,view_reports,view_charts,override_punch_mode,override_date_lock,swap_roles,approve_timesheets'; + $rights_comanager = $rights_supervisor.',manage_users,manage_projects,manage_tasks,manage_custom_fields,manage_clients,manage_invoices'; + $rights_manager = $rights_comanager.',manage_features,manage_basic_settings,manage_advanced_settings,manage_roles,export_data,manage_subgroups'; + + // Active roles. + $name = $mdb2->quote($i18n->getKey('role.user.label')); + $description = $mdb2->quote($i18n->getKey('role.user.description')); + $rights = $mdb2->quote($rights_user); + $sql = "insert into tt_roles (team_id, name, description, rank, rights, status) values($team_id, $name, $description, 4, $rights, 1)"; + $affected = $mdb2->exec($sql); + if (is_a($affected, 'PEAR_Error')) + return false; + + $name = $mdb2->quote($i18n->getKey('role.client.label')); + $description = $mdb2->quote($i18n->getKey('role.client.description')); + $rights = $mdb2->quote($rights_client); + $sql = "insert into tt_roles (team_id, name, description, rank, rights, status) values($team_id, $name, $description, 16, $rights, 1)"; + $affected = $mdb2->exec($sql); + if (is_a($affected, 'PEAR_Error')) + return false; + + $name = $mdb2->quote($i18n->getKey('role.comanager.label')); + $description = $mdb2->quote($i18n->getKey('role.comanager.description')); + $rights = $mdb2->quote($rights_comanager); + $sql = "insert into tt_roles (team_id, name, description, rank, rights, status) values($team_id, $name, $description, 68, $rights, 1)"; + $affected = $mdb2->exec($sql); + if (is_a($affected, 'PEAR_Error')) + return false; + + $name = $mdb2->quote($i18n->getKey('role.manager.label')); + $description = $mdb2->quote($i18n->getKey('role.manager.description')); + $rights = $mdb2->quote($rights_manager); + $sql = "insert into tt_roles (team_id, name, description, rank, rights, status) values($team_id, $name, $description, 324, $rights, 1)"; + $affected = $mdb2->exec($sql); + if (is_a($affected, 'PEAR_Error')) + return false; + + // Inactive roles. + $name = $mdb2->quote($i18n->getKey('role.supervisor.label')); + $description = $mdb2->quote($i18n->getKey('role.supervisor.description')); + $rights = $mdb2->quote($rights_supervisor); + $sql = "insert into tt_roles (team_id, name, description, rank, rights, status) values($team_id, $name, $description, 12, $rights, 0)"; + $affected = $mdb2->exec($sql); + if (is_a($affected, 'PEAR_Error')) + return false; + + return true; } // createDefaultRoles - creates a set of predefined roles for the team to use. @@ -158,11 +236,11 @@ class ttRoleHelper { global $i18n; global $user; - $rights_client = 'view_own_data,manage_own_settings'; - $rights_user = 'data_entry,view_own_data,manage_own_settings,view_users'; - $rights_supervisor = $rights_user.',on_behalf_data_entry,view_data,override_punch_mode,swap_roles,approve_timesheets'; + $rights_client = 'view_own_reports,view_own_charts,view_own_invoices,manage_own_settings'; + $rights_user = 'track_own_time,track_own_expenses,view_own_reports,view_own_charts,manage_own_settings,view_users'; + $rights_supervisor = $rights_user.',track_time,track_expenses,view_reports,view_charts,override_punch_mode,override_date_lock,swap_roles,approve_timesheets'; $rights_comanager = $rights_supervisor.',manage_users,manage_projects,manage_tasks,manage_custom_fields,manage_clients,manage_invoices'; - $rights_manager = $rights_comanager.'manage_features,manage_basic_settings,manage_advanced_settings,manage_roles,export_data,manage_subgroups'; + $rights_manager = $rights_comanager.',manage_features,manage_basic_settings,manage_advanced_settings,manage_roles,export_data,manage_subgroups'; // Active roles. $name = $mdb2->quote($i18n->getKey('role.user.label'));