function textimage_file_download in Textimage 7.3
Same name and namespace in other branches
- 8.4 textimage.module \textimage_file_download()
- 8.3 textimage.module \textimage_file_download()
Implements hook_file_download().
Control the access to files underneath the styles directory.
File
- ./
textimage.module, line 179 - Textimage - Provides text to image manipulations.
Code
function textimage_file_download($uri) {
$path = file_uri_target($uri);
// Private file access for image style derivatives.
if (strpos($path, 'textimage') === 0) {
$args = explode('/', $path);
// Discard the first part of the path (textimage).
array_shift($args);
// Discard the style name.
array_shift($args);
// Remove the filename from the path.
array_shift($args);
// Then the remaining parts are the path to the image.
$original_uri = file_uri_scheme($uri) . '://' . implode('/', $args);
// Check that the file exists and is an image.
if ($info = image_get_info($uri)) {
// Check the permissions of the original to grant access to this image.
$headers = module_invoke_all('file_download', $original_uri);
if (!in_array(-1, $headers)) {
return array(
// Send headers describing the image's size, and MIME-type...
'Content-Type' => $info['mime_type'],
'Content-Length' => $info['file_size'],
);
}
}
return -1;
}
// Private file access for the original files. Note that we only
// check access for non-temporary images, since file.module will
// grant access for all temporary files.
$files = file_load_multiple(array(), array(
'uri' => $uri,
));
if (count($files)) {
$file = reset($files);
if ($file->status) {
return file_file_download($uri, 'image');
}
}
}