0.1.x-dev / upload
The file upload extension for the Flarum forum with insane intelligence.
Fund package maintenance!
Website
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 96
Type:flarum-extension
Requires
- ext-json: *
- flarum/core: 0.1.0-beta.16 || 0.1.0-beta.17
- guzzlehttp/guzzle: ^6.0 || ^7.0
- ramsey/uuid: ^3.5.2 || ^4
- softcreatr/php-mime-detector: ^3.0
Requires (Dev)
- league/flysystem-aws-s3-v3: ^1.0
- overtrue/flysystem-qiniu: 1.0.4
Suggests
- league/flysystem-aws-s3-v3: Uploads to AWS S3 using API version 3.
- overtrue/flysystem-qiniu: Uploads to QiNiu using API.
Replaces
- dev-master
- 0.14.0
- 0.14.0-beta.1
- 0.14.0-beta
- 0.13.1
- 0.13.0
- 0.12.10
- 0.12.9
- 0.12.8
- 0.12.7
- 0.12.6
- 0.12.5
- 0.12.4
- 0.12.3
- 0.12.2
- 0.12.1
- 0.12.0
- 0.11.3
- 0.11.2
- 0.11.1
- 0.11
- 0.10.1
- 0.10.0
- 0.9.2
- 0.9.1
- 0.9.0
- 0.8.5
- 0.8.4
- 0.8.3
- 0.8.2
- 0.8.1
- 0.8.0
- 0.7.1
- 0.7.0
- 0.7.0-beta.2
- 0.7.0-beta.1
- 0.6.0
- 0.6.0-beta
- 0.5.7
- 0.5.6
- 0.5.5
- 0.5.4
- 0.5.3
- 0.5.2
- 0.5.1
- 0.5.0
- 0.4.13
- 0.4.12
- 0.4.11
- 0.4.10
- 0.4.9
- 0.4.8
- 0.4.7
- 0.4.6
- 0.4.5
- 0.4.4
- 0.4.3
- 0.4.2
- 0.4.1
- 0.4.0
- 0.3.8
- 0.3.7
- 0.3.6
- 0.3.5
- 0.3.4
- 0.3.3
- 0.3.2
- 0.3.1
- 0.3.0
- 0.2.1
- 0.2.0
- 0.1.3
- 0.1.2
- 0.1.1
- 0.1.0
- dev-dependabot/npm_and_yarn/js/minimist-1.2.8
- dev-dependabot/npm_and_yarn/js/json5-1.0.2
- dev-dependabot/npm_and_yarn/js/json5-and-babel-loader-and-webpack-2.2.3
- dev-dependabot/npm_and_yarn/js/decode-uri-component-0.2.2
- dev-dependabot/npm_and_yarn/js/loader-utils-1.4.2
- dev-dependabot/npm_and_yarn/js/minimatch-3.1.2
- dev-patch-1
- dev-dev/icon-change
- dev-beta13
- dev-dk/beta-14
This package is auto-updated.
Last update: 2024-11-08 08:54:50 UTC
README
An extension that handles file uploads intelligently for your forum.
Features
- For images:
- Auto watermarks.
- Auto resizing.
- Mime type to upload adapter mapping.
- Whitelisting mime types.
- Uploading on different storage services (local, imgur, AWS S3 for instance).
- Drag and drop uploads.
- Uploading multiple files at once (button and drag and drop both support this).
- Easily extendable, the extension heavily relies on Events.
- Extender interface to disable or force particular adapters (see below)
Installation
Install manually with composer:
composer require fof/upload
Updating
composer require fof/upload php flarum migrate php flarum cache:clear
Updating from Flagrow
This extension replaces Flagrow Upload.
To upgrade from the old extension to the new one:
-
Backup your data! You should backup the database and the uploaded files.
-
Make sure the latest version of Flagrow upload is installed and migrations have run:
composer require flagrow/upload
composer show flagrow/upload # You should see "versions: * 0.7.1" on the 4th line of output
php flarum migrate
-
Disable the Upload extension in the admin panel.
-
Run:
composer require fof/upload
Composer should let you know that flagrow/upload
has been automatically removed.
-
Enable the new extension in the admin panel.
-
Your existing configuration and uploads meta will be migrated to FoF Upload automatically.
-
The same file locations on the disk are used by FoF Upload, it means the files don't need to be moved.
Configuration
Enable the extension, a new tab will appear on the left hand side. This separate settings page allows you to further configure the extension.
Make sure you configure the upload permission on the permissions page as well.
Mimetype regular expression
Regular expressions allow you a lot of freedom, but they are also very difficult to understand. Here are some pointers, but feel free to ask for help on the official Flarum forums.
In case you want to allow all regular file types including video, music, compressed files and images, use this:
(video\/(3gpp|mp4|mpeg|quicktime|webm))|(audio\/(aiff|midi|mpeg|mp4))|(image\/(gif|jpeg|png))|(application\/(x-(7z|rar|zip)-compressed|zip|arj|x-(bzip2|gzip|lha|stuffit|tar)|pdf))
A mimetype consists of a primary and secondary type. The primary type can be image
, video
and application
for instance.
The secondary is like a more detailed specification, eg png
, pdf
etc. These two are divided by a /
, in regex you have to escape this character by using: \/
.
Disable or Force a particular adapter
In some circumstances, you may wish to either disable an adapter, or force the use of one. This is set in your root extend.php
file.
For example, you may disable imgur
(new FoF\Upload\Extend\Adapters())
->disable('imgur'),
Chaining of multiple commands is also possible:
(new FoF\Upload\Extend\Adapters())
->disable('imgur')
->disable('aws-s3'),
You may also force an adapter:
(new FoF\Upload\Extend\Adapters())
->force('imgur'),
Adapter names currently available:
local
imgur
qiniu
aws-s3
FAQ
- AWS S3: read the AWS S3 configuration page.
- Adding Templates: read the Custom Templates wiki page.
Links
An extension by FriendsOfFlarum