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

161 lines
5.2 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
*
* @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-25 00:38:21 +04:00
protected $_options = array('generateFiles' => true,
'className' => '%CLASS%Index');
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 getOption($option)
{
if (isset($this->_options[$option])) {
return $this->_options[$option];
2007-07-11 17:20:39 +04:00
}
2007-07-25 00:38:21 +04:00
throw new Doctrine_Search_Exception('Unknown option ' . $option);
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-11 17:20:39 +04:00
public function setOption($option, $value)
{
$this->_options[$option] = $value;
return $this;
}
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();
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();
2007-07-25 00:38:21 +04:00
$className = $this->getOption('className');
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
'notnull' => true,
'primary' => true,
),
2007-07-11 15:27:02 +04:00
'field' => array('type' => 'string',
'length' => 50,
2007-07-18 00:59:09 +04:00
'notnull' => true,
'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-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']);
2007-07-27 02:57:36 +04:00
$col = strtolower(Doctrine::tableize($name) . '_' . $column);
2007-07-11 15:27:02 +04:00
2007-07-18 00:59:09 +04:00
$def['primary'] = true;
2007-07-11 15:27:02 +04:00
$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
}