105 lines
4.3 KiB
PHP
105 lines
4.3 KiB
PHP
<?php
|
|
|
|
namespace Illuminate\Support\Facades;
|
|
|
|
use Illuminate\Filesystem\Filesystem;
|
|
|
|
/**
|
|
* @method static \Illuminate\Contracts\Filesystem\Filesystem drive(string|null $name = null)
|
|
* @method static \Illuminate\Contracts\Filesystem\Filesystem disk(string|null $name = null)
|
|
* @method static \Illuminate\Contracts\Filesystem\Filesystem cloud()
|
|
* @method static \Illuminate\Contracts\Filesystem\Filesystem build(string|array $config)
|
|
* @method static \Illuminate\Contracts\Filesystem\Filesystem createLocalDriver(array $config)
|
|
* @method static \Illuminate\Contracts\Filesystem\Filesystem createFtpDriver(array $config)
|
|
* @method static \Illuminate\Contracts\Filesystem\Filesystem createSftpDriver(array $config)
|
|
* @method static \Illuminate\Contracts\Filesystem\Cloud createS3Driver(array $config)
|
|
* @method static \Illuminate\Contracts\Filesystem\Filesystem createScopedDriver(array $config)
|
|
* @method static \Illuminate\Filesystem\FilesystemManager set(string $name, mixed $disk)
|
|
* @method static string getDefaultDriver()
|
|
* @method static string getDefaultCloudDriver()
|
|
* @method static \Illuminate\Filesystem\FilesystemManager forgetDisk(array|string $disk)
|
|
* @method static void purge(string|null $name = null)
|
|
* @method static \Illuminate\Filesystem\FilesystemManager extend(string $driver, \Closure $callback)
|
|
* @method static \Illuminate\Filesystem\FilesystemManager setApplication(\Illuminate\Contracts\Foundation\Application $app)
|
|
* @method static bool exists(string $path)
|
|
* @method static string|null get(string $path)
|
|
* @method static resource|null readStream(string $path)
|
|
* @method static bool put(string $path, string|resource $contents, mixed $options = [])
|
|
* @method static bool writeStream(string $path, resource $resource, array $options = [])
|
|
* @method static string getVisibility(string $path)
|
|
* @method static bool setVisibility(string $path, string $visibility)
|
|
* @method static bool prepend(string $path, string $data)
|
|
* @method static bool append(string $path, string $data)
|
|
* @method static bool delete(string|array $paths)
|
|
* @method static bool copy(string $from, string $to)
|
|
* @method static bool move(string $from, string $to)
|
|
* @method static int size(string $path)
|
|
* @method static int lastModified(string $path)
|
|
* @method static array files(string|null $directory = null, bool $recursive = false)
|
|
* @method static array allFiles(string|null $directory = null)
|
|
* @method static array directories(string|null $directory = null, bool $recursive = false)
|
|
* @method static array allDirectories(string|null $directory = null)
|
|
* @method static bool makeDirectory(string $path)
|
|
* @method static bool deleteDirectory(string $directory)
|
|
*
|
|
* @see \Illuminate\Filesystem\FilesystemManager
|
|
*/
|
|
class Storage extends Facade
|
|
{
|
|
/**
|
|
* Replace the given disk with a local testing disk.
|
|
*
|
|
* @param string|null $disk
|
|
* @param array $config
|
|
* @return \Illuminate\Contracts\Filesystem\Filesystem
|
|
*/
|
|
public static function fake($disk = null, array $config = [])
|
|
{
|
|
$disk = $disk ?: static::$app['config']->get('filesystems.default');
|
|
|
|
$root = storage_path('framework/testing/disks/'.$disk);
|
|
|
|
if ($token = ParallelTesting::token()) {
|
|
$root = "{$root}_test_{$token}";
|
|
}
|
|
|
|
(new Filesystem)->cleanDirectory($root);
|
|
|
|
static::set($disk, $fake = static::createLocalDriver(array_merge($config, [
|
|
'root' => $root,
|
|
])));
|
|
|
|
return tap($fake)->buildTemporaryUrlsUsing(function ($path, $expiration) {
|
|
return URL::to($path.'?expiration='.$expiration->getTimestamp());
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Replace the given disk with a persistent local testing disk.
|
|
*
|
|
* @param string|null $disk
|
|
* @param array $config
|
|
* @return \Illuminate\Contracts\Filesystem\Filesystem
|
|
*/
|
|
public static function persistentFake($disk = null, array $config = [])
|
|
{
|
|
$disk = $disk ?: static::$app['config']->get('filesystems.default');
|
|
|
|
static::set($disk, $fake = static::createLocalDriver(array_merge($config, [
|
|
'root' => storage_path('framework/testing/disks/'.$disk),
|
|
])));
|
|
|
|
return $fake;
|
|
}
|
|
|
|
/**
|
|
* Get the registered name of the component.
|
|
*
|
|
* @return string
|
|
*/
|
|
protected static function getFacadeAccessor()
|
|
{
|
|
return 'filesystem';
|
|
}
|
|
}
|