repository); $cm_name = $item->Label; $cm_options[$content_model] = $cm_name; } } $namespace = substr($collection_pid, 0, strpos($collection_pid, ":")); $collection_policy_dsid = variable_get('Islandora_Collection_Policy_DSID', 'COLLECTION_POLICY'); $collection_object = new FedoraObject($collection_pid, $rest_connection->repository); $collection_policy_datastream = $collection_object->getDatastream($collection_policy_dsid); $supported_collection_models = array(); if ($collection_policy_datastream && $collection_policy_datastream->content) { $collection_policy = new CollectionPolicy($collection_policy_datastream->content); $supported_collection_models = $collection_policy->getContentModels(); } $collection_namespace = substr($collection_pid, 0, strpos($collection_pid, ":")); $collection_name = $collection_object->label; $new_content_models = get_content_models_as_option_array(); $current_models_in_policy = array(); if ($supported_collection_models) { foreach ($supported_collection_models as $supported_model) { $current_models_in_policy[$supported_model['pid']] = $supported_model['pid']; } } $form['change_cmodel']['titlebox'] = array( '#type' => 'item', '#title' => t("Change content models within @collection_pid", array('@collection_pid' => $collection_pid)), ); $form['change_cmodel']['current_content_model'] = array( '#title' => "Choose content model to be changed", '#type' => 'select', '#options' => $current_models_in_policy, '#description' => t("All objects in this collection with the selected content model will be changed."), ); $form['change_cmodel']['new_content_model'] = array( '#title' => "Choose new content model", '#type' => 'select', '#options' => $new_content_models, '#description' => t("The new content model to be assigned to selected objects."), ); $form['change_cmodel']['collection_pid'] = array( '#type' => 'hidden', '#value' => $collection_pid, ); $form['change_cmodel']['submit'] = array( '#type' => 'submit', '#value' => t('Change content model associations'), '#id' => 'change_model', ); return $form; } function islandora_change_content_models_form_validate($form, &$form_state) { } function islandora_change_content_models_form_submit($form, &$form_state) { module_load_include('inc', 'islandora_basic_collection', 'includes/CollectionPolicy'); module_load_include('inc', 'islandora', 'RestConnection'); $rest_connection = new RestConnection(); $current_content_model = $form_state['values']['current_content_model']; $new_content_model = $form_state['values']['new_content_model']; $collection_pid = $form_state['values']['collection_pid']; $current_content_model_object = new FedoraObject($current_content_model, $rest_connection->repository); $collection_object = new FedoraObject($form_state['values']['collection_pid'], $rest_connection->repository); $collection_policy_datastream = $collection_object->getDatastream(variable_get('Islandora_Collection_Policy_DSID', 'COLLECTION_POLICY')); $policy = new CollectionPolicy($collection_policy_datastream->content); $collection_policy_xml = new DOMDocument(); $collection_policy_xml->loadXML($collection_policy_datastream->content); $add_to_policy = TRUE; $policy_content_models = $policy->getContentModels(); foreach ($policy_content_models as $policy_content_model) { if ($policy_content_model['pid'] == $current_content_model) { $namespace = $policy_content_model['namespace']; } if ($policy_content_model['pid'] == $new_content_model) { $add_to_policy = FALSE; } } if ($add_to_policy) { $new_content_model_object = new FedoraObject($new_content_model, $rest_connection->repository); $new_content_model_datastream = $new_content_model_object->getDatastream(variable_get('Islandora_Content_Model_DSID', 'ISLANDORACM')); $content_models_element = $collection_policy_xml->getElementsByTagName('content_models'); $content_model_element = $content_models_element->item(0)->getElementsByTagName('content_model'); $content_model_element = $collection_policy_xml->createElement('content_model'); $content_model_element->setAttribute('name', $new_content_model_object->label); $content_model_element->setAttribute('dsid', variable_get('Islandora_Content_Model_DSID', 'ISLANDORACM')); $content_model_element->setAttribute('namespace', $namespace); $content_model_element->setAttribute('pid', $new_content_model_object->id); $content_models_element->item(0)->appendChild($content_model_element); $new_collection_policy_datastream = $collection_object->getDatastream('COLLECTION_POLICY'); $new_collection_policy_datastream->setContentFromString($collection_policy_xml->saveXML()); $new_collection_policy_datastream->label = 'COLLECTION_POLICY'; $collection_object->ingestDatastream($new_collection_policy_datastream); } $query = "select \$object from <#ri> where (\$object and (\$object or \$object ) and \$object )"; $objects = $rest_connection->repository->ri->itqlQuery($query, 'unlimited', '0'); $count = 0; foreach ($objects as $object) { if (!$object['object']['value']) { continue; } $fedora_item = new FedoraObject($object['object']['value'], $rest_connection->repository); $fedora_item->relationships->remove(FEDORA_MODEL_URI, 'hasModel', $current_content_model); $fedora_item->relationships->add(FEDORA_MODEL_URI, 'hasModel', $new_content_model); $count++; } drupal_set_message(t('@current_content_model changed to @new_content_model on @count objects', array('@current_content_model' => $current_content_model, '@new_content_model' => $new_content_model, '@count' => $count))); }