Usage
This guide covers the essential concepts and usage patterns for the FileStorage plugin.
Basic concepts
The file storage model
The plugin uses a single table (file_storage) to track all uploaded files in your application. Each record contains:
| Field | Description |
|---|---|
id | Unique UUID for the file. |
foreign_key | The id of the entity this file belongs to (e.g. user id, post id). Type follows the global Polymorphic.type config (default integer) — see Foreign key column types. |
model | The model name (e.g. Users, Posts). |
collection | The collection / type of file (e.g. Avatar, Cover, Gallery). |
filename | Original filename. |
filesize | Size in bytes. |
mime_type | File MIME type. |
extension | File extension. |
path | Storage path. |
adapter | Storage adapter name (e.g. Local, S3). |
variants | JSON array of image variant information (for images). |
metadata | JSON array for additional metadata. |
Always load the table plugin prefixed
Use fetchTable('FileStorage.FileStorage'), never the bare fetchTable('FileStorage').
The unprefixed alias resolves in your application namespace. If you do not have an App\Model\Table\FileStorageTable, Cake hands you a generic Cake\ORM\Table that never ran the plugin's initialize(), so variants and metadata are typed as plain text: reads return the raw JSON string instead of an array, and writing an array fails with Cannot convert value Array of type array to string.
Assign arrays to variants and metadata, not JSON strings
Both columns are typed json, so Cake encodes them on write and decodes them on read. Passing an already encoded string (json_encode($variants)) stores it encoded twice, and the single decode on read then returns the JSON string rather than the array - getVariantUrl() and getVariantPath() silently return null for every variant. This matters for seeders, imports and migrations; the FileStorage behavior itself always assigns arrays.
Model vs collection
This distinction is important:
- Model — the table alias (e.g.
Users,Posts), from$this->table()->getAlias(). - Collection — a grouping within a model (e.g.
Avatar,Cover,Gallery).
For example, a Posts model might have a Cover collection for cover images, a Gallery collection for gallery images, and an Attachments collection for PDF attachments.
Setting up file storage
1. Install and load the plugin
See the Installation guide.
2. Configure the storage service
In your config/bootstrap.php or a dedicated config/storage.php:
<?php
use PhpCollective\Infrastructure\Storage\StorageAdapterFactory;
use PhpCollective\Infrastructure\Storage\StorageService;
use PhpCollective\Infrastructure\Storage\Factories\LocalFactory;
use PhpCollective\Infrastructure\Storage\FileStorage;
use PhpCollective\Infrastructure\Storage\PathBuilder\PathBuilder;
use PhpCollective\Infrastructure\Storage\Utility\FilenameSanitizer;
// Storage setup
$storageFactory = new StorageAdapterFactory();
$storageService = new StorageService($storageFactory);
// Add a Local storage adapter
$storageService->addAdapterConfig(
'Local',
LocalFactory::class,
[
'root' => WWW_ROOT . 'files' . DS,
],
);
// Configure the path builder
$pathBuilder = new PathBuilder([
'pathTemplate' => '{model}{ds}{collection}{ds}{randomPath}{ds}{strippedId}{ds}{filename}.{extension}',
'variantPathTemplate' => '{model}{ds}{collection}{ds}{randomPath}{ds}{strippedId}{ds}{filename}.{hashedVariant}.{extension}',
'randomPathLevels' => 1,
'sanitizer' => new FilenameSanitizer([
'urlSafe' => true,
'removeUriReservedChars' => true,
'maxLength' => 190,
]),
]);
// Create the file storage instance
$fileStorage = new FileStorage($storageService, $pathBuilder);
// Store in configuration for behavior usage
Configure::write('FileStorage.behaviorConfig', [
'fileStorage' => $fileStorage,
'fileProcessor' => null, // add an image processor if needed
'fileValidator' => null, // add a custom validator if needed
]);3. Use the right behavior for the right table
The FileStorage.FileStorage behavior processes the upload entity itself. It is attached to the plugin's FileStorage.FileStorage table automatically.
For uploads saved through an app table association, attach FileStorage.FileAssociation to your app table instead. This behavior fills the model, collection, and foreign_key fields on the associated file entity and then lets the plugin table process the upload.
$this->addBehavior('FileStorage.FileAssociation', [
'associations' => [
'CoverImages' => [
'collection' => 'Cover',
'replace' => true,
],
],
]);Do not add FileStorage.FileStorage directly to your UsersTable, PostsTable, or other app tables for associated uploads. It expects a top-level upload field on the entity it is saving, so it can stop the parent entity save before CakePHP gets to the associated file entity.
The fileField option
By default the upload entity behavior looks for a 'file' field in the uploaded file data, so associated form fields should be named *.file:
// Default: fileField => 'file'
echo $this->Form->control('avatar.file', ['type' => 'file']);To use a different field name, configure the plugin table behavior through FileStorage.behaviorConfig:
Configure::write('FileStorage.behaviorConfig', [
// ...
'fileField' => 'upload', // custom field name
]);echo $this->Form->control('avatar.upload', ['type' => 'file']);This is useful when integrating with existing forms or APIs that use different field naming conventions.
Adding file upload to your model
Create the association
In your table class (e.g. PostsTable.php):
public function initialize(array $config): void
{
parent::initialize($config);
// Single file association (hasOne)
$this->hasOne('CoverImages', [
'className' => 'FileStorage.FileStorage',
'foreignKey' => 'foreign_key',
'conditions' => [
'CoverImages.model' => 'Posts',
'CoverImages.collection' => 'Cover',
],
'dependent' => true,
'cascadeCallbacks' => true,
]);
// Multiple files association (hasMany)
$this->hasMany('GalleryImages', [
'className' => 'FileStorage.FileStorage',
'foreignKey' => 'foreign_key',
'conditions' => [
'GalleryImages.model' => 'Posts',
'GalleryImages.collection' => 'Gallery',
],
'dependent' => true,
'cascadeCallbacks' => true,
]);
$this->addBehavior('FileStorage.FileAssociation', [
'associations' => [
'CoverImages' => [
'collection' => 'Cover',
'replace' => true,
],
'GalleryImages' => [
'collection' => 'Gallery',
],
],
]);
}Make the entity fields accessible
In your entity (e.g. Post.php):
protected array $_accessible = [
'title' => true,
'body' => true,
'cover_image' => true, // hasOne association (singular property)
'gallery_images' => true, // hasMany association (plural property)
// … other fields
];Uploading files
Form template
// Single file upload (hasOne)
<?= $this->Form->create($post, ['type' => 'file']) ?>
<?= $this->Form->control('title') ?>
<?= $this->Form->control('cover_image.file', ['type' => 'file', 'label' => 'Cover Image']) ?>
<?= $this->Form->button(__('Submit')) ?>
<?= $this->Form->end() ?>
// Multiple file uploads (hasMany)
<?= $this->Form->create($post, ['type' => 'file']) ?>
<?= $this->Form->control('title') ?>
<?= $this->Form->control('gallery_images.0.file', ['type' => 'file', 'label' => 'Gallery Image 1']) ?>
<?= $this->Form->control('gallery_images.1.file', ['type' => 'file', 'label' => 'Gallery Image 2']) ?>
<?= $this->Form->button(__('Submit')) ?>
<?= $this->Form->end() ?>Field naming
- The field must be named
*.file— the behavior looks for this specific name. - For
hasOne, use the singular property name (e.g.cover_image.file). - For
hasMany, use the plural property name with an index (e.g.gallery_images.0.file).
Controller action
public function add()
{
$post = $this->Posts->newEmptyEntity();
if ($this->request->is('post')) {
$post = $this->Posts->patchEntity($post, $this->request->getData());
if ($this->Posts->save($post)) {
$this->Flash->success(__('The post has been saved.'));
return $this->redirect(['action' => 'index']);
}
$this->Flash->error(__('The post could not be saved.'));
}
$this->set(compact('post'));
}Retrieving and displaying files
Load files with the entity
$post = $this->Posts->get($id, contain: ['CoverImages', 'GalleryImages']);Display in a template
// hasOne — singular property
<?php if ($post->cover_image) { ?>
<img src="/files/<?= h($post->cover_image->path) ?>" alt="Cover">
<?php } ?>
// hasMany — plural property
<?php foreach ($post->gallery_images as $image) { ?>
<img src="/files/<?= h($image->path) ?>" alt="Gallery Image">
<?php } ?>For displaying image variants, prefer the Image helper — it handles variant lookup, fallbacks, and modern formats for you.
Deleting files
Files are automatically deleted when you delete the entity, thanks to the behavior's afterDelete callback:
// Deletes both the database record and the physical file
$this->Posts->delete($post);Delete a single file storage record
$this->fetchTable('FileStorage.FileStorage')->delete($coverImage);Bulk delete
Never use deleteAll()
deleteAll() does not trigger callbacks, so the physical files are left behind on disk. Use the behavior helper instead.
// Wrong — files won't be deleted from storage
$this->fetchTable('FileStorage.FileStorage')->deleteAll(['model' => 'Posts']);
// Right — use the behavior's helper method
$this->Posts->behaviors()->FileStorage->deleteAllFiles(['model' => 'Posts']);Custom storage adapters
You can use storage backends beyond the local filesystem.
Amazon S3 example
use PhpCollective\Infrastructure\Storage\Factories\AwsS3Factory;
$storageService->addAdapterConfig(
'S3',
AwsS3Factory::class,
[
'key' => 'YOUR_AWS_KEY',
'secret' => 'YOUR_AWS_SECRET',
'region' => 'us-east-1',
'bucket' => 'your-bucket-name',
],
);Then specify the adapter when saving files:
$post->cover_image->adapter = 'S3'; // hasOne — singular propertySee also
- Validation — validate uploads server-side.
- Image variants and versioning — automatic thumbnails and crops.
- Paths and URLs — build file paths and URLs anywhere.
- Troubleshooting — common pitfalls and fixes.