heimrichhannot / contao-filename-sanitizer-bundle
This bundle offers functionality for sanitizing filenames, i.e. replacing unwanted characters like whitespaces, non-ascii characters, ... (e.g. while uploading them to the CMS).
Installs: 6 760
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 8
Forks: 0
Open Issues: 3
Type:contao-bundle
Requires
- php: ^7.4||^8.0
- contao/core-bundle: ^4.9
- heimrichhannot/contao-multi-column-editor-bundle: ^2.13
- symfony/config: ^4.4||^5.0
- symfony/console: ^4.4||^5.0
- symfony/event-dispatcher: ^4.4||^5.0
- symfony/http-kernel: ^4.4||^5.0
Requires (Dev)
- contao/manager-plugin: ^2.0
- contao/test-case: 1.1.*
- friendsofphp/php-cs-fixer: ^2.2
- php-http/guzzle6-adapter: ^1.1
- php-http/message-factory: ^1.0.2
- phpunit/php-token-stream: ^1.4||^2.0||^3.0
- phpunit/phpunit: >=6.0 <6.5
- phpunit/phpunit-mock-objects: ^4.0||^5.0
- satooshi/php-coveralls: ^2.0
- symfony/phpunit-bridge: ^3.2
README
This bundle offers functionality for sanitizing filenames, i.e. replacing unwanted characters like whitespaces, non-ascii characters, ... (e.g. while uploading them to the CMS).
Features
- sanitize filenames while uploading files using the Contao file manager
- sanitize filenames while saving a given file using the Contao file manager
- configurable sanitizing rules:
- valid alphabets (the characters which are valid in the end -> "whitelist")
- trimming
- replacing of repeating (consecutive) hyphens or underscores
- service is also available for various other use cases besides file upload
- define a set of 1:1 character replacements (useful for German umlauts, i.e. รค => ae)
- use the
SanitizeCommand
in order to sanitize the filenames of files/folders already in the system and automatically create htaccess rewrite rules in order to keep deep links working
Default sanitizing rules after installation of this bundle
Configuration in Contao's global settings
Installation
Install via composer: composer require heimrichhannot/contao-filename-sanitizer-bundle
and update your database.
Configuration
You can configure the sanitizing rules in the global Contao settings under "file names".
Important notes
When is the sanitizing done exactly?
There are different situations where the filename sanitizing (which affects files and folders) takes place:
- A new file is uploaded by using Contao's file manager (files uploaded by FTP are of course not covered)
- An already existing file is saved by using Contao's file manager.
- An already existing folder is saved by using Contao's file manager. Files inside the folder are NOT sanitized automatically!
- By using the command
huh_filename_sanitizer:sanitize
. See below for more details.
What about already existing files and folders and the links to these?
IMPORTANT: The sanitizing rules are applied when saving a file or folder already existing.
The file or folder is linked in the system by binary UUID
This is the case if you have used fileTree
widgets (file pickers) in news or content elements for example. Same applies if you have used inserttags like {{file::some-hash-uuid}}
.
In this case the links will be working even after the sanitizing has been done because the link is done by an immutable binary UUID stored in the database.
The file or folder is linked in the system by a hardcoded path
Files and folders already present in the system
Caution: Files not linked by UUIDs are DEAD after filename sanitizing has been used.
You'll have to create htaccess rules to redirect the old paths to the new ones in this case.
The file or folder if linked from outside of the system
In this case it's of course always a hardcoded path. You'll have to create htaccess rules to redirect the old paths to the new ones in this case.
Commands
Sanitize Command
This command is designed for sanitizing existing files as a batch processing. Please use it with caution!
Features:
- process files or folders (one or more by passing a pipe ("|") separated list of IDs or paths)
- run as dry-run to see what would have been done if the command is executed
- generate a set of htaccess rules to redirect the old paths to the new ones (pass in a
domain
)
Usage:
vendor/bin/contao-console huh_filename_sanitizer:sanitize [options]
Options:
--dry-run[=DRY-RUN] See what the command would do [default: false]
--ids[=IDS] Pass in one or a comma separated list of IDs (tl_files.id); example: 1,2,3
--paths[=PATHS] Pass in one or a *pipe* separated list of paths (relative to the Contao root directory); example: files|files/some-folder|files/Hello, John
-R, --recursive[=RECURSIVE] Also process files/folders inside folders [default: false]
--domain[=DOMAIN] The domain for the htaccess rewrite rules