-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathclass.widgets.php
479 lines (436 loc) · 19.2 KB
/
class.widgets.php
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
<?php
abstract class Widgets {
protected $SphinxClient; //sphinxAPI
protected $Settings;
abstract function AddQuery($Options);
public function __construct($SphinxClient, $Settings) {
$this->SphinxClient = $SphinxClient;
$this->Settings = $Settings;
$this->Connect();
}
/**
* @todo why 'SetRetries' causes sphinx to not run any queries.....
*/
private function Connect() {
$this->SphinxClient->SetServer($this->Settings['Install']->Host, (int) $this->Settings['Install']->Port); //must start searchd in order to connect...or else conection will be refused
if (!isset($this->Settings['Admin']->MaxQueryTime))
$this->Settings['Admin']->MaxQueryTime = 0;
else
$this->SphinxClient->SetMaxQueryTime((int) $this->Settings['Admin']->MaxQueryTime); // Sets maximum search query time, in milliseconds. Default valus is 0 which means "do not limit".
//$this->SphinxClient->SetRetries((int) $this->Settings['Admin']->RetriesCount, (int)$this->Settings['Admin']->RetriesDelay );
$this->SphinxClient->SetMatchMode(SPH_MATCH_EXTENDED2); //use this since using boolean operators
$this->SphinxClient->SetRankingMode(SPH_RANK_PROXIMITY_BM25);
}
protected function SortIDMatches($SphinxMatches) {
$Comments = array();
$Discussions = array();
$Offset = 0; //keep the order of sphinx result
if (is_array($SphinxMatches) && sizeof($SphinxMatches) > 0) {
foreach ($SphinxMatches as $Row) { //
if ($Row->iscomment)
$Comments [$Offset] = $Row->docid; //comments are offset by taking the max of discussion and adding it
else
$Discussions [$Offset] = $Row->docid;
$Offset++;
}
}
return array('Comment' => $Comments, 'Discussion' => $Discussions);
}
/**
*
* Gets the SQL data for each ID that is returned from sphinx
* @todo what happens if sphinx returns an discussion/comment ID that no longer exists in database?
* @param type $Mode
* @param type $SphinxMatches
* @return type
*/
protected function GetSQLData($Mode, $SphinxMatches) {
//print_r($SphinxMatches); die;
$Return = array(); //use this to sort results based on what sphinx returned them in (this IS IMPORTANT!)
$Matches = $this->SortIDMatches($SphinxMatches); //return the sorted IDs (recall that a docid of '5' is duplicate in both comments/discussions..there is no unique ID
switch (strtolower($Mode)) {
case 'sleek':
$Result = $this->PrepareSleek($Matches);
break;
case 'table':
$Result = $this->PrepareTable($Matches);
break;
case 'simple':
$Result = $this->PrepareSimple($Matches);
break;
case 'classic':
default:
$Result = $this->PrepareClassic($Matches);
break;
}
return $Result;
}
protected function PrepareSleek($Matches) {
return $this->PrepareClassic($Matches);
}
protected function PrepareSimple($Matches) {
// Create a fresh copy of the Sql object so as not to pollute.
$SQL = clone Gdn::SQL();
$SQL->Reset();
$SQL = Gdn::SQL();
$Comment = $SQL->Select('c.DiscussionID')
->Select('d.Name as Title, c.Body as Body, d.Body as DiscussionBody, c.CommentID as CommentID, d.CountComments, 1 as IsComment')
->From('Comment as c')
->Join('Discussion as d', 'c.DiscussionID = d.DiscussionID')
->WhereIn('c.CommentID', $Matches['Comment'])
->Get()
->Result()
;
// Create a fresh copy of the Sql object so as not to pollute.
$SQL = clone Gdn::SQL();
$SQL->Reset();
$Discussion = $SQL->Select('d.DiscussionID')
->Select('d.Name as Title, d.Body as Body, d.Body as DiscussionBody, d.DiscussionID as CommentID, d.CountComments, 0 as IsComment')
->From('Discussion as d')
->WhereIn('d.DiscussionID', $Matches['Discussion'])
->Get()
->Result()
;
return $this->SortTableResults($Matches, $Comment, $Discussion);
}
//display the following:
protected function PrepareTable($Matches) {
//print_r($Matches); die;
$SQL = clone Gdn::SQL();
$SQL->Reset();
$SQL = Gdn::SQL();
$Prefix = C('Database.DatabasePrefix', 'GDN_');
$WhereIn = $this->WhereIn('c.CommentID', $Matches['Comment']);
//This query checks if the LastUserID and LastCommentID are Null.
$Comment = $SQL->Query('
select c.CommentID as CommentID, c.DiscussionID as `DiscussionID`, c.InsertUserID as `InsertUserID`, c.DateInserted as `DateInserted`, c.Body as Body, 1 as IsComment,
IF(d.LastCommentUserID IS NULL, d.InsertUserID, d.LastCommentUserID) as `LastCommentUserID`, d.DateLastComment as `DateLastComment`, if(d.LastCommentID is NULL, d.DiscussionID, d.LastCommentID) as `LastCommentID`,
d.CountComments as `CountComments`, d.CountViews as `CountViews`, d.Name as `Title`,d.Body as DiscussionBody,
u.Name as `UserName`, u.UserID as `UserID`,
Lu.Name as `LastUserName`, Lu.UserID as `LastUserID`,
cat.Name as `CatName`, cat.UrlCode as `CatUrlCode`
from ' . $Prefix . 'Comment c
inner join ' . $Prefix . 'Discussion d on d.DiscussionID = c.DiscussionID
left join ' . $Prefix . 'User Lu on Lu.UserID = (IF(d.LastCommentUserID IS NULL, d.InsertUserID, d.LastCommentUserID))
left join ' . $Prefix . 'User u on u.UserID = d.InsertUserID
inner join ' . $Prefix . 'Category cat on cat.CategoryID = d.CategoryID
where ' . $WhereIn . '
')->Result();
$WhereIn = $this->WhereIn('d.DiscussionID', $Matches['Discussion']); //only retrieving discussions
//This query checks if the LastUserID and LastCommentID are Null.
$SQL = clone Gdn::SQL();
$SQL->Reset();
$Discussion = $SQL->Query('
select d.DiscussionID as CommentID, d.DiscussionID as `DiscussionID`, d.InsertUserID as `InsertUserID`, d.DateInserted as `DateInserted`, IF(d.LastCommentUserID IS NULL, d.InsertUserID, d.LastCommentUserID) as `LastCommentUserID`, d.DateLastComment as `DateLastComment`, if(d.LastCommentID is NULL, d.DiscussionID, d.LastCommentID) as `LastCommentID`,
d.CountComments as `CountComments`, d.CountViews as `CountViews`, d.Name as `Title`, d.Body as Body, d.Body as DiscussionBody, 0 as IsComment,
u.Name as `UserName`, u.UserID as `UserID`,
Lu.Name as `LastUserName`, Lu.UserID as `LastUserID`,
cat.Name as `CatName`, cat.UrlCode as `CatUrlCode`
from ' . $Prefix . 'Discussion d
left join ' . $Prefix . 'User Lu on Lu.UserID = (IF(d.LastCommentUserID IS NULL, d.InsertUserID, d.LastCommentUserID))
left join ' . $Prefix . 'User u on u.UserID = d.InsertUserID
inner join ' . $Prefix . 'Category cat on cat.CategoryID = d.CategoryID
where ' . $WhereIn . '
')->Result();
return $this->SortTableResults($Matches, $Comment, $Discussion);
}
protected function PrepareClassic($Matches) {
//print_r($Matches); die;
$SQL = clone Gdn::SQL();
$SQL->Reset();
$SQL = Gdn::SQL();
$WhereIn = $this->WhereIn('c.CommentID', $Matches['Comment']); //only retrieving comments and the title of the discussion
$Comment = $SQL->Select('c.DiscussionID, c.InsertUserID, c.Body, c.DateInserted, c.CommentID as CommentID, 1 as IsComment')
->Select('d.CountComments, d.CountViews, d.Name as Title,d.Body as DiscussionBody')
->Select('u.Name as UserName, u.Photo as UserPhoto, u.UserID')
->Select('cat.Name as CatName, cat.UrlCode as CatUrlCode')
->From('Comment as c')
->Join('Discussion as d', 'c.DiscussionID = d.DiscussionID')
->Join('User as u', 'c.InsertUserID = u.UserID')
->Join('Category as cat', 'd.CategoryID = cat.CategoryID')
->WhereIn('c.CommentID', $Matches['Comment'])
->Get()
->Result()
;
$SQL = clone Gdn::SQL();
$SQL->Reset();
$Discussion = $SQL->Select('d.DiscussionID, d.InsertUserID, d.Body, d.DateInserted, d.LastCommentUserID, d.DiscussionID as CommentID, 0 as IsComment')
->Select('d.CountComments, d.CountViews, d.Name as Title, d.Body as DiscussionBody')
->Select('u.Name as UserName, u.Photo as UserPhoto, u.UserID')
->Select('cat.Name as CatName, cat.UrlCode as CatUrlCode')
->From('Discussion as d')
->Join('User as u', 'd.InsertUserID = u.UserID')
->Join('Category as cat', 'd.CategoryID = cat.CategoryID')
->WhereIn('d.DiscussionID', $Matches['Discussion'])
->Get()
->Result()
;
return $this->SortTableResults($Matches, $Comment, $Discussion);
}
/**
*
*
* @param type $Matches
* @param type $Comment
* @param type $Discussion
* @return type
*/
protected function SortTableResults($Matches, $Comment, $Discussion) {
$Offset = 0;
$Return = array();
foreach ($Matches['Comment'] as $Rating => $ID) {
foreach ($Comment as $Off => $Data) {
if($Data->CommentID == $ID){
$Return[$Rating] = $Data;
break;
}
}
}
foreach ($Matches['Discussion'] as $Rating => $ID) {
foreach ($Discussion as $Off => $Data) {
if($Data->DiscussionID == $ID){
$Return[$Rating] = $Data;
break;
}
}
}
ksort($Return); //sort them back in their original ratings again
return $Return;
}
/**
*
* Highlights results based on the given string to match results to
*
* Cannot use the distributed index for 'BuildExcerpts'...must specify
* one of its local parts. Since both of the local indexes use the same
* tokenizing, exceptions, wordforms, N-grams etc, we can just select one
*
* @return array
*/
public function HighLightResults($Results, $Query, $HighlightTitle, $HighlightBody) {
if (sizeof($Results) == 0)
return $Results;
//There are a lot more options that you can do in the sphinx manual
$BuildExcerptsSettings = array(
'before_match' => '<span class="SphinxExcerpts">',
'after_match' => '</span>',
'limit' => $this->Settings['Admin']->BuildExcerptsLimit,
'around' => $this->Settings['Admin']->BuildExcerptsAround,
);
$TitleArray = array(); //use this array to pass to sphinx
$BodyArray = array(); //use this array to pass to sphinx
foreach ($Results as $Row) {
if (isset($Row->Body))
$BodyArray[] = Gdn_Format::Text($Row->Body); //format text here to the special <span> are in tact later
if (isset($Row->Title))
$TitleArray[] = Gdn_Format::Text($Row->Title);
}
if ($HighlightBody)
$BodyArray = $this->SphinxClient->BuildExcerpts($BodyArray, SS_INDEX_MAIN, $Query, $BuildExcerptsSettings); //build excerpts
if ($HighlightTitle)
$TitleArray = $this->SphinxClient->BuildExcerpts($TitleArray, SS_INDEX_MAIN, $Query, $BuildExcerptsSettings);
//put results back into original
$Offset = 0;
foreach ($Results as $Row) {
$Row->Body = $BodyArray[$Offset];
$Row->Title = $TitleArray[$Offset];
$Offset++;
}
//print_r($Result);
return $Results;
}
/**
*
* @param string $text
* @param int $NumMatches number of words to match in the $text
*
* Quorum matching operator introduces a kind of fuzzy matching.
* It will only match those documents that pass a given threshold of given words.
* The example above ("the world is a wonderful place"/3) will match all documents
* that have at least 3 of the 6 specified words.
*/
protected function QuorumSearch($Query, $NumMatches) {
return '"' . $Query . '/' . $NumMatches . '"';
}
protected function PhraseSearch($Query) {
return '"' . $Query . '"';
}
protected function FieldSearch($Query, $Fields = array()) {
if (sizeof($Fields) == 0)
return '@(' . $Fields[0] . ') ' . $Query; //single field
else {
$Params = '';
foreach ($Fields as $Field) {
if ($Params == '')
$Params .= $Field;
else
$Params .= ',' . $Field;
}
return '@(' . $Params . ') ' . $Query;
}
}
protected function OperatorOrSearch($Query) {
$Input = '';
$Return = '';
if (is_array($Query)) {
foreach ($Query as $Word)
$Input .= $Word . ' ';
$Input = trim($Input);
$Query = $Input;
}
$QueryString = explode(' ', $Query);
foreach ($QueryString as $Word) { //add the boolean OR operator (|)
if (!is_string($Word) || $Word == '')
continue;
if ($Return != '')
$Return .= ' | ' . $Word;
else
$Return = $Word;
}
return $Return;
}
protected function AllSearch($Query) {
return '@* ' . $Query;
}
/**
* validate the POST from the main search fields
*
* @return array result of filtered inputs
*/
protected function ValidateInputs() {
$MemberList = array();
$TagList = array();
$ForumList = array();
$Query = '';
$QueryIn = trim(filter_input(INPUT_GET, 'Search', FILTER_SANITIZE_STRING)); //probably overkill
$QueryIn = explode(' ', $QueryIn);
$Match = filter_input(INPUT_GET, 'match', FILTER_SANITIZE_STRING);
foreach ($QueryIn as $Word) { //get rid of any white spaces inbetween words
if (!is_string($Word) || $Word == '')
continue;
if ($Query == '') {
if ($Match != 'Extended') {
//$Word = $this->SphinxClient->EscapeString($Word);
}
$Query = $Word;
}
else{
if ($Match != 'Extended') {
//$Word = $this->SphinxClient->EscapeString($Word);
//$Query = $Word;
}
$Query .= ' ' . $Word;
}
}
$Query = html_entity_decode($Query,ENT_QUOTES, 'UTF-8'); // Deocodes Numeric character references ("&'<>)
if($Match != 'Extended')
$Query = $this->SphinxClient->EscapeString($Query);
$TitlesOnly = (filter_input(INPUT_GET, 'titles', FILTER_SANITIZE_NUMBER_INT) == 1 ? 1 : 0); //checkbox - bool
$WithReplies = (filter_input(INPUT_GET, 'WithReplies', FILTER_SANITIZE_NUMBER_INT) == 1 ? 1 : 0); //checkbox - bool
$Child = (filter_input(INPUT_GET, 'child', FILTER_SANITIZE_NUMBER_INT) == 1 ? 1 : 0); //checkbox - bool
if (isset($_GET['forums']) && is_array($_GET['forums'])) {
foreach ($_GET['forums'] as $Forum) {
if (is_numeric($Forum)) //check if int
$ForumList[] = $Forum;
}
}
$Date = filter_input(INPUT_GET, 'date', FILTER_SANITIZE_STRING);
$Order = filter_input(INPUT_GET, 'or', FILTER_SANITIZE_STRING);
$Members = filter_input(INPUT_GET, 'mem', FILTER_SANITIZE_STRING); //list seperated by comma
if (!empty($Members)) {
$Members = explode(',', $Members);
foreach ($Members as $Member) {
if (!is_string($Member) || $Member == '' || !str_word_count($Member, 0))
continue;
$MemberList[] = trim($Member);
}
}
$Tags = filter_input(INPUT_GET, 'tag', FILTER_SANITIZE_STRING); //list seperated by comma
if (!empty($Tags)) {
$Tags = explode(',', $Tags);
foreach ($Tags as $Tag) {
if (!is_string($Tag) || $Tag == '' || !str_word_count($Tag, 0))
continue;
$TagList[] = trim($Tag);
}
}
$SanitizedFormat = filter_input(INPUT_GET, 'res', FILTER_SANITIZE_STRING);
$Offset = (int) filter_input(INPUT_GET, 'pg', FILTER_SANITIZE_NUMBER_INT);
if (is_int($Offset))
$Offset = $Offset;
else
$Offset = 0; //default to no offset
return array(
'Query' => $Query,
'TitlesOnly' => $TitlesOnly,
'WithReplies' => $WithReplies,
'Match' => $Match,
'ForumList' => $ForumList,
'SearchChildren' => $Child,
'Date' => $Date,
'MemberList' => $MemberList,
'Order' => $Order,
'TagList' => $TagList,
'Order' => $Order,
'ResultFormat' => $SanitizedFormat,
'Offset' => $Offset,
);
}
/**
* Remove search tags from search keyword
*
* @param string $keywords
* @return string
*/
protected function ClearFromTags($keywords) {
$stopWords = array('@title', '@body', '@user', '@(body)', '@(title)', '@(user)', '!', '-', '~', '(', ')', '|',);
$keywords = trim(str_replace($stopWords, ' ', $keywords));
if (empty($keywords))
return '';
$keyword = trim(preg_replace('/\s+/', ' ', $keywords));
return $keyword;
}
/**
* Returns a JSON encoded string
*
* @param array $Result Sphinx result array
* @param string $Field field to populate json return string from
*/
protected function JsonEncode($Result, $Field) {
$Return = '[';
foreach ($Result as $Row) {
if ($Return != '[')
$Return .= ',';
$Return .= json_encode(array('value' => GetValue($Field, $Row)));
}
$Return .= ']';
return $Return;
}
/**
* copy of the class.sqldriver for a convient wherin plain sql query
*
* @param type $Field
* @param type $Values
* @param type $Op
* @param type $Escape
* @return string
*/
private function WhereIn($Field, $Values, $Op = 'in', $Escape = TRUE) {
if (is_null($Field) || !is_array($Values))
return;
// Build up the in clause.
$In = array();
foreach ($Values as $Value) {
$ValueExpr = (string) $Value;
if (strlen($ValueExpr) > 0)
$In[] = $ValueExpr;
}
if (count($In) > 0)
$InExpr = '(' . implode(', ', $In) . ')';
else
$InExpr = '(null)';
// Set the final expression.
$Expr = $Field . ' ' . $Op . ' ' . $InExpr;
return $Expr;
}
}