Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 5
CRAP
0.00% covered (danger)
0.00%
0 / 1
Neo4jEscapeDriver
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 5
30
0.00% covered (danger)
0.00%
0 / 1
 dbCommand
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 escape
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 random
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 like
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 notLike
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3/**
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; under version 2
7 * of the License (non-upgradable).
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 *
18 * Copyright (c) 2023 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT);
19 */
20
21namespace oat\generis\model\kernel\persistence\starsql\search;
22
23use oat\search\base\Query\EscaperAbstract;
24use WikibaseSolutions\CypherDSL\Traits\EscapeTrait;
25
26class Neo4jEscapeDriver extends EscaperAbstract
27{
28    use EscapeTrait;
29
30    /**
31    * use to quote string value
32    * @var string
33    */
34    protected $escapeStringChar = "'";
35    /**
36     * use to quote database system reserved name
37     * @var string
38     */
39    protected $escapeReserved   = '`';
40    /**
41     * format Database instructions
42     * @param string $stringValue
43     * @return string
44     */
45    public function dbCommand($stringValue)
46    {
47        return strtoupper($stringValue);
48    }
49    /**
50     * escape string value
51     * @param string $stringValue
52     * @return string
53     */
54    public function escape($stringValue)
55    {
56        return self::escape($stringValue);
57    }
58
59    public function random()
60    {
61        return 'RAND()';
62    }
63
64    public function like()
65    {
66        return '~=';
67    }
68
69    public function notLike()
70    {
71        return 'NOT ' . $this->like();
72    }
73}