ReportFactoryPHPJasperXML.php
3.77 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
<?php
/**
* i-Educar - Sistema de gestão escolar
*
* Copyright (C) 2006 Prefeitura Municipal de Itajaí
* <ctima@itajai.sc.gov.br>
*
* Este programa é software livre; você pode redistribuí-lo e/ou modificá-lo
* sob os termos da Licença Pública Geral GNU conforme publicada pela Free
* Software Foundation; tanto a versão 2 da Licença, como (a seu critério)
* qualquer versão posterior.
*
* Este programa é distribuído na expectativa de que seja útil, porém, SEM
* NENHUMA GARANTIA; nem mesmo a garantia implícita de COMERCIABILIDADE OU
* ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA. Consulte a Licença Pública Geral
* do GNU para mais detalhes.
*
* Você deve ter recebido uma cópia da Licença Pública Geral do GNU junto
* com este programa; se não, escreva para a Free Software Foundation, Inc., no
* endereço 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA.
*
* @author Lucas D'Avila <lucasdavila@portabilis.com.br>
* @category i-Educar
* @license @@license@@
* @package Portabilis
* @since Arquivo disponível desde a versão 1.1.0
* @version $Id$
*/
require_once 'lib/Portabilis/Report/ReportFactory.php';
require_once 'relatorios/phpjasperxml/class/fpdf/fpdf.php';
require_once 'relatorios/phpjasperxml/class/PHPJasperXML.inc';
//set_include_path(get_include_path() . PATH_SEPARATOR . 'include/portabilis/libs');
//require_once 'include/portabilis/libs/XML/RPC2/Client.php';
/**
* Portabilis_Report_ReportFactoryPHPJasperXML class.
*
* @author Lucas D'Avila <lucasdavila@portabilis.com.br>
* @category i-Educar
* @license @@license@@
* @package Portabilis
* @since Classe disponível desde a versão 1.1.0
* @version @@package_version@@
*/
class Portabilis_Report_ReportFactoryPHPJasperXML extends Portabilis_Report_ReportFactory
{
function setSettings($config) {
$this->settings['db'] = $config->app->database;
$this->settings['logo_file_name'] = $config->report->logo_file_name;
}
function loadReportSource($templateName) {
$rootPath = dirname(dirname(dirname(dirname(__FILE__))));
$fileName = "$templateName.jrxml";
$filePath = $rootPath . "/modules/Reports/ReportSources/$fileName";
if (! file_exists($filePath))
throw new CoreExt_Exception("Report source '$fileName' not found in path '$filePath'");
return simplexml_load_file($filePath);
}
function logoPath() {
if (! $this->settings['logo_file_name'])
throw new Exception("No report.logo_file_name defined in configurations!");
$rootPath = dirname(dirname(dirname(dirname(__FILE__))));
$filePath = $rootPath . "/modules/Reports/ReportLogos/{$this->settings['logo_file_name']}";
if (! file_exists($filePath))
throw new CoreExt_Exception("Report logo '{$this->settings['logo_file_name']}' not found in path '$filePath'");
return $filePath;
}
function dumps($report, $options = array()) {
$defaultOptions = array('add_logo_arg' => true);
$options = self::mergeOptions($options, $defaultOptions);
if ($options['add_logo_arg'])
$report->addArg('logo', $this->logoPath());
$xml = $this->loadReportSource($report->templateName());
$builder = new PHPJasperXML();
$builder->debugsql = false;
$builder->arrayParameter = $report->args;
$builder->xml_dismantle($xml);
$builder->transferDBtoArray($this->settings['db']->hostname,
$this->settings['db']->username,
$this->settings['db']->password,
$this->settings['db']->dbname,
$this->settings['db']->port);
// I: standard output, D: Download file, F: file
$builder->outpage('I');
}
}