<?php<448901948@qq.com>declare (strict_types = 1);
namespace think\filesystem;
use League\Flysystem\AdapterInterface;
use League\Flysystem\Adapter\AbstractAdapter;
use League\Flysystem\Cached\CachedAdapter;
use League\Flysystem\Cached\Storage\Memory as MemoryStore;
use League\Flysystem\Filesystem;
use think\Cache;
use think\File;
abstract class Driver
{
protected $cache;
protected $filesystem;
protected $config = [];
public function __construct(Cache $cache, array $config)
{
$this->cache = $cache;
$this->config = array_merge($this->config, $config);
$adapter = $this->createAdapter();
$this->filesystem = $this->createFilesystem($adapter);
}
protected function createCacheStore($config)
{
if (true === $config) {
return new MemoryStore;
}
return new CacheStore(
$this->cache->store($config['store']),
$config['prefix'] ?? 'flysystem',
$config['expire'] ?? null
);
}
abstract protected function createAdapter(): AdapterInterface;
protected function createFilesystem(AdapterInterface $adapter): Filesystem
{
if (!empty($this->config['cache'])) {
$adapter = new CachedAdapter($adapter, $this->createCacheStore($this->config['cache']));
}
$config = array_intersect_key($this->config, array_flip(['visibility', 'disable_asserts', 'url']));
return new Filesystem($adapter, count($config) > 0 ? $config : null);
}
public function path(string $path): string
{
$adapter = $this->filesystem->getAdapter();
if ($adapter instanceof AbstractAdapter) {
return $adapter->applyPathPrefix($path);
}
return $path;
}
public function putFile(string $path, File $file, $rule = null, array $options = [])
{
return $this->putFileAs($path, $file, $file->hashName($rule), $options);
}
public function putFileAs(string $path, File $file, string $name, array $options = [])
{
$stream = fopen($file->getRealPath(), 'r');
$path = trim($path . '/' . $name, '/');
$result = $this->putStream($path, $stream, $options);
if (is_resource($stream)) {
fclose($stream);
}
return $result ? $path : false;
}
public function __call($method, $parameters)
{
return $this->filesystem->$method(...$parameters);
}
}