forked from discoverygarden/adr_collection_viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Collection.inc
607 lines (572 loc) · 21.2 KB
/
Collection.inc
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
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
<?php
// $Id$
/**
* @file
*
*/
class Collection {
const mods = 'http://www.loc.gov/standards/mods/v3';
const xlink = 'http://www.w3.org/1999/xlink';
const xsi = 'http://www.w3.org/2001/XMLSchema-instance';
const xmlns = 'http://www.w3.org/2000/xmlns/';
/**
* The pid of this Collection.
*
* @var string
*/
protected $pid;
/**
* This collections fedora object.
* @var Fedora_Item
*/
protected $item;
/**
* FOXML repersention of the Fedora Object identified by $pid.
*
* Access through the function AjaxHandler::getFoxmlDocument().
* Do not access directly as it may not exist.
*
* @var DOMDocument
*/
protected $foxml;
/**
* XPath for the FOXML document identified by $foxml.
*
* Access through the function AjaxHandler::getFoxmlXPath().
* Do not directly as it may not exist.
*
* @var DOMDocument
*/
protected $xpath;
/**
*
* @var <type>
*/
protected $metadata;
/**
*
* @var <type>
*/
protected $metadataPath;
protected $solr;
/**
*
* @param string $pid
*/
public function __construct($pid) {
module_load_include('inc', 'fedora_repository', 'api/fedora_item');
$this->pid = $pid;
$this->item = new Fedora_Item($pid);
}
/**
*
* @param int $offset
* @param int $limit
* @param string $filter
* @param string $search_type
* @param string $search_text
* @return array
*/
public function getMembers($offset, $limit, $filter, $sort, $search_text) {
switch ($filter) {
case 'collections':
$data = $this->getMemberCollections();
list($data, $count) = $this->refineSearch($data, $offset, $limit, $sort, $search_text);
$this->populateResults($data);
break;
case 'objects':
$data = $this->getMemberObjects();
list($data, $count) = $this->refineSearch($data, $offset, $limit, $sort, $search_text);
$this->populateResults($data);
break;
case 'all':
default:
$data = $this->getAllMembers();
list($data, $count) = $this->refineSearch($data, $offset, $limit, $sort, $search_text);
$this->populateResults($data);
break;
}
return array('success' => true, 'data' => $data, 'total' => $count);
}
/**
*
* @return array
*/
private function getAllMembers() {
global $user;
$query = 'select $object $title $model $parent_model $created from <#ri>
where
((
$object <fedora-model:label> $title
and $object <fedora-model:hasModel> $model
and $object <fedora-model:createdDate> $created
and $model <fedora-model:hasModel> $parent_model
and $object <fedora-model:state> <info:fedora/fedora-system:def/model#Active>
and ( $object <fedora-rels-ext:isMemberOfCollection> <info:fedora/' . $this->pid . '>
or $object <fedora-rels-ext:isMemberOf> <info:fedora/' . $this->pid . '> )
minus $object <http://islandora.ca/ontology/relsext#isViewableByRole> $role
minus $object <http://islandora.ca/ontology/relsext#isViewableByUser> $user
) or (
$object <fedora-model:label> $title
and $object <fedora-model:hasModel> $model
and $object <fedora-model:createdDate> $created
and $model <fedora-model:hasModel> $parent_model
and $object <fedora-model:state> <info:fedora/fedora-system:def/model#Active>
and ( $object <fedora-rels-ext:isMemberOfCollection> <info:fedora/' . $this->pid . '>
or $object <fedora-rels-ext:isMemberOf> <info:fedora/' . $this->pid . '> )
and (';
foreach ($user->roles as $role) {
$query .= '$object <http://islandora.ca/ontology/relsext#isViewableByRole> '."'$role' or ";
}
$query .= '$object <http://islandora.ca/ontology/relsext#isViewableByUser> '."'$user->name'".')';
$query .= '))
minus $model <mulgara:is> <info:fedora/fedora-system:FedoraObject-3.0>
minus $parent_model <mulgara:is> <info:fedora/fedora-system:FedoraObject-3.0>
order by $title';
return $this->query($query);
}
/**
*
* @return array
*/
private function getMemberObjects() {
global $user;
$query = 'select $object $title $model $parent_model $created from <#ri>
where
((
$object <fedora-model:label> $title
and $object <fedora-model:hasModel> $model
and $object <fedora-model:createdDate> $created
and $model <fedora-model:hasModel> $parent_model
and $parent_model <mulgara:is> <info:fedora/fedora-system:ContentModel-3.0>
and $object <fedora-model:state> <info:fedora/fedora-system:def/model#Active>
and ( $object <fedora-rels-ext:isMemberOfCollection> <info:fedora/' . $this->pid . '>
or $object <fedora-rels-ext:isMemberOf> <info:fedora/' . $this->pid . '> )
minus $object <http://islandora.ca/ontology/relsext#isViewableByRole> $role
minus $object <http://islandora.ca/ontology/relsext#isViewableByUser> $user
) or (
$object <fedora-model:label> $title
and $object <fedora-model:hasModel> $model
and $object <fedora-model:createdDate> $created
and $model <fedora-model:hasModel> $parent_model
and $parent_model <mulgara:is> <info:fedora/fedora-system:ContentModel-3.0>
and $object <fedora-model:state> <info:fedora/fedora-system:def/model#Active>
and ( $object <fedora-rels-ext:isMemberOfCollection> <info:fedora/' . $this->pid . '>
or $object <fedora-rels-ext:isMemberOf> <info:fedora/' . $this->pid . '> )
and (';
foreach ($user->roles as $role) {
$query .= '$object <http://islandora.ca/ontology/relsext#isViewableByRole> '."'$role' or ";
}
$query .= '$object <http://islandora.ca/ontology/relsext#isViewableByUser> '."'$user->name'".')';
$query .= '))
minus $model <mulgara:is> <info:fedora/fedora-system:FedoraObject-3.0>
minus $parent_model <mulgara:is> <info:fedora/fedora-system:FedoraObject-3.0>
order by $title';
return $this->query($query);
}
/**
*
* @return array
*/
private function getMemberCollections() {
global $user;
$query = 'select $object $title $model $parent_model $created from <#ri>
where
((
$object <fedora-model:label> $title
and $object <fedora-model:hasModel> $model
and $object <fedora-model:createdDate> $created
and $model <fedora-model:hasModel> $parent_model
and $parent_model <mulgara:is> <info:fedora/islandora:collectionCModel>
and $object <fedora-model:state> <info:fedora/fedora-system:def/model#Active>
and ( $object <fedora-rels-ext:isMemberOfCollection> <info:fedora/' . $this->pid . '>
or $object <fedora-rels-ext:isMemberOf> <info:fedora/' . $this->pid . '> )
minus $object <http://islandora.ca/ontology/relsext#isViewableByRole> $role
minus $object <http://islandora.ca/ontology/relsext#isViewableByUser> $user
) or (
$object <fedora-model:label> $title
and $object <fedora-model:hasModel> $model
and $object <fedora-model:createdDate> $created
and $model <fedora-model:hasModel> $parent_model
and $parent_model <mulgara:is> <info:fedora/islandora:collectionCModel>
and $object <fedora-model:state> <info:fedora/fedora-system:def/model#Active>
and ( $object <fedora-rels-ext:isMemberOfCollection> <info:fedora/' . $this->pid . '>
or $object <fedora-rels-ext:isMemberOf> <info:fedora/' . $this->pid . '> )
and (';
foreach ($user->roles as $role) {
$query .= '$object <http://islandora.ca/ontology/relsext#isViewableByRole> '."'$role' or ";
}
$query .= '$object <http://islandora.ca/ontology/relsext#isViewableByUser> '."'$user->name'".')';
$query .= '))
minus $model <mulgara:is> <info:fedora/fedora-system:FedoraObject-3.0>
minus $parent_model <mulgara:is> <info:fedora/fedora-system:FedoraObject-3.0>
order by $title';
return $this->query($query);
}
private function query($query) {
global $base_url;
module_load_include('inc', 'fedora_repository', 'CollectionClass');
$collection_class = new CollectionClass();
$results = $collection_class->getRelatedObjects($this->pid, 1000000, NULL, $query);
if ($results != ' ') {
$doc = new DOMDocument();
$doc->loadXML(trim($results));
$path = new DOMXPath($doc);
$path->registerNamespace('sparql', 'http://www.w3.org/2001/sw/DataAccess/rf1/result');
$query_results = $path->query('//sparql:result');
if ($query_results->length > 0) {
$count = $query_results->length;
$returns = array();
for ($i = 0; $i < $count; $i++) {
$result = $query_results->item($i);
$pid = substr($path->query('sparql:object/@uri', $result)->item(0)->value, 12); // 12 characteres in "info:fedora/"
$title = $path->query('sparql:title', $result)->item(0)->textContent;
$created = $path->query('sparql:created', $result)->item(0)->textContent;
$parent_model = substr($path->query('sparql:parent_model/@uri', $result)->item(0)->value, 12);
$returns[] = array('title' => $title, 'pid' => $pid, 'parent_model' => $parent_model, 'created' => $created);
}
return $returns;
}
}
return array();
}
/**
*
*/
private function isCollection(&$fedora_item) {
$model_pid = $this->getModelPid($fedora_item);
$model = new Fedora_Item($model_pid);
$parent_model_pid = $this->getModelPid($model);
return $parent_model_pid == 'islandora:collectionCModel';
}
private function getModelPid(&$fedora_item) {
$rels_ext = $fedora_item->get_datastream_dissemination('RELS-EXT');
$doc = new DOMDocument();
$doc->loadXML($rels_ext);
$xpath = new DOMXPath($doc);
$xpath->registerNamespace('rdf', "http://www.w3.org/1999/02/22-rdf-syntax-ns#");
$xpath->registerNamespace('fedora-model', "info:fedora/fedora-system:def/model#");
$results = $xpath->query('/rdf:RDF/rdf:Description/fedora-model:hasModel/@rdf:resource');
return substr($results->item(0)->value, 12); // 12 characteres in "info:fedora/"
}
/**
*
* @return array
*/
private function getTitleAndDescriptionFromMods(&$fedora_item) {
$mods = $fedora_item->get_datastream_dissemination('MODS');
if ($mods && is_string($mods) && trim($mods) != '') {
$doc = new DOMDocument();
$doc->loadXML($mods);
$root = &$doc->documentElement;
$root->setAttributeNS(self::xmlns, 'xmlns', self::mods);
$root->setAttributeNS(self::xmlns, 'xmlns:mods', self::mods);
$root->setAttributeNS(self::xmlns, 'xmlns:xlink', self::xlink);
$root->setAttributeNS(self::xmlns, 'xmlns:xsi', self::xsi);
$xml = $doc->saveXML();
$doc->loadXML($xml); // Sucha a terrible api...
$xpath = new DOMXPath($doc);
$xpath->registerNamespace('mods', 'http://www.loc.gov/standards/mods/v3');
$title = '';
$description = '';
$result = $xpath->query('/mods:mods/mods:titleInfo[not(@type)]/mods:title');
if ($result && $result->length > 0) {
$title = $result->item(0)->textContent;
$result = $xpath->query("/mods:mods/mods:titleInfo[@type='alternative']/mods:title");
if ($result && $result->length > 0) {
$title = "$title: {$result->item(0)->textContent}";
}
}
$result = $xpath->query('/mods:mods/mods:abstract');
if ($result && $result->length > 0) {
$description = $result->item(0)->textContent;
}
return array($title, $description);
}
return FALSE;
}
private function getTitleAndDescriptionFromDC(&$fedora_item) {
$dc = $fedora_item->get_datastream_dissemination('DC');
if ($dc && is_string($dc) && trim($dc) != '') {
$doc = new DOMDocument();
$doc->loadXML($dc);
$xpath = new DOMXPath($doc);
$title = '';
$description = '';
$result = $xpath->query('//dc:title');
if ($result && $result->length > 0) {
$title = $result->item(0)->textContent;
}
$result = $xpath->query('//dc:description');
if ($result && $result->length > 0) {
$description = $result->item(0)->textContent;
}
return array($title, $description);
}
return FALSE;
}
private function refineSearch($data, $offset, $limit, $sort, $search_text) {
if (isset($search_text) && trim($search_text) != '') {
$data = array_filter($data, function ($item) use ($search_text) {
return preg_match("/^.*{$search_text}.*/i", $item['title']) != 0;
});
$this->sort($data, $sort);
$count = count($data);
$data = array_slice($data, $offset, $limit);
return array($data, $count);
}
else {
$this->sort($data, $sort);
$count = count($data);
$data = array_slice($data, $offset, $limit);
return array($data, $count);
}
}
private function sort(array &$data, $sort) {
switch ($sort) {
case 'alpha-desc':
usort($data, array($this, 'alpha_desc_sort'));
break;
case 'date-newest':
usort($data, array($this, 'date_newest_sort'));
break;
case 'date-oldest':
usort($data, array($this, 'date_oldest_sort'));
break;
case 'alpha-asc':
default:
usort($data, array($this, 'alpha_asc_sort'));
break;
}
}
private function alpha_asc_sort($a, $b) {
$a_title = self::strip_puncuation_marks($a['title']);
$b_title = self::strip_puncuation_marks($b['title']);
return strcmp(strtoupper(trim($a_title)), strtoupper(trim($b_title)));
}
private function alpha_desc_sort($a, $b) {
$a_title = self::strip_puncuation_marks($a['title']);
$b_title = self::strip_puncuation_marks($b['title']);
return strcmp(strtoupper(trim($b_title)), strtoupper(trim($a_title)));
}
/**
* Strips puncuation marks from the inputted string left to right until a
* character that is not in the puncuation array is encountered.
*
* @param string $title_string
* @return string
*/
private function strip_puncuation_marks($title_string) {
$punc_marks = array(",",".","'","\"","!","?",":",";","(",")","<",">", "}", "{");
if (in_array(substr($title_string, 0, 1), $punc_marks)) {
for ($i=0;$i<strlen($title_string); $i++) {
$value = substr($title_string, $i, 1);
if (!in_array((substr($title_string, $i, 1)),$punc_marks)) {
break;
}
else {
$title_string = str_replace($value, '', $title_string, $count = 1);
$i--;
}
}
}
return $title_string;
}
private function date_newest_sort($a, $b) {
$a = strtotime($a['created']);
$b = strtotime($b['created']);
if ($a == $b) {
return 0;
}
return ($a > $b) ? -1 : 1;
}
private function date_oldest_sort($a, $b) {
$a = strtotime($a['created']);
$b = strtotime($b['created']);
if ($a == $b) {
return 0;
}
return ($a < $b) ? -1 : 1;
}
private function count($query) {
module_load_include('inc', 'fedora_repository', 'CollectionClass');
$collection_class = new CollectionClass();
$results = $collection_class->getRelatedObjects($this->pid, $limit, $offset, $query);
if ($results != ' ') {
$doc = new DOMDocument();
$doc->loadXML(trim($results));
$path = new DOMXPath($doc);
$path->registerNamespace('sparql', 'http://www.w3.org/2001/sw/DataAccess/rf1/result');
return $path->evaluate('count(//sparql:result)');
}
return 0;
}
private function populateResults(&$results) {
global $base_url;
foreach ($results as &$result) {
$pid = $result['pid'];
$parent_model = $result['parent_model'];
unset($result['parent_model']); // Don't need to return this info to javascript...
$item = new Fedora_Item($pid);
$description = " ";
if ($info = $this->getTitleAndDescriptionFromMods($item)) {
list($mods_title, $mods_description) = $info;
//$title = $mods_title != '' ? $mods_title : $title;
$result['description'] = $mods_description != '' ? $mods_description : $description;
}
else if ($info = $this->getTitleAndDescriptionFromDC($item)) {
list($dc_title, $dc_description) = $info;
//$title = $mods_title != '' ? $mods_title : $title;
$result['description'] = $dc_description != '' ? $dc_description : $description;
}
$result['url'] = "$base_url/fedora/repository/$pid";
if (isset($item->datastreams['TN'])) {
$result['img_url'] = "$base_url/fedora/repository/$pid/TN";
}
else {
$result['img_url'] = "$base_url/" . drupal_get_path('module', 'adr_collection_viewer') . '/images/object.png';
}
if ($parent_model == 'islandora:collectionCModel') {
$result['img_url'] = "$base_url/" . drupal_get_path('module', 'adr_collection_viewer') . '/images/collection.png';
}
}
}
private function getSolr() {
if (empty($this->solr)) {
module_load_include('php', 'islandora_solr_search', 'Solr/Service');
$host = variable_get('islandora_solr_search_block_host', 'localhost');
$port = variable_get('islandora_solr_search_block_port', '8080');
$app_name = variable_get('islandora_solr_search_block_app_name', 'solr');
$this->solr = new Apache_Solr_Service($host, $port, '/' . $app_name . '/');
}
return $this->solr;
}
public function querySolr($query) {
$additional_params = array(
'facet' => 'false',
'qt' => variable_get("islandora_solr_search_block_request_handler", t("standard"))
);
$solr = $this->getSolr();
$query = $string = trim(strtolower($query));
$query = $solr->escape($query);
try {
$results = $solr->search($query, 0, 10, $additional_params);
} catch (Exception $e) {
drupal_set_message(t('error searching ') . $e->getMessage());
}
if (empty($results)) {
drupal_set_message(t('Error searching solr index. Is the solr search block configured properly?'), 'error');
return ' ';
}
var_dump($results);
}
/**
* Get the label of this collection.
*
* @return string
*/
public function getLabel() {
return $this->item->objectProfile->objLabel;
}
/**
* Get the description of this collection.
*
* @return string
*/
public function getDescription() {
if ($this->hasMetadata()) {
$xpath = $this->getMetadataXPath();
$results = $xpath->query('/mods:mods/mods:abstract');
if ($results && $results->length > 0) {
return $results->item(0)->textContent;
}
}
return NULL;
}
/**
* Returns true if this collection has metadata.
*
* @return boolean
*/
public function hasMetadata() {
if (isset($this->metadata)) {
return true;
}
return isset($this->item->datastreams['MODS']);
}
/**
*
* @return DOMDocument
*/
private function &getMetadata() {
if (empty($this->metadata)) {
$mods = $this->item->get_datastream_dissemination('MODS');
$this->metadata = new DOMDocument();
$this->metadata->loadXML($mods);
}
return $this->metadata;
}
/**
*
*/
private function getMetadataXPath() {
if (empty($this->metadataPath)) {
$doc = &$this->getMetadata();
$this->metadataPath = new DOMXPath($doc);
$this->registerNamespaces($doc->saveXML(), $this->metadataPath);
$this->metadataPath->registerNamespace('mods', 'http://www.loc.gov/mods/v3');
}
return $this->metadataPath;
}
/**
* Gets this objects FOXML repersentation, as a DOMDocument.
*
* Creates a new DOMDocument object from this objects exported FOXML, storing it
* as a member if it doesn't already exist.
*
* @return DOMDocument
*/
private function getFoxmlDocument() {
if (empty($this->foxml)) {
$foxml = $this->item->export_as_foxml();
$this->foxml = new DOMDocument();
$this->foxml->loadXML($foxml);
return $this->foxml;
}
else {
return $this->foxml;
}
}
/**
* Get the XPath for this object FOXML repersentation.
*
* Creates a new DOMXPath object, storing it as a member if it doesn't already exist.
*
* @return DOMXPath
* XPath for this object FOXML repersentation.
*/
private function getFoxmlXPath() {
if (empty($this->xpath)) {
$foxml = $this->getFoxmlDocument();
$this->xpath = new DOMXPath($foxml);
$this->registerNamespaces($foxml->saveXML(), $this->xpath);
return $this->xpath;
}
else {
return $this->xpath;
}
}
/**
* Registers all namespaces found in the foxml document.
*
* @param string $foxml
* XML string of the exported fedora objects foxml.
*/
private function registerNamespaces($doc, &$path) {
$simple = new SimpleXMLElement($doc);
$names = $simple->getNamespaces(TRUE);
foreach ($names as $prefix => $uri) {
$path->registerNamespace($prefix, $uri);
}
}
}