|
|
|
@ -1,6 +1,5 @@
|
|
|
|
|
<?php |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* @file |
|
|
|
|
* |
|
|
|
@ -40,6 +39,7 @@ class CollectionClass {
|
|
|
|
|
* gets objects related to this object. must include offset and limit |
|
|
|
|
* calls getRelatedItems but enforces limit and offset |
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
function getRelatedObjects($pid, $limit, $offset, $itqlquery=NULL) { |
|
|
|
|
module_load_include('inc', 'fedora_repository', 'ObjectHelper'); |
|
|
|
|
$objectHelper = new ObjectHelper(); |
|
|
|
@ -99,7 +99,7 @@ class CollectionClass {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* getCollectionPolicyStream ?? |
|
|
|
|
* |
|
|
|
|
* @param type $collection_pid |
|
|
|
|
* @return type |
|
|
|
|
*/ |
|
|
|
@ -112,7 +112,7 @@ class CollectionClass {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* getRelationshipElement |
|
|
|
|
* |
|
|
|
|
* @param type $collection_pid |
|
|
|
|
* @return type |
|
|
|
|
*/ |
|
|
|
@ -129,7 +129,7 @@ class CollectionClass {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* getCollectionViewStream ?? |
|
|
|
|
* |
|
|
|
|
* @param type $collection_pid |
|
|
|
|
* @return type |
|
|
|
|
*/ |
|
|
|
@ -139,7 +139,7 @@ class CollectionClass {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* getStream ?? |
|
|
|
|
* |
|
|
|
|
* @param type $pid |
|
|
|
|
* @param type $dsid |
|
|
|
|
* @param type $showError |
|
|
|
@ -152,7 +152,7 @@ class CollectionClass {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* getPidNameSpace ?? |
|
|
|
|
* |
|
|
|
|
* @param type $pid |
|
|
|
|
* @param type $dsid |
|
|
|
|
* @return type |
|
|
|
@ -249,7 +249,7 @@ class CollectionClass {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* getAllowedMimeType ?? |
|
|
|
|
* |
|
|
|
|
* @param type $contentModelPid |
|
|
|
|
* @param type $contentModel_dsid |
|
|
|
|
* @return type |
|
|
|
@ -320,7 +320,7 @@ class CollectionClass {
|
|
|
|
|
$thisClass = new $phpClass (); |
|
|
|
|
$returnValue = $thisClass->$phpMethod($parametersArray, $dsid, $file, $file_ext); |
|
|
|
|
if (!$returnValue) { |
|
|
|
|
drupal_set_message(t('Error! Failed running content model method !m !rv'), array('!m' => $phpMethod, '!rv' => $returnValue)); |
|
|
|
|
drupal_set_message('Error! Failed running content model method !m !rv', array('!m' => $phpMethod, '!rv' => $returnValue)); |
|
|
|
|
return FALSE; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -394,9 +394,8 @@ class CollectionClass {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* This will also create a personal collection for an existing user if they don't have one |
|
|
|
|
* not using this function currently. |
|
|
|
|
* |
|
|
|
|
* this will also create a personal collection for an existing user if they don't have one |
|
|
|
|
* not using this function currently |
|
|
|
|
* @param type $user |
|
|
|
|
* @return type |
|
|
|
|
*/ |
|
|
|
@ -419,8 +418,8 @@ class CollectionClass {
|
|
|
|
|
'pidNamespace' => $pidNameSpace |
|
|
|
|
); |
|
|
|
|
$object = $soapClient->__soapCall('getNextPID', array( |
|
|
|
|
$params |
|
|
|
|
)); |
|
|
|
|
$params |
|
|
|
|
)); |
|
|
|
|
} catch (exception $e) { |
|
|
|
|
drupal_set_message(t('Error getting Next PID: !e', array('!e' => $e->getMessage())), 'error'); |
|
|
|
|
return FALSE; |
|
|
|
@ -434,7 +433,7 @@ class CollectionClass {
|
|
|
|
|
module_load_include('inc', 'fedora_repository', 'plugins/PersonalCollectionClass'); |
|
|
|
|
$personalCollectionClass = new PersonalCollectionClass(); |
|
|
|
|
if (!$personalCollectionClass->createCollection($user, $pid, $soapClient)) { |
|
|
|
|
drupal_set_message(t("Did not create a personal collection object for !u"), array('!u' => $user->name)); |
|
|
|
|
drupal_set_message("Did not create a personal collection object for !u", array('!u' => $user->name)); |
|
|
|
|
return FALSE; //creation failed don't save the collection pid in drupal db |
|
|
|
|
} |
|
|
|
|
user_save($user, $personal_collection_pid); |
|
|
|
@ -456,7 +455,7 @@ class CollectionClass {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* showFieldSets ?? |
|
|
|
|
* |
|
|
|
|
* @global type $base_url |
|
|
|
|
* @global type $user |
|
|
|
|
* @param type $page_number |
|
|
|
@ -465,9 +464,7 @@ class CollectionClass {
|
|
|
|
|
function showFieldSets($page_number) { |
|
|
|
|
module_load_include('inc', 'fedora_repository', 'api/fedora_item'); |
|
|
|
|
global $base_url; |
|
|
|
|
|
|
|
|
|
$tabset = array(); |
|
|
|
|
|
|
|
|
|
global $user; |
|
|
|
|
$objectHelper = new ObjectHelper(); |
|
|
|
|
$item = new Fedora_Item($this->pid); |
|
|
|
@ -482,10 +479,16 @@ class CollectionClass {
|
|
|
|
|
// Check the form post to see if we are in the middle of an ingest operation. |
|
|
|
|
$show_ingest_tab = (!empty($_POST['form_id']) && $_POST['form_id'] == 'fedora_repository_ingest_form'); |
|
|
|
|
$add_to_collection = $this->getIngestInterface(); |
|
|
|
|
if (!$show_ingest_tab) { |
|
|
|
|
$view_selected = true; |
|
|
|
|
} |
|
|
|
|
drupal_set_message(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$tabset['view_tab'] = array( |
|
|
|
|
'#type' => 'tabpage', |
|
|
|
|
'#title' => 'View', |
|
|
|
|
'#selected' => $view_selected, |
|
|
|
|
'#content' => $collection_items |
|
|
|
|
); |
|
|
|
|
$tabset['add_tab'] = array( |
|
|
|
@ -496,11 +499,19 @@ class CollectionClass {
|
|
|
|
|
// This will be the content of the tab. |
|
|
|
|
'#content' => $add_to_collection, |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
$tabset['add_collection_tab'] = array( |
|
|
|
|
// #type and #title are the minimum requirements. |
|
|
|
|
'#type' => 'tabpage', |
|
|
|
|
'#title' => t('Add Child Collection'), |
|
|
|
|
// This will be the content of the tab. |
|
|
|
|
'#content' => drupal_get_form('collection_creation_form', $this->pid), |
|
|
|
|
); |
|
|
|
|
return $tabset; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* getIngestInterface ?? |
|
|
|
|
* |
|
|
|
|
* @global type $base_url |
|
|
|
|
* @return string |
|
|
|
|
*/ |
|
|
|
@ -527,16 +538,6 @@ class CollectionClass {
|
|
|
|
|
return $ingestObject; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* renderCOllection ?? |
|
|
|
|
* @global type $base_url |
|
|
|
|
* @param type $content |
|
|
|
|
* @param type $pid |
|
|
|
|
* @param type $dsId |
|
|
|
|
* @param type $collection |
|
|
|
|
* @param int $pageNumber |
|
|
|
|
* @return type |
|
|
|
|
*/ |
|
|
|
|
function renderCollection($content, $pid, $dsId, $collection, $pageNumber = NULL) { |
|
|
|
|
$path = drupal_get_path('module', 'fedora_repository'); |
|
|
|
|
global $base_url; |
|
|
|
@ -605,3 +606,142 @@ class CollectionClass {
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* |
|
|
|
|
* @param type $form_state |
|
|
|
|
* @param type $parent_collection_pid |
|
|
|
|
* @return type |
|
|
|
|
*/ |
|
|
|
|
function collection_creation_form(&$form_state, $parent_collection_pid) { |
|
|
|
|
module_load_include('inc', 'fedora_repository', 'api/fedora_utils'); |
|
|
|
|
$restricted = FALSE; |
|
|
|
|
if (variable_get('fedora_namespace_restriction_enforced', true)) { |
|
|
|
|
$restricted = true; |
|
|
|
|
$allowed_string = variable_get('fedora_pids_allowed', 'default: demo: changeme: islandora:'); |
|
|
|
|
$namespaces = explode(':', $allowed_string); |
|
|
|
|
foreach ($namespaces as $namespace) { |
|
|
|
|
if ($namespace) { |
|
|
|
|
$allowed[trim($namespace)] = trim($namespace); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$content_models = get_content_models_as_option_array(); |
|
|
|
|
$form['titlebox'] = array( |
|
|
|
|
'#type' => 'item', |
|
|
|
|
'#value' => t("Create New Child Collection within $collection_pid"), |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
$form['collection_name'] = array( |
|
|
|
|
'#title' => "Collection Name", |
|
|
|
|
'#type' => 'textfield', |
|
|
|
|
'#description' => t("Human readable name for this collection"), |
|
|
|
|
); |
|
|
|
|
$form['collection_pid'] = array( |
|
|
|
|
'#title' => "Collection PID", |
|
|
|
|
'#type' => 'textfield', |
|
|
|
|
'#size' => 15, |
|
|
|
|
'#description' => t("Unique PID for this collection. <br />Pids take the general form of namespace:collection eg islandora:pamphlets"), |
|
|
|
|
); |
|
|
|
|
if (!$restricted) { |
|
|
|
|
$form['collection_namespace'] = array( |
|
|
|
|
'#title' => "Collection Namespace", |
|
|
|
|
'#type' => 'textfield', |
|
|
|
|
'#size' => 15, |
|
|
|
|
'#default_value' => 'default', |
|
|
|
|
'#description' => t("Namespace for objects in this collection."), |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
else { |
|
|
|
|
$form['collection_namespace'] = array( |
|
|
|
|
'#title' => "Collection Namespace", |
|
|
|
|
'#type' => 'select', |
|
|
|
|
'#options' => $allowed, |
|
|
|
|
'#default_value' => 'default', |
|
|
|
|
'#description' => t("Namespace for objects in this collection."), |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
$form['parent_collection'] = array( |
|
|
|
|
'#type' => 'hidden', |
|
|
|
|
'#value' => $parent_collection_pid, |
|
|
|
|
); |
|
|
|
|
$form['all_content_models'] = array( |
|
|
|
|
'#type' => 'hidden', |
|
|
|
|
'#value' => implode('~~~',$content_models), |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
$form['content_models'] = array( |
|
|
|
|
'#title' => "Choose allowable content models for this collection", |
|
|
|
|
'#type' => 'checkboxes', |
|
|
|
|
'#options' => $content_models, |
|
|
|
|
'#description' => t("Content models describe the behaviours of objects with which they are associated."), |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$form['submit'] = array( |
|
|
|
|
'#type' => 'submit', |
|
|
|
|
'#value' => t('Submit') |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return($form); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* |
|
|
|
|
* @param type $form |
|
|
|
|
* @param type $form_state |
|
|
|
|
* @return type |
|
|
|
|
*/ |
|
|
|
|
function collection_creation_form_validate($form, &$form_state) { |
|
|
|
|
module_load_include('inc', 'fedora_repository', 'api/fedora_item'); |
|
|
|
|
$pid = $form_state['values']['collection_pid']; |
|
|
|
|
$item = new fedora_item($pid); |
|
|
|
|
if ($item->exists()) { |
|
|
|
|
drupal_set_message("$pid already exists within your repository. the PID must be unique", 'warning'); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* |
|
|
|
|
* @global type $user |
|
|
|
|
* @param type $form |
|
|
|
|
* @param type $form_state |
|
|
|
|
*/ |
|
|
|
|
function collection_creation_form_submit($form, &$form_state) { |
|
|
|
|
global $user; |
|
|
|
|
module_load_include('inc', 'fedora_repository', 'api/fedora_item'); |
|
|
|
|
$module_path = drupal_get_path('module', 'fedora_repository'); |
|
|
|
|
$thumbnail = drupal_get_path('module', 'Fedora_Repository') . '/images/Crystal_Clear_filesystem_folder_grey.png'; |
|
|
|
|
$collection_pid = $form_state['values']['collection_pid']; |
|
|
|
|
$collection_name = $form_state['values']['collection_name']; |
|
|
|
|
$parent_collection = $form_state['values']['parent_collection']; |
|
|
|
|
$all_cModels = explode('~~~', $form_state['values']['all_content_models']); |
|
|
|
|
$collection_policy = '<?xml version="1.0" encoding="UTF-8"?> |
|
|
|
|
<collection_policy xmlns="http://www.islandora.ca" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="" xsi:schemaLocation="http://www.islandora.ca http://syn.lib.umanitoba.ca/collection_policy.xsd"> |
|
|
|
|
<content_models> |
|
|
|
|
</content_models> |
|
|
|
|
<search_terms> |
|
|
|
|
</search_terms> |
|
|
|
|
<staging_area></staging_area> |
|
|
|
|
<relationship>isMemberOfCollection</relationship> |
|
|
|
|
</collection_policy>'; |
|
|
|
|
$content_models = $form_state['values']['content_models']; |
|
|
|
|
$collection_policy_xml = simplexml_load_string($collection_policy); |
|
|
|
|
foreach ($content_models as $content_model) { |
|
|
|
|
if ($content_model) { |
|
|
|
|
$node = $collection_policy_xml->content_models->addChild('content_model'); |
|
|
|
|
$node->addAttribute('dsid', 'ISLANDORACM'); |
|
|
|
|
$node->addAttribute('name', $all_cModels[$content_model]); |
|
|
|
|
$node->addAttribute('namespace', $pid_namespace . '1'); |
|
|
|
|
$node->addAttribute('pid', $content_model); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
$item = fedora_item::ingest_new_item($collection_pid, 'A', $new_collections_label, $user->name); |
|
|
|
|
$item->add_relationship('isMemberOfCollection', $parent_collection, RELS_EXT_URI); |
|
|
|
|
$item->add_relationship('hasModel', 'islandora:collectionCModel', FEDORA_MODEL_URI); |
|
|
|
|
$item->add_datastream_from_string($collection_policy_xml->saveXML(), 'COLLECTION_POLICY'); |
|
|
|
|
$item->add_datastream_from_file($thumbnail, 'TN'); |
|
|
|
|
drupal_goto("/fedora/repository/$collection_pid"); |
|
|
|
|
} |