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
|
|
|
|
*
|
|
|
|
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
|
|
|
|
* @package Doctrine
|
|
|
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
|
|
|
* @version $Revision$
|
|
|
|
* @category Object Relational Mapping
|
|
|
|
* @link www.phpdoctrine.com
|
|
|
|
* @since 1.0
|
|
|
|
*/
|
|
|
|
class Doctrine_Search
|
|
|
|
{
|
2007-07-11 17:20:39 +04:00
|
|
|
protected $_options = array('generateFiles' => true);
|
|
|
|
|
|
|
|
public function __construct(array $options)
|
|
|
|
{
|
|
|
|
$this->_options = array_merge($this->_options, $options);
|
2007-07-11 18:39:15 +04:00
|
|
|
|
|
|
|
if ( ! isset($this->_options['analyzer'])) {
|
|
|
|
$this->_options['analyzer'] = new Doctrine_Search_Analyzer_Standard();
|
|
|
|
}
|
2007-07-11 17:20:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getOption($option)
|
|
|
|
{
|
|
|
|
if (isset($this->_options[$option])) {
|
2007-07-11 18:39:15 +04:00
|
|
|
return $this->_options[$option];
|
2007-07-11 17:20:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2007-07-11 18:39:15 +04:00
|
|
|
public function analyze($text)
|
|
|
|
{
|
2007-07-12 02:03:47 +04:00
|
|
|
return $this->_options['analyzer']->analyze($text);
|
2007-07-11 18:39:15 +04:00
|
|
|
}
|
|
|
|
|
2007-07-11 17:20:39 +04:00
|
|
|
public function setOption($option, $value)
|
|
|
|
{
|
|
|
|
$this->_options[$option] = $value;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
2007-07-12 02:03:47 +04:00
|
|
|
public function updateIndex(Doctrine_Record $record)
|
|
|
|
{
|
|
|
|
$fields = $this->getOption('fields');
|
|
|
|
$class = $this->getOption('className');
|
|
|
|
$name = $record->getTable()->getComponentName();
|
|
|
|
|
|
|
|
foreach ($fields as $field) {
|
|
|
|
$data = $record->get($field);
|
|
|
|
|
|
|
|
$terms = $this->analyze($data);
|
|
|
|
|
|
|
|
foreach ($terms as $pos => $term) {
|
|
|
|
$index = new $class();
|
|
|
|
|
|
|
|
$index->keyword = $term;
|
|
|
|
$index->position = $pos;
|
|
|
|
$index->field = $field;
|
|
|
|
$index->$name = $record;
|
|
|
|
|
|
|
|
$index->save();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
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();
|
|
|
|
|
|
|
|
$className = $name . 'Index';
|
|
|
|
|
|
|
|
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,
|
|
|
|
'notnull' => true),
|
|
|
|
'field' => array('type' => 'string',
|
|
|
|
'length' => 50,
|
|
|
|
'notnull' => true),
|
|
|
|
'position' => array('type' => 'integer',
|
|
|
|
'length' => 8));
|
|
|
|
|
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-07-11 15:27:02 +04:00
|
|
|
|
|
|
|
|
|
|
|
$fk = array();
|
|
|
|
foreach ((array) $id as $column) {
|
2007-07-11 17:20:39 +04:00
|
|
|
$def = $table->getDefinitionOf($column);
|
2007-07-11 15:27:02 +04:00
|
|
|
|
|
|
|
unset($def['autoincrement']);
|
|
|
|
unset($def['sequence']);
|
|
|
|
unset($def['primary']);
|
|
|
|
|
|
|
|
$col = strtolower($name . '_' . $column);
|
|
|
|
|
|
|
|
$fk[$col] = $def;
|
|
|
|
}
|
|
|
|
|
|
|
|
$local = (count($fk) > 1) ? array_keys($fk) : key($fk);
|
|
|
|
|
|
|
|
$relations = array($name => array('local' => $local,
|
|
|
|
'foreign' => $id,
|
|
|
|
'onDelete' => 'CASCADE',
|
|
|
|
'onUpdate' => 'CASCADE'));
|
|
|
|
|
|
|
|
|
|
|
|
$columns += $fk;
|
|
|
|
|
|
|
|
$builder = new Doctrine_Import_Builder();
|
|
|
|
|
|
|
|
$def = $builder->buildDefinition($options, $columns, $relations);
|
|
|
|
|
2007-07-11 17:20:39 +04:00
|
|
|
if ( ! $this->_options['generateFiles']) {
|
|
|
|
eval($def);
|
|
|
|
}
|
2007-07-13 01:50:31 +04:00
|
|
|
return true;
|
2007-07-11 15:27:02 +04:00
|
|
|
}
|
2007-07-09 17:26:20 +04:00
|
|
|
}
|