forked from AKSW/files.ontowiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FilesController.php
458 lines (407 loc) · 17 KB
/
FilesController.php
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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
<?php
/**
* This file is part of the {@link http://ontowiki.net OntoWiki} project.
*
* @copyright Copyright (c) 2012, {@link http://aksw.org AKSW}
* @license http://opensource.org/licenses/gpl-license.php GNU General Public License (GPL)
*/
/**
* Controller for the OntoWiki files extension
*
* @category OntoWiki
* @package OntoWiki_extensions_files
* @author Christoph Rieß <[email protected]>
* @author Norman Heino <[email protected]>
* @author {@link http://sebastian.tramp.name Sebastian Tramp}
*/
class FilesController extends OntoWiki_Controller_Component
{
protected $_configModel;
/**
* Default action. Forwards to get action.
*/
public function __call($action, $params)
{
$this->_forward('get', 'files');
}
/**
* deletes a file resource from the disk as well as from the config model
* but NOT from the user-model
*/
private function _deleteFile($fileResource)
{
$store = $this->_owApp->erfurt->getStore();
// remove file from file system (silently)
$pathHashed = $this->getFullPath($fileResource);
if (is_readable($pathHashed)) {
unlink($pathHashed);
}
// remove all statements from sysconfig
$store->deleteMatchingStatements(
(string)$this->_getConfigModelUri(),
$fileResource,
null,
null
);
// remove uploadedBy statements from selected model
$store->deleteMatchingStatements(
(string)$this->_owApp->selectedModel,
$fileResource,
'http://vocab.ub.uni-leipzig.de/terms/uploadedBy',
null
);
// remove upload date statements from selected model
$store->deleteMatchingStatements(
(string)$this->_owApp->selectedModel,
$fileResource,
'http://vocab.ub.uni-leipzig.de/terms/uploadDate',
null
);
// remove link to file statements from selected model
$store->deleteMatchingStatements(
(string)$this->_owApp->selectedModel,
$fileResource,
'http://vocab.ub.uni-leipzig.de/terms/linkToFile',
null
);
}
/**
* action to delete a file resource either via post (multiple) or via get
* (setResource parameter
*/
public function deleteAction()
{
// delete file resources via Post array
if ($this->_request->isPost()) {
foreach ($this->_request->getPost('selectedFiles') as $fileUri) {
$fileUri = rawurldecode($fileUri);
$this->_deleteFile($fileUri);
}
$url = new OntoWiki_Url(array('controller' => 'files', 'action' => 'manage'), array());
$this->_redirect((string)$url);
} else if (isset($this->_request->setResource)) {
// delete a resource via get setResource parameter
$fileUri = rawurldecode($this->_request->setResource);
$this->_deleteFile($this->_request->setResource);
$this->_owApp->appendMessage(
new OntoWiki_Message('File attachment deleted', OntoWiki_Message::SUCCESS)
);
$resourceUri = new OntoWiki_Url(array('route' => 'properties'), array('r'));
$resourceUri->setParam('r', $this->_request->setResource, true);
$this->_redirect((string)$resourceUri);
} else {
// action just requested without anything
$this->_forward('manage', 'files');
}
}
/**
* get / download a file resource
*/
public function getAction()
{
$this->_helper->viewRenderer->setNoRender();
$this->_helper->layout->disableLayout();
// TODO: check acl
if (isset($this->_request->setResource)) {
$fileUri = $this->_request->setResource;
} else {
$fileUri = $this->_config->urlBase . ltrim($this->_request->getPathInfo(), '/');
}
$mimeProperty = $this->_privateConfig->mime->property;
$store = $this->_owApp->erfurt->getStore();
$query = new Erfurt_Sparql_SimpleQuery();
$query->setProloguePart('SELECT DISTINCT ?mime_type')
->addFrom((string)$this->_getConfigModelUri())
->setWherePart('WHERE {<' . $fileUri . '> <' . $mimeProperty . '> ?mime_type. }');
if ($result = $store->sparqlQuery($query, array('use_ac' => false))) {
$mimeType = $result[0]['mime_type'];
} else {
// we set the default download file type to
// application/octet-stream
$mimeType = 'application/octet-stream';
}
$extensions = array(
'image/jpeg' => 'jpeg',
'text/xml' => 'xml',
'application/pdf' => 'pdf',
'application/zip' => 'zip'
);
$extension = isset($extensions[$mimeType]) ? $extensions[$mimeType] : "";
$splitFileUri = explode("/", $fileUri);
$resourceName = end($splitFileUri);
$response = $this->getResponse();
$pathHashed = $this->getFullPath($fileUri);
if (is_readable($pathHashed)) {
$response->setRawHeader('Content-Type:' . $mimeType);
$response->setRawHeader('Content-Disposition: attachment; filename= ' . $resourceName . "." . $extension);
$tsstring = gmdate('D, d M Y H:i:s ', filemtime($pathHashed)) . 'GMT';
$response->setRawHeader('Last-Modified: ' . $tsstring);
$response->setBody(file_get_contents($pathHashed));
} else {
$this->_owApp->appendMessage(new OntoWiki_Message('Error reading file.', OntoWiki_Message::ERROR));
}
}
/**
* manage file resources (main GUI)
*/
public function manageAction()
{
$mimeProperty = $this->_privateConfig->mime->property;
$fileClass = $this->_privateConfig->class;
$fileModel = $this->_privateConfig->model;
$store = $this->_owApp->erfurt->getStore();
$query = new Erfurt_Sparql_SimpleQuery();
$query->setProloguePart('SELECT DISTINCT ?mime_type ?uri')
->addFrom((string)$this->_getConfigModelUri())
->setWherePart(
'WHERE
{
?uri a <' . $fileClass . '>.
?uri <' . $fileModel . '> <' . (string)$this->_owApp->selectedModel . '>.
?uri <' . $mimeProperty . '> ?mime_type.
}'
)
->setOrderClause('?uri');
$files = array();
if ($result = $store->sparqlQuery($query, array('use_ac' => false))) {
$titleHelper = new OntoWiki_Model_TitleHelper($this->_owApp->selectedModel);
foreach ($result as $row) {
if (is_readable($this->getFullPath($row['uri']))) {
$subjectTitle = $titleHelper->getTitle($row['uri']);
$row['title'] = $subjectTitle;
array_push($files, $row);
}
}
}
usort($files, array('FilesController', 'cmp'));
$this->view->files = $files;
$this->view->placeholder('main.window.title')->set($this->_owApp->translate->_('File Manager'));
OntoWiki::getInstance()->getNavigation()->disableNavigation();
$toolbar = $this->_owApp->toolbar;
$filePath = _OWROOT
. rtrim($this->_privateConfig->path, '/')
. DIRECTORY_SEPARATOR;
$url = new OntoWiki_Url(array('controller' => 'files', 'action' => 'upload'), array());
if (is_writable($filePath)) {
$toolbar->appendButton(
OntoWiki_Toolbar::DELETE,
array('name' => 'Delete Files', 'class' => 'submit actionid', 'id' => 'filemanagement-delete')
);
$toolbar->appendButton(
OntoWiki_Toolbar::ADD,
array('name' => 'Upload File', 'class' => 'upload-file', 'url' => (string)$url)
);
$this->view->placeholder('main.window.toolbar')->set($toolbar);
} else {
$msgString = sprintf(
$this->_owApp->translate->_('Directory "%s" is not writeable. To upload files set it writable.'),
rtrim($this->_privateConfig->path, '/') . DIRECTORY_SEPARATOR
);
$this->_owApp->appendMessage(
new OntoWiki_Message($msgString, OntoWiki_Message::INFO)
);
}
if (!defined('ONTOWIKI_REWRITE')) {
$this->_owApp->appendMessage(
new OntoWiki_Message('Rewrite mode is off. File URIs may not be accessible.', OntoWiki_Message::WARNING)
);
return;
}
$url->action = 'delete';
$this->view->formActionUrl = (string)$url;
$this->view->formMethod = 'post';
$this->view->formClass = 'simple-input input-justify-left';
$this->view->formName = 'filemanagement-delete';
}
private function cmp($a, $b)
{
return strcasecmp ( $a['title'] , $b['title'] );
}
/**
* upload a file resource via POST or get upload GUI
*/
public function uploadAction()
{
// default file URI
$defaultUri = $this->_config->urlBase . 'files/';
// store for sparql queries
$store = $this->_owApp->erfurt->getStore();
// DMS NS var
$dmsNs = $this->_privateConfig->DMS_NS;
// check if DMS needs to be imported
if ($store->isModelAvailable($dmsNs) && $this->_privateConfig->import_DMS) {
$this->_checkDMS();
}
$url = new OntoWiki_Url(
array('controller' => 'files', 'action' => 'upload'),
array()
);
// check for POST'ed data
if ($this->_request->isPost()) {
$event = new Erfurt_Event('onFilesExtensionUploadFile');
$event->request = $this->_request;
$event->defaultUri = $defaultUri;
// process upload in plugin
$eventResult = $event->trigger();
if ($eventResult === true) {
if (isset($this->_request->setResource)) {
$this->_owApp->appendMessage(
new OntoWiki_Message('File attachment added', OntoWiki_Message::SUCCESS)
);
$resourceUri = new OntoWiki_Url(array('route' => 'properties'), array('r'));
$resourceUri->setParam('r', $this->_request->setResource, true);
$this->_redirect((string)$resourceUri);
} else {
$url->action = 'manage';
$this->_redirect((string)$url);
}
}
}
$this->view->placeholder('main.window.title')->set($this->_owApp->translate->_('Upload File'));
OntoWiki::getInstance()->getNavigation()->disableNavigation();
$toolbar = $this->_owApp->toolbar;
$url->action = 'manage';
$toolbar->appendButton(
OntoWiki_Toolbar::SUBMIT, array('name' => 'Upload File')
);
$toolbar->appendButton(
OntoWiki_Toolbar::EDIT, array('name' => 'File Manager', 'class' => '', 'url' => (string)$url)
);
$this->view->defaultUri = $defaultUri;
$this->view->placeholder('main.window.toolbar')->set($toolbar);
$url->action = 'upload';
$this->view->formActionUrl = (string)$url;
$this->view->formMethod = 'post';
$this->view->formClass = 'simple-input input-justify-left';
$this->view->formName = 'fileupload';
$this->view->formEncoding = 'multipart/form-data';
if (isset($this->_request->setResource)) {
// forward URI to form so we can redirect later
$this->view->setResource = $this->_request->setResource;
}
if (!is_writable($this->_privateConfig->path)) {
$this->_owApp->appendMessage(
new OntoWiki_Message('Uploads folder is not writable.', OntoWiki_Message::WARNING)
);
return;
}
// FIX: http://www.webmasterworld.com/macintosh_webmaster/3300569.htm
header('Connection: close');
}
/**
* method to check import of DMS Schema in current model
*/
private function _checkDMS()
{
$store = $this->_owApp->erfurt->getStore();
// checking if model is imported
$allImports = $this->_owApp->selectedModel->sparqlQuery(
Erfurt_Sparql_SimpleQuery::initWithString(
'SELECT *
WHERE {
<' . (string)$this->_owApp->selectedModel . '> <' . EF_OWL_IMPORTS . '> ?import .
}'
)
);
// import if missing
if (!in_array(array('import' => $this->_privateConfig->DMS_NS), $allImports)) {
$this->_owApp->selectedModel->addStatement(
(string)$this->_owApp->selectedModel,
EF_OWL_IMPORTS,
array('value' => $this->_privateConfig->DMS_NS, 'type' => 'uri'),
false
);
}
}
protected function _getConfigModelUri()
{
if (null === $this->_configModel) {
$this->_configModel = Erfurt_App::getInstance()->getConfig()->sysont->modelUri;
}
return $this->_configModel;
}
/**
* return the file path incl. filename for a given resource
*/
public static function getFullPath($fileResource)
{
$extensionManager = OntoWiki::getInstance()->extensionManager;
$privateConfig = $extensionManager->getPrivateConfig('files');
$path = $privateConfig->path;
return _OWROOT . $path . DIRECTORY_SEPARATOR . md5($fileResource);
}
/**
* Returns the queried mime type (or application/octet-stream) for a given
* file resource
*/
public static function getMimeType($fileResource)
{
$owApp = OntoWiki::getInstance();
$store = $owApp->erfurt->getStore();
$extensionManager = $owApp->extensionManager;
$configModel = $owApp->erfurt->getConfig()->sysont->modelUri;
$privateConfig = $extensionManager->getPrivateConfig('files');
$mimeProperty = $privateConfig->mime->property;
$query = new Erfurt_Sparql_SimpleQuery();
$query->setProloguePart('SELECT DISTINCT ?mime_type')
->addFrom($configModel)
->setWherePart('WHERE {<' . $fileResource . '> <' . $mimeProperty . '> ?mime_type. }');
if ($result = $store->sparqlQuery($query, array('use_ac' => false))) {
$mimeType = $result[0]['mime_type'];
} else {
// we set the default download file type to
// application/octet-stream
$mimeType = 'application/octet-stream';
}
return $mimeType;
}
/**
* Deletes all files that are not referenced by a resource.
* This function is intended to be used as a service by the chronjob extension.
* it does not return a page.
*/
public function deleteunreferencedfilesAction(){
// get all models as we do not know where resources with associated files are located
$models = $this->_owApp->erfurt->getStore()->getBackendAdapter()->getAvailableModels();
// get all files from the upload folder
$files = array();
$path = $this->_privateConfig->toArray()['path'];
if ($handle = opendir($path)) {
while (false !== ($entry = readdir($handle))) {
if ($entry != "." && $entry != "..") {
$files[] = $entry;
}
}
closedir($handle);
}
// initialize backend
$options = $this->_owApp->getConfig()->toArray()['store']['virtuoso'];
$options['is_open_source_version'] = '1';
$backend = new Erfurt_Store_Adapter_Virtuoso($options);
$backend->init();
// prepare and execute query (use all models)
$from = '';
foreach($models as $model){
$from = $from . ' FROM <' . $model['modelIri'] . '>' . PHP_EOL;
}
$query = 'select distinct ?subject '. $from .' where {?subject a <http://xmlns.com/foaf/0.1/Document> . ?subject <http://vocab.ub.uni-leipzig.de/terms/linkToFile> ?ignore}';
$query_results = $backend->sparqlQuery($query);
// extract resource hashes from resources
$ressourcHashes = array();
foreach($query_results as $resultSet){
$file = $resultSet['subject'];
$parts = explode("/", $this->getFullPath($file));
$ressourcHashes[] = $parts[(count($parts) - 1)];
}
// compare file names with resource hashes
foreach($files as $file){
if(!in_array($file, $ressourcHashes)){
// delete file if not linked by a resource
unlink(_OWROOT . $path . DIRECTORY_SEPARATOR . $file);
}
}
$this->getHelper('Layout')->disableLayout();
$this->getHelper('ViewRenderer')->setNoRender();
return true;
}
}