我最近为我正在进行的一个项目设置了 FEDORA,以对各种媒体进行分类。我希望能够通过 FEDORA REST api 使用文件(数据流)。我设法通过 curl 创建了一个数字对象,完全没有问题。我还设法将一个 html 页面作为数据流添加到上面提到的数字对象中,也没有任何问题。
但是,添加具有其他内容类型/文件类型的数字对象失败并引发内部服务器错误 500。检查日志时,会出现以下错误:
[http-bio-8080-exec-18] (DatastreamResource) Error with uploaded://47 : XML was not well-formed. Invalid byte 1 of 1-byte UTF-8 sequence
以下是我如何摄取文件的代码片段:
$url = "http://localhost:8080/fedora/objects/changeme:5/datastreams/NEWDS8?controlGroup=X&dsLabel=LAZLO";
$file = "namibia2015.pdf";
// Build cURL options
$userPassword = "fedoraAdmin:test123"; // username:password
$verifyPeer = false; // false for ignoring self signed certificates
$headers = array("Accept: text/xml", "Content-Type: " . mime_content_type($file));
$fileContents = file_get_contents($file);
$curlOptions = array(
CURLOPT_URL => $url,
CURLOPT_HTTPHEADER => $headers,
CURLOPT_USERPWD => $userPassword,
CURLOPT_HTTPAUTH => CURLAUTH_BASIC,
CURLOPT_SSL_VERIFYPEER => $verifyPeer,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => $fileContents
);
$curlHandle = curl_init();
$success = curl_setopt_array($curlHandle, $curlOptions);
throw new Exception(
sprintf(
"curl_setopt_array(...) failed. Error: %s. Info: %s",
curl_error($curlHandle),
print_r(curl_getinfo($curlHandle), true)
),
curl_errno($curlHandle)
);
}
$curlReturn = curl_exec($curlHandle);
$httpCode = curl_getinfo($curlHandle, CURLINFO_HTTP_CODE);
我遇到了这篇文章如何使用 PHP 将图像摄取到 Fedora Commons?尝试了建议的方法,但仍然没有运气。
我究竟做错了什么?我错过了什么?为什么可以将 html 文件数据流添加到数字对象,但是当我尝试添加 .jpeg、.pdf、.txt 等时却失败了?