Work in progress on attachments for time entries.
[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 $cl_id = (int)$request->getParameter('id');
40 $time_rec = ttTimeHelper::getRecord($cl_id);
41 if (!$time_rec) {
42   header('Location: access_denied.php');
43   exit();
44 }
45 if (!$user->isPluginEnabled('at')) {
46   header('Location: feature_disabled.php');
47   exit();
48 }
49 // TODO: review access checks, specifically for on behalf operations.
50 // End of access checks.
51
52 if ($request->isPost()) {
53   $cl_description = trim($request->getParameter('description'));
54 }
55
56 $fileHelper = new ttFileHelper($err);
57
58
59
60
61 die("coding ongoing sown from here...");
62 $files = $fileHelper::getEntityFiles($cl_id, 'time');
63
64
65
66 $form = new Form('fileUploadForm');
67 $form->addInput(array('type'=>'hidden','name'=>'id','value'=>$cl_project_id));
68 $form->addInput(array('type'=>'upload','name'=>'newfile','value'=>$i18n->get('button.submit'),'maxsize'=>67108864)); // 64 MB file upload limit.
69 // 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.
70 $form->addInput(array('type'=>'textarea','name'=>'description','style'=>'width: 250px; height: 40px;','value'=>$cl_description));
71 $form->addInput(array('type'=>'submit','name'=>'btn_submit','value'=>$i18n->get('button.add')));
72
73 if ($request->isPost()) {
74   // We are adding a new file.
75
76   // Validate user input.
77   if (!$_FILES['newfile']['name']) $err->add($i18n->get('error.upload'));
78   if (!ttValidString($cl_description, true)) $err->add($i18n->get('error.field'), $i18n->get('label.description'));
79   // Finished validating user input.
80
81   if ($err->no()) {
82     $fields = array('entity_type'=>'project',
83       'entity_id' => $cl_project_id,
84       'file_name' => $_FILES['newfile']['name'],
85       'description'=>$cl_description);
86     if ($fileHelper->putFile($fields)) {
87       header('Location: project_files.php?id='.$cl_project_id);
88       exit();
89     }
90   }
91 } // isPost
92
93 $smarty->assign('can_manage', $user->can('manage_projects'));
94 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
95 $smarty->assign('files', $files);
96 $smarty->assign('title', $i18n->get('title.project_files').': '.$project['name']);
97 $smarty->assign('content_page_name', 'project_files.tpl');
98 $smarty->display('index.tpl');