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

257 lines
8.8 KiB
PHP
Raw Normal View History

2007-07-09 17:26:20 +04:00
<?php
/*
* $Id$
*
* 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
*
* @package Doctrine
* @subpackage Search
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
2007-07-09 17:26:20 +04:00
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @version $Revision$
* @link www.phpdoctrine.com
* @since 1.0
*/
2007-10-13 13:01:03 +04:00
class Doctrine_Search extends Doctrine_Plugin
2007-07-09 17:26:20 +04:00
{
2007-10-15 00:32:48 +04:00
const INDEX_FILES = 0;
2007-10-15 02:11:48 +04:00
const INDEX_TABLES = 1;
2007-10-15 00:32:48 +04:00
protected $_options = array('generateFiles' => false,
2007-10-15 02:11:48 +04:00
'type' => self::INDEX_TABLES,
2007-10-13 12:39:26 +04:00
'className' => '%CLASS%Index',
2007-10-13 12:55:06 +04:00
'generatePath' => false,
2007-10-15 02:11:48 +04:00
'resource' => null,
2007-10-13 12:55:06 +04:00
'batchUpdates' => false,
2007-10-15 00:32:48 +04:00
'pluginTable' => false,
2007-10-15 02:11:48 +04:00
'fields' => array(),
'connection' => null);
protected $_built = false;
2007-07-18 00:59:09 +04:00
2007-07-11 17:20:39 +04:00
public function __construct(array $options)
{
$this->_options = array_merge($this->_options, $options);
if ( ! isset($this->_options['analyzer'])) {
$this->_options['analyzer'] = new Doctrine_Search_Analyzer_Standard();
}
2007-10-15 02:11:48 +04:00
if ( ! isset($this->_options['connection'])) {
$this->_options['connection'] = Doctrine_Manager::connection();
}
2007-07-11 17:20:39 +04:00
}
2007-10-17 02:10:49 +04:00
public function search($query)
{
$q = new Doctrine_Search_Query($this->_options['pluginTable']);
2007-10-18 01:17:01 +04:00
$q->query($query);
2007-10-17 02:10:49 +04:00
2007-10-18 01:17:01 +04:00
return $this->_options['connection']->fetchAll($q->getSql(), $q->getParams());;
2007-10-17 02:10:49 +04:00
}
2007-07-11 17:20:39 +04:00
public function analyze($text)
{
2007-07-12 02:03:47 +04:00
return $this->_options['analyzer']->analyze($text);
}
2007-07-25 00:38:21 +04:00
/**
* updateIndex
* updates the index
*
* @param Doctrine_Record $record
* @return integer
*/
public function updateIndex(array $data)
2007-07-12 02:03:47 +04:00
{
$this->buildDefinition();
$fields = $this->getOption('fields');
2007-07-12 02:03:47 +04:00
$class = $this->getOption('className');
$name = $this->getOption('resource')->getComponentName();
2007-10-18 23:37:50 +04:00
$conn = $this->getOption('resource')->getConnection();
$identifier = $this->_options['resource']->getIdentifier();
2007-10-19 00:39:37 +04:00
$q = Doctrine_Query::create()->delete()
->from($class);
foreach ((array) $identifier as $id) {
$q->addWhere($id . ' = ?', array($data[$id]));
}
$q->execute();
2007-07-12 02:03:47 +04:00
2007-10-13 12:55:06 +04:00
if ($this->_options['batchUpdates'] === true) {
$index = new $class();
2007-10-18 23:37:50 +04:00
foreach ((array) $this->_options['resource']->getIdentifier() as $id) {
$index->$id = $data[$id];
}
$index->save();
2007-10-13 12:55:06 +04:00
} else {
foreach ($fields as $field) {
$value = $data[$field];
$terms = $this->analyze($value);
2007-10-13 12:55:06 +04:00
foreach ($terms as $pos => $term) {
$index = new $class();
2007-10-13 12:55:06 +04:00
$index->keyword = $term;
$index->position = $pos;
$index->field = $field;
foreach ((array) $this->_options['resource']->getIdentifier() as $id) {
$index->$id = $data[$id];
}
2007-10-13 12:55:06 +04:00
$index->save();
}
2007-07-12 02:03:47 +04:00
}
}
}
2007-09-29 19:00:08 +04:00
2007-10-15 00:32:48 +04:00
public function readTableData($limit = null, $offset = null)
{
$this->buildDefinition();
2007-10-15 02:11:48 +04:00
$conn = $this->_options['resource']->getConnection();
$tableName = $this->_options['resource']->getTableName();
$id = $this->_options['resource']->getIdentifier();
2007-10-15 02:11:48 +04:00
$query = 'SELECT * FROM ' . $conn->quoteIdentifier($tableName)
. ' WHERE ' . $conn->quoteIdentifier($id)
. ' IN (SELECT ' . $conn->quoteIdentifier($id)
. ' FROM ' . $conn->quoteIdentifier($this->_options['pluginTable']->getTableName())
. ' WHERE keyword IS NULL)';
$query = $conn->modifyLimitQuery($query, $limit, $offset);
return $conn->fetchAll($query);
2007-10-15 00:32:48 +04:00
}
2007-10-15 00:32:48 +04:00
2007-10-18 01:17:01 +04:00
public function batchUpdateIndex($limit = null, $offset = null)
2007-10-13 21:52:16 +04:00
{
$this->buildDefinition();
$id = $this->_options['resource']->getIdentifier();
2007-10-15 02:11:48 +04:00
$class = $this->_options['className'];
$fields = $this->_options['fields'];
$conn = $this->_options['connection'];
2007-10-13 21:52:16 +04:00
try {
2007-09-29 19:00:08 +04:00
2007-10-13 21:52:16 +04:00
$conn->beginTransaction();
2007-10-15 02:11:48 +04:00
$rows = $this->readTableData($limit, $offset);
2007-10-15 00:32:48 +04:00
foreach ($rows as $row) {
$ids[] = $row[$id];
}
$conn->exec('DELETE FROM '
. $conn->quoteIdentifier($this->_options['pluginTable']->getTableName())
. ' WHERE ' . $conn->quoteIdentifier($id) . ' IN (' . implode(', ', $ids) . ')');
2007-10-13 21:52:16 +04:00
foreach ($rows as $row) {
foreach ($fields as $field) {
$data = $row[$field];
$terms = $this->analyze($data);
foreach ($terms as $pos => $term) {
$index = new $class();
$index->keyword = $term;
$index->position = $pos;
$index->field = $field;
2007-10-15 00:32:48 +04:00
foreach ((array) $id as $identifier) {
$index->$identifier = $row[$identifier];
2007-10-13 21:52:16 +04:00
}
$index->save();
}
2007-09-29 19:00:08 +04:00
}
}
2007-10-13 21:52:16 +04:00
$conn->commit();
} catch (Doctrine_Exception $e) {
$conn->rollback();
2007-09-29 19:00:08 +04:00
}
}
2007-09-29 18:45:38 +04:00
2007-10-15 02:11:48 +04:00
public function buildDefinition()
2007-07-11 15:27:02 +04:00
{
if ($this->_built) {
return true;
}
$this->_built = true;
$componentName = $this->_options['resource']->getComponentName();
// check for placeholders
if (strpos($this->_options['className'], '%') !== false) {
$this->_options['className'] = str_replace('%CLASS%', $componentName, $this->_options['className']);
}
2007-07-25 00:38:21 +04:00
$className = $this->getOption('className');
2007-10-13 21:52:16 +04:00
2007-07-13 01:50:31 +04:00
if (class_exists($className)) {
return false;
}
2007-07-09 17:26:20 +04:00
2007-07-11 15:27:02 +04:00
$columns = array('keyword' => array('type' => 'string',
'length' => 200,
2007-07-18 00:59:09 +04:00
'primary' => true,
),
2007-07-11 15:27:02 +04:00
'field' => array('type' => 'string',
'length' => 50,
2007-07-18 00:59:09 +04:00
'primary' => true),
2007-07-11 15:27:02 +04:00
'position' => array('type' => 'integer',
2007-07-18 00:59:09 +04:00
'length' => 8,
'primary' => true,
));
2007-07-11 15:27:02 +04:00
$id = $this->_options['resource']->getIdentifier();
2007-07-11 15:27:02 +04:00
2007-07-13 01:50:31 +04:00
$options = array('className' => $className);
2007-10-13 21:52:16 +04:00
2007-10-15 02:11:48 +04:00
$fk = $this->generateForeignKeys($this->_options['resource']);
$columns += $fk;
2007-07-11 15:27:02 +04:00
$relations = array();
// only generate relations for database based searches
if ( ! $this instanceof Doctrine_Search_File) {
$relations = $this->generateRelation($this->_options['resource'], $fk);
}
2007-07-11 15:27:02 +04:00
2007-10-13 13:01:03 +04:00
$this->generateClass($options, $columns, $relations);
2007-10-15 02:11:48 +04:00
$this->_options['pluginTable'] = $this->_options['connection']->getTable($this->_options['className']);
2007-10-13 12:55:06 +04:00
2007-07-13 01:50:31 +04:00
return true;
2007-07-11 15:27:02 +04:00
}
2007-10-13 12:39:26 +04:00
}