|
| 1 | +<?php |
| 2 | +/** |
| 3 | + * Copyright 2011 Bas de Nooijer. All rights reserved. |
| 4 | + * |
| 5 | + * Redistribution and use in source and binary forms, with or without |
| 6 | + * modification, are permitted provided that the following conditions are met: |
| 7 | + * |
| 8 | + * 1. Redistributions of source code must retain the above copyright notice, |
| 9 | + * this list of conditions and the following disclaimer. |
| 10 | + * |
| 11 | + * 2. Redistributions in binary form must reproduce the above copyright notice, |
| 12 | + * this listof conditions and the following disclaimer in the documentation |
| 13 | + * and/or other materials provided with the distribution. |
| 14 | + * |
| 15 | + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS IS" |
| 16 | + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 17 | + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 18 | + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
| 19 | + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 20 | + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 21 | + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 22 | + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 23 | + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 24 | + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 25 | + * POSSIBILITY OF SUCH DAMAGE. |
| 26 | + * |
| 27 | + * The views and conclusions contained in the software and documentation are |
| 28 | + * those of the authors and should not be interpreted as representing official |
| 29 | + * policies, either expressed or implied, of the copyright holder. |
| 30 | + * |
| 31 | + * @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl> |
| 32 | + * @license http://github.com/basdenooijer/solarium/raw/master/COPYING |
| 33 | + * |
| 34 | + * @link http://www.solarium-project.org/ |
| 35 | + */ |
| 36 | + |
| 37 | +/** |
| 38 | + * @namespace |
| 39 | + */ |
| 40 | + |
| 41 | +namespace Solarium\QueryType\Select\Query\Component; |
| 42 | + |
| 43 | +use Solarium\Core\Configurable; |
| 44 | +use Solarium\Core\Query\Helper; |
| 45 | + |
| 46 | +/** |
| 47 | + * Filterquery. |
| 48 | + * |
| 49 | + * @link http://wiki.apache.org/solr/CommonQueryParameters#fq |
| 50 | + */ |
| 51 | +class BoostQuery extends Configurable |
| 52 | +{ |
| 53 | + /** |
| 54 | + * Query. |
| 55 | + * |
| 56 | + * @var string |
| 57 | + */ |
| 58 | + protected $query; |
| 59 | + |
| 60 | + /** |
| 61 | + * Get key value. |
| 62 | + * |
| 63 | + * @return string |
| 64 | + */ |
| 65 | + public function getKey() |
| 66 | + { |
| 67 | + return $this->getOption('key'); |
| 68 | + } |
| 69 | + |
| 70 | + /** |
| 71 | + * Set key value. |
| 72 | + * |
| 73 | + * @param string $value |
| 74 | + * |
| 75 | + * @return self Provides fluent interface |
| 76 | + */ |
| 77 | + public function setKey($value) |
| 78 | + { |
| 79 | + return $this->setOption('key', $value); |
| 80 | + } |
| 81 | + |
| 82 | + /** |
| 83 | + * Set the query string. |
| 84 | + * |
| 85 | + * This overwrites the current value |
| 86 | + * |
| 87 | + * @param string $query |
| 88 | + * @param array $bind Bind values for placeholders in the query string |
| 89 | + * |
| 90 | + * @return self Provides fluent interface |
| 91 | + */ |
| 92 | + public function setQuery($query, $bind = null) |
| 93 | + { |
| 94 | + if (!is_null($bind)) { |
| 95 | + $helper = new Helper(); |
| 96 | + $query = $helper->assemble($query, $bind); |
| 97 | + } |
| 98 | + |
| 99 | + $this->query = trim($query); |
| 100 | + |
| 101 | + return $this; |
| 102 | + } |
| 103 | + |
| 104 | + /** |
| 105 | + * Get the query string. |
| 106 | + * |
| 107 | + * @return string |
| 108 | + */ |
| 109 | + public function getQuery() |
| 110 | + { |
| 111 | + return $this->query; |
| 112 | + } |
| 113 | + |
| 114 | + /** |
| 115 | + * Initialize options. |
| 116 | + */ |
| 117 | + protected function init() |
| 118 | + { |
| 119 | + foreach ($this->options as $name => $value) { |
| 120 | + switch ($name) { |
| 121 | + case 'key': |
| 122 | + $this->setKey($value); |
| 123 | + break; |
| 124 | + case 'query': |
| 125 | + $this->setQuery($value); |
| 126 | + break; |
| 127 | + } |
| 128 | + } |
| 129 | + } |
| 130 | +} |
0 commit comments