Merge pull request #10022 from Quix0r/fixes/chmod-proxy
Add setting for proxy file chmod value
This commit is contained in:
commit
b98405443e
|
@ -131,7 +131,9 @@ class Proxy extends BaseModule
|
||||||
// Store original image
|
// Store original image
|
||||||
if ($direct_cache) {
|
if ($direct_cache) {
|
||||||
// direct cache , store under ./proxy/
|
// 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'));
|
||||||
} elseif($cachefile !== '') {
|
} elseif($cachefile !== '') {
|
||||||
// cache file
|
// cache file
|
||||||
file_put_contents($cachefile, $image->asString());
|
file_put_contents($cachefile, $image->asString());
|
||||||
|
@ -149,7 +151,9 @@ class Proxy extends BaseModule
|
||||||
|
|
||||||
// Store scaled image
|
// Store scaled image
|
||||||
if ($direct_cache && $request['sizetype'] != '') {
|
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'));
|
||||||
}
|
}
|
||||||
|
|
||||||
self::responseImageHttpCache($image);
|
self::responseImageHttpCache($image);
|
||||||
|
|
|
@ -570,6 +570,10 @@ return [
|
||||||
// xrd_timeout (Integer)
|
// xrd_timeout (Integer)
|
||||||
// Timeout in seconds for fetching the XRD links.
|
// Timeout in seconds for fetching the XRD links.
|
||||||
'xrd_timeout' => 20,
|
'xrd_timeout' => 20,
|
||||||
|
|
||||||
|
// proxy_file_chmod (Integer)
|
||||||
|
// Access rights for downloaded files in /proxy/ directory
|
||||||
|
'proxy_file_chmod' => 0640,
|
||||||
],
|
],
|
||||||
'experimental' => [
|
'experimental' => [
|
||||||
// exp_themes (Boolean)
|
// exp_themes (Boolean)
|
||||||
|
|
Loading…
Reference in a new issue