aboutsummaryrefslogtreecommitdiff
path: root/mod/search/start.php
blob: 354c5b2cd0dd9d9e3fd2336c1d11c765ff572dfd (plain)
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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
<?php
/**
   * Elgg core search.
   *
   * @package Elgg
   * @subpackage Core
   * @author Curverider Ltd <info@elgg.com>, The MITRE Corporation <http://www.mitre.org>
   * @link http://elgg.org/
   */

/**
 * Initialise search helper functions.
 *
 */
function search_init() {
	global $CONFIG;
	require_once 'search_hooks.php';

	// page handler for search actions and results
	register_page_handler('search','search_page_handler');

	// register some default search hooks
	register_plugin_hook('search', 'object', 'search_objects_hook');
	register_plugin_hook('search', 'user', 'search_users_hook');

	// @todo pull this out into groups
	register_plugin_hook('search', 'group', 'search_groups_hook');

	// tags and comments are a bit different.
	// register a search types and a hooks for them.
	register_plugin_hook('search_types', 'get_types', 'search_custom_types_tags_hook');
	register_plugin_hook('search', 'tags', 'search_tags_hook');

	register_plugin_hook('search_types', 'get_types', 'search_custom_types_comments_hook');
	register_plugin_hook('search', 'comments', 'search_comments_hook');

	// get server min and max allowed chars for ft searching
	$CONFIG->search_info = array();

	// can't use get_data() here because some servers don't have these globals set,
	// which throws a db exception.
	$r = mysql_query('SELECT @@ft_min_word_len as min, @@ft_max_word_len as max');
	if ($word_lens = mysql_fetch_assoc($r)) {
		$CONFIG->search_info['min_chars'] = $word_lens['min'];
		$CONFIG->search_info['max_chars'] = $word_lens['max'];
	} else {
		// uhhh these are good numbers.
		$CONFIG->search_info['min_chars'] = 4;
		$CONFIG->search_info['max_chars'] = 90;
	}

	// add in CSS for search elements
	elgg_extend_view('css', 'search/css');
}

/**
 * Page handler for search
 *
 * @param array $page Page elements from pain page handler
 */
function search_page_handler($page) {
	global $CONFIG;

	// if there is no q set, we're being called from a legacy installation
	// it expects a search by tags.
	// actually it doesn't, but maybe it should.
	// maintain backward compatibility
	if(!get_input('q', get_input('tag', NULL))) {
		set_input('q', $page[0]);
		//set_input('search_type', 'tags');
	}

	include_once('index.php');
}

/**
 * Return a string with highlighted matched elements.
 * Checks for "s
 * Provides context for matched elements.
 * Will not return more than $max_length of full context.
 * Only highlights words
 *
 * @param unknown_type $haystack
 * @param unknown_type $need
 * @param unknown_type $context
 * @param unknown_type $max_length
 * @return unknown_type
 */
function search_get_highlighted_relevant_substrings($haystack, $needle, $min_match_context = 15, $max_length = 500) {
	global $CONFIG;
	$haystack = strip_tags($haystack);
	$haystack_lc = strtolower($haystack);
//
//	$haystack = "Like merge sort, quicksort can also be easily parallelized due to its "
//		. "divide-and-conquer nature. Individual in-place partition operations are difficult "
//		. "to parallelize, but once divided, different sections of the list can be sorted in parallel.  "
//		. "If we have p processors, we can divide a list of n ele";
//
//	$needle = 'difficult to sort in parallel';

	// for now don't worry about "s or boolean operators
	$needle = str_replace(array('"', '-', '+', '~'), '', stripslashes(strip_tags($needle)));
	$words = explode(' ', $needle);

	$min_chars = $CONFIG->search_info['min_chars'];
	// if > ft_min_word == not running in literal mode.
	if ($needle >= $min_chars) {
		// clean out any words that are ignored by mysql
		foreach ($words as $i => $word) {
			if (strlen($word) < $min_chars) {
				unset ($words[$i]);
			}
		}
	}

	/*

	$body_len = 250

	$context = 5-30, 20-45, 75-100, 150

	can pull out context either on:
		one of each matching term
		X # of highest matching terms


	*/
	$substr_counts = array();
	$str_pos = array();
	// matrices for being and end context lengths.
	// defaults to min context.  will add additional context later if needed
	$starts = array();
	$stops = array();

	// map the words to the starts and stops
	$words_arg = array();
	$context_count = 0;


	// get the full count of matches.
	foreach ($words as $word) {
		$word = strtolower($word);
		$count = substr_count($haystack, $word);
		$word_len = strlen($word);

		// find the start positions for the words
		if ($count > 1) {
			$str_pos[$word] = array();
			$offset = 0;
			while (FALSE !== $pos = strpos($haystack, $word, $offset)) {
				$str_pos[$word][] = $pos;
				$starts[] = ($pos - $min_match_context > 0) ? $pos - $min_match_context : 0;
				$stops[] = $pos + $word_len + $min_match_context;
				$words_arg[] = $word;
				$context_count += $min_match_context + $word_len;
				$offset += $pos + $word_len;
			}
		} else {
			$pos = strpos($haystack, $word);
			$str_pos[$word] = array($pos);
			$starts[] = ($pos - $min_match_context > 0) ? $pos - $min_match_context : 0;
			$stops[] = $pos + $word_len + $min_match_context;
			$context_count += $min_match_context + $word_len;
			$words_arg[] = $word;
		}
		$substr_counts[$word] = $count;
	}

	// sort by order of occurence
	//krsort($substr_counts);
	$full_count = array_sum($substr_counts);

	// figure out what the context needs to be.
	// take one of each matched phrase
	// if there are any

//
//	var_dump($str_pos);
//	var_dump($substr_counts);
//	var_dump($context_count);


	// sort to put them in order of occurence
	asort($starts, SORT_NUMERIC);
	asort($stops, SORT_NUMERIC);

	// offset them correctly
	$starts[] = 0;
	$new_stops = array(0);
	foreach ($stops as $i => $pos) {
		$new_stops[$i+1] = $pos;
	}
	$stops = $new_stops;

	$substrings = array();
	$len = count($starts);

	$starts = array_merge($starts);
	$stops = array_merge($stops);

	$offsets = array();
	$limits = array();
	$c = 0;
	foreach ($starts as $i => $start) {
		$stop = $stops[$i];
		$offsets[$c] = $start;
		$limits[$c] = $stop;

		// never need the last one as it's just a displacing entry
		if ($c+1 == count($starts)) {
			break;
		}

		if ($start - $stop < 0) {
			//var_dump("Looking at c=$c & $start - $stop and going to unset {$limits[$c]}");
			unset($offsets[$c]);
			unset($limits[$c]);
		}
		$c++;
	}

	// reset indexes and remove placeholder elements.
	$limits = array_merge($limits);
	array_shift($limits);
	$offsets = array_merge($offsets);
	array_pop($offsets);

	// figure out if we need to adjust the offsets from the base
	// this could result in overlapping summaries.
	// might be nicer to just remove it.

	$total_len = 0;
	foreach ($offsets as $i => $offset) {
		$total_len += $limits[$i] - $offset;
	}

	$add_length = 0;
	if ($total_length < $max_length) {
		$add_length = floor((($max_length - $total_len) / count($offsets)) / 2);
	}

	$lengths = array();
	foreach ($offsets as $i => $offset) {
		$limit = $limits[$i];
		if ($offset == 0 && $add_length) {
			$limit += $add_length;
		} else {
			$offset = $offset - $add_length;
		}
		$string = substr($haystack, $offset, $limit - $offset);

		if ($offset != 0) {
			$string = "...$string";
		}

		if ($limit + $offset >= strlen($haystack)) {
			$string .= '...';
		}

		$substrings[] = $string;
		$lengths[] = strlen($string);
	}

	// sort by length of context.
	asort($lengths);

	$matched = '';
	foreach ($lengths as $i => $len) {
		$string = $substrings[$i];

		if (strlen($matched) + strlen($string) < $max_length) {
			$matched .= $string;
		}
	}

	$i = 1;
	foreach ($words as $word) {
		$search = "/($word)/i";
		$replace = "<strong class=\"searchMatch searchMatchColor$i\">$1</strong>";
		$matched = preg_replace($search, $replace, $matched);
		$i++;
	}

	return $matched;


	// crap below..



	for ($i=0; $i<$len; $i++) {
		$start = $starts[$i];
		$stop = $stops[$i];
		var_dump("Looking at $i = $start - $stop");

		while ($start - $stop <= 0) {
			$stop = $stops[$i++];
			var_dump("New start is $stop");
		}

		var_dump("$start-$stop");
	}

	// find the intersecting contexts
	foreach ($starts as $i => $start_pos) {
		$words .= "{$words_arg[$i]}\t\t\t";
		echo "$start_pos\t\t\t";
	}

	echo "\n";

	foreach ($stops as $i => $stop_pos) {
		echo "$stop_pos\t\t\t";
	}
echo "\n$words\n";

	// get full number of matches against all words to see how many we actually want to look at.




//	$desc = search_get_relevant_substring($entity->description, $params['query'], '<strong class="searchMatch">', '</strong>');


	$params['query'];
	// "this is"just a test "silly person"

	// check for "s
	$words_quotes = explode('"', $needle);

	$words_orig = explode(' ', $needle);
	$words = array();

	foreach ($words_orig as $i => $word) {
		// figure out if we have a special operand
		$operand = substr($word, 0, 1);
		switch($operand) {
			case '"':
				// find the matching " if any.  else, remove the "
				if (substr_count($query, '"') < 2) {
					$words[] = substr($word, 1);
				} else {
					$word = substr($word, 1);
					$word_i = $i;
					while ('"' != strpos($words_orig[$word_i], '"')) {
						$word .= " {$words_orig[$word_i]}";
						unset($words_orig[$word_i]);
					}
				}

				break;

			case '+':
				// remove +
				$words[] = substr($word, 1);
				break;

			case '~':
			case '-':
				// remove this from highlighted list.

				break;
		}
	}

	// pick out " queries
	if (substr_count($query, '"') >= 2) {

	}

	// ignore queries starting with -


	// @todo figure out a way to "center" the matches within the max_length.
	// if only one match, its context is $context + $max_length / 2
	// if 2 matches, its context is $context + $max_length / 4
	// if 3 matches, its context is $context + $max_length / 6
	// $context per match = $min_match_context + ($max_length / $num_count_match)

	// if $max_length / ($matched_count * 2) < $context
	// only match against the first X matches where $context >= $context
}

/**
 * Returns a matching string with $context amount of context, optionally
 * surrounded by $before and $after.
 *
 * If no match is found, restricts string to $context*2 starting from strpos 0.
 *
 * @param str $haystack
 * @param str $needle
 * @param str $before
 * @param str $after
 * @param int $context
 * @return str
 */
function search_get_relevant_substring($haystack, $needle, $before = '', $after = '', $context = 75) {
	$haystack = strip_tags($haystack);
	$needle = strip_tags($needle);

	$pos = strpos(strtolower($haystack), strtolower($needle));

	if ($pos === FALSE) {
		$str = substr($haystack, 0, $context*2);
		if (strlen($haystack) > $context*2) {
			$str .= '...';
		}

		return $str;
	}

	$start_pos = $pos - $context;

	if ($start_pos < 0) {
		$start_pos = 0;
	}

	// get string from -context to +context
	$matched = substr($haystack, $start_pos, $context*2);

	// add elipses to front.
	if ($start_pos > 0) {
		$matched = "...$matched";
	}

	// add elipses to end.
	if ($pos + strlen($needle) + $context*2 < strlen($haystack)) {
		$matched = "$matched...";
	}

	// surround if needed
	// @todo would getting each position of the match then
	// inserting manually based on the position be faster than preg_replace()?
	if ($before || $after) {
		$matched = str_ireplace($needle, $before . $needle . $after, $matched);
		//$matched = mb_ereg_replace("")
		// insert before
	}

	return $matched;
}


/**
 * Passes entities, count, and original params to the view functions for
 * search type.
 *
 * @param array $entities
 * @param int $count
 * @param array $params
 * @return string
 */
function search_get_listing_html($entities, $count, $params) {
	if (!is_array($entities) || !$count) {
		return FALSE;
	}

	$view_order = array();

	// check if there's a special search view for this type:subtype
	if (isset($params['type']) && $params['type'] && isset($params['subtype']) && $params['subtype']) {
		$view_order[] = "search/{$params['type']}/{$params['subtype']}/listing";
	}

	// also check for the default type
	if (isset($params['type']) && $params['type']) {
		$view_order[] = "search/{$params['type']}/listing";
	}

	// check search types
	if (isset($params['search_type']) && $params['search_type']) {
		$view_order[] = "search/{$params['search_type']}/listing";
	}

	// finally default to a search listing default
	$view_order[] = "search/listing";

	$vars = array(
		'entities' => $entities,
		'count' => $count,
		'params' => $params
	);

	foreach ($view_order as $view) {
		if (elgg_view_exists($view)) {
			return elgg_view($view, $vars);
		}
	}

	return FALSE;
}

/**
 * Returns a where clause for a search query.
 *
 * @param str $table Prefix for table to search on
 * @param array $fields Fields to match against
 * @param array $params Original search params
 * @return str
 */
function search_get_where_sql($table, $fields, $params) {
	global $CONFIG;
	$query = $params['query'];

	// add the table prefix to the fields
	foreach ($fields as $i => $field) {
		$fields[$i] = "$table.$field";
	}

	// if query is shorter than the min for fts words
	// it's likely a single acronym or similar
	// switch to literal mode
	if (strlen($query) < $CONFIG->search_info['min_chars']) {
		$likes = array();
		$query = sanitise_string($query);
		foreach ($fields as $field) {
			$likes[] = "$field LIKE '%$query%'";
		}
		$likes_str = implode(' OR ', $likes);
		//$where = "($table.guid = e.guid AND	($likes_str))";
		$where = "($likes_str)";
	} else {
		// if using advanced or paired "s, switch into boolean mode
		if ((isset($params['advanced_search']) && $params['advanced_search']) || substr_count($query, '"') >= 2 ) {
			$options = 'IN BOOLEAN MODE';
		} else {
			$options = 'IN NATURAL LANGUAGE MODE';
		}

		// if short query, use query expansion.
		if (strlen($query) < 6) {
			//$options .= ' WITH QUERY EXPANSION';
		}
		$query = sanitise_string($query);

		// if query is shorter than the ft_min_word_len switch to literal mode.
		$fields_str = implode(',', $fields);
		//$where = "($table.guid = e.guid AND (MATCH ($fields_str) AGAINST ('$query' $options)))";
		$where = "(MATCH ($fields_str) AGAINST ('$query' $options))";
	}

	return $where;
}

function search_get_query_where_sql($table, $query) {
	// if there are multiple "s or 's it's a literal string.

}

/** Register init system event **/

register_elgg_event_handler('init','system','search_init');