|
|
|
@ -716,89 +716,30 @@ class formClass {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Creates a drupal form to edit either the QDC or DC datastream |
|
|
|
|
* Create edit form. |
|
|
|
|
* |
|
|
|
|
* @param string $pid |
|
|
|
|
* @param string $dsid |
|
|
|
|
* @param object $client |
|
|
|
|
* @param array $form_state |
|
|
|
|
* |
|
|
|
|
* @return string |
|
|
|
|
*/ |
|
|
|
|
function createMetaDataForm($pid, $dsId = NULL, $client, &$form_state) { |
|
|
|
|
if (module_exists('islandora_content_model_forms')) { |
|
|
|
|
// Get the content model. |
|
|
|
|
$content_model = ContentModel::loadFromObject($pid); |
|
|
|
|
$form_names = islandora_content_model_get_form_names($content_model->pid); |
|
|
|
|
} |
|
|
|
|
$form_state['storage']['xml'] = false; |
|
|
|
|
if (isset($form_state['storage']['step']) || (isset($form_names) && count($form_names) > 0)) { |
|
|
|
|
// Form Exists... |
|
|
|
|
$form_state['storage']['step'] = isset($form_state['storage']['step']) ? $form_state['storage']['step'] : 1; |
|
|
|
|
switch ($form_state['storage']['step']) { |
|
|
|
|
case 1: |
|
|
|
|
$form['indicator'] = array( |
|
|
|
|
'#type' => 'fieldset', |
|
|
|
|
'#title' => t('Choose edit form.') |
|
|
|
|
); |
|
|
|
|
$form['indicator']['forms'] = array( |
|
|
|
|
'#type' => 'select', |
|
|
|
|
'#title' => t('Forms'), |
|
|
|
|
'#options' => $form_names, |
|
|
|
|
'#description' => t('Select the form to populate the metadata of the new object.') |
|
|
|
|
); |
|
|
|
|
$form['submit'] = array( |
|
|
|
|
'#type' => 'submit', |
|
|
|
|
'#submit' => array('fedora_repository_edit_qdc_form_submit'), |
|
|
|
|
'#value' => 'Next' |
|
|
|
|
); |
|
|
|
|
return $form; |
|
|
|
|
case 2: |
|
|
|
|
// XML Forms |
|
|
|
|
module_load_include('inc', 'xml_form_api', 'XMLForm'); |
|
|
|
|
$xml_form = new XMLForm($form_state); |
|
|
|
|
if (isset($form_state['values']['forms']) || $xml_form->isInitialized()) { |
|
|
|
|
if (!$xml_form->isInitialized()) { |
|
|
|
|
module_load_include('inc', 'xml_form_api', 'XMLFormDefinition'); |
|
|
|
|
module_load_include('inc', 'xml_form_builder', 'FormBuilder'); |
|
|
|
|
$form_name = $form_state['values']['forms']; |
|
|
|
|
$definition = FormBuilder::GetFormDefinition($form_name); |
|
|
|
|
$form = XMLFormDefinition::GetDrupalForm($definition); |
|
|
|
|
$properties = XMLFormDefinition::GetFormProperties($definition); |
|
|
|
|
// XML |
|
|
|
|
$dsid = islandora_content_model_get_dsid($content_model->pid, $form_name); |
|
|
|
|
$params = array('pid' => "$pid", 'dsID' => "$dsid", 'asOfDateTime' => ""); |
|
|
|
|
function createQDCEditForm($pid, $dsid, $client, &$form_state) { |
|
|
|
|
$dsid = empty($dsid) ? 'QDC' : $dsid; |
|
|
|
|
try { |
|
|
|
|
$object = $client->__soapCAll('getDatastreamDissemination', array('parameters' => $params)); |
|
|
|
|
} catch (Exception $e) { |
|
|
|
|
return array(); // Empty form? |
|
|
|
|
} |
|
|
|
|
$xml = $object->dissemination->stream; |
|
|
|
|
$xml = trim($xml); |
|
|
|
|
// XML |
|
|
|
|
$document = new XMLDocument($properties['document']['root'], $properties['document']['namespaces'], $properties['document']['schema'], $xml); |
|
|
|
|
$xml_form->initialize($form, $document); |
|
|
|
|
} |
|
|
|
|
$form_state['storage']['xml'] = true; |
|
|
|
|
return $xml_form->toArray(); |
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
else { |
|
|
|
|
if (!isset($dsId)) { |
|
|
|
|
$dsId = 'QDC'; |
|
|
|
|
} |
|
|
|
|
//$client = getSoapClient(variable_get('fedora_soap_url', 'http://localhost:8080/fedora/services/access?wsdl')); |
|
|
|
|
$params = array('pid' => "$pid", 'dsID' => "$dsId", 'asOfDateTime' => ""); |
|
|
|
|
try { |
|
|
|
|
$object = $client->__soapCAll('getDatastreamDissemination', array('parameters' => $params)); |
|
|
|
|
$params = array('pid' => "$pid", 'dsID' => "$dsid", 'asOfDateTime' => ""); |
|
|
|
|
$object = $client->__soapCall('getDatastreamDissemination', array('parameters' => $params)); |
|
|
|
|
} catch (Exception $e) { |
|
|
|
|
return array(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$content = $object->dissemination->stream; |
|
|
|
|
$content = trim($content); |
|
|
|
|
$doc = new DOMDocument(); |
|
|
|
|
if (!$doc->loadXML($content)) { |
|
|
|
|
echo "error loading xml"; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$oai_dc = $doc->getElementsByTagName('dc'); |
|
|
|
|
|
|
|
|
|
$dcItems = $oai_dc->item(0)->getElementsByTagName('*'); |
|
|
|
|
$form = array(); |
|
|
|
|
for ($i = 0; $i < $dcItems->length; $i++) { |
|
|
|
@ -849,22 +790,35 @@ class formClass {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$form['pid'] = array( |
|
|
|
|
'#type' => 'hidden', |
|
|
|
|
'#value' => "$pid" |
|
|
|
|
); |
|
|
|
|
$form['dsid'] = array( |
|
|
|
|
'#type' => 'hidden', |
|
|
|
|
'#value' => "$dsId" |
|
|
|
|
'#value' => "$dsid" |
|
|
|
|
); |
|
|
|
|
$form['submit'] = array( |
|
|
|
|
'#type' => 'submit', |
|
|
|
|
'#value' => t('Update Metadata'), |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
return $form; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Creates a drupal form to edit either the QDC or DC datastream |
|
|
|
|
*/ |
|
|
|
|
function createMetaDataForm($pid, $dsid, $client, &$form_state) { |
|
|
|
|
if (module_exists('islandora_content_model_forms')) { |
|
|
|
|
module_load_include('inc', 'islandora_content_model_forms', 'EditObjectMetadataForm'); |
|
|
|
|
try { |
|
|
|
|
$form = new EditObjectMetadataForm($form_state); |
|
|
|
|
return $form->create($pid, $client, $form_state); |
|
|
|
|
} catch (Exception $e) { |
|
|
|
|
$form_state['storage']['xml'] = false; // An error occured revert back to the QDC Form. |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
return $this->createQDCEditForm($pid, $dsid, $client, $form_state); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|