1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/lib/Doctrine/Search/Query.php

248 lines
7.6 KiB
PHP
Raw Normal View History

2007-07-13 01:50:31 +04:00
<?php
/*
* $Id: Hook.php 1939 2007-07-05 23:47:48Z zYne $
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>.
*/
/**
* Doctrine_Search_Query
*
* @package Doctrine
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision: 1939 $
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/
class Doctrine_Search_Query
{
2007-07-27 23:03:32 +04:00
const OPERATOR_OR = 0;
const OPERATOR_AND = 1;
2007-07-13 01:50:31 +04:00
/**
* @var Doctrine_Query $query the base query
*/
protected $_query;
/**
2007-07-27 02:57:36 +04:00
* @var Doctrine_Table $_table the index table
2007-07-13 01:50:31 +04:00
*/
2007-07-27 02:57:36 +04:00
protected $_table = array();
protected $_sql = '';
2007-08-02 02:53:33 +04:00
protected $_condition;
2007-07-13 01:50:31 +04:00
/**
2007-07-27 02:57:36 +04:00
* @param octrine_Table $_table the index table
2007-07-13 01:50:31 +04:00
*/
2007-07-27 02:57:36 +04:00
public function __construct($table)
2007-07-13 01:50:31 +04:00
{
2007-07-27 23:24:28 +04:00
if (is_string($table)) {
$table = Doctrine_Manager::table($table);
}
2007-07-27 02:57:36 +04:00
$this->_table = $table;
$this->_query = new Doctrine_Query();
2007-08-02 02:53:33 +04:00
$foreignId = current(array_diff($this->_table->getColumnNames(), array('keyword', 'field', 'position')));
$this->_condition = $foreignId . ' IN (SELECT ' . $foreignId . ' FROM ' . $this->_table->getTableName() . ' WHERE ';
2007-07-13 01:50:31 +04:00
}
/**
* getQuery
*
* @return Doctrine_Query returns the query object associated with this object
*/
public function getQuery()
{
return $this->_query;
}
public function search($text)
2007-07-27 02:57:36 +04:00
{
2007-07-27 23:24:28 +04:00
$text = strtolower(trim($text));
2007-07-27 02:57:36 +04:00
2007-08-02 02:53:33 +04:00
2007-08-01 23:37:28 +04:00
2007-07-27 03:44:09 +04:00
$weighted = false;
if (strpos($text, '^') === false) {
$select = 'SELECT COUNT(keyword) AS relevance, ' . $foreignId;
$from = 'FROM ' . $this->_table->getTableName();
} else {
// organize terms according weights
$weighted = true;
$select = 'SELECT SUM(sub_relevance) AS relevance, ' . $foreignId;
$from = 'FROM ' ;
}
2007-07-27 02:57:36 +04:00
2007-08-01 23:37:28 +04:00
$where = 'WHERE ';
$where .= $this->parseClause($text);
2007-07-27 03:10:04 +04:00
$groupby = 'GROUP BY ' . $foreignId;
$orderby = 'ORDER BY relevance';
2007-07-27 02:57:36 +04:00
$this->_sql = $select . ' ' . $from . ' ' . $where . ' ' . $groupby . ' ' . $orderby;
}
2007-07-27 23:03:32 +04:00
2007-08-02 02:53:33 +04:00
public function parseClause($originalClause, $addCondition = false)
{
$clause = Doctrine_Tokenizer::bracketTrim($originalClause);
$brackets = false;
2007-07-27 23:03:32 +04:00
2007-08-02 02:53:33 +04:00
if ($clause !== $originalClause) {
$brackets = true;
}
2007-07-27 23:03:32 +04:00
2007-08-02 02:53:33 +04:00
$foreignId = current(array_diff($this->_table->getColumnNames(), array('keyword', 'field', 'position')));
$terms = Doctrine_Tokenizer::sqlExplode($clause, ' OR ', '(', ')');
2007-07-27 23:03:32 +04:00
$ret = array();
2007-08-02 02:53:33 +04:00
if (count($terms) > 1) {
2007-07-27 23:03:32 +04:00
2007-08-02 02:53:33 +04:00
$leavesOnly = true;
foreach ($terms as $k => $term) {
if ($this->isExpression($term)) {
$ret[$k] = $this->parseClause($term);
$leavesOnly = false;
2007-08-01 23:37:28 +04:00
} else {
2007-08-02 02:53:33 +04:00
$ret[$k] = $this->parseTerm($term);
2007-07-27 23:03:32 +04:00
}
}
2007-08-02 02:53:33 +04:00
$return = implode(' OR ', $ret);
2007-07-27 23:03:32 +04:00
2007-08-02 02:53:33 +04:00
if ($leavesOnly) {
$return = $this->_condition . $return;
}
$brackets = false;
} else {
$terms = Doctrine_Tokenizer::sqlExplode($clause, ' ', '(', ')');
2007-07-27 23:24:28 +04:00
2007-08-02 02:53:33 +04:00
foreach ($terms as $k => $term) {
$term = trim($term);
if ($term === 'AND') {
continue;
2007-07-28 00:18:58 +04:00
}
2007-08-02 02:53:33 +04:00
if ($this->isExpression($term)) {
$ret[$k] = $this->parseClause($term, true);
2007-07-28 00:18:58 +04:00
} else {
2007-08-02 02:53:33 +04:00
$ret[$k] = $this->_condition . $this->parseTerm($term);
2007-07-27 23:24:28 +04:00
}
2007-08-02 02:53:33 +04:00
$ret[$k] .= ')';
}
$return = implode(' AND ', $ret);
}
if ($brackets) {
return '(' . $return . ')';
2007-07-27 23:03:32 +04:00
} else {
2007-08-02 02:53:33 +04:00
return $return;
}
2007-07-27 23:03:32 +04:00
2007-08-02 02:53:33 +04:00
/**
if (strpos($term, '(') === false) {
if (substr($term, 0, 1) === '-') {
$operator = 'NOT IN';
$term = substr($term, 1);
} else {
$operator = 'IN';
}
$parsed = $foreignId . ' ' . $operator . ' (SELECT ' . $foreignId . ' FROM ' . $this->_table->getTableName() . ' WHERE ' . $this->parseClause($term) . ')';
} else {
$parsed = $this->parseClause($term);
}
*/
}
public function isExpression($term)
{
if (strpos($term, '(') !== false) {
return true;
} else {
$terms = Doctrine_Tokenizer::quoteExplode($term);
return (count($terms) > 1);
2007-07-27 23:24:28 +04:00
}
}
public function parseTerms(array $terms)
{
2007-07-28 00:18:58 +04:00
$foreignId = current(array_diff($this->_table->getColumnNames(), array('keyword', 'field', 'position')));
2007-07-27 23:24:28 +04:00
if (count($terms) > 1) {
$ret = array();
foreach ($terms as $term) {
2007-08-02 02:53:33 +04:00
if (strpos($term, '(') === false) {
$term = $this->parseClause($term);
2007-07-28 00:18:58 +04:00
2007-08-02 02:53:33 +04:00
$ret[] = $foreignId . ' IN (SELECT ' . $foreignId . ' FROM ' . $this->_table->getTableName() . ' WHERE ' . $term . ')';
}
2007-08-01 23:37:28 +04:00
}
2007-08-02 02:53:33 +04:00
$parsed = implode(' AND ', $ret);
2007-07-27 23:24:28 +04:00
2007-07-28 00:18:58 +04:00
return $parsed;
2007-07-27 23:24:28 +04:00
} else {
$ret = $this->parseTerm($terms[0]);
return $ret[0];
2007-07-27 23:03:32 +04:00
}
}
2007-08-02 02:53:33 +04:00
public function parseExpression($expr)
{
$expr = Doctrine_Tokenizer::bracketTrim($expr);
}
2007-07-27 03:10:04 +04:00
public function parseTerm($term)
{
2007-08-01 23:37:28 +04:00
$negation = false;
2007-07-27 03:10:04 +04:00
if (strpos($term, "'") === false) {
2007-07-27 23:03:32 +04:00
$where = 'keyword = ?';
2007-07-27 03:10:04 +04:00
$params = array($term);
} else {
$term = trim($term, "' ");
2007-07-27 23:03:32 +04:00
$where = 'keyword = ?';
2007-07-27 03:10:04 +04:00
$terms = Doctrine_Tokenizer::quoteExplode($term);
$params = $terms;
foreach ($terms as $k => $word) {
if ($k === 0) {
continue;
}
$where .= ' AND (position + ' . $k . ') = (SELECT position FROM ' . $this->_table->getTableName() . ' WHERE keyword = ?)';
}
2007-08-01 23:37:28 +04:00
}
2007-08-02 02:53:33 +04:00
return $where;
2007-07-27 03:10:04 +04:00
}
2007-07-13 01:50:31 +04:00
2007-07-27 02:57:36 +04:00
public function getSql()
{
return $this->_sql;
}
2007-07-13 01:50:31 +04:00
public function execute()
{
$resultSet = $this->_query->execute();
return $resultSet;
}
}