forked from ERM-HD/issnimporter.ontowiki
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIssnimporterController.php
More file actions
465 lines (388 loc) · 16 KB
/
IssnimporterController.php
File metadata and controls
465 lines (388 loc) · 16 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
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
459
460
461
462
463
464
465
<?php
/**
* This file is part of the {@link http://amsl.technology amsl} project.
*
* @author Norman Radtke
* @author Annika Domin
* @copyright Copyright (c) 2015, {@link http://ub.uni-leipzig.de Leipzig University Library}
* @license http://opensource.org/licenses/gpl-license.php GNU General Public License (GPL)
*/
/**
* Controller for OntoWiki Basicimporter Extension
*
* @category OntoWiki
* @package Extensions_Issnimporter
* @author Norman Radtke <radtke@informatik.uni-leipzig.de>
* @author Annika Domin <domin@ub.uni-leipzig.de>
* @author Sebastian Tramp <mail@sebastian.tramp.name>
*/
class IssnimporterController extends OntoWiki_Controller_Component
{
private $_model = null;
private $_post = null;
private $_translate = null;
/**
* init() Method to init() normal and add tabbed Navigation
*/
public function init()
{
parent::init();
$action = $this->_request->getActionName();
$this->view->headLink()->appendStylesheet($this->_config->urlBase .
'extensions/issnimporter/templates/issnimporter/issnimporter.css');
$this->view->placeholder('main.window.title')->set('Import Data');
$this->view->formActionUrl = $this->_config->urlBase . 'issnimporter/' . $action;
$this->view->formEncoding = 'multipart/form-data';
$this->view->formClass = 'simple-input input-justify-left';
$this->view->formMethod = 'post';
$this->view->formName = 'importdata';
$this->view->supportedFormats = $this->_erfurt->getStore()->getSupportedImportFormats();
$this->_translate = $this->_owApp->translate;
// add a standard toolbar
$toolbar = $this->_owApp->toolbar;
$toolbar->appendButton(
OntoWiki_Toolbar::SUBMIT,
array('name' => 'Import Data', 'id' => 'importdata')
)->appendButton(
OntoWiki_Toolbar::RESET,
array('name' => 'Cancel', 'id' => 'importdata')
);
$this->view->placeholder('main.window.toolbar')->set($toolbar);
OntoWiki::getInstance()->getNavigation()->disableNavigation();
if ($this->_request->isPost()) {
$this->_post = $this->_request->getPost();
}
}
/**
* This action will return a json_encoded array containing contracts and license packages
* it will be used for suggestions in import form
*/
public function getcontractsAction()
{
// tells OntoWiki to not apply the template to this action
$this->_helper->viewRenderer->setNoRender();
$this->_helper->layout->disableLayout();
/* if ($this->_owApp->selectedModel === null) {
$this->_response->setBody(json_encode(array()));
} else {*/
$this->_response->setBody($this->_getContractsJSONData());
//}
}
public function titlelistimportAction()
{
$this->view->placeholder('main.window.title')->set('Upload CSV title list');
if ($this->_request->isPost()) {
$data = array();
$nsAmsl = 'http://vocab.ub.uni-leipzig.de/amsl/';
$nsDc = 'http://purl.org/dc/elements/1.1/';
$nsDct = 'http://purl.org/dc/terms/';
$nsXsd = 'http://www.w3.org/2001/XMLSchema#';
$post = $this->_request->getPost();
$upload = new Zend_File_Transfer();
$filesArray = $upload->getFileInfo();
$year = $post['validityyear'];
$csv_format = $post['csv_format'];
$label = $post['resourcelabel'];
$targetType = $post['collectIn'];
$targetResource = $post['contracts-input'];
$regISBN = '/\b(?:ISBN(?:: ?| ))?((?:97[89])?\d{9}[\dx])\b/i';
$no_enclosure = true ;
$expected_min_columns = '' ;
//Check for csv_format
if ($csv_format == '0' || '') {
$this->_owApp->appendErrorMessage($this->_translate->translate(
'Please select a CSV format.'
));
return;
}
//csv configuration according to csv_format:
// 1 = KBART
if ($csv_format == '1') {
$delimiter = "\t" ;
$skipFirst = true ;
$expected_min_columns = '16' ;
// 2 = Simple CSV
} elseif ($csv_format =='2') {
$delimiter = $post['delimiter'];
$enclosure = $post['enclosure'];
$no_enclosure = false ;
$expected_min_columns = '5';
if (isset($post['title'])) {
if ($post['title'] === 'on') {
$skipFirst = true;
}
} else {
$skipFirst = false;
}
}
// Check for valid year
if (preg_match('/[2][01]\d{2}/',$post['validityyear'],$result)) {
$year = $result[0];
} else {
$this->_owApp->appendErrorMessage($this->_translate->translate(
'The given value for "year" is empty or wrong. (2000-2199)'
));
return;
}
// Check if URI is given or valid if "existent resource"-option is checked
if ($targetType === 'existent' &&
($targetResource === '' || !(Erfurt_Uri::check($targetResource)))
) {
$this->_owApp->appendErrorMessage($this->_translate->translate(
'The value for existent resource is empty or wrong. Please check the value ' .
'and try again.')
);
return;
}
$message = '';
switch (true) {
case empty($filesArray):
$message = 'upload went wrong. check post_max_size in your php.ini.';
break;
case ($filesArray['source']['error'] == UPLOAD_ERR_INI_SIZE):
$message = 'The uploaded files\'s size exceeds the upload_max_filesize';
$message.= ' directive in php.ini.';
break;
case ($filesArray['source']['error'] == UPLOAD_ERR_PARTIAL):
$message = 'The file was only partially uploaded.';
break;
case ($filesArray['source']['error'] >= UPLOAD_ERR_NO_FILE):
$message = 'Please select a file to upload';
break;
}
if ($message != '') {
$this->_owApp->appendErrorMessage($this->_translate->translate($message));
return;
}
$file = $filesArray['source']['tmp_name'];
// setting permissions to read the tempfile for everybody
// (e.g. if db and webserver owned by different users)
chmod($file, 0644);
# Check file encoding
$fileContent = file_get_contents($file);
if (!mb_check_encoding($fileContent, 'UTF-8')) {
$message = 'The file needs to be UTF-8 encoded. Please change encoding and retry.';
$this->_owApp->appendErrorMessage($this->_translate->translate($message));
return;
}
# READING CSV file
$handle = fopen($file, 'r');
$csvData = Array();
if ($handle != FALSE) {
switch ($no_enclosure) {
case TRUE:
while (($line = fgetcsv($handle,600,$delimiter)) !== FALSE) {
$csvData[] = $line;
}
break;
case FALSE:
while (($line = fgetcsv($handle,600,$delimiter,$enclosure)) !== FALSE) {
$csvData[] = $line;
}
break;
}
} else {
$this->_owApp->appendErrorMessage("Could not read from CSV File");
return;
}
fclose($handle);
} else {
return;
}
$modelIri = (string)$this->_owApp->selectedModel;
$hash = md5(rand()) ;
$item = $modelIri . 'resource/item/' . $hash . '/';
//$xsdDateTime = date('Y-m-d') . 'T' . date('H:i:s');
# set a flag for writing labels of contract/package resource
$writeLabel = true;
if ($targetResource !== "" && Erfurt_Uri::check($targetResource)) {
$mainResource = $targetResource ;
$writeLabel = false;
} else {
$mainResource = $modelIri . 'resource/' . $targetType . '/' . $hash ;
if ($targetType === 'package') {
$data[$mainResource][EF_RDF_TYPE][] = array(
'type' => 'uri',
'value' => $nsAmsl . 'LicensePackage'
);
} else {
$data[$mainResource][EF_RDF_TYPE][] = array(
'type' => 'uri',
'value' => $nsAmsl . 'AnnualContractData'
);
}
}
if ($writeLabel === true) {
if (isset($label) && $label !== '') {
$data[$mainResource][EF_RDFS_LABEL][] = array(
'type' => 'literal',
'value' => $label
);
} else {
$data[$mainResource][EF_RDFS_LABEL][] = array(
'type' => 'literal',
'value' => '"Ein license ' . $targetType
);
}
}
/* excluded due to virtuoso problems
$data[$mainResource][$nsDct . 'created'][] = array(
'type' => 'literal',
'datatype' => $nsXsd . 'dateTime',
'value' => $xsdDateTime
);*/
$errorCount = 0;
$lineNumber = 0;
// iterate through CSV lines
$ignoredLines = array();
$skipped = false;
foreach ($csvData as $csvColumn) {
$lineNumber++;
if ($skipFirst === true) {
$skipped = true;
$skipFirst = false;
continue;
}
$foundEISSN = false;
$foundPISSN = false;
$itemUri = '';
$columnCount = count($csvColumn);
if ($columnCount >= $expected_min_columns) {
$title = trim($csvColumn[0]);
if ($title === '') {
$errorCount++;
$msg = $this->_translate->translate('Row');
$msg.= ' ' . $lineNumber . ' ';
$msg.= $this->_translate->translate('ignored: Title is missing.');
$ignoredLines[] = $msg;
continue;
}
$itemUri = $item . $lineNumber;
// START IMPORT
// GENERAL TRIPLES
$data[$itemUri][EF_RDF_TYPE][] = array(
'type' => 'uri',
'value' => $nsAmsl . 'ContractItem'
);
$data[$itemUri][$nsAmsl . 'contractItemOf'][] = array(
'type' => 'uri',
'value' => $mainResource
);
/* excluded due to virtuoso problems
$data[$itemUri][$nsDct . 'created'][] = array(
'type' => 'literal',
'datatype' => $nsXsd . 'dateTime',
'value' => $xsdDateTime
);*/
$data[$itemUri][EF_RDFS_LABEL][] = array(
'type' => 'literal',
'value' => $title . ' (' . $year . ')'
);
// Include various import actions
// 1 = KBART
if($csv_format == '1') {
require('ImportKBART.php') ;
// 2 = Simple CSV
} elseif ($csv_format == '2') {
require('ImportSimpleCSV.php') ;
}
} else {
$errorCount++;
$msg = $this->_translate->translate('Row');
$msg.= ' ' . $lineNumber . ' ';
$msg.= $this->_translate->translate('ignored: Missing columns or wrong seperators.');
$ignoredLines[] = $msg;
}
}
if (($skipped === false && $errorCount === count($csvData)) ||
($skipped === true && $errorCount === count($csvData) - 1))
{
$msg = $this->_translate->translate('Nothing was imported');
$this->_owApp->appendErrorMessage($msg);
foreach ($ignoredLines as $msg) {
$this->_owApp->appendInfoMessage($msg);
}
return;
} elseif ($errorCount === 1) {
$msg = $this->_translate->translate('Some data not imported');
$this->_owApp->appendErrorMessage($msg);
} elseif ($errorCount > 1) {
$msg = $this->_translate->translate('Some data not imported');
$this->_owApp->appendErrorMessage($msg);
}
foreach ($ignoredLines as $msg) {
$this->_owApp->appendInfoMessage($msg);
}
try {
$this->_import($data);
} catch (Exception $e) {
$message = $e->getMessage();
$this->_owApp->appendErrorMessage($message);
return;
}
$this->_owApp->appendSuccessMessage('Data successfully imported.');
}
private function _import($data)
{
$model = $this->_owApp->selectedModel;
$modelIri = (string)$model;
$versioning = $this->_erfurt->getVersioning();
// action spec for versioning
$actionSpec = array();
$actionSpec['type'] = 11;
$actionSpec['modeluri'] = $modelIri;
$actionSpec['resourceuri'] = $modelIri;
try {
// starting action
$versioning->startAction($actionSpec);
$model->addMultipleStatements($data);
// stopping action
$versioning->endAction();
// Trigger Reindex
$indexEvent = new Erfurt_Event('onReindexAction');
$indexEvent->model = $modelIri;
$indexEvent->trigger();
} catch (Erfurt_Exception $e) {
// re-throw
throw new OntoWiki_Controller_Exception(
'Could not import given model: ' . $e->getMessage(),
0,
$e
);
}
}
private function _getContractsJSONData () {
$model = $this->_owApp->selectedModel;
if ($model === null) {
return json_encode(array());
}
$nsAMSL = 'http://vocab.ub.uni-leipzig.de/amsl/';
$query = 'SELECT DISTINCT * WHERE {' . PHP_EOL ;
$query.= '{ ?s a <' . $nsAMSL . 'AnnualContractData> . } ' . PHP_EOL;
$query.= 'UNION ' . PHP_EOL;
$query.= '{ ?s a <' . $nsAMSL . 'LicensePackage> . } ' . PHP_EOL;
$query.= '?s <' . EF_RDFS_LABEL . '> ' . '?label .' . PHP_EOL;
$query.= '}' . PHP_EOL;
$result = $model->sparqlQuery($query);
// Delete duplicates -> returns an associative array
$temp = $this->_super_unique($result);
// Create a new non associative array
$json = array();
foreach ($temp as $value) {
$json[] = $value;
}
return json_encode($json);
}
private function _super_unique($array)
{
$result = array_map("unserialize", array_unique(array_map("serialize", $array)));
foreach ($result as $key => $value)
{
if ( is_array($value) )
{
$result[$key] = $this->_super_unique($value);
}
}
return $result;
}
}