summaryrefslogtreecommitdiff
path: root/vendor/ruflin/elastica/lib/Elastica/Filter/Regexp.php
blob: 33c47cfda26d9cd416fba0ec4e7fa2bbe0bd9f5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?php

namespace Elastica\Filter;

/**
 * Regexp filter
 *
 * @category Xodoa
 * @package Elastica
 * @author Timothy Lamb <trash80@gmail.com>
 * @link http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/query-dsl-regexp-filter.html
 */
class Regexp extends AbstractFilter
{
    /**
     * Holds the name of the field for the regular expression.
     *
     * @var string
     */
    protected $_field = '';

    /**
     * Holds the regexp string.
     *
     * @var string
     */
    protected $_regexp = '';

    /**
     * Create Regexp object
     *
     * @param  string $field    Field name
     * @param  string $regexp   Regular expression
     * @throws \Elastica\Exception\InvalidException
     */
    public function __construct($field = '', $regexp = '')
    {
        $this->setField($field);
        $this->setRegexp($regexp);
    }

    /**
     * Sets the name of the regexp field.
     *
     * @param  string                       $field Field name
     * @return \Elastica\Filter\Regexp
     */
    public function setField($field)
    {
        $this->_field = $field;

        return $this;
    }

    /**
     * Sets the regular expression query string.
     *
     * @param  string                       $regexp Regular expression
     * @return \Elastica\Filter\Regexp
     */
    public function setRegexp($regexp)
    {
        $this->_regexp = $regexp;

        return $this;
    }

    /**
     * Converts object to an array
     *
     * @see \Elastica\Filter\AbstractFilter::toArray()
     * @return array data array
     */
    public function toArray()
    {
        $this->setParam($this->_field, $this->_regexp);

        return parent::toArray();
    }
}