This bundle makes DMS/Filter available for use in your application for input filtering.
Option A) Use Composer.
composer require dms/dms-filter-bundle
Add this to your config/bundles.php
DMS\Bundle\FilterBundle\DMSFilterBundle::class => ['all' => true]
This bundle can now automatically filter your forms if it finds a annotated entity attached.
This is the default behaviour, if you want to disable it add this to your config.yml
dms_filter:
auto_filter_forms: false
To add attributes to your entity, import the namespace and add them like this:
<?php
namespace App\Entity;
//Import Attributes
use DMS\Filter\Rules as Filter;
class User
{
#[Filter\StripTags]
#[Filter\Trim]
#[Filter\StripNewlines]
public string $name;
#[Filter\StripTags]
#[Filter\Trim]
#[Filter\StripNewlines]
public string $email;
}
Use the dms.filter.inner.filter
service along with attributes in the Entity to filter data.
public function userAction(#[Autowire(service: 'dms.filter.inner.filter')] Filter $filter): Response
{
$user = new User();
$user->setName("My <b>name</b>");
$user->setEmail(" [email protected]");
//Get a Filter
$newUser = $filter->filterEntity($car);
return new Response(
$newUser->getModel()
);
}
This bundle can now automatically filter your forms if it finds a annotated entity attached. If enabled entities will be filtered before they are validated.
This Bundle automatically cascades filtering into all embedded forms that return valid entities. If you wish child
entities to be ignored, set the cascade_filter
option on the form to false.
class TaskType extends AbstractType
{
// ...
public function setDefaultOptions(OptionsResolverInterface $resolver)
{
$resolver->setDefaults(array(
'cascade_filter' => false,
));
}
// ...
}
If you need to filter content using a method in a service, you do not need to create your own Annotations, you can simply use the Service Filter, designed specifically for Symfony Services.
See below the usage example of the annotation, it takes 2 options: service
and method
.
<?php
namespace App\Entity;
//Import Atributes
use DMS\Filter\Rules as Filter;
//Import Symfony Rules
use DMS\Bundle\FilterBundle\Rule as SfFilter;
class User
{
#[Filter\StripTags]
#[SfFilter\Service(service: 'dms.sample', method: 'filterIt')]
public $name;
}
The filterIt
method can have any name, but it must take one paramter (the value) and return the filtered value.
This is compatible with Symfony 6.4 and above and PHP 8.2 and above
Given you have composer, cloned the project repository and have a terminal open on it:
composer.phar install --prefer-source --dev
vendor/bin/phpunit
vendor/bin/phpcs
The tests should be passing and you are ready to make contributions.