-
Notifications
You must be signed in to change notification settings - Fork 129
Expand file tree
/
Copy pathCustomFields.class.php
More file actions
583 lines (477 loc) · 20.8 KB
/
CustomFields.class.php
File metadata and controls
583 lines (477 loc) · 20.8 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
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
<?php
/* Copyright (c) Anuko International Ltd. https://www.anuko.com
License: See license.txt */
class CustomFields {
// Definitions of custom field types.
const ENTITY_TIME = 1; // Field is associated with time entries.
const ENTITY_USER = 2; // Field is associated with users.
const ENTITY_PROJECT = 3; // Field is associated with projects.
const TYPE_TEXT = 1; // A text field.
const TYPE_DROPDOWN = 2; // A dropdown field with pre-defined values.
// TODO: replace $fields with entity-specific arrays: timeFields, userFields, etc.
var $fields = array(); // Array of custom fields for group.
// Refactoring ongoing...
var $timeFields = null;
var $userFields = null;
var $projectFields = null;
// Constructor.
function __construct() {
global $user;
$mdb2 = getConnection();
$group_id = $user->getGroup();
$org_id = $user->org_id;
// Get fields.
$sql = "select id, entity_type, type, label, required from tt_custom_fields" .
" where group_id = $group_id and org_id = $org_id and status = 1 and type > 0";
$res = $mdb2->query($sql);
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
$this->fields[] = array('id' => $val['id'], 'type' => $val['type'], 'label' => $val['label'], 'required' => $val['required'], 'value' => '');
if (CustomFields::ENTITY_TIME == $val['entity_type'])
$this->timeFields[] = $val;
else if (CustomFields::ENTITY_USER == $val['entity_type'])
$this->userFields[] = $val;
else if (CustomFields::ENTITY_PROJECT == $val['entity_type'])
$this->projectFields[] = $val;
}
}
}
function insert($log_id, $field_id, $option_id, $value) {
global $user;
$mdb2 = getConnection();
$group_id = $user->getGroup();
$org_id = $user->org_id;
$sql = "insert into tt_custom_field_log (group_id, org_id, log_id, field_id, option_id, value)" .
" values($group_id, $org_id, $log_id, $field_id, " . $mdb2->quote($option_id) . ", " . $mdb2->quote($value) . ")";
$affected = $mdb2->exec($sql);
return (!is_a($affected, 'PEAR_Error'));
}
function update($log_id, $field_id, $option_id, $value) {
if (!$field_id)
return true; // Nothing to update.
// Remove older custom field values.
$res = $this->delete($log_id);
if (!$res)
return false;
if (!$value && !$option_id)
return true; // Do not insert NULL values.
return $this->insert($log_id, $field_id, $option_id, $value);
}
function delete($log_id) {
global $user;
$mdb2 = getConnection();
$group_id = $user->getGroup();
$org_id = $user->org_id;
$sql = "update tt_custom_field_log set status = null" .
" where log_id = $log_id and group_id = $group_id and org_id = $org_id";
$affected = $mdb2->exec($sql);
return (!is_a($affected, 'PEAR_Error'));
}
function get($log_id) {
global $user;
$mdb2 = getConnection();
$group_id = $user->getGroup();
$org_id = $user->org_id;
$sql = "select id, field_id, option_id, value from tt_custom_field_log" .
" where log_id = $log_id and group_id = $group_id and org_id = $org_id and status = 1";
$res = $mdb2->query($sql);
if (!is_a($res, 'PEAR_Error')) {
$fields = array();
while ($val = $res->fetchRow()) {
$fields[] = $val;
}
return $fields;
}
return false;
}
// insertOption adds a new option to a custom field.
static function insertOption($field_id, $option_name) {
global $user;
$mdb2 = getConnection();
$group_id = $user->getGroup();
$org_id = $user->org_id;
// Check if the option exists.
$id = 0;
$sql = "select id from tt_custom_field_options".
" where field_id = $field_id and group_id = $group_id and org_id = $org_id and value = ".$mdb2->quote($option_name).
" and status is not null";
$res = $mdb2->query($sql);
if (is_a($res, 'PEAR_Error'))
return false;
if ($val = $res->fetchRow())
$id = $val['id'];
// Insert option.
if (!$id) {
$sql = "insert into tt_custom_field_options (group_id, org_id, field_id, value)" .
" values($group_id, $org_id, $field_id, " . $mdb2->quote($option_name) . ")";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error'))
return false;
}
// Update entities_modified, too.
if (!ttGroupHelper::updateEntitiesModified())
return false;
return true;
}
// updateOption updates option name.
static function updateOption($id, $option_name) {
global $user;
$mdb2 = getConnection();
$group_id = $user->getGroup();
$org_id = $user->org_id;
$sql = "update tt_custom_field_options set value = " . $mdb2->quote($option_name) .
" where id = $id and group_id = $group_id and org_id = $org_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error'))
return false;
// Update entities_modified, too.
if (!ttGroupHelper::updateEntitiesModified())
return false;
return true;
}
// delete Option deletes an option and all custom field log entries that used it.
static function deleteOption($id) {
global $user;
$mdb2 = getConnection();
$group_id = $user->getGroup();
$org_id = $user->org_id;
$field_id = CustomFields::getFieldIdForOption($id);
if (!$field_id)
return false;
// Delete log entries with this option. TODO: why? Research impact.
$sql = "update tt_custom_field_log set status = null" .
" where field_id = $field_id and group_id = $group_id and org_id = $org_id and value = " . $mdb2->quote($id);
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error'))
return false;
// Delete the option.
$sql = "update tt_custom_field_options set status = null" .
" where id = $id and group_id = $group_id and org_id = $org_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error'))
return false;
// Update entities_modified, too.
if (!ttGroupHelper::updateEntitiesModified())
return false;
return true;
}
// getOptions returns an array of options for a custom field.
static function getOptions($field_id) {
global $user;
$mdb2 = getConnection();
$group_id = $user->getGroup();
$org_id = $user->org_id;
// Get options.
$sql = "select id, value from tt_custom_field_options" .
" where field_id = $field_id and group_id = $group_id and org_id = $org_id and status = 1 order by value";
$res = $mdb2->query($sql);
if (!is_a($res, 'PEAR_Error')) {
$options = array();
while ($val = $res->fetchRow()) {
$options[$val['id']] = $val['value'];
}
return $options;
}
return false;
}
// getOptionName returns an option name for a custom field.
static function getOptionName($id) {
global $user;
$mdb2 = getConnection();
$id = (int) $id; // Just in case. Better safe than sorry as it is used in sql.
$group_id = $user->getGroup();
$org_id = $user->org_id;
$sql = "select value from tt_custom_field_options" .
" where id = $id and group_id = $group_id and org_id = $org_id and status = 1";
$res = $mdb2->query($sql);
if (!is_a($res, 'PEAR_Error')) {
$val = $res->fetchRow();
if (isset($val['value']))
return $val['value'];
}
return null;
}
// getFields returns an array of custom fields for group.
static function getFields() {
global $user;
$mdb2 = getConnection();
$group_id = $user->getGroup();
$org_id = $user->org_id;
$fields = array();
$sql = "select id, entity_type, type, label from tt_custom_fields" .
" where group_id = $group_id and org_id = $org_id and status = 1 and type > 0";
$res = $mdb2->query($sql);
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
$fields[] = $val;
}
return $fields;
}
return false;
}
// getField returns a custom field.
static function getField($id) {
global $user;
$mdb2 = getConnection();
$group_id = $user->getGroup();
$org_id = $user->org_id;
$sql = "select label, entity_type, type, required from tt_custom_fields" .
" where id = $id and group_id = $group_id and org_id = $org_id";
$res = $mdb2->query($sql);
if (!is_a($res, 'PEAR_Error')) {
$val = $res->fetchRow();
if (!$val)
return false;
return $val;
}
return false;
}
// getFieldByName returns a custom field by name and its entity type.
static function getFieldByName($fieldName, $entityType) {
global $user;
$mdb2 = getConnection();
$entityType = (int) $entityType; // Just in case.
$group_id = $user->getGroup();
$org_id = $user->org_id;
$sql = "select label, type, required from tt_custom_fields" .
" where label = ". $mdb2->quote($fieldName) . " and entity_type = $entityType".
" and group_id = $group_id and org_id = $org_id and status is not null";
$res = $mdb2->query($sql);
if (!is_a($res, 'PEAR_Error')) {
$val = $res->fetchRow();
if (isset($val))
return $val;
}
return null;
}
// getFieldIdForOption returns field id from an associated option id.
static function getFieldIdForOption($option_id) {
global $user;
$mdb2 = getConnection();
$group_id = $user->getGroup();
$org_id = $user->org_id;
$sql = "select field_id from tt_custom_field_options" .
" where id = $option_id and group_id = $group_id and org_id = $org_id";
$res = $mdb2->query($sql);
if (!is_a($res, 'PEAR_Error')) {
$val = $res->fetchRow();
$field_id = $val['field_id'];
return $field_id;
}
return false;
}
// The insertField inserts a custom field for group.
static function insertField($field_name, $entity_type, $field_type, $required) {
global $user;
$mdb2 = getConnection();
$group_id = $user->getGroup();
$org_id = $user->org_id;
// TODO: refactor this.
if (!$entity_type) $entity_type = CustomFields::ENTITY_TIME;
$sql = "insert into tt_custom_fields (group_id, org_id, entity_type, type, label, required, status)" .
" values($group_id, $org_id, $entity_type, $field_type, " . $mdb2->quote($field_name) . ", $required, 1)";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error'))
return false;
// Update entities_modified, too.
if (!ttGroupHelper::updateEntitiesModified())
return false;
return true;
}
// The updateField updates custom field for group.
static function updateField($id, $name, $type, $required) {
global $user;
$mdb2 = getConnection();
$group_id = $user->getGroup();
$org_id = $user->org_id;
$sql = "update tt_custom_fields set label = " . $mdb2->quote($name) . ", type = $type, required = $required" .
" where id = $id and group_id = $group_id and org_id = $org_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error'))
return false;
// Update entities_modified, too.
if (!ttGroupHelper::updateEntitiesModified())
return false;
return true;
}
// The deleteField deletes a custom field, its options and log entries for group.
static function deleteField($field_id) {
global $user;
$mdb2 = getConnection();
$group_id = $user->getGroup();
$org_id = $user->org_id;
// Mark log entries as deleted. TODO: why are we doing this? Research impact.
// The impact is quite severe: an accidental delete of a custom field makes manual recovery problematic.
// Therefore, not doing this anymore as of Oct 7, 2021.
/*
$sql = "update tt_custom_field_log set status = null" .
" where field_id = $field_id and group_id = $group_id and org_id = $org_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error'))
return false;
*/
// Mark field options as deleted.
// Same comment as above applies.
// An accidental delete of a custom field makes manual recovery problematic.
// Therefore, not doing this anymore as of Oct 7, 2021.
/*
$sql = "update tt_custom_field_options set status = null" .
" where field_id = $field_id and group_id = $group_id and org_id = $org_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error'))
return false;
*/
// Mark custom field as deleted.
$sql = "update tt_custom_fields set status = null" .
" where id = $field_id and group_id = $group_id and org_id = $org_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error'))
return false;
// Update entities_modified, too.
if (!ttGroupHelper::updateEntitiesModified())
return false;
return true;
}
// insertTimeFields - inserts time custom fields into tt_custom_field_log.
function insertTimeFields($log_id, $timeFields) {
foreach ($timeFields as $timeField) {
if (!$this->insertTimeField($log_id, $timeField))
return false;
}
return true;
}
// insertTimeField - inserts a single time custom field into tt_custom_field_log.
function insertTimeField($log_id, $timeField) {
global $user;
$mdb2 = getConnection();
$group_id = $user->getGroup();
$org_id = $user->org_id;
$field_id = $timeField['field_id'];
$type = $timeField['type'];
$option_id = $type == CustomFields::TYPE_DROPDOWN ? (int) $timeField['value'] : null;
$value = $type == CustomFields::TYPE_TEXT ? $timeField['value'] : null;
// Do not insert empty fields.
if (($type == CustomFields::TYPE_DROPDOWN && !$option_id) || ($type == CustomFields::TYPE_TEXT && !$value))
return true;
// TODO: add a join to protect from bogus option_ids in post.
$sql = "insert into tt_custom_field_log (group_id, org_id, log_id, field_id, option_id, value)" .
" values($group_id, $org_id, $log_id, $field_id, " . $mdb2->quote($option_id) . ", " . $mdb2->quote($value) . ")";
$affected = $mdb2->exec($sql);
return (!is_a($affected, 'PEAR_Error'));
}
// insertEntityFields - inserts entity custom fields into tt_entity_custom_fields.
function insertEntityFields($entity_type, $entity_id, $entityFields) {
foreach ($entityFields as $entityField) {
if (!$this->insertEntityField($entity_type, $entity_id, $entityField))
return false;
}
return true;
}
// insertEntityField - inserts a single entity custom field into tt_entity_custom_fields.
function insertEntityField($entity_type, $entity_id, $entityField) {
global $user;
$mdb2 = getConnection();
$group_id = $user->getGroup();
$org_id = $user->org_id;
$created = 'now(), ' . $mdb2->quote($_SERVER['REMOTE_ADDR']) . ', ' . $user->id;
$field_id = (int) $entityField['field_id'];
$type = $entityField['type'];
$option_id = $type == CustomFields::TYPE_DROPDOWN ? (int) $entityField['value'] : null;
$value = $type == CustomFields::TYPE_TEXT ? $entityField['value'] : null;
// Do not insert empty fields.
if (($type == CustomFields::TYPE_DROPDOWN && !$option_id) || ($type == CustomFields::TYPE_TEXT && !$value))
return true;
// TODO: add a join to protect from bogus option_ids in post.
$sql = "insert into tt_entity_custom_fields" .
" (group_id, org_id, entity_type, entity_id, field_id, option_id, value, created, created_ip, created_by)" .
" values($group_id, $org_id, $entity_type, $entity_id, $field_id, " . $mdb2->quote($option_id) . ", " . $mdb2->quote($value) . ", $created)";
$affected = $mdb2->exec($sql);
return (!is_a($affected, 'PEAR_Error'));
}
// updateEntityFields - updates entity custom fields in tt_entity_custom_fields table
// by doing a delete followed up by an insert.
function updateEntityFields($entity_type, $entity_id, $entityFields) {
$result = $this->deleteEntityFields($entity_type, $entity_id);
if (!$result)
return false;
return $this->insertEntityFields($entity_type, $entity_id, $entityFields);
}
// deleteEntityFields - deletes entity custom fields (permanently).
// Note: deleting, rather than marking fields deleted is on purpose
// because we want to keep the table small after multiple entity edits.
function deleteEntityFields($entity_type, $entity_id) {
global $user;
$mdb2 = getConnection();
$group_id = $user->getGroup();
$org_id = $user->org_id;
$sql = "delete from tt_entity_custom_fields" .
" where entity_type = $entity_type and entity_id = $entity_id" .
" and group_id = $group_id and org_id = $org_id";
$affected = $mdb2->exec($sql);
return (!is_a($affected, 'PEAR_Error'));
}
// deleteTimeFields - deletes time custom fields (permanently).
// Note: deleting, rather than marking fields deleted is on purpose
// because we want to keep the table small after multiple edits.
function deleteTimeFields($log_id) {
global $user;
$mdb2 = getConnection();
$group_id = $user->getGroup();
$org_id = $user->org_id;
$sql = "delete from tt_custom_field_log" .
" where log_id = $log_id" .
" and group_id = $group_id and org_id = $org_id";
$affected = $mdb2->exec($sql);
return (!is_a($affected, 'PEAR_Error'));
}
// getEntityFieldValue - obtains entity custom field value from the database.
function getEntityFieldValue($entity_type, $entity_id, $field_id, $type) {
global $user;
$mdb2 = getConnection();
$group_id = $user->getGroup();
$org_id = $user->org_id;
$sql = "select option_id, value from tt_entity_custom_fields" .
" where entity_type = $entity_type and entity_id = $entity_id" .
" and field_id = $field_id" .
" and group_id = $group_id and org_id = $org_id and status = 1";
$res = $mdb2->query($sql);
if (!is_a($res, 'PEAR_Error')) {
if ($val = $res->fetchRow()) {
if (CustomFields::TYPE_DROPDOWN == $type)
return $val['option_id'];
if (CustomFields::TYPE_TEXT == $type)
return $val['value'];
}
}
return null;
}
// getTimeFieldValue - obtains time custom field value from the database.
function getTimeFieldValue($log_id, $field_id, $type) {
global $user;
$mdb2 = getConnection();
$group_id = $user->getGroup();
$org_id = $user->org_id;
$sql = "select option_id, value from tt_custom_field_log" .
" where log_id = $log_id" .
" and field_id = $field_id" .
" and group_id = $group_id and org_id = $org_id and status = 1";
$res = $mdb2->query($sql);
if (!is_a($res, 'PEAR_Error')) {
if ($val = $res->fetchRow()) {
if (CustomFields::TYPE_DROPDOWN == $type)
return $val['option_id'];
if (CustomFields::TYPE_TEXT == $type)
return $val['value'];
}
}
return null;
}
// updateTimeFields - updates time custom fields in tt_custom_field_log table
// by doing a delete followed up by an insert.
function updateTimeFields($log_id, $timeFields) {
$result = $this->deleteTimeFields($log_id);
if (!$result)
return false;
return $this->insertTimeFields($log_id, $timeFields);
}
}