mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
c13b5d989f
API Enable relative root paths for the default Flysystem AssetAdapter
72 lines
1.7 KiB
PHP
72 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace SilverStripe\Filesystem\Flysystem;
|
|
|
|
use Controller;
|
|
use Director;
|
|
use League\Flysystem\Adapter\Local;
|
|
|
|
/**
|
|
* Adaptor for local filesystem based on assets directory
|
|
*
|
|
* @package framework
|
|
* @subpackage filesystem
|
|
*/
|
|
class AssetAdapter extends Local {
|
|
|
|
/**
|
|
* Config compatible permissions configuration
|
|
*
|
|
* @config
|
|
* @var array
|
|
*/
|
|
private static $file_permissions = array(
|
|
'file' => [
|
|
'public' => 0744,
|
|
'private' => 0700,
|
|
],
|
|
'dir' => [
|
|
'public' => 0755,
|
|
'private' => 0700,
|
|
]
|
|
);
|
|
|
|
public function __construct($root = null, $writeFlags = LOCK_EX, $linkHandling = self::DISALLOW_LINKS) {
|
|
// Get root path
|
|
if (!$root) {
|
|
// Empty root will set the path to assets
|
|
$root = ASSETS_PATH;
|
|
} elseif(strpos($root, './') === 0) {
|
|
// Substitute leading ./ with BASE_PATH
|
|
$root = BASE_PATH . substr($root, 1);
|
|
} elseif(strpos($root, '../') === 0) {
|
|
// Substitute leading ./ with parent of BASE_PATH, in case storage is outside of the webroot.
|
|
$root = dirname(BASE_PATH) . substr($root, 2);
|
|
}
|
|
|
|
// Override permissions with config
|
|
$permissions = \Config::inst()->get(get_class($this), 'file_permissions');
|
|
|
|
parent::__construct($root, $writeFlags, $linkHandling, $permissions);
|
|
}
|
|
|
|
/**
|
|
* Provide downloadable url
|
|
*
|
|
* @param string $path
|
|
* @return string|null
|
|
*/
|
|
public function getPublicUrl($path) {
|
|
$rootPath = realpath(BASE_PATH);
|
|
$filesPath = realpath($this->pathPrefix);
|
|
|
|
if(stripos($filesPath, $rootPath) === 0) {
|
|
$dir = substr($filesPath, strlen($rootPath));
|
|
return Controller::join_links(Director::baseURL(), $dir, $path);
|
|
}
|
|
|
|
// File outside of webroot can't be used
|
|
return null;
|
|
}
|
|
}
|