// Store original image
if ($direct_cache) {
// direct cache , store under ./proxy/
- file_put_contents($basepath . '/proxy/' . ProxyUtils::proxifyUrl($request['url'], true), $image->asString());
+ $filename = $basepath . '/proxy/' . ProxyUtils::proxifyUrl($request['url'], true)
+ file_put_contents($filename, $image->asString());
+ chmod($filename, DI::config()->get('system', 'proxy_file_chmod', 0640));
} elseif($cachefile !== '') {
// cache file
file_put_contents($cachefile, $image->asString());
// Store scaled image
if ($direct_cache && $request['sizetype'] != '') {
- file_put_contents($basepath . '/proxy/' . ProxyUtils::proxifyUrl($request['url'], true) . $request['sizetype'], $image->asString());
+ $filename = $basepath . '/proxy/' . ProxyUtils::proxifyUrl($request['url'], true) . $request['sizetype'];
+ file_put_contents($filename, $image->asString());
+ chmod($filename, DI::config()->get('system', 'proxy_file_chmod', 0640));
}
self::responseImageHttpCache($image);
// xrd_timeout (Integer)
// Timeout in seconds for fetching the XRD links.
'xrd_timeout' => 20,
+
+ // proxy_file_chmod (Integer)
+ // Access rights for downloaded files in /proxy/ directory
+ 'proxy_file_chmod' => 0640,
],
'experimental' => [
// exp_themes (Boolean)