Browse Source

Merge pull request #466 from whikloj/patch-2

Check for hostname
pull/550/head
Nick Ruest 10 years ago
parent
commit
e97086584d
  1. 5
      islandora.module

5
islandora.module

@ -1564,9 +1564,12 @@ function islandora_entity_property_info() {
*/ */
function islandora_download_clip(AbstractObject $object) { function islandora_download_clip(AbstractObject $object) {
if (isset($_GET['clip'])) { if (isset($_GET['clip'])) {
$url = $_GET['clip'];
if (!preg_match('/^https?:\/\//', $url)) {
$is_https = isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on'; $is_https = isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on';
$http_protocol = $is_https ? 'https' : 'http'; $http_protocol = $is_https ? 'https' : 'http';
$url = $http_protocol . '://' . $_SERVER['HTTP_HOST'] . $_GET['clip']; $url = $http_protocol . '://' . $_SERVER['HTTP_HOST'] . $url;
}
$filename = $object->label; $filename = $object->label;
header("Content-Disposition: attachment; filename=\"{$filename}.jpg\""); header("Content-Disposition: attachment; filename=\"{$filename}.jpg\"");
header("Content-type: image/jpeg"); header("Content-type: image/jpeg");

Loading…
Cancel
Save