Access checks re-done using role rights.
[timetracker.git] / topdf.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 /*
30  * This file generates a report in PDF format using TCPDF library from http://www.tcpdf.org/.
31  * If installed, it is expected to be in WEB-INF/lib/tcpdf/ folder.
32  */
33 require_once('initialize.php');
34 import('form.Form');
35 import('form.ActionForm');
36 import('ttReportHelper');
37
38 // Access check.
39 if (!ttAccessAllowed('view_own_reports')) {
40   header('Location: access_denied.php');
41   exit();
42 }
43
44 // Check whether TCPDF library is available.
45 if (!file_exists('WEB-INF/lib/tcpdf/'))
46   die('TCPDF library is not found in WEB-INF/lib/tcpdf/');
47
48 // Include TCPDF library.
49 require_once('WEB-INF/lib/tcpdf/tcpdf.php');
50
51 // Use custom fields plugin if it is enabled.
52 if ($user->isPluginEnabled('cf')) {
53   require_once('plugins/CustomFields.class.php');
54   $custom_fields = new CustomFields($user->team_id);
55 }
56
57 // Report settings are stored in session bean before we get here.
58 $bean = new ActionForm('reportBean', new Form('reportForm'), $request);
59
60 // There are 2 variations of report: totals only, or normal. Totals only means that the report
61 // is grouped by either date, user, client, project, task or cf_1 and user only needs to see subtotals by group.
62 $totals_only = ($bean->getAttribute('chtotalsonly') == '1');
63
64 // Determine group by header.
65 $group_by = $bean->getAttribute('group_by');
66 if ('no_grouping' != $group_by) {
67   if ('cf_1' == $group_by)
68     $group_by_header = $custom_fields->fields[0]['label'];
69   else {
70     $key = 'label.'.$group_by;
71     $group_by_header = $i18n->getKey($key);
72   }
73 }
74
75 // Obtain items for report.
76 if (!$totals_only)
77   $items = ttReportHelper::getItems($bean); // Individual entries.
78 if ($totals_only || 'no_grouping' != $group_by)
79   $subtotals = ttReportHelper::getSubtotals($bean); // Subtotals for groups of items.
80 $totals = ttReportHelper::getTotals($bean); // Totals for the entire report.
81
82 // Assign variables that are used to print subtotals.
83 if ($items && 'no_grouping' != $group_by) {
84   $print_subtotals = true;
85   $first_pass = true;
86   $prev_grouped_by = '';
87   $cur_grouped_by = '';
88 }
89
90 // Build a string to use as filename for the files being downloaded.
91 $filename = strtolower($i18n->getKey('title.report')).'_'.$bean->mValues['start_date'].'_'.$bean->mValues['end_date'];
92
93 // Start preparing HTML to build PDF from.
94 $styleHeader = 'style="background-color:#a6ccf7;"';
95 $styleSubtotal = 'style="background-color:#e0e0e0;"';
96 $styleCentered = 'style="text-align:center;"';
97 $styleRightAligned = 'style="text-align:right;"';
98
99 $title = $i18n->getKey('title.report').": ".$totals['start_date']." - ".$totals['end_date'];
100 $html = '<h1 style="text-align:center;">'.$title.'</h1>';
101 $html .= '<table border="1" cellpadding="3" cellspacing="0" width="100%">';
102
103 if ($totals_only) {
104   // We are building a "totals only" report with only subtotals and total.
105   $colspan = 1; // Column span for an empty row.
106   // Table header.
107   $html .= '<thead>';
108   $html .= "<tr $styleHeader>";
109   $html .= '<td>'.htmlspecialchars($group_by_header).'</td>';
110   if ($bean->getAttribute('chduration')) { $colspan++; $html .= "<td $styleCentered>".$i18n->getKey('label.duration').'</td>'; }
111   if ($bean->getAttribute('chcost')) { $colspan++; $html .= "<td $styleCentered>".$i18n->getKey('label.cost').'</td>'; }
112   $html .= '</tr>';
113   $html .= '</thead>';
114   // Print subtotals.
115   foreach ($subtotals as $subtotal) {
116     $html .= '<tr>';
117     $html .= '<td>'.htmlspecialchars($subtotal['name']).'</td>';
118     if ($bean->getAttribute('chduration')) $html .= "<td $styleRightAligned>".$subtotal['time'].'</td>';
119     if ($bean->getAttribute('chcost')) {
120       $html .= "<td $styleRightAligned>";
121       if ($user->canManageTeam() || $user->isClient())
122         $html .= $subtotal['cost'];
123       else
124         $html .= $subtotal['expenses'];
125       $html .= '</td>'; 
126     }
127     $html .= '</tr>';
128   }
129   // Print totals.
130   $html .= '<tr><td colspan="'.$colspan.'">&nbsp;</td></tr>';
131   $html .= "<tr $styleSubtotal>";
132   $html .= '<td>'.$i18n->getKey('label.total').'</td>';
133   if ($bean->getAttribute('chduration')) $html .= "<td $styleRightAligned>".$totals['time'].'</td>';
134   if ($bean->getAttribute('chcost')) {
135       $html .= "<td $styleRightAligned>";
136       $html .= htmlspecialchars($user->currency).' ';
137       if ($user->canManageTeam() || $user->isClient())
138         $html .= $totals['cost'];
139       else
140         $html .= $totals['expenses'];
141       $html .= '</td>';
142     }
143   $html .= '</tr>';
144   $html .= '</table>';
145 } else {
146   // We are building a normal report with items, optionally grouped with subtotals, and total.
147   $colspan = 1; // Column span for an empty row.
148   // Table header.
149   $html .= '<thead>';
150   $html .= "<tr $styleHeader>";
151   $html .= '<td>'.$i18n->getKey('label.date').'</td>';
152   if ($user->canManageTeam() || $user->isClient()) { $colspan++; $html .= '<td>'.$i18n->getKey('label.user').'</td>'; }
153   if ($bean->getAttribute('chclient')) { $colspan++; $html .= '<td>'.$i18n->getKey('label.client').'</td>'; }
154   if ($bean->getAttribute('chproject')) { $colspan++; $html .= '<td>'.$i18n->getKey('label.project').'</td>'; }
155   if ($bean->getAttribute('chtask')) { $colspan++; $html .= '<td>'.$i18n->getKey('label.task').'</td>'; }
156   if ($bean->getAttribute('chcf_1')) { $colspan++; $html .= '<td>'.htmlspecialchars($custom_fields->fields[0]['label']).'</td>'; }
157   if ($bean->getAttribute('chstart')) { $colspan++; $html .= "<td $styleCentered>".$i18n->getKey('label.start').'</td>'; }
158   if ($bean->getAttribute('chfinish')) { $colspan++; $html .= "<td $styleCentered>".$i18n->getKey('label.finish').'</td>'; }
159   if ($bean->getAttribute('chduration')) { $colspan++; $html .= "<td $styleCentered>".$i18n->getKey('label.duration').'</td>'; }
160   if ($bean->getAttribute('chnote')) { $colspan++; $html .= '<td>'.$i18n->getKey('label.note').'</td>'; }
161   if ($bean->getAttribute('chcost')) { $colspan++; $html .= "<td $styleCentered>".$i18n->getKey('label.cost').'</td>'; }
162   if ($bean->getAttribute('chpaid')) { $colspan++; $html .= "<td $styleCentered>".$i18n->getKey('label.paid').'</td>'; }
163   if ($bean->getAttribute('chinvoice')) { $colspan++; $html .= '<td>'.$i18n->getKey('label.invoice').'</td>'; }
164   $html .= '</tr>';
165   $html .= '</thead>';
166
167   foreach ($items as $item) {
168     // Print a subtotal for a block of grouped values.
169     $cur_date = $item['date'];
170     if ($print_subtotals) {
171       $cur_grouped_by = $item['grouped_by'];
172       if ($cur_grouped_by != $prev_grouped_by && !$first_pass) {
173         $html .= '<tr style="background-color:#e0e0e0;">';
174         $html .= '<td>'.$i18n->getKey('label.subtotal').'</td>';
175         if ($user->canManageTeam() || $user->isClient()) {
176             $html .= '<td>';
177             if ($group_by == 'user') $html .= htmlspecialchars($subtotals[$prev_grouped_by]['name']);
178             $html .= '</td>';
179         }
180         if ($bean->getAttribute('chclient')) {
181             $html .= '<td>';
182             if ($group_by == 'client') $html .= htmlspecialchars($subtotals[$prev_grouped_by]['name']);
183             $html .= '</td>';
184         }
185         if ($bean->getAttribute('chproject')) {
186             $html .= '<td>';
187             if ($group_by == 'project') $html .= htmlspecialchars($subtotals[$prev_grouped_by]['name']);
188             $html .= '</td>';
189         }
190         if ($bean->getAttribute('chtask')) {
191             $html .= '<td>';
192             if ($group_by == 'task') $html .= htmlspecialchars($subtotals[$prev_grouped_by]['name']);
193             $html .= '</td>';
194         }
195         if ($bean->getAttribute('chcf_1')) {
196             $html .= '<td>';
197             if ($group_by == 'cf_1') $html .= htmlspecialchars($subtotals[$prev_grouped_by]['name']);
198             $html .= '</td>';
199         }
200         if ($bean->getAttribute('chstart')) $html .= '<td></td>';
201         if ($bean->getAttribute('chfinish')) $html .= '<td></td>';
202         if ($bean->getAttribute('chduration')) $html .= "<td $styleRightAligned>".$subtotals[$prev_grouped_by]['time'].'</td>';
203         if ($bean->getAttribute('chnote')) $html .= '<td></td>';
204         if ($bean->getAttribute('chcost')) {
205           $html .= "<td $styleRightAligned>";
206           if ($user->canManageTeam() || $user->isClient())
207             $html .= $subtotals[$prev_grouped_by]['cost'];
208           else
209             $html .= $subtotals[$prev_grouped_by]['expenses'];
210           $html .= '</td>';
211         }
212         if ($bean->getAttribute('chpaid')) $html .= '<td></td>';
213         if ($bean->getAttribute('chinvoice')) $html .= '<td></td>';
214         $html .= '</tr>';
215         $html .= '<tr><td colspan="'.$colspan.'">&nbsp;</td></tr>';
216       }
217       $first_pass = false; 
218     }
219
220     // Print a regular row.
221     $html .= '<tr>';
222     $html .= '<td>'.$item['date'].'</td>';
223     if ($user->canManageTeam() || $user->isClient()) $html .= '<td>'.htmlspecialchars($item['user']).'</td>';
224     if ($bean->getAttribute('chclient')) $html .= '<td>'.htmlspecialchars($item['client']).'</td>';
225     if ($bean->getAttribute('chproject')) $html .= '<td>'.htmlspecialchars($item['project']).'</td>';
226     if ($bean->getAttribute('chtask')) $html .= '<td>'.htmlspecialchars($item['task']).'</td>';
227     if ($bean->getAttribute('chcf_1')) $html .= '<td>'.htmlspecialchars($item['cf_1']).'</td>';
228     if ($bean->getAttribute('chstart')) $html .= "<td $styleRightAligned>".$item['start'].'</td>';
229     if ($bean->getAttribute('chfinish')) $html .= "<td $styleRightAligned>".$item['finish'].'</td>';
230     if ($bean->getAttribute('chduration')) $html .= "<td $styleRightAligned>".$item['duration'].'</td>';
231     if ($bean->getAttribute('chnote')) $html .= '<td>'.htmlspecialchars($item['note']).'</td>';
232     if ($bean->getAttribute('chcost')) {
233       $html .= "<td $styleRightAligned>";
234       if ($user->canManageTeam() || $user->isClient())
235         $html .= $item['cost'];
236       else
237         $html .= $item['expense'];
238       $html .= '</td>';
239     }
240     if ($bean->getAttribute('chpaid')) {
241         $html .= '<td>';
242         $html .= $item['paid'] == 1 ? $i18n->getKey('label.yes') : $i18n->getKey('label.no');
243         $html .= '</td>';
244     }
245     if ($bean->getAttribute('chinvoice')) $html .= '<td>'.htmlspecialchars($item['invoice']).'</td>';
246     $html .= '</tr>';
247
248     $prev_date = $item['date'];
249     if ($print_subtotals) $prev_grouped_by = $item['grouped_by'];
250   }
251
252   // Print a terminating subtotal.
253   if ($print_subtotals) {
254     $html .= '<tr style="background-color:#e0e0e0;">';
255     $html .= '<td>'.$i18n->getKey('label.subtotal').'</td>';
256     if ($user->canManageTeam() || $user->isClient()) {
257       $html .= '<td>';
258       if ($group_by == 'user') $html .= htmlspecialchars($subtotals[$prev_grouped_by]['name']);
259       $html .= '</td>';
260     }
261     if ($bean->getAttribute('chclient')) {
262       $html .= '<td>';
263       if ($group_by == 'client') $html .= htmlspecialchars($subtotals[$prev_grouped_by]['name']);
264       $html .= '</td>';
265     }
266     if ($bean->getAttribute('chproject')) {
267       $html .= '<td>';
268       if ($group_by == 'project') $html .= htmlspecialchars($subtotals[$prev_grouped_by]['name']);
269       $html .= '</td>';
270     }
271     if ($bean->getAttribute('chtask')) {
272       $html .= '<td>';
273       if ($group_by == 'task') $html .= htmlspecialchars($subtotals[$prev_grouped_by]['name']);
274       $html .= '</td>';
275     }
276     if ($bean->getAttribute('chcf_1')) {
277       $html .= '<td>';
278       if ($group_by == 'cf_1') $html .= htmlspecialchars($subtotals[$prev_grouped_by]['name']);
279       $html .= '</td>';
280     }
281     if ($bean->getAttribute('chstart')) $html .= '<td></td>';
282     if ($bean->getAttribute('chfinish')) $html .= '<td></td>';
283     if ($bean->getAttribute('chduration')) $html .= "<td $styleRightAligned>".$subtotals[$prev_grouped_by]['time'].'</td>';
284     if ($bean->getAttribute('chnote')) $html .= '<td></td>';
285     if ($bean->getAttribute('chcost')) {
286       $html .= "<td $styleRightAligned>";
287       if ($user->canManageTeam() || $user->isClient())
288         $html .= $subtotals[$prev_grouped_by]['cost'];
289       else
290         $html .= $subtotals[$prev_grouped_by]['expenses'];
291       $html .= '</td>';
292     }
293     if ($bean->getAttribute('chpaid')) $html .= '<td></td>';
294     if ($bean->getAttribute('chinvoice')) $html .= '<td></td>';
295     $html .= '</tr>';
296   }
297
298   // Print totals.
299   $html .= '<tr><td colspan="'.$colspan.'">&nbsp;</td></tr>';
300   $html .= '<tr style="background-color:#e0e0e0;">';
301   $html .= '<td>'.$i18n->getKey('label.total').'</td>';
302   if ($user->canManageTeam() || $user->isClient()) $html .= '<td></td>';
303   if ($bean->getAttribute('chclient')) $html .= '<td></td>';
304   if ($bean->getAttribute('chproject')) $html .= '<td></td>';
305   if ($bean->getAttribute('chtask')) $html .= '<td></td>';
306   if ($bean->getAttribute('chcf_1')) $html .= '<td></td>';
307   if ($bean->getAttribute('chstart')) $html .= '<td></td>';
308   if ($bean->getAttribute('chfinish')) $html .= '<td></td>';
309   if ($bean->getAttribute('chduration')) $html .= "<td $styleRightAligned>".$totals['time'].'</td>';
310   if ($bean->getAttribute('chnote')) $html .= '<td></td>';
311   if ($bean->getAttribute('chcost')) {
312     $html .= "<td $styleRightAligned>".htmlspecialchars($user->currency).' ';
313     if ($user->canManageTeam() || $user->isClient())
314       $html .= $totals['cost'];
315     else
316       $html .= $totals['expenses'];
317     $html .= '</td>';
318   }
319   if ($bean->getAttribute('chpaid')) $html .= '<td></td>';
320   if ($bean->getAttribute('chinvoice')) $html .= '<td></td>';
321   $html .= '</tr>';
322   $html .= '</table>';
323 }
324
325 // Output footer.
326 if (!defined('REPORT_FOOTER') || !(REPORT_FOOTER == false)) // By default we print it unless explicitely defined as false.
327   $html .= '<p style="text-align: center;">'.$i18n->getKey('form.mail.footer').'</p>';
328
329 // By this time we have html ready.
330
331 // Determine title for report.
332 $title = $i18n->getKey('title.report').": ".$totals['start_date']." - ".$totals['end_date'];
333
334 header('Pragma: public'); // This is needed for IE8 to download files over https.
335 header('Content-Type: text/html; charset=utf-8');
336 header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
337 header('Cache-Control: no-store, no-cache, must-revalidate');
338 header('Cache-Control: post-check=0, pre-check=0', false);
339 header('Cache-Control: private', false);
340
341 header('Content-Type: application/pdf');
342 header('Content-Disposition: attachment; filename="'.$filename.'.pdf"');
343
344
345 // Beginning of TCPDF code here.
346
347 // Extend TCPDF class so that we can use custom header and footer.
348 class ttPDF extends TCPDF {
349
350   public $image_file = 'images/tt_logo.png'; // Image file for the logo in header.
351   public $page_word = 'Page'; // Localized "Page" word in footer, ex: Page 1/2.
352
353   // SetImageFile - sets image file name.
354   public function SetImageFile($imgFile) {
355     $this->image_file = $imgFile;
356   }
357
358   // SetPageWord - sets page word for footer.
359   public function SetPageWord($pageWord) {
360     $this->page_word = $pageWord;
361   }
362
363   // Page header.
364   public function Header() {
365     // Print logo, which is the only element of our custom header.
366     $this->Image($this->image_file, 10, 10, '', '', '', '', 'T', false, 300, 'C', false, false, 0, false, false, false);
367   }
368
369   // Page footer.
370   public function Footer() {
371     // Position at 15 mm from bottom.
372     $this->SetY(-15);
373     // Set font.
374     $this->SetFont('freeserif', 'I', 8);
375     // Print localized page number.
376     $this->Cell(0, 10, $this->page_word.' '.$this->getAliasNumPage().'/'.$this->getAliasNbPages(), 0, false, 'C', 0, '', 0, false, 'T', 'M');
377   }
378 }
379
380 // Create new PDF document.
381 $pdf = new ttPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
382
383 // If custom logo file exists - set it.
384 if (file_exists('images/'.$user->team_id.'.png'))
385   $pdf->SetImageFile('images/'.$user->team_id.'.png');
386
387 // Set page word for the footer.
388 $pdf->SetPageWord($i18n->getKey('label.page'));
389
390 // Set document information.
391 $pdf->SetCreator(PDF_CREATOR);
392 $pdf->SetAuthor('Anuko Time Tracker');
393 $pdf->SetTitle('Anuko Time Tracker Report');
394 $pdf->SetSubject('Anuko Time Tracker Report');
395 $pdf->SetKeywords('Anuko, time, tracker, report');
396
397 // Set margins.
398 $pdf->SetMargins(PDF_MARGIN_LEFT, PDF_MARGIN_TOP, PDF_MARGIN_RIGHT);
399 $pdf->SetHeaderMargin(PDF_MARGIN_HEADER);
400 $pdf->SetFooterMargin(PDF_MARGIN_FOOTER);
401
402 // Set auto page breaks.
403 $pdf->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM);
404
405 // Set image scale factor.
406 $pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);
407
408 // Add a page.
409 $pdf->AddPage();
410
411 // Set font (freeserif seems to work for all languages).
412 $pdf->SetFont('freeserif', '', 10); // helvetica here does not work for Russian.
413
414 // Write HTML.
415 $pdf->writeHTML($html, true, false, false, false, '');
416
417 // Close and output PDF document.
418 // $pdf->Output('timesheet.pdf', 'I'); // This will display inline in browser.
419 $pdf->Output($filename.'.pdf', 'D'); // D is for downloads.
420
421 // End of of TCPDF code.