You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
3.0 KiB
78 lines
3.0 KiB
14 years ago
|
<?php
|
||
|
// $Id$
|
||
|
|
||
|
module_load_include('inc', 'fedora_repository', 'plugins/FormBuilder');
|
||
|
/*
|
||
|
* Created on 19-Feb-08
|
||
|
*
|
||
|
*
|
||
|
* implements methods from content model ingest form xml
|
||
|
* builds a dc metadata form
|
||
|
*/
|
||
|
class DemoFormBuilder extends FormBuilder {
|
||
|
function DemoFormBuilder() {
|
||
|
module_load_include('inc', 'fedora_repository', 'plugins/FormBuilder');
|
||
|
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
|
||
|
}
|
||
|
|
||
|
//Override this so we can specify the datastream id of FULL_SIZE should make this easier
|
||
|
function createFedoraDataStreams($form_values, &$dom, &$rootElement) {
|
||
|
module_load_include('inc', 'fedora_repository', 'MimeClass');
|
||
|
global $base_url;
|
||
|
$mimetype = new MimeClass();
|
||
|
$server = NULL;
|
||
|
$file=$form_values['ingest-file-location'];
|
||
|
|
||
|
if (!empty($file)) {
|
||
|
$dformat = $mimetype->getType($file);
|
||
|
$fileUrl = $base_url .'/'. drupal_urlencode($file);
|
||
|
$beginIndex = strrpos($fileUrl, '/');
|
||
|
$dtitle = substr($fileUrl, $beginIndex + 1);
|
||
|
$dtitle = urldecode($dtitle);
|
||
|
// $dtitle = substr($dtitle, 0, strpos($dtitle, "."));
|
||
|
$ds1 = $dom->createElement("foxml:datastream");
|
||
|
$ds1->setAttribute("ID", "FULL_SIZE");
|
||
|
$ds1->setAttribute("STATE", "A");
|
||
|
$ds1->setAttribute("CONTROL_GROUP", "M");
|
||
|
$ds1v = $dom->createElement("foxml:datastreamVersion");
|
||
|
$rootElement->appendChild($ds1);
|
||
|
|
||
|
$ds1v->setAttribute("ID", "FULL_SIZE.0");
|
||
|
$ds1v->setAttribute("MIMETYPE", "$dformat");
|
||
|
$ds1v->setAttribute("LABEL", "$dtitle");
|
||
|
$ds1content = $dom->createElement('foxml:contentLocation');
|
||
|
$ds1content->setAttribute("REF", "$fileUrl");
|
||
|
$ds1content->setAttribute("TYPE", "URL");
|
||
|
$ds1->appendChild($ds1v);
|
||
|
$ds1v->appendChild($ds1content);
|
||
|
}
|
||
|
if (!empty($_SESSION['fedora_ingest_files'])) {
|
||
|
foreach ($_SESSION['fedora_ingest_files'] as $dsid => $createdFile) {
|
||
|
$createdFile = strstr($createdFile, $file);
|
||
|
$dformat = $mimetype->getType($createdFile);
|
||
|
$fileUrl = $base_url .'/'. drupal_urlencode( $createdFile );
|
||
|
$beginIndex = strrpos($fileUrl, '/');
|
||
|
$dtitle = substr($fileUrl, $beginIndex + 1);
|
||
|
$dtitle = urldecode($dtitle);
|
||
|
// $dtitle = substr($dtitle, 0, strpos($dtitle, "."));
|
||
|
$dtitle = $dtitle;
|
||
|
$ds1 = $dom->createElement("foxml:datastream");
|
||
|
$ds1->setAttribute("ID", "$dsid");
|
||
|
$ds1->setAttribute("STATE", "A");
|
||
|
$ds1->setAttribute("CONTROL_GROUP", "M");
|
||
|
$ds1v= $dom->createElement("foxml:datastreamVersion");
|
||
|
$ds1v->setAttribute("ID", "$dsid.0");
|
||
|
$ds1v->setAttribute("MIMETYPE", "$dformat");
|
||
|
$ds1v->setAttribute("LABEL", "$dtitle");
|
||
|
$ds1content = $dom->createElement('foxml:contentLocation');
|
||
|
$ds1content->setAttribute("REF", "$fileUrl");
|
||
|
$ds1content->setAttribute("TYPE", "URL");
|
||
|
$ds1->appendChild($ds1v);
|
||
|
$ds1v->appendChild($ds1content);
|
||
|
$rootElement->appendChild($ds1);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|