1 |
<?php
|
2 |
/*
|
3 |
* $Id$
|
4 |
*
|
5 |
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
6 |
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
7 |
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
8 |
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
9 |
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
10 |
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
11 |
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
12 |
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
13 |
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
14 |
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
15 |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
16 |
*
|
17 |
* This software consists of voluntary contributions made by many individuals
|
18 |
* and is licensed under the LGPL. For more information, see
|
19 |
* <http://www.phpdoctrine.org>.
|
20 |
*/
|
21 |
|
22 |
/**
|
23 |
* Doctrine_Search
|
24 |
*
|
25 |
* @package Doctrine
|
26 |
* @subpackage Search
|
27 |
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
|
28 |
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
29 |
* @version $Revision$
|
30 |
* @link www.phpdoctrine.org
|
31 |
* @since 1.0
|
32 |
*/
|
33 |
class Doctrine_Search_File extends Doctrine_Search
|
34 |
{
|
35 |
public function __construct(array $options = array())
|
36 |
{
|
37 |
parent::__construct($options);
|
38 |
|
39 |
if ( ! isset($this->_options['resource'])) {
|
40 |
$table = new Doctrine_Table('File', Doctrine_Manager::connection());
|
41 |
|
42 |
$table->setColumn('url', 'string', 255, array('primary' => true));
|
43 |
|
44 |
$this->_options['resource'] = $table;
|
45 |
}
|
46 |
|
47 |
if (empty($this->_options['fields'])) {
|
48 |
$this->_options['fields'] = array('url', 'content');
|
49 |
}
|
50 |
|
51 |
$this->buildDefinition();
|
52 |
}
|
53 |
|
54 |
public function indexDirectory($dir)
|
55 |
{
|
56 |
$it = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($dir),
|
57 |
RecursiveIteratorIterator::LEAVES_ONLY);
|
58 |
|
59 |
foreach ($it as $file) {
|
60 |
if (strpos($file, DIRECTORY_SEPARATOR . '.svn') !== false) {
|
61 |
continue;
|
62 |
}
|
63 |
|
64 |
$this->updateIndex(array('url' => $file->getPathName(),
|
65 |
'content' => file_get_contents($file)));
|
66 |
}
|
67 |
}
|
68 |
}
|