Browse Source

Circumventing drupal still results in nodes getting created.

7.x-2.x
Daniel Lamb 10 years ago
parent
commit
b4360ceaec
  1. 25
      islandora_rdf_mapping_service/include/islandora_rdf_mapping_service.inc
  2. 6
      islandora_rdf_mapping_service/islandora_rdf_mapping_service.info
  3. 59
      islandora_rdf_mapping_service/islandora_rdf_mapping_service.module

25
islandora_rdf_mapping_service/include/islandora_rdf_mapping_service.inc

@ -0,0 +1,25 @@
<?php
/**
* @file
* Provides the callback implementations for the service.
*/
/**
* The GET callback for the RDF mapping service.
*
* @param string $type
* Entity type to which the RDF mapping belongs.
* @param string $bundle
* Bundle to which the RDF mapping belongs.
*
* @return array
* The RDF mapping.
*/
function islandora_rdf_mapping_service_retrieve($type, $bundle) {
return array(
'rdf_mapping' => rdf_mapping_load($type, $bundle),
'rdf_namespaces' => rdf_get_namespaces(),
'pcdm_file_mapping' => module_invoke_all('pcdm_file_mapping')
);
}

6
islandora_rdf_mapping_service/islandora_rdf_mapping_service.info

@ -0,0 +1,6 @@
name = Islandora RDF Mapping Service
description = "Exposes RDF -> Field mapping for the middleware layer to use."
package = Islandora
version = 7.x-dev
core = 7.x
dependencies[] = rest_server

59
islandora_rdf_mapping_service/islandora_rdf_mapping_service.module

@ -0,0 +1,59 @@
<?php
/**
* @file
* Provides a service for retrieving RDF mappings from Drupal.
*/
/**
* Implements hook_permission().
*/
function islandora_rdf_mapping_service_permission() {
return array(
'islandora rdf mapping service retrieve' => array(
'title' => t('Retrieve RDF Mappings'),
'description' => t('Allows external sources to request RDF mappings.'),
),
);
}
/**
* Implements hook_services_resources().
*/
function islandora_rdf_mapping_service_services_resources() {
return array(
'rdf_mapping' => array(
'retrieve' => array(
'help' => t('Retrieves an RDF mapping using the supplied entity type and bundle.'),
'file' => array(
'type' => 'inc',
'module' => 'islandora_rdf_mapping_service',
'name' => 'include/islandora_rdf_mapping_service',
),
'callback' => 'islandora_rdf_mapping_service_retrieve',
'access callback' => 'user_access',
'access arguments' => array('islandora rdf mapping service retrieve'),
'args' => array(
array(
'name' => 'type',
'type' => 'string',
'description' => t("Entity type to which the RDF mapping belongs."),
'source' => array(
'path' => 0,
),
'optional' => FALSE,
),
array(
'name' => 'bundle',
'type' => 'string',
'description' => t("Bundle to which the RDF mapping belongs."),
'source' => array(
'path' => 1,
),
'optional' => FALSE,
),
),
),
),
);
}
Loading…
Cancel
Save