c499b25c9312e6cce4d5a2bd673840daa31abf0b
[timetracker.git] / time_files.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 require_once('initialize.php');
30 import('form.Form');
31 import('ttTimeHelper');
32 import('ttFileHelper');
33
34 // Access checks.
35 if (!(ttAccessAllowed('track_own_time') || ttAccessAllowed('track_time'))) {
36   header('Location: access_denied.php');
37   exit();
38 }
39 if (!$user->isPluginEnabled('at')) {
40   header('Location: feature_disabled.php');
41   exit();
42 }
43 $cl_id = (int)$request->getParameter('id');
44 $time_rec = ttTimeHelper::getRecordForFileView($cl_id);
45 if (!$time_rec) {
46   header('Location: access_denied.php');
47   exit();
48 }
49 // End of access checks.
50
51 if ($request->isPost()) {
52   $cl_description = trim($request->getParameter('description'));
53 }
54
55 $fileHelper = new ttFileHelper($err);
56 $files = $fileHelper::getEntityFiles($cl_id, 'time');
57
58 $form = new Form('fileUploadForm');
59 $form->addInput(array('type'=>'hidden','name'=>'id','value'=>$cl_id));
60 $form->addInput(array('type'=>'upload','name'=>'newfile','value'=>$i18n->get('button.submit'),'maxsize'=>67108864)); // 64 MB file upload limit.
61 // Note: for the above limit to work make sure to set upload_max_filesize and post_max_size in php.ini to at least 64M.
62 $form->addInput(array('type'=>'textarea','name'=>'description','style'=>'width: 250px; height: 40px;','value'=>$cl_description));
63 $form->addInput(array('type'=>'submit','name'=>'btn_submit','value'=>$i18n->get('button.add')));
64
65 if ($request->isPost()) {
66   // We are adding a new file.
67
68   // Validate user input.
69   if (!$_FILES['newfile']['name']) $err->add($i18n->get('error.upload'));
70   if (!ttValidString($cl_description, true)) $err->add($i18n->get('error.field'), $i18n->get('label.description'));
71   // Finished validating user input.
72
73   if ($err->no()) {
74     $fields = array('entity_type'=>'time',
75       'entity_id' => $cl_id,
76       'file_name' => $_FILES['newfile']['name'],
77       'description'=>$cl_description);
78     if ($fileHelper->putFile($fields)) {
79       header('Location: time_files.php?id='.$cl_id);
80       exit();
81     }
82   }
83 } // isPost
84
85 $smarty->assign('can_edit', $time_rec['can_edit']);
86 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
87 $smarty->assign('files', $files);
88 $smarty->assign('title', $i18n->get('title.time_files'));
89 $smarty->assign('content_page_name', 'entity_files.tpl');
90 $smarty->display('index.tpl');