1
0
mirror of synced 2024-12-14 15:16:04 +03:00
doctrine2/lib/Doctrine/Search.php

201 lines
6.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
{
protected $_options = array('generateFiles' => false,
2007-10-13 12:39:26 +04:00
'className' => '%CLASS%Index',
2007-10-13 12:55:06 +04:00
'generatePath' => false,
'batchUpdates' => false,
'pluginTable' => 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-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
*/
2007-07-12 02:03:47 +04:00
public function updateIndex(Doctrine_Record $record)
{
$fields = $this->getOption('fields');
2007-07-12 02:03:47 +04:00
$class = $this->getOption('className');
$name = $record->getTable()->getComponentName();
2007-10-13 12:55:06 +04:00
if ($this->_options['batchUpdates'] === true) {
$conn = $record->getTable()->getConnection();
$index = new $class();
foreach ($record->identifier() as $id => $value) {
$index->$id = $value;
}
$index->save();
2007-10-13 12:55:06 +04:00
} else {
foreach ($fields as $field) {
$data = $record->get($field);
$terms = $this->analyze($data);
2007-10-13 12:55:06 +04:00
foreach ($terms as $pos => $term) {
$index = new $class();
$index->keyword = $term;
$index->position = $pos;
$index->field = $field;
$index->$name = $record;
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-13 21:52:16 +04:00
public function processPending($limit = null, $offset = null)
{
$conn = $this->_options['ownerTable']->getConnection();
$tableName = $this->_options['ownerTable']->getTableName();
$component = $this->_options['ownerTable']->getComponentName();
$id = $this->_options['ownerTable']->getIdentifier();
$class = $this->getOption('className');
$fields = $this->getOption('fields');
2007-09-29 19:00:08 +04:00
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();
$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)';
$rows = $conn->fetchAll($query);
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;
foreach ((array) $this->_options['ownerTable']->getIdentifier() as $id) {
$index->$id = $row[$id];
}
$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-09-29 19:00:08 +04:00
* insertPending
2007-09-29 18:45:38 +04:00
*
* @return integer
*/
2007-09-29 19:00:08 +04:00
public function insertPending($indexTableName, $id, $conn = null)
2007-09-29 18:45:38 +04:00
{
if ( ! ($conn instanceof Doctrine_Connection)) {
$conn = Doctrine_Manager::connection();
}
2007-09-29 19:00:08 +04:00
$conn->insert($indexTableName, array('foreign_id' => $id));
2007-09-29 18:45:38 +04:00
}
2007-07-11 17:20:39 +04:00
public function buildDefinition(Doctrine_Table $table)
2007-07-11 15:27:02 +04:00
{
2007-07-13 01:50:31 +04:00
$name = $table->getComponentName();
2007-07-25 00:38:21 +04:00
$className = $this->getOption('className');
2007-07-13 01:50:31 +04:00
2007-10-13 21:52:16 +04:00
$this->_options['ownerTable'] = $table;
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
2007-07-11 17:20:39 +04:00
$id = $table->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
$fk = $this->generateForeignKeys($table);
$columns += $fk;
2007-07-11 15:27:02 +04:00
$relations = $this->generateRelation($table, $fk);
2007-07-11 15:27:02 +04:00
2007-10-13 13:01:03 +04:00
$this->generateClass($options, $columns, $relations);
2007-10-13 12:55:06 +04:00
$this->_options['pluginTable'] = $table->getConnection()->getTable($this->_options['className']);
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
}