2013-05-07 19:48:37 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* \file oai2.php
|
|
|
|
* \brief
|
|
|
|
* OAI Data Provider command processor
|
|
|
|
*
|
|
|
|
* OAI Data Provider is not designed for human to retrieve data.
|
|
|
|
*
|
|
|
|
* This is an implementation of OAI Data Provider version 2.0.
|
|
|
|
* @see http://www.openarchives.org/OAI/2.0/openarchivesprotocol.htm
|
|
|
|
*
|
|
|
|
* It needs other files:
|
|
|
|
* - oaidp-config.php : Configuration of provider
|
|
|
|
* - oaidp-util.php : Utility functions
|
|
|
|
* - xml_creater.php : XML generating functions
|
|
|
|
* - Actions:
|
|
|
|
* - identify.php : About the provider
|
|
|
|
* - listmetadataformats.php : List supported metadata formats
|
|
|
|
* - listrecords.php : List identifiers and records
|
|
|
|
* - listsets.php : List sets
|
|
|
|
* - getrecord.php : Get a record
|
|
|
|
* - Your own implementation for providing metadata records.
|
|
|
|
*
|
|
|
|
* It also initiates:
|
|
|
|
* - PDO datbase connection object $db.
|
|
|
|
* - ANDS_XML XML document handler $outputObj.
|
|
|
|
*
|
|
|
|
* \todo <b>Remember:</b> to define your own classess for generating metadata records.
|
|
|
|
* In common cases, you have to implement your own code to act fully and correctly.
|
|
|
|
* For generic usage, you can try the ANDS_Response_XML defined in xml_creater.php.
|
|
|
|
*/
|
2013-05-07 19:52:33 +02:00
|
|
|
|
2013-05-07 19:48:37 +02:00
|
|
|
// Report all errors except E_NOTICE
|
|
|
|
// This is the default value set in php.ini
|
|
|
|
// If anything else, try them.
|
|
|
|
// error_reporting (E_ALL ^ E_NOTICE);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An array for collecting erros which can be reported later. It will be checked before a new action is taken.
|
|
|
|
*/
|
|
|
|
$errors = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Supported attributes associate to verbs.
|
|
|
|
*/
|
|
|
|
$attribs = array ('from', 'identifier', 'metadataPrefix', 'set', 'resumptionToken', 'until');
|
|
|
|
|
|
|
|
if (in_array($_SERVER['REQUEST_METHOD'],array('GET','POST'))) {
|
2013-05-07 19:52:33 +02:00
|
|
|
$args = $_REQUEST;
|
2013-05-07 19:48:37 +02:00
|
|
|
} else {
|
2013-05-07 19:52:33 +02:00
|
|
|
$errors[] = oai_error('badRequestMethod', $_SERVER['REQUEST_METHOD']);
|
2013-05-07 19:48:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
require_once('oaidp-util.php');
|
|
|
|
// Always using htmlentities() function to encodes the HTML entities submitted by others.
|
|
|
|
// No one can be trusted.
|
|
|
|
foreach ($args as $key => $val) {
|
2013-05-07 19:52:33 +02:00
|
|
|
$checking = htmlspecialchars(stripslashes($val));
|
|
|
|
if (!is_valid_attrb($checking)) {
|
|
|
|
$errors[] = oai_error('badArgument', $checking);
|
|
|
|
} else {$args[$key] = $checking; }
|
2013-05-07 19:48:37 +02:00
|
|
|
}
|
|
|
|
if (!empty($errors)) { oai_exit(); }
|
|
|
|
|
|
|
|
foreach($attribs as $val) {
|
2013-05-07 19:52:33 +02:00
|
|
|
unset($$val);
|
2013-05-07 19:48:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
require_once('oaidp-config.php');
|
|
|
|
|
|
|
|
// Create a PDO object
|
|
|
|
try {
|
2013-05-07 20:44:21 +02:00
|
|
|
$db = new PDO($DSN, $DB_USER, $DB_PASSWD);
|
2013-05-07 19:48:37 +02:00
|
|
|
} catch (PDOException $e) {
|
|
|
|
exit('Connection failed: ' . $e->getMessage());
|
|
|
|
}
|
|
|
|
|
|
|
|
// For generic usage or just trying:
|
|
|
|
// require_once('xml_creater.php');
|
|
|
|
// In common cases, you have to implement your own code to act fully and correctly.
|
|
|
|
require_once('ands_tpa.php');
|
|
|
|
|
|
|
|
// Default, there is no compression supported
|
|
|
|
$compress = FALSE;
|
|
|
|
if (isset($compression) && is_array($compression)) {
|
2013-05-07 19:52:33 +02:00
|
|
|
if (in_array('gzip', $compression) && ini_get('output_buffering')) {
|
|
|
|
$compress = TRUE;
|
|
|
|
}
|
2013-05-07 19:48:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (SHOW_QUERY_ERROR) {
|
2013-05-07 19:52:33 +02:00
|
|
|
echo "Args:\n"; print_r($args);
|
2013-05-07 19:48:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($args['verb'])) {
|
2013-05-07 19:52:33 +02:00
|
|
|
switch ($args['verb']) {
|
|
|
|
|
|
|
|
case 'Identify':
|
|
|
|
// we never use compression in Identify
|
|
|
|
$compress = FALSE;
|
|
|
|
if(count($args)>1) {
|
|
|
|
foreach($args as $key => $val) {
|
|
|
|
if(strcmp($key,"verb")!=0) {
|
|
|
|
$errors[] = oai_error('badArgument', $key, $val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (empty($errors)) include 'identify.php';
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'ListMetadataFormats':
|
|
|
|
$checkList = array("ops"=>array("identifier"));
|
|
|
|
checkArgs($args, $checkList);
|
|
|
|
if (empty($errors)) include 'listmetadataformats.php';
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'ListSets':
|
|
|
|
if(isset($args['resumptionToken']) && count($args) > 2) {
|
|
|
|
$errors[] = oai_error('exclusiveArgument');
|
|
|
|
}
|
|
|
|
$checkList = array("ops"=>array("resumptionToken"));
|
|
|
|
checkArgs($args, $checkList);
|
|
|
|
if (empty($errors)) include 'listsets.php';
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'GetRecord':
|
|
|
|
$checkList = array("required"=>array("metadataPrefix","identifier"));
|
|
|
|
checkArgs($args, $checkList);
|
|
|
|
if (empty($errors)) include 'getrecord.php';
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'ListIdentifiers':
|
|
|
|
case 'ListRecords':
|
|
|
|
if(isset($args['resumptionToken'])) {
|
|
|
|
if (count($args) > 2) {
|
|
|
|
$errors[] = oai_error('exclusiveArgument');
|
|
|
|
}
|
|
|
|
$checkList = array("ops"=>array("resumptionToken"));
|
|
|
|
} else {
|
|
|
|
$checkList = array("required"=>array("metadataPrefix"),"ops"=>array("from","until","set"));
|
|
|
|
}
|
|
|
|
checkArgs($args, $checkList);
|
|
|
|
if (empty($errors)) include 'listrecords.php';
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
// we never use compression with errors
|
|
|
|
$compress = FALSE;
|
|
|
|
$errors[] = oai_error('badVerb', $args['verb']);
|
|
|
|
} /*switch */
|
2013-05-07 19:48:37 +02:00
|
|
|
} else {
|
2013-05-07 19:52:33 +02:00
|
|
|
$errors[] = oai_error('noVerb');
|
2013-05-07 19:48:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($errors)) { oai_exit(); }
|
|
|
|
|
|
|
|
if ($compress) {
|
2013-05-07 19:52:33 +02:00
|
|
|
ob_start('ob_gzhandler');
|
2013-05-07 19:48:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
header(CONTENT_TYPE);
|
|
|
|
|
|
|
|
if(isset($outputObj)) {
|
2013-05-07 19:52:33 +02:00
|
|
|
$outputObj->display();
|
2013-05-07 19:48:37 +02:00
|
|
|
} else {
|
2013-05-07 19:52:33 +02:00
|
|
|
exit("There is a bug in codes");
|
2013-05-07 19:48:37 +02:00
|
|
|
}
|
|
|
|
|
2013-05-07 19:52:33 +02:00
|
|
|
if ($compress) {
|
|
|
|
ob_end_flush();
|
|
|
|
}
|
2013-05-07 19:48:37 +02:00
|
|
|
|
|
|
|
?>
|