-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
413 lines (358 loc) · 10.3 KB
/
index.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
<?php
//close the error reporting of PHP
global $final,$id,$Engines,$totalResults;
$Engines = Array(); // has the registered Search Engines
$En = array(); //contains total results
$id = 1;
$final = array(); //contains the group of res results
$yDWeight = 800;
$gDWeight = 1000;
$mDWeight = 800;
$status = 1;
//--SearchResult
class SearchResult
{
var $id = 1;
var $score = 0;
var $title = "Untitled";
var $url= "#"; //click url
var $summary = "No summary";
var $visibleUrl = "#";
var $cacheUrl = null;
var $searchEngines = Array(); //various searchengines where the result is present (weight)
var $searchEngineRankings = Array(); //
var $resultElement = null;
}
//------------------
class SearchEngine
{
private $name;
private $icon = null;
private $weight = 1000;
private $resultFormat = 'json';
private $apiKey;
private $searchType = 'web';
public $result;
function search($query,$type,$start,$count=10){}
function setWeight($weight)
{
//check if empty
if($weight = '' || empty($weight))
$weight = 0;
//check if weight is int and between 0 and 1000
$weight = (int)$weight;
if($weight < 0 || $weight > 1000)
{
$weight = 0;
echo "Weight out of bounds";
}
$this->weight = $weight;
return true;
}
}
//http://ajax.googleapis.com/ajax/services/search/web?v=1.0&q=Paris%20Hilton?start=0
//http://code.google.com/apis/ajaxsearch/documentation/#fonje
//========================================================
class SearchEngineGoogle extends SearchEngine
{
var $name = "Google";
var $icon = "images/google.gif";
var $weight = 1000;
var $apiKey = "ABQIAAAAwIluEOYiIlTXVrp1Hj_kshT2yXp_ZAY8_ufC3CFXhHIE1NvwkxSzZlG4dc_V26z4BlIOfZqSrduhzQ";
var $searchUrl; //not mentioned here cause different for web,image etc
var $resultFormat = "json";
//--------
function __construct($weight,$type='web')
{
$this->setWeight($weight);
$this->name = "Google";
$this->searchType = $type;
}
//---------
public function searchQuery($query,$start,$count=10)
{
switch($this->searchType)
{
default:
case 'web' :
$this->searchUrl= "http://ajax.googleapis.com/ajax/services/search/web?v=1.0";
$this->searchUrl .= '&q='.urlencode($query);
$this->searchUrl .= '&start='.$start;
$this->searchUrl .= '&count='.$count;
$this->searchUrl .= '&rsz=large';
//echo $this->searchUrl;
break;
//placeholders for images/news etc
}
$this->searchNow($this->searchUrl);
}
//------------------
public function searchNow($url)
{
require_once('lib/json/json.php'); //do not shift this statement above. Only include if everything else is right.
try
{
$curl = curl_init($url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($curl);
$this->result = $result;
curl_close($curl);
if($this->resultFormat = 'json')
{
$result = json_decode($result,0); //not needed if jasonToArray is used. if not used, comment the include statment above.
//convert into array.
//$resultArray = jasonToArray($result); //better than jsondecode w.r.t performance. But, may give worng results.
$resultArray = $result->responseData->results;
//print_r($resultArray);
//send to the processing engine
$this->processResult($resultArray);
}
}
catch(Exception $e)
{
throw new Exception("Could not retreive result:",$e->getMessage(), "\n"); //Needed to show the User ? maybe mail error.
}
//for optimization, do not return array.
return true;
}
//---------
function processResult($resultArray)
{
global $id,$final;
$total = count($resultArray);
//arrange properly as a search result object
for($i=0;$i<$total;$i++)
{
$result = $resultArray[$i];
$result->visibleUrl = stripslashes($result->url);
$foundId = inFinal($result);
if($foundId == -99) //not already found by another search engine.
{
$res = new SearchResult;
$res->id = $id; $id++;
$res->title = $result->title;
$res->url = $result->url;
$res->visibleUrl = $result->url;
$res->summary = $result->content;
array_push($res->searchEngines,$this->name);
array_push($res->searchEngineRankings,$i+1);
//finally push into Final array.
array_push($final,$res);
}
else//found by another search engine.
{
array_push($final[$foundId]->searchEngines,$this->name);
array_push($final[$foundId]->searchEngineRankings,$i+1);
}
}
}
}
//========================================================
class SearchEngineYahoo extends SearchEngine
{
var $name = "Yahoo";
var $icon = "images/yahoo.gif";
var $weight = 1000;
var $apiKey = "xsbYH9zV34EvsrHpgy5oG8JdPutEwFlyvUlP67inOivHASc3U.J8EHprTa6kAe2SG3iVhZQ-";
var $searchUrl;
var $resultFormat = "json";
//--------
function __construct($weight,$type='web')
{
$this->setWeight($weight);
$this->name = "Yahoo";
$this->searchType = $type;
}
//---------
public function searchQuery($query,$start,$count=10)
{
switch($this->searchType)
{
default:
case 'web' :
$this->searchUrl= "http://boss.yahooapis.com/ysearch/web/v1/".urlencode($query)."?appid=".$this->apiKey;
$this->searchUrl .= '&start='.$start;
$this->searchUrl .= '&count='.$count;
$this->searchUrl .= '&format='.$this->resultFormat;
$this->searchUrl .= '&abstract=long';
//echo $this->searchUrl ;
//http://boss.yahooapis.com/ysearch/web/v1/ireland? appid={yourBOSSappid}&format=xml&view=keyterms
break;
//placeholders for images/news etc
}
$this->searchNow($this->searchUrl);
}
//------------------
public function searchNow($url)
{
global $totalResults;
require_once('lib/json/json.php');
try
{
$curl = curl_init($url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($curl);
$this->result = $result;
curl_close($curl);
if($this->resultFormat = 'json')
{
$result = json_decode($result,0); //not needed if jasonToArray is used. if not used, comment the include statment above.
//convert into array.
//$resultArray = jasonToArray($result); //better than jsondecode w.r.t performance. But, may give worng results.
$resultArray = $result->ysearchresponse->resultset_web;
$totalResults = 0;
// print_r($resultArray);
//die();
//send to the processing engine
$this->processResult($resultArray);
}
}
catch(Exception $e)
{
throw new Exception("Could not retreive result:",$e->getMessage(), "\n"); //Needed to show the User ? maybe mail error.
}
//for optimization, do not return array.
return true;
}
//---------
function processResult($resultArray)
{
global $id,$final;
$total = count($resultArray);
//arrange properly as a search result object
for($i=0;$i<$total;$i++)
{
$result = $resultArray[$i];
$result->visibleUrl = stripslashes($result->url);
$foundId = inFinal($result);
if($foundId == -99) //not already found by another search engine.
{
$res = new SearchResult;
$res->id = $id; $id++;
$res->title = $result->title;
$res->url = $result->clickurl;
$res->visibleUrl = $result->url;
$res->summary = $result->abstract;
array_push($res->searchEngines,$this->name);
array_push($res->searchEngineRankings,$i+1);
//finally push into Final array.
array_push($final,$res);
}
else //found by another search engine.
{
array_push($final[$foundId]->searchEngines,$this->name);
array_push($final[$foundId]->searchEngineRankings,$i+1);
}
}
}
//example
/*
$yWeight = (int) verifyWeight($_GET['yw'],$yDWeight);
$Y = new SearchEngineYahoo($yWeight,$type);
$Y->searchQuery($query,$start,$count);
//register search engine
$Engines['Yahoo'] = $yWeight;
$En['Yahoo'] = $count;
*/
}
//---------------------------------------------------------------------------
function weightThem()
{
global $final,$Engines,$En;
$total = count($final);
for($j=0;$j<$total;$j++)
{
$res = $final[$j]; //$res can be removed later.
$score = 0;
for($i=0;$i<count($res->searchEngines);$i++)
$score = $score + $Engines[$res->searchEngines[$i]] * (($En[$res->searchEngines[$i]] + 1) - $res->searchEngineRankings[$i]);
//score = weight * position
$final[$j]->score = $score;
}
//lets order it now. normal bubble sort for now.
for($j=0;$j<$total;$j++)
{
for($i=0;$i<$total;$i++)
{
if($final[$i]->score < $final[$j]->score)
{
$temp = $final[$j];
$final[$j] = $final[$i];
$final[$i] = $temp;
}
}
}
}
//=================================
function inFinal($res)
{
global $final;
$total = count($final);
for($i=0;$i<$total;$i++)
{
if($res->visibleUrl == $final[$i]->visibleUrl)
return($i);
}
return -99;
}
function inFinalMsn($res)
{
global $final;
$total = count($final);
for($i=0;$i<$total;$i++)
{
if($res['web:Url'] == $final[$i]->visibleUrl)
return($i);
}
return -99;
}
//------------------------------------------------------------------------
include("verify.php");
//===================||||||||||||||||||============================
//usage
//general options
$start = (int) verifyStart($_GET['s']);
$count = (int) verifyCount($_GET['c']);
$type = 'web';
//$type = verifyType($type);
$query = rawurldecode($_GET['q']);
//$query = verifyQuery($query);
$thisPage = $start;
if($status == 1)
{
//------
$gWeight = (int) verifyWeight($_GET['gw'],$gDWeight);
$G = new SearchEngineGoogle($gWeight,$type);
$G->searchQuery($query,$start*8,$count);
//register search engine
$Engines['Google'] = $gWeight;
$En['Google'] = 8;
//------
$yWeight = (int) verifyWeight($_GET['yw'],$yDWeight);
include("yboss/search.php");
$Engines['Yahoo'] = $yWeight;
$En['Yahoo'] = $count;
//------
//print_r($final);
$mWeight = (int) verifyWeight($_GET['lw'],$mDWeight);
include("msn/search.php");
$Engines['Msn'] = $mWeight;
$En['Msn'] = $count;
//echo "---------";
//print_r($final);
//------Now lets calculate the weights
weightThem();
}
//$final now has the ranked results
//Now to Style them
//include("indo.php");
if(isset($query) && !empty($query))
include("trial.php");
else
include("main.php");
//----OPT - unset all previous datastructures/objects to lower memory load.
//echo "<pre>";
//print_r($final);
//OPT---Process result as a standalone procedure/function
// Multithreading of the search process.
?>