|
|
|
@ -6,73 +6,56 @@
|
|
|
|
|
* @param string $collection_pid |
|
|
|
|
* @return array |
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function islandora_collection_table($collection_pid) { |
|
|
|
|
module_load_include('inc', 'fedora_repository', 'api/fedora_utils'); |
|
|
|
|
|
|
|
|
|
$query = "select \$object \$title from <#ri> |
|
|
|
|
where (\$object <info:fedora/fedora-system:def/relations-external#isMemberOf> <info:fedora/$collection_pid> |
|
|
|
|
or \$object <info:fedora/fedora-system:def/relations-external#isMemberOfCollection> <info:fedora/$collection_pid>) |
|
|
|
|
and \$object <dc:title> \$title"; |
|
|
|
|
$query = htmlentities(urlencode($query)); |
|
|
|
|
$content = ''; |
|
|
|
|
|
|
|
|
|
$url = variable_get('fedora_repository_url', 'http://localhost:8080/fedora/risearch'); |
|
|
|
|
$url .= "?type=tuples&flush=TRUE&format=csv&limit=$limit&offset=$offset&lang=itql&stream=on&query=" . $query; |
|
|
|
|
$content .= do_curl($url); |
|
|
|
|
$results = explode("\n", $content); |
|
|
|
|
$lines = preg_replace('/info:fedora\/|"object","title"/', '', $results); |
|
|
|
|
$lines = array_values(array_filter($lines)); |
|
|
|
|
module_load_include('inc', 'islandora', 'RestConnection'); |
|
|
|
|
require_once 'sites/all/libraries/tuque/RepositoryQuery.php'; |
|
|
|
|
$restConnection = new RestConnection(); |
|
|
|
|
$query = 'select $object $title from <#ri> |
|
|
|
|
where ($object <info:fedora/fedora-system:def/relations-external#isMemberOf> <info:fedora/' . $collection_pid . '> |
|
|
|
|
or $object <info:fedora/fedora-system:def/relations-external#isMemberOfCollection> <info:fedora/' . $collection_pid . '>) |
|
|
|
|
and $object <dc:title> $title'; |
|
|
|
|
$results = $restConnection->repository->ri->itqlQuery($query, 'unlimited', '0'); |
|
|
|
|
$keys = array(); |
|
|
|
|
$object = array(); |
|
|
|
|
foreach ($lines as $line) { |
|
|
|
|
$line_parts = explode(',', $line); |
|
|
|
|
|
|
|
|
|
$objects[$line_parts[0]] = $line_parts[1]; |
|
|
|
|
$keys[] = $line_parts[0]; |
|
|
|
|
$objects = array(); |
|
|
|
|
foreach ($results as $result) { |
|
|
|
|
$objects[$result['object']['value']] = $result['title']['value']; |
|
|
|
|
$keys[] = $result['object']['value']; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$form['list'] = array( |
|
|
|
|
'#value' => $list, |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
$table = array( |
|
|
|
|
'#header' => array(theme('table_select_header_cell'), t('Select All'), ''), |
|
|
|
|
'#theme' => 'islandora_collection_management_form_table', |
|
|
|
|
'#tree' => TRUE, |
|
|
|
|
'rows' => array(), |
|
|
|
|
'selections' => array( |
|
|
|
|
'#type' => 'checkboxes', |
|
|
|
|
'#options' => array_fill_keys($keys, ''), |
|
|
|
|
), |
|
|
|
|
); |
|
|
|
|
$rows = &$table['rows']; |
|
|
|
|
if(empty($objects)){ |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
foreach ($objects as $key => $object) { |
|
|
|
|
$rows[] = array( |
|
|
|
|
$rows[$key] = array( |
|
|
|
|
'#pid' => $key, |
|
|
|
|
'pid' => array('#value' => l($key, 'fedora/repository/' . $key)), |
|
|
|
|
'title' => array('#value' => $object), |
|
|
|
|
'pid' => array('#value' => l($key, 'islandora/object/' . $key)), |
|
|
|
|
'title' => array( |
|
|
|
|
'data' => array( |
|
|
|
|
'#type' => 'link', |
|
|
|
|
'#title' => $object, |
|
|
|
|
'#href' => 'islandora/object/' . $key, |
|
|
|
|
), |
|
|
|
|
), |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$header = array( |
|
|
|
|
'title' => array('data' => t('Title')), |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
$table = array( |
|
|
|
|
'#type' => 'tableselect', |
|
|
|
|
'#header' => $header, |
|
|
|
|
'#options' => $rows, |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
return $table; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* themes the form table. |
|
|
|
|
* |
|
|
|
|
* @param array $element Drupal Form Element. |
|
|
|
|
* @return string |
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function theme_islandora_collection_management_form_table(array $element) { |
|
|
|
|
function theme_islandora_basic_collection_management_form_table(array $element) { |
|
|
|
|
$rows = array(); |
|
|
|
|
foreach (element_children($element['rows']) as $child) { |
|
|
|
|
$setting = $element['rows'][$child]; |
|
|
|
@ -91,4 +74,35 @@ function theme_islandora_collection_management_form_table(array $element) {
|
|
|
|
|
} |
|
|
|
|
$attributes = isset($element['#id']) ? array('id' => $element['#id']) : NULL; |
|
|
|
|
return theme_table($element['#header'], $rows, $attributes); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function get_collections_as_option_array() { |
|
|
|
|
module_load_include('inc', 'islandora', 'RestConnection'); |
|
|
|
|
require_once 'sites/all/libraries/tuque/RepositoryQuery.php'; |
|
|
|
|
|
|
|
|
|
$restricted = variable_get('fedora_namespace_restriction_enforced', TRUE); |
|
|
|
|
$allowed_string = variable_get('fedora_pids_allowed', 'default: demo: changeme: islandora:'); |
|
|
|
|
$namespaces = explode(':', $allowed_string); |
|
|
|
|
|
|
|
|
|
$restConnection = new RestConnection(); |
|
|
|
|
$query = 'select $object $title from <#ri> |
|
|
|
|
where ($object <fedora-model:label> $title |
|
|
|
|
and $object <info:fedora/fedora-system:def/model#hasModel> <info:fedora/islandora:collectionCModel> |
|
|
|
|
and $object <fedora-model:state> <info:fedora/fedora-system:def/model#Active>) |
|
|
|
|
order by $title'; |
|
|
|
|
$results = $restConnection->repository->ri->itqlQuery($query, 'unlimited', '0'); |
|
|
|
|
foreach ($namespaces as $namespace) { |
|
|
|
|
$trimmed_names[] = trim($namespace); |
|
|
|
|
} |
|
|
|
|
$options = array(); |
|
|
|
|
foreach ($results as $item) { //removes blanks |
|
|
|
|
// var_dump($item['object']['value']); |
|
|
|
|
$namespace = explode(':', $item['object']['value']); |
|
|
|
|
$namespace = trim($namespace[0]); |
|
|
|
|
if (!$restricted || in_array($namespace, $trimmed_names)) { |
|
|
|
|
$options[$item['object']['value']] = $item['title']['value']; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
unset($options['islandora:ContentModelCollection']); |
|
|
|
|
return $options; |
|
|
|
|
} |