summaryrefslogtreecommitdiff
path: root/vendor/ruflin/elastica/lib/Elastica/Filter/Regexp.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/ruflin/elastica/lib/Elastica/Filter/Regexp.php')
-rw-r--r--vendor/ruflin/elastica/lib/Elastica/Filter/Regexp.php80
1 files changed, 80 insertions, 0 deletions
diff --git a/vendor/ruflin/elastica/lib/Elastica/Filter/Regexp.php b/vendor/ruflin/elastica/lib/Elastica/Filter/Regexp.php
new file mode 100644
index 00000000..33c47cfd
--- /dev/null
+++ b/vendor/ruflin/elastica/lib/Elastica/Filter/Regexp.php
@@ -0,0 +1,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();
+ }
+}