. */ /** * Doctrine_Search * * @author Konsta Vesterinen * @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 { protected $_options = array('generateFiles' => true, 'className' => '%CLASS%Index'); 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(); } } public function getOption($option) { if (isset($this->_options[$option])) { return $this->_options[$option]; } throw new Doctrine_Search_Exception('Unknown option ' . $option); } public function analyze($text) { return $this->_options['analyzer']->analyze($text); } public function setOption($option, $value) { $this->_options[$option] = $value; return $this; } /** * updateIndex * updates the index * * @param Doctrine_Record $record * @return integer */ 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(); } } } public function buildDefinition(Doctrine_Table $table) { $name = $table->getComponentName(); $className = $this->getOption('className'); if (class_exists($className)) { return false; } $columns = array('keyword' => array('type' => 'string', 'length' => 200, 'notnull' => true, 'primary' => true, ), 'field' => array('type' => 'string', 'length' => 50, 'notnull' => true, 'primary' => true), 'position' => array('type' => 'integer', 'length' => 8, 'primary' => true, )); $id = $table->getIdentifier(); $options = array('className' => $className); $fk = array(); foreach ((array) $id as $column) { $def = $table->getDefinitionOf($column); unset($def['autoincrement']); unset($def['sequence']); unset($def['primary']); $col = strtolower(Doctrine::tableize($name) . '_' . $column); $def['primary'] = true; $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); if ( ! $this->_options['generateFiles']) { eval($def); } return true; } }