aboutsummaryrefslogblamecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Operator/Doctrine/NotMatches.php
blob: 8e50f8d67cc98aea901505f531fd7bdcb550490f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                                      
                                                                                     




                                                
                                  





                                                                           
<?php

namespace Wallabag\CoreBundle\Operator\Doctrine;

/**
 * Provides a "notmatches" operator used for tagging rules.
 *
 * It asserts that a given pattern is not contained in a subject, in a
 * case-insensitive way.
 *
 * This operator will be used to compile tagging rules in DQL, usable
 * by Doctrine ORM.
 * It's registered in RulerZ using a service (wallabag.operator.doctrine.notmatches);
 */
class NotMatches
{
    public function __invoke($subject, $pattern)
    {
        if ("'" === $pattern[0]) {
            $pattern = sprintf("'%%%s%%'", substr($pattern, 1, -1));
        }

        return sprintf('UPPER(%s) NOT LIKE UPPER(%s)', $subject, $pattern);
    }
}