. */ define('FEDORA_VIEW', 'view fedora repository'); define('FEDORA_METADATA_EDIT', 'edit fedora metadata'); define('FEDORA_ADD_DS', 'add fedora datastreams'); define('FEDORA_INGEST', 'ingest fedora objects'); define('FEDORA_PURGE', 'delete fedora objects and datastreams'); define('FEDORA_MODIFY_STATE', 'modify fedora state'); /** * Implementation of hook_menu. * we need some standard entry points so we can have consistent urls for different Object actions */ function islandora_menu() { $items = array(); $items['admin/islandora'] = array( 'title' => 'Islandora Configuration', 'description' => "Configure Islandora's interaction with Fedora", 'access arguments' => array('administer site configuration'), 'type' => MENU_NORMAL_ITEM, ); $items['admin/islandora/configure'] = array( 'title' => 'Islandora Configuration', 'description' => 'Enter the Islandora collection information here.', 'page callback' => 'drupal_get_form', 'page arguments' => array('islandora_repository_admin'), 'file' => 'admin/islandora.admin.inc', 'access arguments' => array('administer site configuration'), 'type' => MENU_NORMAL_ITEM, 'weight' => 0, ); $items['admin/islandora/solution_packs'] = array( 'title' => 'Solution Packs', 'description' => 'Install content models and collections required by installed solution packs.', 'page callback' => 'islandora_solution_packs_page', 'access arguments' => array(FEDORA_ADD_DS), 'file' => 'admin/islandora.solutionpacks.inc', 'type' => MENU_NORMAL_ITEM, ); $items['islandoracm.xsd'] = array( 'title' => 'Islandora Content Model XML Schema Definition', 'page callback' => 'islandora_display_schema', 'page arguments' => array('islandoracm.xsd'), 'type' => MENU_CALLBACK, 'access arguments' => array(FEDORA_VIEW), ); $items['collection_policy.xsd'] = array( 'title' => 'Islandora Content Model XML Schema Definition', 'page callback' => 'islandora_display_schema', 'page arguments' => array('collection_policy.xsd'), 'type' => MENU_CALLBACK, 'access arguments' => array(FEDORA_VIEW), ); $items['islandora/ingest/%'] = array( 'title' => t('Ingest object'), 'page callback' => 'islandora_ingest_callback', 'page arguments' => array(2), 'file' => 'includes/ingest-menu.inc', 'type' => MENU_CALLBACK, 'access arguments' => array(FEDORA_INGEST), ); $items['islandora/object/%'] = array( 'title' => 'Repository', 'page callback' => 'islandora_view_object', 'page arguments' => array(2), 'type' => MENU_NORMAL_ITEM, 'access arguments' => array(FEDORA_VIEW), ); $items['islandora/object/%/add'] = array( 'title' => 'Add stream', 'page callback' => 'islandora_add_stream', 'type' => MENU_NORMAL_ITEM, 'access arguments' => array(FEDORA_ADD_DS) ); $items['islandora/object/%/view'] = array( 'title' => 'Repository', 'page callback' => 'islandora_view_object', 'page arguments' => array(2), 'type' => MENU_NORMAL_ITEM, 'access arguments' => array(FEDORA_VIEW), ); $items['islandora/object/%/edit'] = array( 'title' => 'Repository', 'page callback' => 'islandora_edit_object', 'page arguments' => array(2), 'type' => MENU_NORMAL_ITEM, 'access arguments' => array(FEDORA_MODIFY_STATE), ); $items['islandora/object/%/delete'] = array( 'title' => 'Purge object', 'page callback' => 'islandora_purge_object', 'type' => MENU_CALLBACK, 'access arguments' => array(FEDORA_PURGE), ); $items['islandora/object/%/datastream/%'] = array( 'title' => 'View datastream', 'page callback' => 'islandora_datastream_as_attachment', 'page arguments' => array(2, 4), 'type' => MENU_CALLBACK, 'access arguments' => array(FEDORA_VIEW), ); $items['islandora/object/%/datastream/%/view'] = array( 'title' => 'View datastream', 'page callback' => 'islandora_datastream_as_attachment', 'page arguments' => array(2, 4), 'type' => MENU_CALLBACK, 'access arguments' => array(FEDORA_VIEW), ); $items['islandora/object/%/datastream/%/download'] = array( 'title' => 'Download datastream', 'page callback' => 'islandora_datastream_as_attachment', 'page arguments' => array(2, 4), 'type' => MENU_CALLBACK, 'access arguments' => array(FEDORA_VIEW), ); $items['islandora/object/%/datastream/%/edit'] = array( 'title' => 'Edit datastream', 'page callback' => 'islandora_edit_stream', 'page arguments' => array(2, 4), 'type' => MENU_CALLBACK, 'access arguments' => array(FEDORA_METADATA_EDIT), ); $items['islandora/object/%/datastream/%/delete'] = array( 'title' => 'Purge data stream', 'page callback' => 'islandora_purge_stream', 'page arguments' => array(2, 4), 'type' => MENU_CALLBACK, 'access arguments' => array(FEDORA_PURGE), ); return $items; } /** * determines whether we can see the object or not * checks PID namespace permissions, and user permissions * @global object $user * @param string $op * @param string $pid * * @return boolean */ function islandora_node_access($op, $pid = NULL, $as_user = NULL) { //$returnValue = FALSE; if ($pid == NULL) { $pid = variable_get('fedora_repository_pid', 'islandora:root'); } $isRestricted = variable_get('fedora_namespace_restriction_enforced', TRUE); $namespace_access = NULL; if (!$isRestricted) { $namespace_access = TRUE; } else { $pid_namespace = substr($pid, 0, strpos($pid, ':') + 1); //Get the namespace (with colon) $allowed_namespaces = explode(" ", variable_get('fedora_pids_allowed', 'default: demo: changeme: islandora: ilives: islandora-book: books: newspapers: ')); $namespace_access = in_array($pid_namespace, $allowed_namespaces); } return ($namespace_access && user_access($op, $as_user)); } /** * * @param type $object_id * @return type */ function islandora_purge_object($object_id) { if (!isset($object_id)) { drupal_set_message(t('Cannot remove object, object id not set')); return; } $object = new Object($object_id); if (!isset($object)) { drupal_set_message(t('Could not remove object, object not found')); return; } module_invoke_all('islandora_purge_object', $object); //notify modules of pending deletion $object->delete(); } /** * returns an array listing object types provided by sub modules * @return array */ function islandora_get_types() { return module_invoke_all('islandora_get_types'); } /** * * @paramstring $datastream_id * @return type */ function islandora_purge_datastream($object_id, $datastream_id) { if (!isset($datastream_id)) { drupal_set_message(t('Cannot remove datastream, datastream id not set')); return; } $object = new Object($object_id); if (!isset($object)) { drupal_set_message(t('Could not remove object, object not found')); return; } module_invoke_all('islandora_purge_datastream', $datastream); //notify modules of pending deletion so we can update rels etc $object->deleteDatastream(); } /** * The view entry point. modules should implement hook_islandora_view_object for the Fedora Content models that * there modules want to provide a view for. * @global object $user * @param string $object_id * * @return string */ function islandora_view_object($object_id) { //return $object_id; if (!isset($object_id)) { drupal_set_message(t('Cannot view object, object id not set')); return; } $page_number = (empty($_GET['page'])) ? '1' : $_GET['page']; $page_size = (empty($_GET['pagesize'])) ? '10' : $_GET['pagesize']; module_load_include('inc', 'islandora', 'RestConnection'); $user = new stdClass(); $user->name = 'fedoraAdmin'; $user->password = 'fedoraAdmin'; try { $restConnection = new RestConnection($user); $fedora_object = new FedoraObject($object_id, $restConnection->repository); } catch (Exception $e) { drupal_set_message(t('Error getting Islandora object %s', array('%s' => $object_id)), 'error'); return""; } drupal_alter('islandora_view_object', $fedora_object); //modify object if required before it is passed along $arr = module_invoke_all('islandora_view_object', $fedora_object, $user, $page_number, $page_size); //allow submodules to decide how to handle content base on object type if (empty($arr) ) { //TODO: make sure we iterate over the array as they will be more then one cmodel per object drupal_set_message(t('there was an error loading the view for islandora object %s',array('%s' => $object_id)),'error'); return ""; } //module_invoke_all(islandora_display($arr)), return $arr[0]; //just an example as we could have more then one array element } /** * the default view hook. If there are no modules registered to handle this objects cmodels or there are * not any cmodels specified this will create a default display. * @param string $object_id * @return string */ function islandora_islandora_view_object($object){ $supported_models = islandora_get_types(); $object_models = $object->models; $combined_list = array_intersect($supported_models, $object->models); if (empty($combined_list)) { return theme('islandora_object_default_view', array('object' => $object)); } } /** * Theme registry function * @return array */ function islandora_theme() { return array( 'islandora_object_default_view' => array( 'template' => 'islandora-object-default-view', 'variables' => array('object' => NULL), ), ); } /** * drupal hook_permissions function * @return array */ function islandora_permission() { return array( FEDORA_VIEW => array( 'title' => t('View Fedora Repository objects and datastreams'), 'description' => t('Users with this permission will be allowed to view Fedora objects and datastreams. Unless Fedora XACML security policies limits this functionality to certain objects.') ), FEDORA_ADD_DS => array( 'title' => t('Add Fedora streams to Fedora objects'), 'description' => t('Users with this permission will be allowed to add datastreams to Fedora objects. Unless Fedora XACML security policies limits this functionality to certain objects.') ), FEDORA_METADATA_EDIT => array( 'title' => t('Edit Fedora Metadata'), 'description' => t('Users with this permission will be allowed to edit Fedora Metadata streams') ), FEDORA_INGEST => array( 'title' => t('Create new Fedora objects'), 'description' => t('Users with this permission will be allowed to create new objects in the Fedora repository') ), FEDORA_PURGE => array( 'title' => t('Permanently remove objects from the Fedora repository'), 'description' => t('Users with this permission will be allowed to Permantly remove objects from the Fedora repository.') ), FEDORA_MODIFY_STATE => array( 'title' => t('Change a Fedora objects state'), 'description' => t('Users with this permission will be allowed to change a Fedora objects state.') ), ); } /** * * @param string $object_id * @return type */ function islandora_add_datastream($object_id) { if (!isset($object_id)) { drupal_set_message(t('Cannot add datastream to object, object id not set')); return; } //send message to synapse $object = new IslandoraObject($object_id); if (!isset($object)) { drupal_set_message(t('Could not remove object, object not found')); return; } module_invoke_all('islandora_add_datastream', $object); //allow submodules to handle add datastream based on object type }