forked from anuko/timetracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCustomFields.class.php
More file actions
327 lines (275 loc) · 10.9 KB
/
Copy pathCustomFields.class.php
File metadata and controls
327 lines (275 loc) · 10.9 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
<?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
// +----------------------------------------------------------------------+
class CustomFields {
// Definitions of custom field types.
const TYPE_TEXT = 1; // A text field.
const TYPE_DROPDOWN = 2; // A dropdown field with pre-defined values.
var $fields = array(); // Array of custom fields for team.
var $options = array(); // Array of options for a dropdown custom field.
// Constructor.
function __construct($team_id) {
$mdb2 = getConnection();
// Get fields.
$sql = "select id, type, label, required from tt_custom_fields where team_id = $team_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 we have a dropdown obtain options for it.
if ((count($this->fields) > 0) && ($this->fields[0]['type'] == CustomFields::TYPE_DROPDOWN)) {
$sql = "select id, value from tt_custom_field_options where field_id = ".$this->fields[0]['id']." order by value";
$res = $mdb2->query($sql);
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
$this->options[$val['id']] = $val['value'];
}
}
}
}
function insert($log_id, $field_id, $option_id, $value) {
$mdb2 = getConnection();
$sql = "insert into tt_custom_field_log (log_id, field_id, option_id, value) values($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, if any.
$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) {
$mdb2 = getConnection();
$sql = "update tt_custom_field_log set status = NULL where log_id = $log_id";
$affected = $mdb2->exec($sql);
return (!is_a($affected, 'PEAR_Error'));
}
function get($log_id) {
$fields = array();
$mdb2 = getConnection();
$sql = "select id, field_id, option_id, value from tt_custom_field_log where log_id = $log_id and status = 1";
$res = $mdb2->query($sql);
if (!is_a($res, 'PEAR_Error')) {
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) {
$mdb2 = getConnection();
// Check if the option exists.
$id = 0;
$sql = "select id from tt_custom_field_options where field_id = $field_id and value = ".$mdb2->quote($option_name);
$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 (field_id, value) values($field_id, ".$mdb2->quote($option_name).")";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error'))
return false;
}
return true;
}
// updateOption updates option name.
static function updateOption($id, $option_name) {
$mdb2 = getConnection();
$sql = "update tt_custom_field_options set value = ".$mdb2->quote($option_name)." where id = $id";
$affected = $mdb2->exec($sql);
return (!is_a($affected, 'PEAR_Error'));
}
// delete Option deletes an option and all custom field log entries that used it.
static function deleteOption($id) {
global $user;
$mdb2 = getConnection();
$field_id = CustomFields::getFieldIdForOption($id);
// First make sure that the field is ours.
$sql = "select team_id from tt_custom_fields where id = $field_id";
$res = $mdb2->query($sql);
if (is_a($res, 'PEAR_Error'))
return false;
$val = $res->fetchRow();
if ($user->team_id != $val['team_id'])
return false;
// Delete log entries with this option.
$sql = "update tt_custom_field_log set status = NULL where field_id = $field_id and value = ".$mdb2->quote($id);
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error'))
return false;
// Delete the option.
$sql = "delete from tt_custom_field_options where id = $id";
$affected = $mdb2->exec($sql);
return (!is_a($affected, 'PEAR_Error'));
}
// getOptions returns an array of options for a custom field.
static function getOptions($field_id) {
global $user;
$mdb2 = getConnection();
$options = array();
// First make sure that the field is ours.
$sql = "select team_id from tt_custom_fields where id = $field_id";
$res = $mdb2->query($sql);
if (is_a($res, 'PEAR_Error'))
return false;
$val = $res->fetchRow();
if ($user->team_id != $val['team_id'])
return false;
// Get options.
$sql = "select id, value from tt_custom_field_options where field_id = $field_id order by value";
$res = $mdb2->query($sql);
if (!is_a($res, 'PEAR_Error')) {
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();
$field_id = CustomFields::getFieldIdForOption($id);
// First make sure that the field is ours.
$sql = "select team_id from tt_custom_fields where id = $field_id";
$res = $mdb2->query($sql);
if (is_a($res, 'PEAR_Error'))
return false;
$val = $res->fetchRow();
if ($user->team_id != $val['team_id'])
return false;
// Get option name.
$sql = "select value from tt_custom_field_options where id = $id";
$res = $mdb2->query($sql);
if (!is_a($res, 'PEAR_Error')) {
$val = $res->fetchRow();
$name = $val['value'];
return $name;
}
return false;
}
// getFields returns an array of custom fields for team.
static function getFields() {
global $user;
$mdb2 = getConnection();
$fields = array();
$sql = "select id, type, label from tt_custom_fields where team_id = $user->team_id and status = 1 and type > 0";
$res = $mdb2->query($sql);
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
$fields[] = array('id'=>$val['id'],'type'=>$val['type'],'label'=>$val['label']);
}
return $fields;
}
return false;
}
// getField returns a custom field.
static function getField($id) {
global $user;
$mdb2 = getConnection();
$sql = "select label, type, required from tt_custom_fields where id = $id and team_id = $user->team_id";
$res = $mdb2->query($sql);
if (!is_a($res, 'PEAR_Error')) {
$val = $res->fetchRow();
if (!$val)
return false;
return $val;
}
return false;
}
// getFieldIdForOption returns field id from an associated option id.
static function getFieldIdForOption($option_id) {
$mdb2 = getConnection();
$sql = "select field_id from tt_custom_field_options where id = $option_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 team.
static function insertField($field_name, $field_type, $required) {
global $user;
$mdb2 = getConnection();
$sql = "insert into tt_custom_fields (team_id, type, label, required, status) values($user->team_id, $field_type, ".$mdb2->quote($field_name).", $required, 1)";
$affected = $mdb2->exec($sql);
return (!is_a($affected, 'PEAR_Error'));
}
// The updateField updates custom field for team.
static function updateField($id, $name, $type, $required) {
global $user;
$mdb2 = getConnection();
$sql = "update tt_custom_fields set label = ".$mdb2->quote($name).", type = $type, required = $required where id = $id and team_id = $user->team_id";
$affected = $mdb2->exec($sql);
return (!is_a($affected, 'PEAR_Error'));
}
// The deleteField deletes a custom field, its options and log entries for team.
static function deleteField($field_id) {
// Our overall intention is to keep the code simple and manageable.
// If a user wishes to delete a field, we will delete all its options and log entries.
// Otherwise we have to do conditional queries depending on field status (this complicates things).
global $user;
$mdb2 = getConnection();
// First make sure that the field is ours so that we can safely delete it.
$sql = "select team_id from tt_custom_fields where id = $field_id";
$res = $mdb2->query($sql);
if (is_a($res, 'PEAR_Error'))
return false;
$val = $res->fetchRow();
if ($user->team_id != $val['team_id'])
return false;
// Mark log entries as deleted.
$sql = "update tt_custom_field_log set status = NULL where field_id = $field_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error'))
return false;
// Delete field options.
$sql = "delete from tt_custom_field_options where field_id = $field_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error'))
return false;
// Delete the field.
$sql = "delete from tt_custom_fields where id = $field_id and team_id = $user->team_id";
$affected = $mdb2->exec($sql);
return (!is_a($affected, 'PEAR_Error'));
}
}