From 39bfb030c993ede40359159416d6b775f9247818 Mon Sep 17 00:00:00 2001 From: zYne Date: Sun, 14 Oct 2007 20:32:48 +0000 Subject: [PATCH] --- lib/Doctrine/Search.php | 27 ++++++++++++++++++++++++--- 1 file changed, 24 insertions(+), 3 deletions(-) diff --git a/lib/Doctrine/Search.php b/lib/Doctrine/Search.php index 37ba6a4d7..e3ce0cca9 100644 --- a/lib/Doctrine/Search.php +++ b/lib/Doctrine/Search.php @@ -32,11 +32,16 @@ */ class Doctrine_Search extends Doctrine_Plugin { + const INDEX_FILES = 0; + + const INDEX_TABLE = 1; + protected $_options = array('generateFiles' => false, 'className' => '%CLASS%Index', 'generatePath' => false, 'batchUpdates' => false, - 'pluginTable' => false); + 'pluginTable' => false, + 'fields' => array()); public function __construct(array $options) @@ -97,6 +102,12 @@ class Doctrine_Search extends Doctrine_Plugin } } + public function readTableData($limit = null, $offset = null) + { + + + } + public function processPending($limit = null, $offset = null) { $conn = $this->_options['ownerTable']->getConnection(); @@ -115,9 +126,19 @@ class Doctrine_Search extends Doctrine_Plugin . ' IN (SELECT ' . $conn->quoteIdentifier($id) . ' FROM ' . $conn->quoteIdentifier($this->_options['pluginTable']->getTableName()) . ' WHERE keyword IS NULL)'; + + $query = $conn->modifyLimitQuery($query, $limit, $offset); $rows = $conn->fetchAll($query); + foreach ($rows as $row) { + $ids[] = $row[$id]; + } + + $conn->exec('DELETE FROM ' + . $conn->quoteIdentifier($this->_options['pluginTable']->getTableName()) + . ' WHERE ' . $conn->quoteIdentifier($id) . ' IN (' . implode(', ', $ids) . ')'); + foreach ($rows as $row) { foreach ($fields as $field) { $data = $row[$field]; @@ -131,8 +152,8 @@ class Doctrine_Search extends Doctrine_Plugin $index->position = $pos; $index->field = $field; - foreach ((array) $this->_options['ownerTable']->getIdentifier() as $id) { - $index->$id = $row[$id]; + foreach ((array) $id as $identifier) { + $index->$identifier = $row[$identifier]; } $index->save();