Fetch and cache files from local filesystem, cloud storage or public webservers in Laravel or Lumen.
The file cache is specifically designed for use in concurrent processing with multiple parallel queue workers.
composer require jackardios/laravel-file-cache
The service provider and FileCache
facade are auto-discovered by Laravel.
Take a look at the FileCache
contract to see the public API of the file cache. Example:
use FileCache;
use Jackardios\FileCache\GenericFile;
// Implements Jackardios\FileCache\Contracts\File.
$file = new GenericFile('https://example.com/images/image.jpg');
FileCache::get($file, function ($file, $path) {
// do stuff
});
If the file URL specifies another protocol than http
or https
(e.g. mydisk://images/image.jpg
), the file cache looks for the file in the appropriate storage disk configured at filesystems.disks
. You can not use a local file path as URL (e.g. /vol/images/image.jpg
). Instead, configure a storage disk with the local
driver.
The file cache comes with a sensible default configuration. You can override it in the file-cache
namespace or with environment variables.
Default: -1
(any size)
Environment: FILE_CACHE_MAX_FILE_SIZE
Maximum allowed size of a cached file in bytes. Set to -1
to allow any size.
Default: 60
Environment: FILE_CACHE_MAX_AGE
Maximum age in minutes of a file in the cache. Older files are pruned.
Default: 1E+9
(1 GB)
Environment: FILE_CACHE_MAX_SIZE
Maximum size (soft limit) of the file cache in bytes. If the cache exceeds this size, old files are pruned.
Default: 'storage/framework/cache/files'
Directory to use for the file cache.
Default: 0
(indefinitely)
Environment: FILE_CACHE_TIMEOUT
Total connection timeout when reading remote files in seconds. If loading the file takes longer than this, it will fail. Set to 0 to wait indefinitely.. Set to 0
to wait indefinitely.
Default: 30
(30 seconds)
Environment: FILE_CACHE_CONNECT_TIMEOUT
Timeout to initiate a connection to load a remote file in seconds. If it takes longer, it will fail. Set to 0 to wait indefinitely.. Set to 0
to wait indefinitely.
Default: 30
(30 seconds)
Environment: FILE_CACHE_READ_TIMEOUT
Timeout for reading a stream of a remote file in seconds. If it takes longer, it will fail. Set to -1 to wait indefinitely.
Default '*/5 * * * *'
(every five minutes)
Interval for the scheduled task to prune the file cache.
Default: []
(allow all types)
Array of allowed MIME types for cached files. Caching of files with other types will fail.
The file cache is cleared when you call php artisan cache:clear
.
The FileCache
facade provides a fake for easy testing. The fake does not actually fetch and store any files, but only executes the callback function with a faked file path.
use FileCache;
use Jackardios\FileCache\GenericFile;
FileCache::fake();
$file = new GenericFile('https://example.com/image.jpg');
$path = FileCache::get($file, function ($file, $path) {
return $path;
});
$this->assertFalse($this->app['files']->exists($path));