Admin panel screenshot depicting a Media Collection with Upload enabled
Here are some common use cases of Uploads:
By simply enabling Upload functionality on a Collection, Payload will automatically transform your Collection into a robust file management / storage solution. The following modifications will be made:
filename
, mimeType
, and filesize
fields will be automatically added to your Collection. Optionally, if you pass imageSizes
to your Collection's Upload config, a sizes
array will also be added containing auto-resized image sizes and filenames.List
component to show a thumbnail for each upload within the List ViewEdit
view(s) to add a new set of corresponding Upload UI which will allow for file uploadcreate
, update
, and delete
Collection operations will be modified to support file upload, re-upload, and deletionEvery Payload Collection can opt-in to supporting Uploads by specifying the upload
property on the Collection's config to either true
or to an object containing upload
options.
Option | Description |
---|---|
staticURL * | The URL path to use to access your uploads. Relative path like /media will be served by payload. Full path like https://example.com/media needs to be served by another web server. |
staticDir * | The folder directory to use to store media in. Can be either an absolute path or relative to the directory that contains your config. |
adminThumbnail | Set the way that the Admin panel will display thumbnails for this Collection. More |
crop | Set to false to disable the cropping tool in the Admin panel. Crop is enabled by default. More |
disableLocalStorage | Completely disable uploading files to disk locally. More |
displayPreview | Enable displaying preview of the uploaded file in Upload fields related to this Collection. Can be locally overridden by displayPreview option in Upload field. More. |
externalFileHeaderFilter | Accepts existing headers and can filter/modify them. |
focalPoint | Set to false to disable the focal point selection tool in the Admin panel. The focal point selector is only available when imageSizes or resizeOptions are defined. More |
formatOptions | An object with format and options that are used with the Sharp image library to format the upload file. More |
handlers | Array of Express request handlers to execute before the built-in Payload static middleware executes. |
imageSizes | If specified, image uploads will be automatically resized in accordance to these image sizes. More |
mimeTypes | Restrict mimeTypes in the file picker. Array of valid mimetypes or mimetype wildcards More |
staticOptions | Set options for express.static to use while serving your static files. More |
resizeOptions | An object passed to the the Sharp image library to resize the uploaded file. More |
filesRequiredOnCreate | Mandate file data on creation, default is true. |
withMetadata | If specified, appends metadata to the output image file. Accepts a boolean or a function that receives metadata and req , returning a boolean. |
An asterisk denotes that a property above is required.
Example Upload collection:
Payload relies on the express-fileupload
package to manage file uploads in Express. In addition to the Upload options specifiable on a Collection by Collection basis, you can also control the express-fileupload
options by passing your base Payload config an upload
property containing an object supportive of all express-fileupload
properties which use Busboy
under the hood. Click here for more documentation about what you can control.
A common example of what you might want to customize within Payload-wide Upload options would be to increase the allowed fileSize
of uploads sent to Payload:
If you specify an array of imageSizes
to your upload
config, Payload will automatically crop and resize your uploads to fit each of the sizes specified by your config.
The Payload Admin panel will also automatically display all available files, including width, height, and filesize, for each of your uploaded files.
Behind the scenes, Payload relies on sharp
to perform its image resizing. You can specify additional options for sharp
to use while resizing your images.
All auto-resized images are exposed to be re-used in hooks and similar via an object that is bound to req.payloadUploadSizes
.
The object will have keys for each size generated, and each key will be set equal to a buffer containing the file data.
When an uploaded image is smaller than the defined image size, we have 3 options:
withoutEnlargement: undefined | false | true
1.undefined
[default]: uploading images with smaller width AND height than the image size will return null
2. false
: always enlarge images to the image size
3. true
: if the image is smaller than the image size, return the original image
This feature is only available for image file types.
Setting crop: false
and focalPoint: false
in your Upload config will be disable the respective selector in the Admin panel.
Image cropping occurs before any resizing, the resized images will therefore be generated from the cropped image (not the original image).
If no resizing options are specified (imageSizes
or resizeOptions
), the focal point selector will not be displayed.
If you are using a plugin to send your files off to a third-party file storage host or CDN, like Amazon S3 or similar, you may not want to store your files locally at all. You can prevent Payload from writing files to disk by specifying disableLocalStorage: true
on your collection's upload config.
You can specify how Payload retrieves admin thumbnails for your upload-enabled Collections. This property accepts two different configurations:
Example custom Admin thumbnail:
Specifying the mimeTypes
property can restrict what files are allowed from the user's file picker. This accepts an array of strings, which can be any valid mimetype or mimetype wildcards
Some example values are: image/*
, audio/*
, video/*
, image/png
, application/pdf
Example mimeTypes usage:
To upload a file, use your collection's create
endpoint. Send it all the data that your Collection requires, as well as a file
key containing the file that you'd like to upload.
Send your request as a multipart/form-data
request, using FormData
if possible.
Here is a walkthrough detailing how to upload files as multipart/form-data
using React.
All files that are uploaded to each Collection automatically support the read
Access Control function from the Collection itself. You can use this to control who should be allowed to see your uploads, and who should not.