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.
360 lines
12 KiB
360 lines
12 KiB
<?php |
|
|
|
/** |
|
* @file |
|
* Wrapper around the tuque library, allows for autoloading of Islandora Tuque |
|
* Objects. |
|
* |
|
* @todo Overload functions and apply pre/post hooks. |
|
*/ |
|
|
|
$islandora_module_path = drupal_get_path('module', 'islandora'); |
|
|
|
// @todo this until we expost these in a module or library |
|
@include_once 'sites/all/libraries/tuque/Datastream.php'; |
|
@include_once 'sites/all/libraries/tuque/FedoraApi.php'; |
|
@include_once 'sites/all/libraries/tuque/FedoraApiSerializer.php'; |
|
@include_once 'sites/all/libraries/tuque/Object.php'; |
|
@include_once 'sites/all/libraries/tuque/RepositoryConnection.php'; |
|
@include_once 'sites/all/libraries/tuque/Cache.php'; |
|
@include_once 'sites/all/libraries/tuque/RepositoryException.php'; |
|
@include_once 'sites/all/libraries/tuque/Repository.php'; |
|
@include_once 'sites/all/libraries/tuque/FedoraRelationships.php'; |
|
|
|
@include_once "$islandora_module_path/libraries/tuque/Datastream.php"; |
|
@include_once "$islandora_module_path/libraries/tuque/FedoraApi.php"; |
|
@include_once "$islandora_module_path/libraries/tuque/FedoraApiSerializer.php"; |
|
@include_once "$islandora_module_path/libraries/tuque/Object.php"; |
|
@include_once "$islandora_module_path/libraries/tuque/RepositoryConnection.php"; |
|
@include_once "$islandora_module_path/libraries/tuque/Cache.php"; |
|
@include_once "$islandora_module_path/libraries/tuque/RepositoryException.php"; |
|
@include_once "$islandora_module_path/libraries/tuque/Repository.php"; |
|
@include_once "$islandora_module_path/libraries/tuque/FedoraRelationships.php"; |
|
|
|
/** |
|
* Allow modules to alter an object before a mutable event occurs. |
|
*/ |
|
function islandora_alter_object(AbstractFedoraObject $object, array &$context) { |
|
$types = array('islandora_object'); |
|
foreach ($object->models as $model) { |
|
$types[] = "{$model}_islandora_object"; |
|
} |
|
drupal_alter($types, $object, $context); |
|
} |
|
|
|
/** |
|
* Allow modules to alter a datastream before a mutable event occurs. |
|
*/ |
|
function islandora_alter_datastream(AbstractFedoraObject $object, AbstractDatastream $datastream, array &$context) { |
|
$types = array('islandora_datastream'); |
|
foreach ($object->models as $model) { |
|
$types[] = "{$model}_{$datastream->id}_islandora_datastream"; |
|
} |
|
drupal_alter($types, $object, $datastream, $context); |
|
} |
|
|
|
/** |
|
* Constructs a list of hooks from the given paramenters and invokes them. |
|
*/ |
|
function islandora_invoke_object_hooks($hook, array $models) { |
|
module_load_include('inc', 'islandora', 'includes/utilities'); |
|
return islandora_invoke_hook_list($hook, $models, array_slice(func_get_args(), 2)); |
|
} |
|
|
|
/** |
|
* Constructs a list of hooks from the given paramenters and invokes them. |
|
*/ |
|
function islandora_invoke_datastream_hooks($hook, array $models, $dsid) { |
|
module_load_include('inc', 'islandora', 'includes/utilities'); |
|
$refinements = array(); |
|
foreach ($models as $model) { |
|
$refinements[] = "{$model}_{$dsid}"; |
|
} |
|
return islandora_invoke_hook_list($hook, $refinements, array_slice(func_get_args(), 3)); |
|
} |
|
|
|
class IslandoraFedoraRepository extends FedoraRepository { |
|
protected $queryClass = 'IslandoraRepositoryQuery'; |
|
protected $newObjectClass = 'IslandoraNewFedoraObject'; |
|
protected $objectClass = 'IslandoraFedoraObject'; |
|
|
|
/** |
|
* Ingest the given object. |
|
* |
|
* @see FedoraRepository::ingestObject() |
|
*/ |
|
public function ingestObject(NewFedoraObject &$object) { |
|
$context = array( |
|
'action' => 'ingest', |
|
'block' => FALSE, |
|
); |
|
islandora_alter_object($object, $context); |
|
try { |
|
if ($context['block']) { |
|
throw new Exception('Ingest Object was blocked.'); |
|
} |
|
$ret = parent::ingestObject($object); |
|
islandora_invoke_object_hooks(ISLANDORA_OBJECT_INGESTED_HOOK, $object->models, $object); |
|
// Call the ingested datastream hooks for NewFedoraObject's after the |
|
// object had been ingested. |
|
foreach ($object as $dsid => $datastream) { |
|
islandora_invoke_datastream_hooks(ISLANDORA_DATASTREAM_INGESTED_HOOK, $object->models, $dsid, $object, $datastream); |
|
} |
|
return $ret; |
|
} |
|
catch (Exception $e) { |
|
watchdog('islandora', 'Failed to ingest object: @pid</br>code: @code<br/>message: @msg', array( |
|
'@pid' => $object->id, |
|
'@code' => $e->getCode(), |
|
'@msg' => $e->getMessage()), WATCHDOG_ERROR); |
|
throw $e; |
|
} |
|
} |
|
} |
|
|
|
class IslandoraRepositoryQuery extends RepositoryQuery {} |
|
|
|
class IslandoraNewFedoraObject extends NewFedoraObject { |
|
protected $newFedoraDatastreamClass = 'IslandoraNewFedoraDatastream'; |
|
protected $fedoraDatastreamClass = 'IslandoraFedoraDatastream'; |
|
protected $fedoraRelsExtClass = 'IslandoraFedoraRelsExt'; |
|
} |
|
|
|
class IslandoraFedoraObject extends FedoraObject { |
|
protected $newFedoraDatastreamClass = 'IslandoraNewFedoraDatastream'; |
|
protected $fedoraDatastreamClass = 'IslandoraFedoraDatastream'; |
|
protected $fedoraRelsExtClass = 'IslandoraFedoraRelsExt'; |
|
|
|
/** |
|
* Ingest the given datastream. |
|
* |
|
* @see FedoraObject::ingestDatastream() |
|
*/ |
|
public function ingestDatastream(&$datastream) { |
|
$object = $datastream->parent; |
|
$context = array( |
|
'action' => 'ingest', |
|
'block' => FALSE, |
|
); |
|
islandora_alter_datastream($object, $datastream, $context); |
|
try { |
|
if ($context['block']) { |
|
throw new Exception('Ingest Datastream was blocked.'); |
|
} |
|
$ret = parent::ingestDatastream($datastream); |
|
islandora_invoke_datastream_hooks(ISLANDORA_DATASTREAM_INGESTED_HOOK, $object->models, $datastream->id, $object, $datastream); |
|
return $ret; |
|
} |
|
catch (Exception $e) { |
|
watchdog('islandora', 'Failed to ingest object: @pid</br>code: @code<br/>message: @msg', array( |
|
'@pid' => $object->id, |
|
'@dsid' => $datastream->id, |
|
'@code' => $e->getCode(), |
|
'@msg' => $e->getMessage()), WATCHDOG_ERROR); |
|
throw $e; |
|
} |
|
} |
|
} |
|
|
|
class IslandoraRepositoryConnection extends RepositoryConnection {} |
|
|
|
class IslandoraFedoraApi extends FedoraApi { |
|
|
|
/** |
|
* Instantiate a IslandoraFedoraApi object. |
|
* |
|
* @see FedoraApi::__construct() |
|
*/ |
|
public function __construct(IslandoraRepositoryConnection $connection, FedoraApiSerializer $serializer = NULL) { |
|
if (!$serializer) { |
|
$serializer = new FedoraApiSerializer(); |
|
} |
|
$this->a = new FedoraApiA($connection, $serializer); |
|
$this->m = new IslandoraFedoraApiM($connection, $serializer); |
|
$this->connection = $connection; |
|
} |
|
} |
|
|
|
class IslandoraFedoraApiM extends FedoraApiM { |
|
|
|
/** |
|
* Update a datastream. |
|
* |
|
* Either changing its metadata, updaing the datastream contents or both. |
|
* |
|
* @throws Exception |
|
* If the modify datastream request was block by some module. |
|
* |
|
* @see FedoraApiM::modifyDatastream |
|
*/ |
|
public function modifyDatastream($pid, $dsid, $params = array()) { |
|
$object = islandora_object_load($pid); |
|
$datastream = $object[$dsid]; |
|
$context = array( |
|
'action' => 'modify', |
|
'block' => FALSE, |
|
'params' => $params, |
|
); |
|
islandora_alter_datastream($object, $datastream, $context); |
|
try { |
|
if ($context['block']) { |
|
throw new Exception('Modify Datastream was blocked.'); |
|
} |
|
$ret = parent::modifyDatastream($pid, $dsid, $params); |
|
islandora_invoke_datastream_hooks(ISLANDORA_DATASTREAM_MODIFIED_HOOK, $object->models, $dsid, $object, $datastream); |
|
if (isset($params['dsState']) && $params['dsState'] == 'D') { |
|
islandora_invoke_datastream_hooks(ISLANDORA_DATASTREAM_PURGED_HOOK, $object->models, $dsid, $object, $dsid); |
|
} |
|
return $ret; |
|
} |
|
catch(Exception $e) { |
|
watchdog('islandora', 'Failed to modify datastream @dsid from @pid</br>code: @code<br/>message: @msg', array( |
|
'@pid' => $pid, |
|
'@dsid' => $dsid, |
|
'@code' => $e->getCode(), |
|
'@msg' => $e->getMessage()), WATCHDOG_ERROR); |
|
throw $e; |
|
} |
|
} |
|
|
|
/** |
|
* Update Fedora Object parameters. |
|
* |
|
* @see FedoraApiM::modifyObject |
|
*/ |
|
public function modifyObject($pid, $params = NULL) { |
|
$object = islandora_object_load($pid); |
|
$context = array( |
|
'action' => 'modify', |
|
'block' => FALSE, |
|
'params' => $params, |
|
); |
|
islandora_alter_object($object, $context); |
|
try { |
|
if ($context['block']) { |
|
throw new Exception('Modify Object was blocked.'); |
|
} |
|
$ret = parent::modifyObject($pid, $params); |
|
islandora_invoke_object_hooks(ISLANDORA_OBJECT_MODIFIED_HOOK, $object->models, $object); |
|
if (isset($params['state']) && $params['state'] == 'D') { |
|
islandora_invoke_object_hooks(ISLANDORA_OBJECT_PURGED_HOOK, $object->models, $object->id); |
|
} |
|
return $ret; |
|
} |
|
catch(Exception $e) { |
|
watchdog('islandora', 'Failed to modify object: @pid</br>code: @code<br/>message: @msg', array( |
|
'@pid' => $pid, |
|
'@code' => $e->getCode(), |
|
'@msg' => $e->getMessage()), WATCHDOG_ERROR); |
|
throw $e; |
|
} |
|
} |
|
|
|
/** |
|
* Purge a datastream from from Fedora. |
|
* |
|
* @see FedoraApiM::purgeDatastream |
|
*/ |
|
public function purgeDatastream($pid, $dsid, $params = array()) { |
|
$object = islandora_object_load($pid); |
|
$context = array( |
|
'action' => 'purge', |
|
'purge' => TRUE, |
|
'delete' => FALSE, |
|
'block' => FALSE, |
|
); |
|
islandora_alter_datastream($object, $object[$dsid], $context); |
|
try { |
|
$action = $context['block'] ? 'block' : FALSE; |
|
$action = (!$action && $context['delete']) ? 'delete' : $action; |
|
$action = !$action ? 'purge' : $action; |
|
switch ($action) { |
|
case 'block': |
|
throw new Exception('Purge Datastream was blocked.'); |
|
break; |
|
|
|
case 'delete': |
|
$object[$dsid]->state = 'D'; |
|
return array(); |
|
|
|
default: |
|
$ret = parent::purgeDatastream($pid, $dsid, $params); |
|
islandora_invoke_datastream_hooks(ISLANDORA_DATASTREAM_PURGED_HOOK, $object->models, $dsid, $object, $dsid); |
|
return $ret; |
|
} |
|
} |
|
catch(Exception $e) { |
|
watchdog('islandora', 'Failed to purge datastream @dsid from @pid</br>code: @code<br/>message: @msg', array( |
|
'@pid' => $pid, |
|
'@dsid' => $dsid, |
|
'@code' => $e->getCode(), |
|
'@msg' => $e->getMessage()), WATCHDOG_ERROR); |
|
throw $e; |
|
} |
|
} |
|
|
|
/** |
|
* Purge an object. |
|
* |
|
* @see FedoraApiM::purgeObject |
|
*/ |
|
public function purgeObject($pid, $log_message = NULL) { |
|
$object = islandora_object_load($pid); |
|
$context = array( |
|
'action' => 'purge', |
|
'purge' => TRUE, |
|
'delete' => FALSE, |
|
'block' => FALSE, |
|
); |
|
islandora_alter_object($object, $context); |
|
try { |
|
$action = $context['block'] ? 'block' : FALSE; |
|
$action = (!$action && $context['delete']) ? 'delete' : $action; |
|
$action = !$action ? 'purge' : $action; |
|
$models = $object->models; |
|
switch ($action) { |
|
case 'block': |
|
throw new Exception('Purge object was blocked.'); |
|
break; |
|
|
|
case 'delete': |
|
$object->state = 'D'; |
|
return ''; |
|
|
|
default: |
|
$ret = parent::purgeObject($pid, $log_message); |
|
islandora_invoke_object_hooks(ISLANDORA_OBJECT_PURGED_HOOK, $models, $pid); |
|
return $ret; |
|
} |
|
} |
|
catch(Exception $e) { |
|
watchdog('islandora', 'Failed to purge object @pid</br>code: @code<br/>message: @msg', array( |
|
'@pid' => $pid, |
|
'@code' => $e->getCode(), |
|
'@msg' => $e->getMessage()), WATCHDOG_ERROR); |
|
throw $e; |
|
} |
|
} |
|
|
|
} |
|
|
|
class IslandoraSimpleCache extends SimpleCache {} |
|
|
|
class IslandoraNewFedoraDatastream extends NewFedoraDatastream { |
|
protected $fedoraRelsIntClass = 'IslandoraFedoraRelsInt'; |
|
protected $fedoraDatastreamVersionClass = 'IslandoraFedoraDatastreamVersion'; |
|
} |
|
|
|
class IslandoraFedoraDatastream extends FedoraDatastream { |
|
protected $fedoraRelsIntClass = 'IslandoraFedoraRelsInt'; |
|
protected $fedoraDatastreamVersionClass = 'IslandoraFedoraDatastreamVersion'; |
|
} |
|
|
|
class IslandoraFedoraDatastreamVersion extends FedoraDatastreamVersion { |
|
protected $fedoraRelsIntClass = 'IslandoraFedoraRelsInt'; |
|
protected $fedoraDatastreamVersionClass = 'IslandoraFedoraDatastreamVersion'; |
|
} |
|
|
|
class IslandoraFedoraRelsExt extends FedoraRelsExt {} |
|
|
|
class IslandoraFedoraRelsInt extends FedoraRelsInt {}
|
|
|