Content validation for jQuery File Uploader
Content validation is a common case. You want to allow users to only upload files of certain sizes, types, image dimensions, etc. That’s where File Validation comes in. It’s carried out via validators.
Validator is a JavaScript function that receives a fileInfo
object for each
uploaded file and throws an exception if that file does not meet validation
requirements.
Simple File Size Check
The simplest validator, which checks file sizes, can look like this:
Wrapping Validators in Functions
It is better to wrap validators in a function that receives a constant, like a file size threshold. Such validators can then be reused by different uploading widgets:
Validation Based on Data Attributes of Input Elements
Validation can also be implemented based on data attributes of input elements.
For example, if your uploading widget has the data-max-size
option enabled, we can add
the maxFileSize
validator in the following manner:
Common Validators
Here are some common validation cases for you to consider,
File Size
The example below shows how to add validation for both min and max file sizes.
A validator is automatically added to each uploading widget with data-min-size
and
data-max-size
custom attributes.
File Type
fileTypeLimit
is another validator that can be added to uploading widgets with the
data-file-types
custom attribute whose value is a space-separated list of
allowed files extensions. data-file-types
can be combined with the
data-input-accept-types
attribute that holds accepted MIME types: audio/mpeg
in the example below.
Image Dimensions
For images, you can define the maxDimensions
validator that will be added to uploading widgets with either data-max-width
or data-max-height
custom attributes.
Please note, maxDimensions
only checks image dimensions even though it accepts
any file type. You can combine it with the data-images-only
attribute to change
this behavior.
Image Orientation
This validator denies landscape images with the data-portrait-only="true"
attribute and portrait images with the data-landscape-only="true"
attribute.
There is no point in adding both of those attributes to the same uploading widget.
Validators as uploading widget options
You can also moderate content via Uploading Widget options. Such options are called jQuery validators. Here are the most common ones:
- Allow images only.
- Allow certain input accept types.
- Set uploading widget preferred MIME types.