1
0
mirror of synced 2025-01-18 22:41:43 +03:00

161 lines
5.4 KiB
PHP
Raw Normal View History

2007-07-12 21:50:31 +00: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
{
/**
* @var Doctrine_Query $query the base query
*/
protected $_query;
/**
2007-07-26 22:57:36 +00:00
* @var Doctrine_Table $_table the index table
2007-07-12 21:50:31 +00:00
*/
2007-07-26 22:57:36 +00:00
protected $_table = array();
protected $_sql = '';
2007-07-12 21:50:31 +00:00
/**
2007-07-26 22:57:36 +00:00
* @param octrine_Table $_table the index table
2007-07-12 21:50:31 +00:00
*/
2007-07-26 22:57:36 +00:00
public function __construct($table)
2007-07-12 21:50:31 +00:00
{
2007-07-26 22:57:36 +00:00
if (is_string($table)) {
$table = Doctrine_Manager::table($table);
}
$this->_table = $table;
$this->_query = new Doctrine_Query();
2007-07-12 21:50:31 +00: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-26 22:57:36 +00:00
{
$text = strtolower(trim($text));
$terms = Doctrine_Tokenizer::quoteExplode($text);
$foreignId = current(array_diff($this->_table->getColumnNames(), array('keyword', 'field', 'position')));
$numTerms = count($terms);
switch ($numTerms) {
case 0:
return false;
break;
case 1:
// only one term found, use fast
$select = 'SELECT COUNT(keyword) AS relevance, ' . $foreignId;
$from = 'FROM ' . $this->_table->getTableName();
if (strpos($terms[0], "'") === false) {
$where = 'WHERE keyword = ?';
$params = array($terms[0]);
} else {
$terms[0] = trim($terms[0], "' ");
$where = 'WHERE keyword = ?';
$terms = Doctrine_Tokenizer::quoteExplode($terms[0]);
$params = $terms;
foreach ($terms as $k => $term) {
if ($k === 0) {
continue;
}
$where .= ' AND (position + ' . $k . ') = (SELECT position FROM ' . $this->_table->getTableName() . ' WHERE keyword = ?)';
}
}
$groupby = 'GROUP BY ' . $foreignId;
$orderby = 'ORDER BY relevance';
break;
default:
}
$this->_sql = $select . ' ' . $from . ' ' . $where . ' ' . $groupby . ' ' . $orderby;
}
public function search2($text)
2007-07-12 21:50:31 +00:00
{
$text = strtolower($text);
$terms = Doctrine_Tokenizer::quoteExplode($text);
2007-07-16 19:26:14 +00:00
$map = $this->_query->getRootDeclaration();
$rootAlias = $this->_query->getRootAlias();
$component = $map['table']->getComponentName() . 'Index';
$subAlias = 'i2';
$rel = $map['table']->getRelation($component);
$foreign = (array) $rel->getForeign();
foreach ((array) $rel->getLocal() as $k => $field) {
$joinCondition = $rootAlias . '.' . $field . ' = ' . $subAlias . '.' . $foreign[$k];
}
$this->_query->innerJoin($rootAlias . '.' . $component . ' ' . 'i');
2007-07-12 21:50:31 +00:00
foreach ($this->_aliases as $alias) {
2007-07-16 19:26:14 +00:00
$condition = array();
$subcondition = array();
2007-07-12 21:50:31 +00:00
foreach ($terms as $term) {
2007-07-16 19:26:14 +00:00
$condition[] = $alias . '.keyword = ?';
$subcondition[] = $subAlias . '.keyword = ?';
2007-07-12 21:50:31 +00:00
}
2007-07-16 19:26:14 +00:00
$this->_query->addSelect('(SELECT COUNT(' . $subAlias . '.position) FROM '
. $component . ' ' . $subAlias . ' WHERE '
. implode(' OR ', $subcondition) . ' AND ' . $joinCondition . ') relevancy');
$this->_query->addWhere(implode(' OR ', $condition), $terms);
2007-07-12 21:50:31 +00:00
}
}
2007-07-26 22:57:36 +00:00
public function getSql()
{
return $this->_sql;
}
2007-07-12 21:50:31 +00:00
public function execute()
{
$resultSet = $this->_query->execute();
return $resultSet;
}
}