forked from Ben0it-T/timetracker
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathttFileHelper.class.php
More file actions
475 lines (390 loc) · 16.1 KB
/
ttFileHelper.class.php
File metadata and controls
475 lines (390 loc) · 16.1 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
<?php
/* Copyright (c) Anuko International Ltd. https://www.anuko.com
License: See license.txt */
// ttFileHelper class is used for attachment handling.
class ttFileHelper {
var $errors = null; // Errors go here. Set in constructor by reference.
var $storage_uri = null; // Location of file storage facility.
var $register_uri = null; // URI to register with file storage facility.
var $putfile_uri = null; // URI to put file in file storage.
var $deletefile_uri = null; // URI to delete file from file storage.
var $deletefiles_uri = null; // URI to delete multiple files from file storage.
var $getfile_uri = null; // URI to get file from file storage.
var $site_id = null; // Site id for file storage.
var $site_key = null; // Site key for file storage.
var $file_data = null; // Downloaded file data.
// Constructor.
function __construct(&$errors) {
$this->errors = &$errors;
$this->storage_uri = defined('FILE_STORAGE_URI') ? FILE_STORAGE_URI : "https://www.anuko.com/files/";
$this->register_uri = $this->storage_uri.'register';
$this->putfile_uri = $this->storage_uri.'putfile';
$this->deletefile_uri = $this->storage_uri.'deletefile';
$this->deletefiles_uri = $this->storage_uri.'deletefiles';
$this->getfile_uri = $this->storage_uri.'getfile';
$this->checkSiteRegistration();
}
// checkSiteRegistration - obtains site id and key from local database.
// If not found, it tries to register with file storage facility.
function checkSiteRegistration() {
global $i18n;
$mdb2 = getConnection();
// Obtain site id.
$sql = "select param_value as id from tt_site_config where param_name = 'locker_id'";
$res = $mdb2->query($sql);
$val = $res->fetchRow();
if (!$val) {
// No site id found, need to register.
$fields = array('name' => urlencode('time tracker'),
'origin' => urlencode('time tracker source'));
// Urlify the data for the POST.
foreach($fields as $key=>$value) { $fields_string .= $key.'='.$value.'&'; }
$fields_string = rtrim($fields_string, '&');
// Open connection.
$ch = curl_init();
// Set the url, number of POST vars, POST data.
curl_setopt($ch, CURLOPT_URL, $this->register_uri);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// Execute a post request.
$result = curl_exec($ch);
// Close connection.
curl_close($ch);
$result_array = json_decode($result, true);
if (!$result_array) {
$this->errors->add($i18n->get('error.file_storage'));
}
else if ($result_array['error']) {
// Add an error from file storage facility if we have it.
$this->errors->add($result_array['error']);
}
else if ($result_array['id'] && $result_array['key']) {
$this->site_id = $result_array['id'];
$this->site_key = $result_array['key'];
// Registration successful. Store id and key locally for future use.
$sql = "insert into tt_site_config values('locker_id', $this->site_id, now(), null)";
$mdb2->exec($sql);
$sql = "insert into tt_site_config values('locker_key', ".$mdb2->quote($this->site_key).", now(), null)";
$mdb2->exec($sql);
} else {
$this->errors->add($i18n->get('error.file_storage'));
}
} else {
// Site id found.
$this->site_id = $val['id'];
// Obtain site key.
$sql = "select param_value as site_key from tt_site_config where param_name = 'locker_key'";
$res = $mdb2->query($sql);
$val = $res->fetchRow();
$this->site_key = $val['site_key'];
}
}
// putFile - puts uploaded file in remote storage.
function putFile($fields) {
global $i18n;
global $user;
$mdb2 = getConnection();
$group_id = $user->getGroup();
$org_id = $user->org_id;
$curl_fields = array('site_id' => urlencode($this->site_id),
'site_key' => urlencode($this->site_key),
'org_id' => urlencode($org_id),
'org_key' => urlencode($user->getOrgKey()),
'group_id' => urlencode($group_id),
'group_key' => urlencode($user->getGroupKey()),
'entity_type' => urlencode($fields['entity_type']),
'entity_id' => urlencode($fields['entity_id']),
'file_name' => urlencode($fields['file_name']),
'description' => urlencode(isset($fields['description']) ? $fields['description'] : ''),
'content' => urlencode(base64_encode(file_get_contents($_FILES['newfile']['tmp_name'])))
);
// url-ify the data for the POST.
$fields_string = '';
foreach($curl_fields as $key=>$value) { $fields_string .= $key.'='.$value.'&'; }
$fields_string = rtrim($fields_string, '&');
// Open connection.
$ch = curl_init();
// Set the url, number of POST vars, POST data.
curl_setopt($ch, CURLOPT_URL, $this->putfile_uri);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// Execute a post request.
$result = curl_exec($ch);
// Close connection.
curl_close($ch);
// Delete uploaded file.
unlink($_FILES['newfile']['tmp_name']);
if (!$result) {
$this->errors->add($i18n->get('error.file_storage'));
return false;
}
$result_array = json_decode($result, true);
$file_id = (int) $result_array['file_id'];
$file_key = $result_array['file_key'];
$error = isset($result_array['error']) ? $result_array['error'] : false;
if ($error || !$file_id || !$file_key) {
if ($error) {
// Add an error from file storage facility if we have it.
$this->errors->add($error);
}
return false;
}
// File put was successful. Store file attributes locally.
$file_key = $mdb2->quote($file_key);
$entity_type = $mdb2->quote($fields['entity_type']);
$entity_id = (int) $fields['entity_id'];
$file_name = $mdb2->quote($fields['file_name']);
$description = $mdb2->quote(isset($fields['description']) ? $fields['description'] : '');
$created = 'now()';
$created_ip = $mdb2->quote($_SERVER['REMOTE_ADDR']);
$created_by = $user->id;
$columns = '(group_id, org_id, remote_id, file_key, entity_type, entity_id, file_name, description, created, created_ip, created_by)';
$values = "values($group_id, $org_id, $file_id, $file_key, $entity_type, $entity_id, $file_name, $description, $created, $created_ip, $created_by)";
$sql = "insert into tt_files $columns $values";
$affected = $mdb2->exec($sql);
return (!is_a($affected, 'PEAR_Error'));
}
// deleteFile - deletes a file from remote storage and its details from local database.
function deleteFile($fields) {
global $i18n;
global $user;
$mdb2 = getConnection();
$group_id = $user->getGroup();
$org_id = $user->org_id;
$curl_fields = array('site_id' => urlencode($this->site_id),
'site_key' => urlencode($this->site_key),
'org_id' => urlencode($org_id),
'org_key' => urlencode($user->getOrgKey()),
'group_id' => urlencode($group_id),
'group_key' => urlencode($user->getGroupKey()),
'entity_type' => urlencode($fields['entity_type']),
'entity_id' => urlencode($fields['entity_id']),
'file_id' => urlencode($fields['remote_id']),
'file_key' => urlencode($fields['file_key']),
'file_name' => urlencode($fields['file_name']));
// url-ify the data for the POST.
$fields_string = '';
foreach($curl_fields as $key=>$value) { $fields_string .= $key.'='.$value.'&'; }
$fields_string = rtrim($fields_string, '&');
// Open connection.
$ch = curl_init();
// Set the url, number of POST vars, POST data.
curl_setopt($ch, CURLOPT_URL, $this->deletefile_uri);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// Execute a post request.
$result = curl_exec($ch);
// Close connection.
curl_close($ch);
if (!$result) {
$this->errors->add($i18n->get('error.file_storage'));
return false;
}
$result_array = json_decode($result, true);
$status = (int) $result_array['status'];
$error = isset($result_array['error']) ? $result_array['error'] : false;
if ($error) {
// Add an error from file storage facility if we have it.
$this->errors->add($error);
}
if ($status != 1) {
// There is no explicit error message, but still something not right.
$this->errors->add($i18n->get('error.file_storage'));
}
// Delete file reference from database even when remote file storage call fails.
// This is by design to keep things simple.
$file_id = (int) $fields['id'];
$entity_id = (int) $fields['entity_id'];
$sql = "delete from tt_files".
" where id = $file_id and org_id = $org_id and group_id = $group_id and entity_id = $entity_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) {
$this->errors->add($i18n->get('error.db'));
return false;
}
// File successfully deleted from both file storage and database.
return true;
}
// deleteEntityFiles - deletes all files associated with an entity.
function deleteEntityFiles($entity_id, $entity_type) {
if (!$this->entityHasFiles($entity_id, $entity_type))
return true; // No files to delete.
global $i18n;
global $user;
$mdb2 = getConnection();
$group_id = $user->getGroup();
$org_id = $user->org_id;
$curl_fields = array('site_id' => urlencode($this->site_id),
'site_key' => urlencode($this->site_key),
'org_id' => urlencode($org_id),
'org_key' => urlencode($user->getOrgKey()),
'group_id' => urlencode($group_id),
'group_key' => urlencode($user->getGroupKey()),
'entity_type' => urlencode($entity_type),
'entity_id' => urlencode($entity_id));
// url-ify the data for the POST.
$fields_string = '';
foreach($curl_fields as $key=>$value) { $fields_string .= $key.'='.$value.'&'; }
$fields_string = rtrim($fields_string, '&');
// Open connection.
$ch = curl_init();
// Set the url, number of POST vars, POST data.
curl_setopt($ch, CURLOPT_URL, $this->deletefiles_uri);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// Execute a post request.
$result = curl_exec($ch);
// Close connection.
curl_close($ch);
if (!$result) {
$this->errors->add($i18n->get('error.file_storage'));
return false;
}
$result_array = json_decode($result, true);
$status = (int) $result_array['status'];
$error = isset($result_array['error']) ? $result_array['error'] : false;
if ($error) {
// Add an error from file storage facility if we have it.
$this->errors->add($error);
}
if ($status != 1) {
// There is no explicit error message, but still something not right.
$this->errors->add($i18n->get('error.file_storage'));
}
// Many things can go wrong with a remote call to file storage facility.
// By design, we ignore such errors, and proceed with removal of entity
// records from the database.
// Delete all entity records from the database.
$sql = "delete from tt_files".
" where entity_id = $entity_id".
" and entity_type = ".$mdb2->quote($entity_type).
" and org_id = $org_id and group_id = $group_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) {
$this->errors->add($i18n->get('error.db'));
return false;
}
return true;
}
// entityHasFiles determines if an entity has any files referenced in database.
private function entityHasFiles($entity_id, $entity_type) {
global $user;
$mdb2 = getConnection();
$group_id = $user->getGroup();
$org_id = $user->org_id;
$sql = "select id from tt_files where org_id = $org_id and group_id = $group_id".
" and entity_type = ".$mdb2->quote($entity_type)." and entity_id = $entity_id limit 1";
$res = $mdb2->query($sql);
$val = $res->fetchRow();
return (isset($val['id']) && $val['id'] > 0);
}
// getEntityFiles obtains a list of files for an entity.
static function getEntityFiles($id, $type) {
global $user;
$mdb2 = getConnection();
$group_id = $user->getGroup();
$org_id = $user->org_id;
$result = array();
$entity_type = $mdb2->quote($type);
$sql = "select id, remote_id, file_key, file_name as name, description from tt_files".
" where entity_type = $entity_type and entity_id = $id".
" and group_id = $group_id and org_id = $org_id and status = 1 order by id";
$res = $mdb2->query($sql);
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
$result[] = $val;
}
}
return $result;
}
// get - obtains file details from local database.
static function get($id) {
global $user;
$mdb2 = getConnection();
$group_id = $user->getGroup();
$org_id = $user->org_id;
$sql = "select id, remote_id, file_key, entity_type, entity_id, file_name, description, status from tt_files".
" where id = $id and group_id = $group_id and org_id = $org_id and (status = 0 or status = 1)";
$res = $mdb2->query($sql);
if (!is_a($res, 'PEAR_Error')) {
$val = $res->fetchRow();
if ($val && $val['id'])
return $val;
}
return false;
}
// update - updates file details in local database.
static function update($fields) {
global $user;
$mdb2 = getConnection();
$group_id = $user->getGroup();
$org_id = $user->org_id;
$file_id = (int) $fields['id'];
$description = $mdb2->quote($fields['description']);
$sql = "update tt_files set description = $description where id = $file_id".
" and group_id = $group_id and org_id = $org_id and (status = 0 or status = 1)";
$affected = $mdb2->exec($sql);
return !is_a($affected, 'PEAR_Error');
}
// getFile - downloads file from remote storage to memory.
function getFile($fields) {
global $i18n;
global $user;
$mdb2 = getConnection();
$group_id = $user->getGroup();
$org_id = $user->org_id;
$curl_fields = array('site_id' => urlencode($this->site_id),
'site_key' => urlencode($this->site_key),
'org_id' => urlencode($org_id),
'org_key' => urlencode($user->getOrgKey()),
'group_id' => urlencode($group_id),
'group_key' => urlencode($user->getGroupKey()),
'entity_type' => urlencode($fields['entity_type']),
'entity_id' => urlencode($fields['entity_id']),
'file_id' => urlencode($fields['remote_id']),
'file_key' => urlencode($fields['file_key']),
'file_name' => urlencode($fields['file_name']));
// url-ify the data for the POST.
$fields_string = '';
foreach($curl_fields as $key=>$value) { $fields_string .= $key.'='.$value.'&'; }
$fields_string = rtrim($fields_string, '&');
// Open connection.
$ch = curl_init();
// Set the url, number of POST vars, POST data.
curl_setopt($ch, CURLOPT_URL, $this->getfile_uri);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// Execute a post request.
$result = curl_exec($ch);
// Close connection.
curl_close($ch);
if (!$result) {
$this->errors->add($i18n->get('error.file_storage'));
return false;
}
$result_array = json_decode($result, true);
$status = (int) $result_array['status'];
$error = isset($result_array['error']) ? $result_array['error'] : false;
if ($error) {
// Add an error from file storage facility if we have it.
$this->errors->add($error);
return false;
}
if ($status != 1) {
// There is no explicit error message, but still something not right.
$this->errors->add($i18n->get('error.file_storage'));
return false;
}
$this->file_data = $result_array['content'];
return true;
}
// getFileData - returns file data from memory.
function getFileData() {
return base64_decode($this->file_data);
}
}