fof / upload
The file upload extension for the Flarum forum with insane intelligence.
Fund package maintenance!
Website
Installs: 97 113
Dependents: 10
Suggesters: 1
Security: 1
Stars: 177
Watchers: 9
Forks: 96
Open Issues: 47
Type:flarum-extension
Requires
- php: ^8.0
- ext-json: *
- enshrined/svg-sanitize: ^0.15.4
- flarum/core: ^1.8.3
- guzzlehttp/guzzle: ^6.0 || ^7.0
- ramsey/uuid: ^3.5.2 || ^4
- softcreatr/php-mime-detector: ^3.0
Requires (Dev)
- flarum/gdpr: dev-main
- flarum/phpstan: *
- flarum/testing: ^1.0.0
- 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
- 1.5.7
- 1.5.6
- 1.5.5
- 1.5.4
- 1.5.3
- 1.5.2
- 1.5.1
- 1.5.0
- 1.5.0-beta.2
- 1.5.0-beta.1
- 1.4.7
- 1.4.6
- 1.4.5
- 1.4.4
- 1.4.3
- 1.4.2
- 1.4.1
- 1.4.0
- 1.3.5
- 1.3.4
- 1.3.3
- 1.3.3-beta.3
- 1.3.3-beta.2
- 1.3.3-beta
- 1.3.2
- 1.3.1
- 1.3.0
- 1.3.0-beta.1
- 1.2.3
- 1.2.2
- 1.2.1
- 1.2.0
- 1.1.0
- 1.0.7
- 1.0.6
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
- 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-im/gdpr
- dev-dependabot/npm_and_yarn/js/micromatch-4.0.8
- dev-dependabot/npm_and_yarn/js/webpack-5.94.0
- dev-cw/texteditor-reusability
- dev-dk/image-in-private-discussions
- dev-cw/mime-inspector
- dev-dk/edit-modal
- dev-dw/fix-upload-button-size
- dev-beta13
- dev-dk/beta-14
This package is auto-updated.
Last update: 2024-11-04 07:23:47 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:
composer require fof/upload:"*"
Updating
composer require fof/upload:"*"
php flarum migrate
php flarum cache:clear
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
Commands
MapFilesCommand
Using php flarum fof:upload
you have a powerful tool in your hands to map uploads to posts and
clean up unused files. To do so there are two steps to take into consideration:
- Mapping (
--map
) allows you to look through posts to identify whether which uploaded files have been used inside any posts, and store this information - Clean up (
--cleanup
,--cleanup-before=yyyy-mm-dd
) grants you to ability to remove files that have been uploaded before the given time and haven't been mapped to any (existing) posts.
The intent of this command stems from the original concept of understand what uploads are used where and to allow removal of unused, stale files. You can run this command manually or as a cronjob.
Example 1; only mapping files:
php flarum fof:upload --map
Example 2; map and clean up
php flarum fof:upload --map --cleanup --cleanup-before="a month ago"
Once you're happy with how the command operates, you can append the flag --force
, which removes the need to confirm
the action:
php flarum fof:upload --map --cleanup --cleanup-before="last year" --force
The following (to resume) will happen when this command is put into a recurring cronjob:
- based on the interval of the cronjob (daily, weekly or however)
- the command will go over all uploads to discover in which posts they have been used
- delete those files that have been uploaded "last year" that have not been found in posts
FAQ
- AWS S3: read the AWS S3 configuration page.
- Adding Templates: read the Custom Templates wiki page.
- Upgrading from flagrow/upload: read the wiki article.
Links
An extension by FriendsOfFlarum