1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-01 17:38:38 +00:00

Check if status code is OK

This commit is contained in:
Nicolas Lœuillet 2016-11-18 23:05:02 +01:00
parent e10e6ab34e
commit d215273c65
No known key found for this signature in database
GPG key ID: BDC1EFB5CA0145F2
2 changed files with 24 additions and 0 deletions

View file

@ -11,6 +11,7 @@ use Lexik\Bundle\FormFilterBundle\Filter\Form\Type\CheckboxFilterType;
use Lexik\Bundle\FormFilterBundle\Filter\Form\Type\ChoiceFilterType;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\OptionsResolver\OptionsResolver;
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorage;
@ -91,6 +92,18 @@ class EntryFilterType extends AbstractType
'label' => 'entry.filters.domain_label',
])
->add('httpStatus', TextFilterType::class, [
'apply_filter' => function (QueryInterface $filterQuery, $field, $values) {
$value = $values['value'];
if (false === array_key_exists($value, Response::$statusTexts)) {
return;
}
$paramName = sprintf('%s', str_replace('.', '_', $field));
$expression = $filterQuery->getExpr()->eq($field, ':'.$paramName);
$parameters = array($paramName => $value);
return $filterQuery->createCondition($expression, $parameters);
},
'label' => 'entry.filters.http_status_label',
])
->add('isArchived', CheckboxFilterType::class, [