forked from anuko/timetracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathttAdmin.class.php
More file actions
365 lines (310 loc) · 13.2 KB
/
Copy pathttAdmin.class.php
File metadata and controls
365 lines (310 loc) · 13.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
<?php
// +----------------------------------------------------------------------+
// | Anuko Time Tracker
// +----------------------------------------------------------------------+
// | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
// +----------------------------------------------------------------------+
// | LIBERAL FREEWARE LICENSE: This source code document may be used
// | by anyone for any purpose, and freely redistributed alone or in
// | combination with other software, provided that the license is obeyed.
// |
// | There are only two ways to violate the license:
// |
// | 1. To redistribute this code in source form, with the copyright
// | notice or license removed or altered. (Distributing in compiled
// | forms without embedded copyright notices is permitted).
// |
// | 2. To redistribute modified versions of this code in *any* form
// | that bears insufficient indications that the modifications are
// | not the work of the original author(s).
// |
// | This license applies to this document only, not any other software
// | that it may be combined with.
// |
// +----------------------------------------------------------------------+
// | Contributors:
// | https://www.anuko.com/time_tracker/credits.htm
// +----------------------------------------------------------------------+
import('ttUser');
// ttAdmin class is used to perform admin tasks.
class ttAdmin {
var $err = null; // Error object, passed to us as reference.
// We use it to communicate errors to caller.
// Constructor.
function __construct(&$err = null) {
$this->err = $err;
}
// getSubgroups rerurns an array of subgroups for a group.
function getSubgroups($group_id) {
$mdb2 = getConnection();
$subgroups = array();
$sql = "select id from tt_groups where parent_id = $group_id";
$res = $mdb2->query($sql);
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
$subgroups[] = $val;
}
}
return $subgroups;
}
// getUsers obtains user ids in a group.
function getUsers($group_id) {
$mdb2 = getConnection();
$sql = "select id from tt_users where group_id = $group_id";
$res = $mdb2->query($sql);
$users = array();
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
$users[] = $val;
}
}
return $users;
}
// markUserDeleted marks a user and all things associated with user as deleted.
function markUserDeleted($user_id) {
$mdb2 = getConnection();
// Mark user binds as deleted.
$sql = "update tt_user_project_binds set status = NULL where user_id = $user_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) return false;
// Mark favorite reports as deleted.
$sql = "update tt_fav_reports set status = NULL where user_id = $user_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) return false;
// Mark user as deleted.
global $user;
$modified_part = ', modified = now(), modified_ip = '.$mdb2->quote($_SERVER['REMOTE_ADDR']).', modified_by = '.$mdb2->quote($user->id);
$sql = "update tt_users set status = NULL $modified_part where id = $user_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) return false;
return true;
}
// The markTasksDeleted deletes task binds and marks the tasks as deleted for a group.
function markTasksDeleted($group_id) {
$mdb2 = getConnection();
$sql = "select id from tt_tasks where group_id = $group_id";
$res = $mdb2->query($sql);
if (is_a($res, 'PEAR_Error')) return false;
while ($val = $res->fetchRow()) {
// Delete task binds.
$task_id = $val['id'];
$sql = "delete from tt_project_task_binds where task_id = $task_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) return false;
// Mark task as deleted.
$sql = "update tt_tasks set status = NULL where id = $task_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) return false;
}
return true;
}
// markGroupDeleted marks the group and everything in it as deleted.
function markGroupDeleted($group_id) {
// Keep the logic simple by returning false on first error.
// Obtain subgroups and call self recursively on them.
$subgroups = $this->getSubgroups($group_id);
foreach($subgroups as $subgroup) {
if (!$this->markGroupDeleted($subgroup['id']))
return false;
}
// Now that we are done with subgroups, handle this group.
$users = $this->getUsers($group_id);
// Iterate through group users and mark them as deleted.
foreach ($users as $one_user) {
if (!$this->markUserDeleted($one_user['id']))
return false;
}
// Mark tasks deleted.
if (!$this->markTasksDeleted($group_id)) return false;
$mdb2 = getConnection();
// Mark roles deleted.
$sql = "update tt_roles set status = NULL where group_id = $group_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) return false;
// Mark projects deleted.
$sql = "update tt_projects set status = NULL where group_id = $group_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) return false;
// Mark clients deleted.
$sql = "update tt_clients set status = NULL where group_id = $group_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) return false;
// Mark invoices deleted.
$sql = "update tt_invoices set status = NULL where group_id = $group_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) return false;
// Mark custom fields deleted.
$sql = "update tt_custom_fields set status = NULL where group_id = $group_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) return false;
// Mark notifications deleted.
$sql = "update tt_cron set status = NULL where group_id = $group_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) return false;
// Note: we don't mark tt_log or tt_expense_items deleted here.
// Reasoning is:
//
// 1) Users may mark some of them deleted during their work.
// If we mark all of them deleted here, we can't recover nicely
// as we'll lose track of what was accidentally deleted by user.
//
// 2) DB maintenance script (Clean up DB from inactive groups) should
// get rid of these items permanently eventually.
// Mark group deleted.
global $user;
$modified_part = ', modified = now(), modified_ip = '.$mdb2->quote($_SERVER['REMOTE_ADDR']).', modified_by = '.$mdb2->quote($user->id);
$sql = "update tt_groups set status = NULL $modified_part where id = $group_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) return false;
return true;
}
// validateGroupInfo validates group information entered by user.
function validateGroupInfo($fields) {
global $i18n;
global $auth;
$result = true;
if (!ttValidString($fields['group_name'], true)) {
$this->err->add($i18n->get('error.field'), $i18n->get('label.group_name'));
$result = false;
}
if (!ttValidString($fields['user_name'])) {
$this->err->add($i18n->get('error.field'), $i18n->get('label.manager_name'));
$result = false;
}
if (!ttValidString($fields['new_login'])) {
$this->err->add($i18n->get('error.field'), $i18n->get('label.manager_login'));
$result = false;
}
// If we change login, it must be unique.
if ($fields['new_login'] != $fields['old_login']) {
if (ttUserHelper::getUserByLogin($fields['new_login'])) {
$this->err->add($i18n->get('error.user_exists'));
$result = false;
}
}
if (!$auth->isPasswordExternal() && ($fields['password1'] || $fields['password2'])) {
if (!ttValidString($fields['password1'])) {
$this->err->add($i18n->get('error.field'), $i18n->get('label.password'));
$result = false;
}
if (!ttValidString($fields['password2'])) {
$this->err->add($i18n->get('error.field'), $i18n->get('label.confirm_password'));
$result = false;
}
if ($fields['password1'] !== $fields['password2']) {
$this->err->add($i18n->get('error.not_equal'), $i18n->get('label.password'), $i18n->get('label.confirm_password'));
$result = false;
}
}
if (!ttValidEmail($fields['email'], true)) {
$this->err->add($i18n->get('error.field'), $i18n->get('label.email'));
$result = false;
}
return $result;
}
// updateGroup validates user input and updates the group with new information.
function updateGroup($group_id, $fields) {
if (!$this->validateGroupInfo($fields)) return false; // Can't continue as user input is invalid.
global $user;
$mdb2 = getConnection();
// Update group name if it changed.
if ($fields['old_group_name'] != $fields['new_group_name']) {
$name_part = 'name = '.$mdb2->quote($fields['new_group_name']);
$modified_part = ', modified = now(), modified_ip = '.$mdb2->quote($_SERVER['REMOTE_ADDR']).', modified_by = '.$mdb2->quote($user->id);
$sql = 'update tt_groups set '.$name_part.$modified_part.' where id = '.$group_id;
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) return false;
}
// Update group manager.
$user_id = $fields['user_id'];
$login_part = 'login = '.$mdb2->quote($fields['new_login']);
if ($fields['password1'])
$password_part = ', password = md5('.$mdb2->quote($fields['password1']).')';
$name_part = ', name = '.$mdb2->quote($fields['user_name']);
$email_part = ', email = '.$mdb2->quote($fields['email']);
$modified_part = ', modified = now(), modified_ip = '.$mdb2->quote($_SERVER['REMOTE_ADDR']).', modified_by = '.$mdb2->quote($user->id);
$sql = 'update tt_users set '.$login_part.$password_part.$name_part.$email_part.$modified_part.'where id = '.$user_id;
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) return false;
return true;
}
// validateUserInfo validates account information entered by user.
function validateUserInfo($fields) {
global $i18n;
global $user;
global $auth;
$result = true;
if (!ttValidString($fields['name'])) {
$this->err->add($i18n->get('error.field'), $i18n->get('label.person_name'));
$result = false;
}
if (!ttValidString($fields['login'])) {
$this->err->add($i18n->get('error.field'), $i18n->get('label.login'));
$result = false;
}
// If we change login, it must be unique.
if ($fields['login'] != $user->login) {
if (ttUserHelper::getUserByLogin($fields['login'])) {
$this->err->add($i18n->get('error.user_exists'));
$result = false;
}
}
if (!$auth->isPasswordExternal() && ($fields['password1'] || $fields['password2'])) {
if (!ttValidString($fields['password1'])) {
$this->err->add($i18n->get('error.field'), $i18n->get('label.password'));
$result = false;
}
if (!ttValidString($fields['password2'])) {
$this->err->add($i18n->get('error.field'), $i18n->get('label.confirm_password'));
$result = false;
}
if ($fields['password1'] !== $fields['password2']) {
$this->err->add($i18n->get('error.not_equal'), $i18n->get('label.password'), $i18n->get('label.confirm_password'));
$result = false;
}
}
if (!ttValidEmail($fields['email'], true)) {
$this->err->add($i18n->get('error.field'), $i18n->get('label.email'));
$result = false;
}
return $result;
}
// updateSelf validates user input and updates admin account with new information.
function updateSelf($fields) {
if (!$this->validateUserInfo($fields)) return false; // Can't continue as user input is invalid.
global $user;
global $i18n;
$mdb2 = getConnection();
// Update self.
$user_id = $user->id;
$login_part = 'login = '.$mdb2->quote($fields['login']);
if ($fields['password1'])
$password_part = ', password = md5('.$mdb2->quote($fields['password1']).')';
$name_part = ', name = '.$mdb2->quote($fields['name']);
$email_part = ', email = '.$mdb2->quote($fields['email']);
$modified_part = ', modified = now(), modified_ip = '.$mdb2->quote($_SERVER['REMOTE_ADDR']).', modified_by = '.$mdb2->quote($user->id);
$sql = 'update tt_users set '.$login_part.$password_part.$name_part.$email_part.$modified_part.'where id = '.$user_id;
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) {
$this->err->add($i18n->get('error.db'));
return false;
}
return true;
}
// getGroupDetails obtains group name and its top manager details.
function getGroupDetails($group_id) {
$result = array();
$mdb2 = getConnection();
$sql = "select g.name as group_name, u.id as manager_id, u.name as manager_name, u.login as manager_login, u.email as manager_email".
" from tt_groups g".
" inner join tt_users u on (u.group_id = g.id)".
" inner join tt_roles r on (r.id = u.role_id and r.rank = 512)".
" where g.id = $group_id";
$res = $mdb2->query($sql);
if (!is_a($res, 'PEAR_Error')) {
$val = $res->fetchRow();
return $val;
}
return false;
}
}