Introduced override_own_date_lock right.
[timetracker.git] / WEB-INF / lib / ttRoleHelper.class.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 // The ttRoleHelper is a class to help with custom group roles.
30 class ttRoleHelper {
31
32   // get - gets details of a role identified by its id.
33   static function get($id)
34   {
35     global $user;
36
37     $mdb2 = getConnection();
38
39     $sql = "select id, name, description, rank, rights, status from tt_roles
40       where id = $id and team_id = $user->team_id and (status = 0 or status = 1)";
41     $res = $mdb2->query($sql);
42
43     if (!is_a($res, 'PEAR_Error')) {
44       $val = $res->fetchRow();
45           if ($val['id'] != '') {
46         return $val;
47       } else
48         return false;
49     }
50     return false;
51   }
52
53   // The getRoleByName looks up a role by name.
54   static function getRoleByName($role_name) {
55
56     $mdb2 = getConnection();
57     global $user;
58
59     $sql = "select id from tt_roles where team_id = $user->team_id and name = ".
60       $mdb2->quote($role_name)." and (status = 1 or status = 0)";
61     $res = $mdb2->query($sql);
62
63     if (!is_a($res, 'PEAR_Error')) {
64       $val = $res->fetchRow();
65       if ($val['id'])
66         return $val;
67     }
68     return false;
69   }
70
71   // The getTopManagerRoleID obtains an ID for top manager role.
72   static function getTopManagerRoleID() {
73     $mdb2 = getConnection();
74
75     $sql = "select id from tt_roles where team_id = 0 and rank = 512";
76     $res = $mdb2->query($sql);
77
78     if (!is_a($res, 'PEAR_Error')) {
79       $val = $res->fetchRow();
80       if ($val['id'])
81         return $val['id'];
82     }
83     return false;
84   }
85
86   // isClientRole determines if the role is a "client" role.
87   // This simply means the role has no "track_own_time" right.
88   static function isClientRole($role_id) {
89     global $user;
90     $mdb2 = getConnection();
91
92     $sql = "select rights from tt_roles where team_id = $user->team_id and id = $role_id";
93     $res = $mdb2->query($sql);
94
95     if (!is_a($res, 'PEAR_Error')) {
96       $val = $res->fetchRow();
97       if ($val['rights']) {
98         return !in_array('track_own_time', explode(',', $val['rights']));
99       }
100     }
101     return false;
102   }
103
104   // getRoleByRank looks up a role by its rank.
105   static function getRoleByRank($rank, $team_id) {
106     global $user;
107     $mdb2 = getConnection();
108
109     $rank = (int) $rank; // Cast to int just in case for better security.
110
111     $sql = "select id from tt_roles where team_id = $team_id and rank = $rank and (status = 1 or status = 0)";
112     $res = $mdb2->query($sql);
113
114     if (!is_a($res, 'PEAR_Error')) {
115       $val = $res->fetchRow();
116       if ($val['id'])
117         return $val['id'];
118     }
119     return false;
120   }
121
122   // update function updates a role in the database.
123   static function update($fields) {
124     global $user;
125     $mdb2 = getConnection();
126
127     $id = (int)$fields['id'];
128     if (isset($fields['name'])) $name_part = 'name = '.$mdb2->quote($fields['name']);
129     if (isset($fields['rank'])) $rank_part = ', rank = '.(int)$fields['rank'];
130     if (isset($fields['description'])) $descr_part = ', description = '.$mdb2->quote($fields['description']);
131     if (isset($fields['status'])) $status_part = ', status = '.(int)$fields['status'];
132     if (isset($fields['rights'])) $rights_part = ', rights = '.$mdb2->quote($fields['rights']);
133     $parts = trim($name_part.$rank_part.$descr_part.$status_part.$rights_part, ',');
134     $sql = "update tt_roles set $parts where id = $id and team_id = $user->team_id";
135     $affected = $mdb2->exec($sql);
136     return (!is_a($affected, 'PEAR_Error'));
137   }
138
139   // delete - marks the role as deleted.
140   static function delete($role_id) {
141     global $user;
142
143     $mdb2 = getConnection();
144
145     // Mark the task as deleted.
146     $sql = "update tt_roles set status = NULL where id = $role_id and team_id = $user->team_id";
147     $affected = $mdb2->exec($sql);
148     return (!is_a($affected, 'PEAR_Error'));
149   }
150
151   // insert - inserts an entry into tt_roles table.
152   static function insert($fields)
153   {
154     $mdb2 = getConnection();
155
156     $team_id = (int) $fields['team_id'];
157     $name = $fields['name'];
158     $rank = (int) $fields['rank'];
159     $description = $fields['description'];
160     $rights = $fields['rights'];
161     $status = $fields['status'];
162
163     $sql = "insert into tt_roles (team_id, name, rank, description, rights, status)
164       values ($team_id, ".$mdb2->quote($name).", $rank, ".$mdb2->quote($description).", ".$mdb2->quote($rights).", ".$mdb2->quote($status).")";
165     $affected = $mdb2->exec($sql);
166     if (is_a($affected, 'PEAR_Error'))
167       return false;
168
169     return true;
170   }
171
172   // createPredefinedRoles - creates a set of predefined roles for the team to use.
173   static function createPredefinedRoles($team_id, $lang)
174   {
175     // We need localized role names and a new I18n object to obtain them.
176     import('I18n');
177     $i18n = new I18n();
178     $i18n->load($lang);
179
180     $mdb2 = getConnection();
181
182     $rights_client = 'view_own_reports,view_own_charts,view_own_invoices,manage_own_settings';
183     $rights_user = 'track_own_time,track_own_expenses,view_own_reports,view_own_charts,manage_own_settings,view_users';
184     $rights_supervisor = $rights_user.',track_time,track_expenses,view_reports,view_charts,override_punch_mode,override_date_lock,override_own_date_lock,swap_roles,approve_timesheets';
185     $rights_comanager = $rights_supervisor.',manage_users,manage_projects,manage_tasks,manage_custom_fields,manage_clients,manage_invoices';
186     $rights_manager = $rights_comanager.',manage_features,manage_basic_settings,manage_advanced_settings,manage_roles,export_data,manage_subgroups';
187
188     // Active roles.
189     $name = $mdb2->quote($i18n->getKey('role.user.label'));
190     $description = $mdb2->quote($i18n->getKey('role.user.description'));
191     $rights = $mdb2->quote($rights_user);
192     $sql = "insert into tt_roles (team_id, name, description, rank, rights, status) values($team_id, $name, $description, 4, $rights, 1)";
193     $affected = $mdb2->exec($sql);
194     if (is_a($affected, 'PEAR_Error'))
195       return false;
196
197     $name = $mdb2->quote($i18n->getKey('role.client.label'));
198     $description = $mdb2->quote($i18n->getKey('role.client.description'));
199     $rights = $mdb2->quote($rights_client);
200     $sql = "insert into tt_roles (team_id, name, description, rank, rights, status) values($team_id, $name, $description, 16, $rights, 1)";
201     $affected = $mdb2->exec($sql);
202     if (is_a($affected, 'PEAR_Error'))
203       return false;
204
205     $name = $mdb2->quote($i18n->getKey('role.comanager.label'));
206     $description = $mdb2->quote($i18n->getKey('role.comanager.description'));
207     $rights = $mdb2->quote($rights_comanager);
208     $sql = "insert into tt_roles (team_id, name, description, rank, rights, status) values($team_id, $name, $description, 68, $rights, 1)";
209     $affected = $mdb2->exec($sql);
210     if (is_a($affected, 'PEAR_Error'))
211       return false;
212
213     $name = $mdb2->quote($i18n->getKey('role.manager.label'));
214     $description = $mdb2->quote($i18n->getKey('role.manager.description'));
215     $rights = $mdb2->quote($rights_manager);
216     $sql = "insert into tt_roles (team_id, name, description, rank, rights, status) values($team_id, $name, $description, 324, $rights, 1)";
217     $affected = $mdb2->exec($sql);
218     if (is_a($affected, 'PEAR_Error'))
219       return false;
220
221     // Inactive roles.
222     $name = $mdb2->quote($i18n->getKey('role.supervisor.label'));
223     $description = $mdb2->quote($i18n->getKey('role.supervisor.description'));
224     $rights = $mdb2->quote($rights_supervisor);
225     $sql = "insert into tt_roles (team_id, name, description, rank, rights, status) values($team_id, $name, $description, 12, $rights, 0)";
226     $affected = $mdb2->exec($sql);
227     if (is_a($affected, 'PEAR_Error'))
228       return false;
229
230     return true;
231   }
232
233   // createDefaultRoles - creates a set of predefined roles for the team to use.
234   static function createDefaultRoles()
235   {
236     $mdb2 = getConnection();
237     global $i18n;
238     global $user;
239
240     $rights_client = 'view_own_reports,view_own_charts,view_own_invoices,manage_own_settings';
241     $rights_user = 'track_own_time,track_own_expenses,view_own_reports,view_own_charts,manage_own_settings,view_users';
242     $rights_supervisor = $rights_user.',track_time,track_expenses,view_reports,view_charts,override_punch_mode,override_date_lock,override_own_date_lock,swap_roles,approve_timesheets';
243     $rights_comanager = $rights_supervisor.',manage_users,manage_projects,manage_tasks,manage_custom_fields,manage_clients,manage_invoices';
244     $rights_manager = $rights_comanager.',manage_features,manage_basic_settings,manage_advanced_settings,manage_roles,export_data,manage_subgroups';
245
246     // Active roles.
247     $name = $mdb2->quote($i18n->getKey('role.user.label'));
248     $description = $mdb2->quote($i18n->getKey('role.user.description'));
249     $rights = $mdb2->quote($rights_user);
250     $sql = "insert into tt_roles (team_id, name, description, rank, rights, status) values($user->team_id, $name, $description, 4, $rights, 1)";
251     $affected = $mdb2->exec($sql);
252     if (is_a($affected, 'PEAR_Error'))
253       return false;
254
255     $name = $mdb2->quote($i18n->getKey('role.client.label'));
256     $description = $mdb2->quote($i18n->getKey('role.client.description'));
257     $rights = $mdb2->quote($rights_client);
258     $sql = "insert into tt_roles (team_id, name, description, rank, rights, status) values($user->team_id, $name, $description, 16, $rights, 1)";
259     $affected = $mdb2->exec($sql);
260     if (is_a($affected, 'PEAR_Error'))
261       return false;
262
263     $name = $mdb2->quote($i18n->getKey('role.comanager.label'));
264     $description = $mdb2->quote($i18n->getKey('role.comanager.description'));
265     $rights = $mdb2->quote($rights_comanager);
266     $sql = "insert into tt_roles (team_id, name, description, rank, rights, status) values($user->team_id, $name, $description, 68, $rights, 1)";
267     $affected = $mdb2->exec($sql);
268     if (is_a($affected, 'PEAR_Error'))
269       return false;
270
271     $name = $mdb2->quote($i18n->getKey('role.manager.label'));
272     $description = $mdb2->quote($i18n->getKey('role.manager.description'));
273     $rights = $mdb2->quote($rights_manager);
274     $sql = "insert into tt_roles (team_id, name, description, rank, rights, status) values($user->team_id, $name, $description, 324, $rights, 1)";
275     $affected = $mdb2->exec($sql);
276     if (is_a($affected, 'PEAR_Error'))
277       return false;
278
279     // Inactive roles.
280     $name = $mdb2->quote($i18n->getKey('role.supervisor.label'));
281     $description = $mdb2->quote($i18n->getKey('role.supervisor.description'));
282     $rights = $mdb2->quote($rights_supervisor);
283     $sql = "insert into tt_roles (team_id, name, description, rank, rights, status) values($user->team_id, $name, $description, 12, $rights, 0)";
284     $affected = $mdb2->exec($sql);
285     if (is_a($affected, 'PEAR_Error'))
286       return false;
287
288     return true;
289   }
290 }