PHP Luminova: Cloud Storags Module
File Storage allows you to seamlessly integrate various storages like AWS S3, Azure Blob, into your PHP application, providing flexibility and convenience in handling file and directory operations.
The Storage class provides an interface for interacting with various storage adapters such as local file storage, FTP servers, in-memory storage, and cloud storage services like AWS S3, Azure Blob, and Google Cloud Storage. This class serves as an extension of the powerful PHP library League Filesystem, which offers convenient methods for common file and directory operations.
To get started with the Storage class, ensure that you have installed the filesystem package by running the Composer command.
composer require league/flysystem:^3.0Additionally, make sure to install the required dependencies for the chosen storage driver. You can refer to the configuration for the required drivers depending on the storage you want in the League Storage Filesystem Configuration documentation.
Examples
<?php
use Luminova\Storages\Storage;
Storage::context('local')->write('example.txt', 'Hello, World!');To save file and generate a symbolic public URL on the go, use toLink method.This method is only for local storage context, for other cloud storage use url method.
<?php
use Luminova\Storages\Storage;
echo Storage::context('local')->write('example.txt', 'Hello, World!')->toLink();To change directory, create the folder and write file to it use disk method to change directory and create the directory.
<?php
use Luminova\Storages\Storage;
echo Storage::context('local')->disk('foo')->write('example.txt', 'Hello, World!');If you want to change directory without creating the folder use chdir method.
<?php
use Luminova\Storages\Storage;
$dir = Storage::context('local')->chdir('foo/bar/baz');
$dir->mkdir(null); //pass null since we already prepare the dir.Note this method doesn't change your directory remotely, it only prepare the directory for next executions.
Upload file to server, you can optionally set file configuration using setConfig method.
<?php
$file = $this->request->getFile('file');
$file->setConfig([
'max_size' => 1024,
'min_size' => 500,
]);
if(Storage::context('local')->upload($file)){
echo 'Upload was successful';
}- Class namespace:
\Luminova\Storages\Storage - Parent class: StorageAdapters
Methods
constructor
Constructs a new Storage instance with the specified adapter.
public __construct(string $adapter): mixedParameters:
| Parameter | Type | Description |
|---|---|---|
$adapter | string | The storage adapter to use. |
You can either initialize a class instance or use the static
contextmethod for easy usage.
context
Creates a new Storage instance for the specified adapter context.
public static context(string $adapter = 'local'): selfParameters:
| Parameter | Type | Description |
|---|---|---|
$adapter | string | The storage adapter context. |
Return Value:
self - The New Storage instance.
disk
Creates a new storage disk / directory.
public disk(string $location): selfParameters:
| Parameter | Type | Description |
|---|---|---|
$location | string | The disk path or name. |
Return Value:
self - Return class instance.
Throws:
- \Luminova\Exceptions\StorageException - If an error occurs during the creation.
chdir
Change to another storage directory.
public chdir(string $directory = './'): selfParameters:
| Parameter | Type | Description |
|---|---|---|
$directory | string | The new current directory |
Return Value:
self - Return class instance.
Shortcut to return to the main storage directory are
blank string,.or./.
url
Get remote file symbolic url.
public url(string $file): string|nullParameters:
| Parameter | Type | Description |
|---|---|---|
$file | string | The file name and path to remove file. |
Return Value:
string|null - Return remote url to file otherwise null.
tempUrl
Get a temporal remote url.
public tempUrl(string $file, int $minutes = 1): string|nullParameters:
| Parameter | Type | Description |
|---|---|---|
$file | string | The file name and path to remove file. |
$minutes | int | Expiry duration in minutes. |
Return Value:
string|null - Return remote url to file otherwise null.
symbolic
Create a symlink to a target file or directory.
public symbolic(string $target, string $link): bool|nullParameters:
| Parameter | Type | Description |
|---|---|---|
$target | string | The targe file or directory to link from. |
$link | string | The location of the link. |
Return Value:
bool|null - Return true if the link was successfully created false otherwise.
write
Writes contents to a file in current working directory.
public write(string $filename, string|resource $contents, bool $steam = false): selfParameters:
| Parameter | Type | Description |
|---|---|---|
$filename | string | The name of the file. |
$contents | string|resource | The contents to write string or resource for stream large uploads. |
$steam | bool | The type of write operation (default: false). - Passed true when writing using stream. |
Return Value:
self - Class instance.
Throws:
- \Luminova\Exceptions\StorageException - If an error occurs during the write operation.
upload
Upload file in working directory.
public upload(\Luminova\Http\File $file): boolParameters:
| Parameter | Type | Description |
|---|---|---|
$file | \Luminova\Http\File | Instance of file being uploaded. |
Return Value:
bool - Return true if upload was successful false otherwise.
Throws:
- \Luminova\Exceptions\StorageException - If an error occurs during the upload operation.
toLink
Create a symbolic link after writing file to disk.
public toLink(): string|falseReturn Value:
string|false - The symbolic link location or false on failure.
This method is only available on local filesystem.
Also it should only be called after method
writehas been called otherwise it will return false.
checksum
Get the checksum for a file.
public checksum(string $path, array $options = []): string|falseParameters:
| Parameter | Type | Description |
|---|---|---|
$path | string | |
$options | array |
Throws:
- \Luminova\Exceptions\StorageException - If an error occurs during the write operation.
read
Reads the contents of a file from the current working directory.
public read(string $filename, bool $steam = false): mixedParameters:
| Parameter | Type | Description |
|---|---|---|
$filename | string | The name of the file. |
$steam | bool | The type of read operation (default: false). - Passed true when reading large files. |
Return Value:
mixed - The file contents.
Throws:
- \Luminova\Exceptions\StorageException - If an error occurs during the read operation.
download
Download file from the current working directory.
public download(string $filename, string|null $name = null, bool $steam = false, array $headers = []): mixedParameters:
| Parameter | Type | Description |
|---|---|---|
$filename | string | The name of the file. |
$name | string|null | Download file name. |
$steam | bool | The type of read operation (default: false). - Passed true when downloading large files. |
$headers | array | Optional download headers. |
Return Value:
mixed - The file contents.
Throws:
- \Luminova\Exceptions\StorageException - If an error occurs during the read operation.
delete
Deletes a file or directory in current working directory.
public delete(string $filename, string $type = 'file'): void.
Parameters:
| Parameter | Type | Description |
|---|---|---|
$filename | string | The name of the file or directory. |
$type | string | The type of deletion operation (file or dir). |
Throws:
- \Luminova\Exceptions\StorageException - If an error occurs during the deletion operation.
list
Lists the contents of a directory in the current working directory.
public list(string $directory = null, string $return = 'files', bool $recursive = false): arrayParameters:
| Parameter | Type | Description |
|---|---|---|
$directory | string | Optional directory path or it will list all in current directory. |
$return | string | The type of result to return (files, dirs, or all). |
$recursive | bool | Whether to list recursively. |
Return Value:
array - The list of files or directories.
Throws:
- \Luminova\Exceptions\StorageException - If an error occurs during the listing operation.
fileExist
Checks if a file exists in the current working directory.
public fileExist(string $filename): boolParameters:
| Parameter | Type | Description |
|---|---|---|
$filename | string | The name of the file. |
Return Value:
bool - True if the file exists, false otherwise.
Throws:
- \Luminova\Exceptions\StorageException - If an error occurs during the existence check.
dirExist
Checks if a directory exists in current working directory.
public dirExist(string $path): boolParameters:
| Parameter | Type | Description |
|---|---|---|
$path | string | The directory path. |
Return Value:
bool - True if the directory exists, false otherwise.
Throws:
- \Luminova\Exceptions\StorageException - If an error occurs during the existence check.
exist
Checks if a file or directory exists based on the provided type.
public exist(string $filename, string $type = 'file'): boolParameters:
| Parameter | Type | Description |
|---|---|---|
$filename | string | The name of the file or directory. |
$type | string | The type of entity to check (file or dir). |
Return Value:
bool - True if the file or directory exists, false otherwise.
Throws:
- \Luminova\Exceptions\StorageException - If an error occurs during the existence check.
has
Checks if a file or directory exists based on the provided URL or path.
public has(string $filename): boolParameters:
| Parameter | Type | Description |
|---|---|---|
$filename | string | The name of the file or directory, which can also be a URL. |
Return Value:
bool - True if the file or directory exists, false otherwise.
Throws:
- \Luminova\Exceptions\StorageException - If an error occurs during the existence check.
modified
Retrieves the last modified timestamp of a file.
public modified(string $filename): intParameters:
| Parameter | Type | Description |
|---|---|---|
$filename | string | The name of the file. |
Return Value:
int - The UNIX timestamp of the last modification time.
Throws:
- \Luminova\Exceptions\StorageException - If an error occurs during the retrieval.
mime
Retrieves the MIME type of a file.
public mime(string $filename): stringParameters:
| Parameter | Type | Description |
|---|---|---|
$filename | string | The name of the file. |
Return Value:
string - The MIME type of the file.
Throws:
- \Luminova\Exceptions\StorageException - If an error occurs during the retrieval.
size
Retrieves the size of a file.
public size(string $filename): intParameters:
| Parameter | Type | Description |
|---|---|---|
$filename | string | The name of the file. |
Return Value:
int - The size of the file in bytes.
Throws:
- \Luminova\Exceptions\StorageException - If an error occurs during the retrieval.
visibility
Retrieves or sets the visibility of a file or directory.
public visibility(string $filename, string|null $visibility = null): false|stringParameters:
| Parameter | Type | Description |
|---|---|---|
$filename | string | The name of the file or directory. |
$visibility | string|null | Optional. The visibility to set ('public', 'private', or null to retrieve). Default is null. |
Return Value:
false|string - If $visibility is null, returns the current visibility as a string ('public' or 'private').If $visibility is provided update visibility and returns the visibility that was set.Otherwise returns false if operation failed.
Throws:
- \Luminova\Exceptions\StorageException - If an error occurs during the operation.
mkdir
Creates a new directory in the current working directory.
public mkdir(string $path): voidParameters:
| Parameter | Type | Description |
|---|---|---|
$path | string | The path of the directory to create. |
Throws:
- \Luminova\Exceptions\StorageException - If an error occurs during the creation.
move
Moves a file or directory from the current working directory to a new location.
public move(string $source, string $destination): voidParameters:
| Parameter | Type | Description |
|---|---|---|
$source | string | The current path of the file or directory. |
$destination | string | The new path for the file or directory. |
Throws:
- \Luminova\Exceptions\StorageException - If an error occurs during the move operation.
copy
Copies a file or directory from the current working directory to a new location.
public copy(string $source, string $destination): voidParameters:
| Parameter | Type | Description |
|---|---|---|
$source | string | The path of the original file or directory. |
$destination | string | The path of the destination file or directory. |
Throws:
- \Luminova\Exceptions\StorageException - If an error occurs during the copy operation.
getClient
Get the storage client instance.
public getClient(): mixedReturn Value:
mixed - The client instance.