|
|
|
<?php
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
// @file fedora_utils.inc
|
|
|
|
// Base utilities used by the Islansora fedora module.
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Functions that emulate php5.3 functionality for backwards compatiablity
|
|
|
|
*/
|
|
|
|
if (!function_exists('str_getcsv')) {
|
|
|
|
function str_getcsv($input, $delimiter=',', $enclosure='"', $escape=null, $eol=null) {
|
|
|
|
$temp=fopen("php://memory", "rw");
|
|
|
|
fwrite($temp, $input);
|
|
|
|
fseek($temp, 0);
|
|
|
|
$r=fgetcsv($temp, 4096, $delimiter, $enclosure);
|
|
|
|
fclose($temp);
|
|
|
|
return $r;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Functions that emulate php5.3 functionality for backwards compatiablity
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Static functions used by the Fedora PHP API.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
function do_curl($url, $return_to_variable = 1, $number_of_post_vars = 0, $post = NULL) {
|
|
|
|
global $user;
|
|
|
|
// Check if we are inside Drupal and there is a valid user.
|
|
|
|
if ((!isset ($user)) || $user->uid == 0) {
|
|
|
|
$fedora_user = 'anonymous';
|
|
|
|
$fedora_pass = 'anonymous';
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$fedora_user = $user->name;
|
|
|
|
$fedora_pass = $user->pass;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (function_exists("curl_init")) {
|
|
|
|
$ch = curl_init();
|
|
|
|
$user_agent = "Mozilla/4.0 pp(compatible; MSIE 5.01; Windows NT 5.0)";
|
|
|
|
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
|
|
|
|
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
|
|
|
|
curl_setopt($ch, CURLOPT_FAILONERROR, TRUE); // Fail on errors
|
|
|
|
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); // allow redirects
|
|
|
|
curl_setopt($ch, CURLOPT_TIMEOUT, 90); // times out after 90s
|
|
|
|
curl_setopt($ch, CURLOPT_USERAGENT, $user_agent);
|
|
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, $return_to_variable); // return into a variable
|
|
|
|
curl_setopt($ch, CURLOPT_URL, $url);
|
|
|
|
curl_setopt($ch, CURLOPT_USERPWD, "$fedora_user:$fedora_pass");
|
|
|
|
//curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
|
|
|
|
if ($number_of_post_vars>0&&$post) {
|
|
|
|
curl_setopt($ch, CURLOPT_POST, $number_of_post_vars);
|
|
|
|
curl_setopt($ch, CURLOPT_POSTFIELDS, "$post");
|
|
|
|
}
|
|
|
|
return curl_exec($ch);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (function_exists(drupal_set_message)) {
|
|
|
|
drupal_set_message(t('No curl support.'), 'error');
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function fedora_available() {
|
|
|
|
$response = drupal_http_request(variable_get('fedora_base_url', 'http://localhost:8080/fedora').'/describe');
|
|
|
|
return ($response->code == 200);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a UTF-8-encoded transcripiton of the string given in $in_str.
|
|
|
|
* @param string $in_str
|
|
|
|
* @return string A UTF-8 encoded string.
|
|
|
|
*/
|
|
|
|
function fix_encoding($in_str) {
|
|
|
|
$cur_encoding = mb_detect_encoding($in_str) ;
|
|
|
|
if ($cur_encoding == "UTF-8" && mb_check_encoding($in_str, "UTF-8")) {
|
|
|
|
return $in_str;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return utf8_encode($in_str);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function validPid($pid) {
|
|
|
|
$valid = FALSE;
|
|
|
|
if (strlen(trim($pid)) <= 64 && preg_match('/^([A-Za-z0-9]|-|\.)+:(([A-Za-z0-9])|-|\.|~|_|(%[0-9A-F]{2}))+$/', trim($pid))) {
|
|
|
|
$valid = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $valid;
|
|
|
|
}
|
|
|
|
|
|
|
|
function validDsid($dsid) {
|
|
|
|
$valid = FALSE;
|
|
|
|
if (strlen(trim($dsid)) <= 64 && preg_match('/^[a-zA-Z0-9\_\-\.]+$/', trim($dsid))) {
|
|
|
|
$valid = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $valid;
|
|
|
|
}
|