popphp / pop-storage
Pop Storage Component for Pop PHP Framework
Requires
- php: >=8.1.0
- aws/aws-sdk-php: ^3.283.11
- popphp/pop-dir: ^4.0.0
- popphp/pop-http: ^5.1.1
- popphp/pop-utils: ^2.1.0
Requires (Dev)
- phpunit/phpunit: ^10.0.0
This package is auto-updated.
Last update: 2024-11-19 05:29:32 UTC
README
Overview
pop-storage
is a storage component that provides interchangeable adapters to easily manage and switch
between different storage resources. Supported storage adapters are:
- AWS S3
- Microsoft Azure
- Local Disk
NOTE: The use of enterprise storage solutions like AWS S3 and Microsoft Azure require credentials and permissions to be created in their respective administration portals. Please refer to the online documentation, guidelines and polices for whichever storage platform to which you are attempting to connect your application using this component. Please take care in granting access and assigning permissions to your application instance. Always follow the recommended security policies and guidelines of your chosen storage platform.
pop-storage
is a component of the Pop PHP Framework.
Install
Install pop-storage
using Composer.
composer require popphp/pop-storage
Or, require it in your composer.json file
"require": {
"popphp/pop-storage" : "^2.0.0"
}
Quickstart
A storage object can be created using one of the factories:
use Pop\Storage\Storage; $storage = Storage::createAzure('ACCOUNT_NAME', 'ACCOUNT_KEY', 'CONTAINER');
Then a local file can be uploaded to the storage platform:
$storage->putFile('test.pdf');
Or, a remote file can be downloaded from the storage platform, which will return the file contents to be utilized within the application:
$fileContents = $storage->fetchFile('test.pdf');
Adapters
By default, there are 3 available adapters. All of the adapters share the same interface and
are interchangeable. Other adapters can be created, as long as they implement the same
Pop\Storage\StorageInterface
.
AWS S3
The Amazon AWS S3 adapter interfaces with AWS S3 and requires the following credentials and access information to be obtained from the AWS administration console:
- AWS Key
- AWS Secret
- AWS Region
- AWS Version (usually
latest
) - The AWS S3 bucket to access (in the format
s3://bucket
)
use Pop\Storage\Storage; $storage = Storage::createS3('AWS_BUCKET', new S3\S3Client([ 'credentials' => [ 'key' => 'AWS_KEY', 'secret' => 'AWS_SECRET', ], 'region' => 'AWS_REGION', 'version' => 'AWS_VERSION' ]));
Microsoft Azure
The Microsoft Azure adapter interfaces with Microsoft Azure Storage and requires the following credentials and access information to be obtained from the AWS administration console:
- Account Name
- Account Key
- The Azure container to access (in the format
container
)
use Pop\Storage\Storage; $storage = Storage::createAzure('ACCOUNT_NAME', 'ACCOUNT_KEY', 'CONTAINER');
Local Disk
The local disk adapter allows simple management of files and folders on the local disk of the application using the same interface as the other adapters. This can be useful for local development and testing, before switching to one of the enterprise adapters for production.
It only needs the main directory to serve as the base location:
use Pop\Storage\Storage; $storage = Storage::createLocal(__DIR__ . '/tmp/');
Working with Files
There are a number of available methods to assist in the uploading and downloading of files to and from the storage platform, as well as obtaining general data and information about them.
Put a local file on the remote location
Use a file on disk:
$storage->putFile('test.pdf');
Use a stream of file contents:
$storage->putFileContents('test.pdf', $fileContents);
Fetch file contents
This method returns the file contents to be utilized within the application:
$fileContents = $storage->fetchFile('test.pdf');
Fetch file info
This method uses a custom request (i.e, a HEAD
request) to return general information
about a file without downloading the file's contents:
// Returns an array of file info: $info = $storage->fetchFileInfo('test.pdf');
Upload files from a server request ($_FILES format)
$storage->uploadFiles($_FILES);
// Where $file follows the $_FILES array format specified in PHP: // $file = ['tmp_name' => '/tmp/Hs87jdk', 'name' => 'test.pdf', 'size' => 8574, 'error' => 0] $storage->uploadFile($file);
List Files
You can list or search the files in the current location:
$files = $storage->listFiles();
$files = $storage->listFiles('test*');
$files = $storage->listFiles('*.pdf');
List all or search all directories and files together:
$all = $storage->listAll();
Copy or move file from one remote location to another
// The source file remains $storage->copyFile('test.pdf', 'foo/test2.pdf');
// The source file no longer exists $storage->renameFile('test.pdf', 'foo/test2.pdf');
Copy of move file from/to an external location on the same remote storage resource
This allows you to copy or move files between different AWS buckets or Azure containers that are outside the currently referenced bucket or container.
To External
// AWS example. The source file remains $storage->copyFileToExternal('test.pdf', 's3://other-bucket/test.pdf'); // Azure example. The source file remains $storage->copyFileToExternal('test.pdf', '/other-container/test.pdf');
// AWS example. The source file no longer exists $storage->moveFileToExternal('test.pdf', 's3://other-bucket/test.pdf'); // Azure example. The source file no longer exists $storage->moveFileToExternal('test.pdf', '/other-container/test.pdf');
From External
// AWS example. The source file remains $storage->copyFileFromExternal('s3://other-bucket/test.pdf', 'test.pdf'); // Azure example. The source file remains $storage->copyFileFromExternal('/other-container/test.pdf', 'test.pdf');
// AWS example. The source file no longer exists $storage->moveFileToExternal('s3://other-bucket/test.pdf', 'test.pdf'); // Azure example. The source file no longer exists $storage->moveFileToExternal('/other-container/test.pdf', 'test.pdf');
Delete file
$storage->deleteFile('test.pdf');
Directories
The AWS and Azure storage resources don't explicitly support "directories" or "folders." However, they
do still allow for a "directory-like" structure in the form of "prefixes." The pop-storage
component
normalizes that functionality into a more "directory-like" interface that allows the ability to change
directories, make directories and remove directories.
NOTE: The creation or removal of empty directories is only allowed with the S3 and local adapters. The Azure storage resource doesn't allow the explicit creation or removal of empty directories. Instead, a new "directory" (prefix) is created automatically created with an uploaded file that utilizes a prefix. Conversely, a "directory" (prefix) is automatically removed when the last file that utilizes the prefix is deleted.
$storage = Storage::createS3('s3://my-bucket', new S3\S3Client([ 'credentials' => [ 'key' => 'AWS_KEY', 'secret' => 'AWS_SECRET', ], 'region' => 'AWS_REGION', 'version' => 'AWS_VERSION' ])); // Create the bucket 's3://my-bucket/foo' $storage->mkdir('foo'); // Point the adapter at 's3://my-bucket/foo' // Any files pushed will store here // Any delete calls will delete files from here $storage->chdir('foo'); // Removes the bucket and its content $storage->rmdir('foo');
List Directories
You can list or search the directories in the current location:
$dirs = $storage->listDirs();
$dirs = $storage->listDirs('foo*');
$dirs = $storage->listDirs('*foo/');
List all or search all directories and files together:
$all = $storage->listAll();
Helper Methods
There are a number of helper methods to provide information on file status or things like whether or not the file exists.
var_dump($storage->fileExists('test.pdf')) // Returns bool var_dump($storage->isDir('foo')); // Returns bool var_dump($storage->isFile('test.pdf')); // Returns bool var_dump($storage->getFileSize('test.pdf')); // Returns filesize value as an integer var_dump($storage->getFileType('test.pdf')); // Return either 'file' or 'dir' var_dump($storage->getFileMTime('test.pdf')); // Returns date/time value var_dump($storage->md5File('test.pdf')); // Returns MD5 hash of file