|
|
|
@ -54,12 +54,24 @@ function islandora_manage_orphaned_objects_form(array $form, array $form_state)
|
|
|
|
|
or a variety of other reasons. Some of these orphans may exist intentionally. |
|
|
|
|
Please be cautious when deleting, as this action is irreversible.'), 'warning'); |
|
|
|
|
$orphaned_objects = islandora_get_orphaned_objects(); |
|
|
|
|
$query_method = variable_get('islandora_orphaned_objects_backend', 'Solr'); |
|
|
|
|
|
|
|
|
|
$rows = array(); |
|
|
|
|
foreach ($orphaned_objects as $orphaned_object) { |
|
|
|
|
if ($query_method == 'SPARQL') { |
|
|
|
|
$pid = $orphaned_object['object']['value']; |
|
|
|
|
} |
|
|
|
|
elseif ($query_method == 'Solr') { |
|
|
|
|
$pid = $orphaned_object['PID']; |
|
|
|
|
} |
|
|
|
|
if (islandora_namespace_accessible($pid)) { |
|
|
|
|
if ($query_method == 'SPARQL') { |
|
|
|
|
$rows[$pid] = array(l($orphaned_object['title']['value'] . " (" . $pid . ")", "islandora/object/$pid")); |
|
|
|
|
} |
|
|
|
|
elseif ($query_method == 'Solr') { |
|
|
|
|
$rows[$pid] = array(l($orphaned_object['object_label'] . " (" . $pid . ")", "islandora/object/$pid")); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
ksort($rows); |
|
|
|
|
$form['management_table'] = array( |
|
|
|
@ -144,6 +156,70 @@ function islandora_manage_orphaned_objects_confirm_submit(array $form, array &$f
|
|
|
|
|
* An array containing the results of the orphaned objects queries. |
|
|
|
|
*/ |
|
|
|
|
function islandora_get_orphaned_objects() { |
|
|
|
|
$query_method = variable_get('islandora_orphaned_objects_backend', 'Solr'); |
|
|
|
|
|
|
|
|
|
if ($query_method == 'Solr') { |
|
|
|
|
// Step 1: Solr query for the RELS_EXTs |
|
|
|
|
$collection_field = variable_get('islandora_solr_member_of_collection_field', 'RELS_EXT_isMemberOfCollection_uri_ms'); |
|
|
|
|
$label_field = variable_get('islandora_solr_object_label_field', 'fgs_label_s'); |
|
|
|
|
$member_field = variable_get('islandora_solr_member_of_field', 'RELS_EXT_isMemberOf_uri_ms'); |
|
|
|
|
|
|
|
|
|
$params = "PID, " . $label_field . ", " . $collection_field . ", " . $member_field; |
|
|
|
|
|
|
|
|
|
$query = "PID:*"; |
|
|
|
|
$qp = new islandoraSolrQueryProcessor(); |
|
|
|
|
$qp->buildQuery($query); |
|
|
|
|
$qp->solrParams['fl'] = $params; |
|
|
|
|
$qp->solrLimit = 1000000000; |
|
|
|
|
// Check islandora_compound_object settings and changes query filters to include compound children if necessary. |
|
|
|
|
if (variable_get('islandora_compound_object_hide_child_objects_solr', TRUE)) { |
|
|
|
|
$fq = variable_get('islandora_compound_object_solr_fq', '-RELS_EXT_isConstituentOf_uri_mt:[* TO *]'); |
|
|
|
|
if (!empty($fq)) { |
|
|
|
|
// delete islandora_compound_object_solr_fq from the list of filters |
|
|
|
|
$filters = $qp->solrParams['fq']; |
|
|
|
|
if (($key = array_search($fq, $filters)) !== FALSE) { |
|
|
|
|
unset($filters[$key]); |
|
|
|
|
$qp->solrParams['fq'] = $filters; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
$qp->executeQuery(FALSE); |
|
|
|
|
|
|
|
|
|
try { |
|
|
|
|
$results = $qp->islandoraSolrResult['response']['objects']; |
|
|
|
|
} |
|
|
|
|
catch (Exception $e) { |
|
|
|
|
watchdog_exception('Islandora', $e, 'Got an exception searching for parent objects .', array(), WATCHDOG_ERROR); |
|
|
|
|
$results = array(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$orphaned_objects = array(); |
|
|
|
|
|
|
|
|
|
// Now we have $results[key]['PID'] for the pid. sparql: [key][object][value] and [key][title][value] |
|
|
|
|
// Step 2: Check all results for PIDs that don't exist |
|
|
|
|
|
|
|
|
|
foreach ($results AS $result) { |
|
|
|
|
if (array_key_exists($collection_field, $result['solr_doc'])) { |
|
|
|
|
foreach ($result['solr_doc'][$collection_field] AS $collection) { |
|
|
|
|
$test = islandora_object_load($collection); |
|
|
|
|
if (!$test) { |
|
|
|
|
$orphaned_objects[] = $result; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if (array_key_exists($member_field, $result['solr_doc'])) { |
|
|
|
|
foreach ($result['solr_doc'][$member_field] AS $membership) { |
|
|
|
|
$test = islandora_object_load($membership); |
|
|
|
|
if (!$test) { |
|
|
|
|
$orphaned_objects[] = $result; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
$results = $orphaned_objects; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
elseif($query_method == "SPARQL") { |
|
|
|
|
$connection = islandora_get_tuque_connection(); |
|
|
|
|
// SPARQL: get orphaned objects, exclude any with a living parent. |
|
|
|
|
$object_query = <<<EOQ |
|
|
|
@ -202,6 +278,7 @@ EOQ;
|
|
|
|
|
'!prefix' => implode("\n", $parent_relationships['prefix']), |
|
|
|
|
)); |
|
|
|
|
$results = $connection->repository->ri->sparqlQuery($sparql_query_objects); |
|
|
|
|
} |
|
|
|
|
return $results; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|