lucene.php
6.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
<?php
namespace OCA\Search_Lucene;
use \OC\Files\Filesystem;
use \OCP\User;
use \OCP\Util;
/**
* @author Jörn Dreyer <jfd@butonic.de>
*/
class Lucene extends \OC_Search_Provider {
/**
* classname which used for hooks handling
* used as signalclass in OC_Hooks::emit()
*/
const CLASSNAME = 'Lucene';
/**
* opens or creates the users lucene index
*
* stores the index in <datadirectory>/<user>/lucene_index
*
* @author Jörn Dreyer <jfd@butonic.de>
*
* @return Zend_Search_Lucene_Interface
*/
public static function openOrCreate($user = null) {
if ($user == null) {
$user = User::getUser();
}
try {
\Zend_Search_Lucene_Analysis_Analyzer::setDefault(
new \Zend_Search_Lucene_Analysis_Analyzer_Common_TextNum_CaseInsensitive()
); //let lucene search for numbers as well as words
// Create index
//$ocFilesystemView = OC_App::getStorage('search_lucene'); // encrypt the index on logout, decrypt on login
$indexUrl = \OC_User::getHome($user) . '/lucene_index';
if (file_exists($indexUrl)) {
$index = \Zend_Search_Lucene::open($indexUrl);
} else {
$index = \Zend_Search_Lucene::create($indexUrl);
//todo index all user files
}
} catch ( Exception $e ) {
Util::writeLog(
'search_lucene',
$e->getMessage().' Trace:\n'.$e->getTraceAsString(),
Util::ERROR
);
return null;
}
return $index;
}
/**
* optimizes the lucene index
*
*
* @author Jörn Dreyer <jfd@butonic.de>
*
* @param Zend_Search_Lucene_Interface $index an optional index
*
* @return void
*/
static public function optimizeIndex(
\Zend_Search_Lucene_Interface $index = null
) {
if ($index === null) {
$index = self::openOrCreate();
}
Util::writeLog(
'search_lucene',
'optimizing index ',
Util::DEBUG
);
$index->optimize();
}
/**
* upates a file in the lucene index
*
* 1. the file is deleted from the index
* 2. the file is readded to the index
* 3. the file is marked as index in the status table
*
* @author Jörn Dreyer <jfd@butonic.de>
*
* @param Zend_Search_Lucene_Document $doc the document to store for the path
* @param string $path path to the document to update
*
* @return void
*/
static public function updateFile(
\Zend_Search_Lucene_Document $doc,
$path = '',
$user = null,
\Zend_Search_Lucene_Interface $index = null
) {
if ($index === null) {
$index = self::openOrCreate($user);
}
// TODO profile perfomance for searching before adding to index
self::deleteFile($path, $user, $index);
Util::writeLog(
'search_lucene',
'adding ' . $path ,
Util::DEBUG
);
// Add document to the index
$index->addDocument($doc);
$index->commit();
}
/**
* removes a file frome the lucene index
*
* @author Jörn Dreyer <jfd@butonic.de>
*
* @param string $path path to the document to remove from the index
* @param Zend_Search_Lucene_Interface $index optional can be passed ro reuse an existing instance
*
* @return void
*/
static public function deleteFile(
$path,
$user = null,
\Zend_Search_Lucene_Interface $index = null
) {
if ( $path === '' ) {
//ignore the empty path element
return;
}
if (is_null($user)) {
$view = Filesystem::getView();
$user = \OCP\User::getUser();
} else {
$view = new \OC\Files\View('/' . $user . '/files');
}
if ( ! $view ) {
Util::writeLog(
'search_lucene',
'could not resolve filesystem view',
Util::WARN
);
return false;
}
if ($index === null) {
$index = self::openOrCreate($user);
}
$root= $view->getRoot();
$pk = md5($root.$path);
Util::writeLog(
'search_lucene',
'searching hits for pk:' . $pk,
Util::DEBUG
);
$hits = $index->find( 'pk:' . $pk ); //id would be internal to lucene
Util::writeLog(
'search_lucene',
'found ' . count($hits) . ' hits ',
Util::DEBUG
);
foreach ($hits as $hit) {
Util::writeLog(
'search_lucene',
'removing ' . $hit->id . ':' . $hit->path . ' from index',
Util::DEBUG
);
$index->delete($hit);
}
}
/**
* performs a search on the users index
*
* @author Jörn Dreyer <jfd@butonic.de>
*
* @param string $query lucene search query
* @return array of OC_Search_Result
*/
public function search($query){
$results=array();
if ( $query !== null ) {
// * query * kills performance for bigger indexes
// query * works ok
// query is still best
//FIXME emulates the old search but breaks all the nice lucene search query options
//$query = '*' . $query . '*';
//if (strpos($query, '*')===false) {
// $query = $query.='*'; // append query *, works ok
// TODO add end user guide for search terms ...
//}
try {
$index = self::openOrCreate();
//default is 3, 0 needed to keep current search behaviour
//Zend_Search_Lucene_Search_Query_Wildcard::setMinPrefixLength(0);
//$term = new Zend_Search_Lucene_Index_Term($query);
//$query = new Zend_Search_Lucene_Search_Query_Term($term);
$hits = $index->find($query);
//limit results. we cant show more than ~30 anyway. TODO use paging later
for ($i = 0; $i < 30 && $i < count($hits); $i++) {
$results[] = self::asOCSearchResult($hits[$i]);
}
} catch ( Exception $e ) {
Util::writeLog(
'search_lucene',
$e->getMessage().' Trace:\n'.$e->getTraceAsString(),
Util::ERROR
);
}
}
return $results;
}
/**
* converts a zend lucene search object to a OC_SearchResult
*
* Example:
*
* Text | Some Document.txt
* | /path/to/file, 148kb, Score: 0.55
*
* @author Jörn Dreyer <jfd@butonic.de>
*
* @param Zend_Search_Lucene_Search_QueryHit $hit The Lucene Search Result
* @return OC_Search_Result an OC_Search_Result
*/
private static function asOCSearchResult(\Zend_Search_Lucene_Search_QueryHit $hit) {
$mimeBase = self::baseTypeOf($hit->mimetype);
switch($mimeBase){
case 'audio':
$type='Music';
break;
case 'text':
$type='Text';
break;
case 'image':
$type='Images';
break;
default:
if ($hit->mimetype=='application/xml') {
$type='Text';
} else {
$type='Files';
}
}
switch ($hit->mimetype) {
case 'httpd/unix-directory':
$url = Util::linkTo('files', 'index.php') . '?dir='.$hit->path;
break;
default:
$url = \OC::getRouter()->generate('download', array('file'=>$hit->path));
}
return new \OC_Search_Result(
basename($hit->path),
dirname($hit->path)
. ', ' . \OC_Helper::humanFileSize($hit->size)
. ', Score: ' . number_format($hit->score, 2),
$url,
$type
);
}
/**
* get the base type of a mimetype string
*
* returns 'text' for 'text/plain'
*
* @author Jörn Dreyer <jfd@butonic.de>
*
* @param string $mimetype mimetype
* @return string basetype
*/
public static function baseTypeOf($mimetype) {
return substr($mimetype, 0, strpos($mimetype, '/'));
}
}