PDFGeneratorAction.php
11.5 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
<?php
/**
*
* Copyright (c) 2007 Jam Warehouse http://www.jamwarehouse.com
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; using version 2 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* -------------------------------------------------------------------------
*
* You can contact the copyright owner regarding licensing via the contact
* details that can be found on the KnowledgeTree web site:
*
* http://www.knowledgetree.com/
*/
require_once(KT_LIB_DIR . '/actions/folderaction.inc.php');
require_once(KT_LIB_DIR . '/permissions/permission.inc.php');
require_once(KT_LIB_DIR . '/permissions/permissionutil.inc.php');
require_once(KT_LIB_DIR . '/browse/browseutil.inc.php');
require_once(KT_LIB_DIR . '/plugins/plugin.inc.php');
require_once(KT_LIB_DIR . '/plugins/pluginregistry.inc.php');
require_once(KT_LIB_DIR . '/roles/Role.inc');
class PDFGeneratorAction extends KTDocumentAction {
var $sName = 'ktstandard.pdf.generate';
var $_sShowPermission = "ktcore.permissions.read";
var $sDisplayName = 'Generate PDF';
// Note: 'asc' below seems to be a catchall for plain text docs.
// 'htm' and 'html' should work but are not so have been removed for now.
var $aAcceptedMimeTypes = array('doc', 'ods', 'odt', 'ott', 'txt', 'rtf', 'sxw', 'stw',
// 'html', 'htm',
'xml' , 'pdb', 'psw', 'ods', 'ots', 'sxc',
'stc', 'dif', 'dbf', 'xls', 'xlt', 'slk', 'csv', 'pxl',
'odp', 'otp', 'sxi', 'sti', 'ppt', 'pot', 'sxd', 'odg',
'otg', 'std', 'asc');
function getDisplayName() {
// We need to handle Windows differently - as usual ;)
if (substr( PHP_OS, 0, 3) == 'WIN') {
$cmdpath = KT_DIR . "/../openoffice/openoffice/program/python.bat";
$cmdpath = str_replace( '/','\\',$cmdpath);
} else {
$cmdpath = "../openoffice/program/python";
}
// Check if openoffice and python are available
if(file_exists($cmdpath)) {
$sDocType = $this->getMimeExtension();
// make sure that the selected document id of an acceptable extension
foreach($this->aAcceptedMimeTypes as $acceptType){
if($acceptType == $sDocType){
return _kt('Generate PDF') . " <a href=\"" . KTUtil::ktLink( 'action.php', 'ktstandard.pdf.generate', array( "fDocumentId" => $this->oDocument->getId(), "action" => "pdfdownload") ) . "\" <img src='resources/mimetypes/pdf.png' alt='PDF' border=0/></a>";
}
}
}
return '';
}
function form_main() {
$oForm = new KTForm;
$oForm->setOptions(array(
'label' => _kt('Convert Document to PDF'),
'action' => 'selectType',
'fail_action' => 'main',
'cancel_url' => KTBrowseUtil::getUrlForDocument($this->oDocument),
'submit_label' => _kt('Convert Document'),
'context' => &$this,
));
$oForm->setWidgets(array(
array('ktcore.widgets.selection', array(
'label' => _kt("Type of conversion"),
'description' => _kt('The following are the types of conversions you can perform on this document.'),
'important_description' => _kt('QA NOTE: Permissions checks are required here...'),
'name' => 'convert_type',
'vocab' => array('Download as PDF', 'Duplicate as PDF', 'Replace as PDF'),
'simple_select' => true,
'required' => true,
)),
));
return $oForm;
}
function do_selectType() {
switch($_REQUEST[data][convert_type]){
case '0':
$this->do_pdfdownload();
break;
case '1':
$this->do_pdfduplicate();
break;
case '2':
$this->do_pdfreplace();
break;
default:
$this->do_pdfdownload();
}
redirect(KTUtil::ktLink( 'action.php', 'ktstandard.pdf.generate', array( "fDocumentId" => $this->oDocument->getId() ) ) );
exit(0);
}
function do_main() {
$this->oPage->setBreadcrumbDetails(_kt('Generate PDF'));
$oTemplate =& $this->oValidator->validateTemplate('ktstandard/PDFPlugin/PDFPlugin');
$oForm = $this->form_main();
$oTemplate->setData(array(
'context' => &$this,
'form' => $oForm,
));
return $oTemplate->render();
}
/**
* Method for getting the MIME type extension for the current document.
*
* @return string mime time extension
*/
function getMimeExtension() {
if($this->Document == null || $this->Document == "" || PEAR::isError($this->Document) ) return _kt('Unknown Type');
$oDocument = $this->oDocument;
$iMimeTypeId = $oDocument->getMimeTypeID();
$mimetypename = KTMime::getMimeTypeName($iMimeTypeId); // mime type name
$sTable = KTUtil::getTableName('mimetypes');
$sQuery = "SELECT filetypes FROM " . $sTable . " WHERE mimetypes = ?";
$aQuery = array($sQuery, array($mimetypename));
$res = DBUtil::getResultArray($aQuery);
if (PEAR::isError($res)) {
return $res;
} else if (count($res) != 0){
return $res[0]['filetypes'];
}
return _kt('Unknown Type');
}
/**
* Method for downloading the document as a pdf.
*
* @return true on success else false
*/
function do_pdfdownload() {
$oDocument = $this->oDocument;
$oStorage =& KTStorageManagerUtil::getSingleton();
$oConfig =& KTConfig::getSingleton();
//get the actual path to the document on the server
$sPath = sprintf("%s/%s", $oConfig->get('urls/documentRoot'), $oStorage->getPath($oDocument));
if (file_exists($sPath)) {
# Get a tmp file
$sTempFilename = tempnam('/tmp', 'ktpdf');
# We need to handle Windows differently - as usual ;)
if (substr( PHP_OS, 0, 3) == 'WIN') {
$cmd = "\"" . KT_DIR . "/../openoffice/openoffice/program/python.bat\" \"". KT_DIR . "/bin/openoffice/pdfgen.py\" \"" . $sPath . "\" \"" . $sTempFilename . "\"";
$cmd = str_replace( '/','\\',$cmd);
// TODO: Check for more errors here
// SECURTIY: Ensure $sPath and $sTempFilename are safe or they could be used to excecute arbitrary commands!
// Excecute the python script. TODO: Check this works with Windows
$res = `"$cmd" 2>&1`;
} else {
// TODO: Check for more errors here
// SECURTIY: Ensure $sPath and $sTempFilename are safe or they could be used to excecute arbitrary commands!
// Excecute the python script. TODO: Check this works with Windows
$res = exec('../openoffice/program/python bin/openoffice/pdfgen.py ' . escapeshellcmd($sPath) . ' ' . escapeshellcmd($sTempFilename) );
}
# Check the tempfile exists and the python script did not return anything (which would indicate an error)
if (file_exists($sTempFilename) && $res == '') {
$sUrlEncodedFileName = substr($oDocument->getFileName(), 0, strrpos($oDocument->getFileName(), '.') );
$browser = $_SERVER['HTTP_USER_AGENT'];
if ( strpos( strtoupper( $browser), 'MSIE') !== false) {
$sUrlEncodedFileName = rawurlencode($sUrlEncodedFileName);
}
// Set the correct headers
header("Content-Type: application/pdf");
header("Content-Length: ". filesize($sTempFilename));
header("Content-Disposition: attachment; filename=\"" . $sUrlEncodedFileName . ".pdf\"");
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: must-revalidate");
# Get a filelike object and send it to the browser
$oFile = new KTFSFileLike($sTempFilename);
KTFileLikeUtil::send_contents($oFile);
# Remove the tempfile
unlink($sTempFilename);
# Create the document transaction
$oDocumentTransaction = & new DocumentTransaction($oDocument, 'Document downloaded as PDF', 'ktcore.transactions.download', $aOptions);
$oDocumentTransaction->create();
# Just stop here - the content has already been sent.
exit(0);
} else {
# Set the error messsage and redirect to view document
$this->addErrorMessage(_kt('An error occured generating the PDF - please contact the system administrator.'));
redirect(generateControllerLink('viewDocument',sprintf(_kt('fDocumentId=%d'),$oDocument->getId())));
exit(0);
}
} else {
# Set the error messsage and redirect to view document
$this->addErrorMessage(_kt('An error occured generating the PDF - please contact the system administrator.'));
redirect(generateControllerLink('viewDocument',sprintf(_kt('fDocumentId=%d'),$oDocument->getId())));
exit(0);
}
}
/**
* Method for duplicating the document as a pdf.
*
*/
function do_pdfduplicate() {
$this->oPage->setBreadcrumbDetails(_kt('Generate PDF'));
$oTemplate =& $this->oValidator->validateTemplate('ktstandard/PDFPlugin/PDFPlugin');
$oForm = $this->form_main();
$oTemplate->setData(array(
'context' => &$this,
'form' => $oForm,
));
$this->addErrorMessage(_kt('NOT IMPLEMENTED YET: This will create a pdf copy of the document as a new document.'));
return $oTemplate->render();
}
/**
* Method for replacing the document as a pdf.
*
*/
function do_pdfreplace() {
$this->oPage->setBreadcrumbDetails(_kt('Generate PDF'));
$oTemplate =& $this->oValidator->validateTemplate('ktstandard/PDFPlugin/PDFPlugin');
$oForm = $this->form_main();
$oTemplate->setData(array(
'context' => &$this,
'form' => $oForm,
));
$this->addErrorMessage(_kt('NOT IMPLEMENTED YET: This will replace the document with a pdf copy of the document.'));
return $oTemplate->render();
}
}
?>