-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathodp.php
executable file
·522 lines (432 loc) · 19.2 KB
/
odp.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
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
<?
/*
* Version 1.5i - Copyright Bjørn Børresen (c) BIE.no 2001-2006
* This work is licensed under a Creative Commons License, read more about it here:
* http://creativecommons.org/licenses/by/1.0/
*
* Please do not modify outside config section in this script (unless you know what you're doing)
* and do not remove the phpODP button (even if you do know what you're doing)
*
* If you would like to show your support please PayPal money to bjorn|root.no (where you replace the | with an @) :)
*
* If you want to remove the button link-back to bie.no you need to pay $20 for the
* script -- thanks! See more info here: http://www.bie.no/products/phpodp/index.php?i=payment
*
* If you show thumbnails then you need to keep the HTML attribution to Thumbshots,
* read more info here: http://www.thumbshots.org/attribution.pxf
*
* Thanks to the crew at Thumbshots for the great service they provide!
*
* Please post questions & comments in the phpODP support forum here:
* http://www.bie.no/forum/
* (please remember to search the forum first to see if the question has been posted before!)
*
* I'd like the forum to be a community, so if someone answers YOUR question, try to answer the question of someone who
* understands less than you! .. If someone like that exists of course :)
*
*/
/*
* CONFIG SECTION ----> EDIT THIS + edit the files in /includes/ to change its look!
* If you have questions visit http://www.bie.no/forum and post them in the phpODP support forum!
*
*/
$show_thumbnails = true; // set this to true if you want to show thumbnails
$browse_cache = true; // cache user browsing? (will speed up your directory much) - keep this enabled, as it will take a huge load off dmoz's servers.
$search_cache = true; // cache user searches as well? - disk space usage will increase
$cache_timeout = 604800 ; // seconds passed before updating cache .. 60*60*24*7 = 604800 = 7 days before cache is updated ..
// set cache_timeout to 0 if you do not want the cache to be updated ever (or when you delete the files manually)
$cache_folder = "cache"; // if you don't want users to be able to browse your cache, change this to something .. strange :)
$use_portal_page = false; // set this to true if you want to make all links in your directory to go through go.php
$adult_filter = false; // block the /Adult/ category and searches listed below? (remember, the open directory contains lots of adult material!)
$illegalwords = array("xxx", // if adult_filter (above) is true, then the search words in this array will be blocked
"porn",
"pussy",
"tgp");
// English users set this to "en" to show amazon.com link
// German users set it to "de" to show amazon.de link
// If you do not want to show the amazon table just leave them blank ("")
$show_search_sponsor = "";
$show_browse_sponsor = "";
/**
* ODP root URL - this is the url the data will be retreived from.
*
* Note; some people say they need to change this do http://www.dmoz.org/ to make it work on their php config
*/
// $hour = date(H); // code for load balancing for DMOZ mirrors
// print $hour;
$rooturl = "http://www.dmoz.org";
// if ( $hour < 12 ){
// $rooturl = "http://ch.dmoz.org";
// }
// if ( $hour < 2 ){
// $rooturl = "http://de.dmoz.org";
// }
// If you want so use a certain category at the root ..
// eg. $rootcategory = "/World/Deutsch/"; to show German pages, or "/World/Franais/" to start in the French category
$rootcategory = "";
/*
* STOP --- > EDITING BELOW SHOULD NOT BE NECESSARY (but could be if externals are changed)
*/
// This is the string that shows when dmoz is under heavy load. The script will know not to cache this since the original page should be retrieved later on.
$donotcache = "The Open Directory search is currently under a heavy load. Please try back later.";
global $myrooturl,$searchstring,$filename,$donotcache;
$filename = $HTTP_SERVER_VARS['PHP_SELF'];
?>
<?
$sponsor_file_search = "search_sponsor_header.php"; // default
if($show_search_sponsor == "de") $sponsor_file_search = "search_sponsor_header_de.php";
$sponsor_file_browse = "search_sponsor_header.php"; // default
if($show_browse_sponsor == "de") $sponsor_file_browse = "search_sponsor_header_de.php";
// replacement variables
$replace = $filename . "?browse=";
$linkstr = '<a href="';
$odp_image_path = '/img/';
$your_image_path = '';
$search_next = '<a href="search';
$search_next_replace = '<a href="' . $filename;
$searchurl = "http://search.dmoz.org/cgi-bin/search?search=";
$startstr = "<table cellspacing"; // start str to search for on the main page
$endstr = "</fieldset>"; // end str to search for on the main page
$startbrws = '</ul>'; // start str to search for when browsing
$endbrws = '<fieldset class="fieldcap fieldcapRn"'; // end str to search for when browsing
// $startsrch = '<font size="+1"><b>Open Directory Sites'; // will remove categories from search result
$startsrch = '<CENTER>Search:'; // start str to search for when searching
$endsrch = '<TABLE cellpadding=0'; // end str to search for when searching
$noresult = 'No sites matching your query were'; // feedback from dmoz.org when no sites are found
/****************************************************************************
* Some useful functions
****************************************************************************/
function error_handler($severity, $msg, $filename, $linenum) {
switch($severity) {
case 8: // notice
break;
case 2:
errorMsg($msg);
break;
default:
errorMsg($msg);
break;
}
}
/**
* takes a string of unicode entities and converts it to a utf-8 encoded string
* each unicode entitiy has the form &#nnn(nn); n={0..9} and can be displayed by utf-8 supporting
* browsers. Ascii will not be modified.
* @param $source string of unicode entities [STRING]
* @return a utf-8 encoded string [STRING]
* @access public
*/
function utf8Encode ($source) {
$utf8Str = '';
$entityArray = explode ("&#", $source);
$size = count ($entityArray);
for ($i = 0; $i < $size; $i++) {
$subStr = $entityArray[$i];
$nonEntity = strstr ($subStr, ';');
if ($nonEntity !== false) {
$unicode = intval (substr ($subStr, 0, (strpos ($subStr, ';') + 1)));
// determine how many chars are needed to reprsent this unicode char
if ($unicode < 128) {
$utf8Substring = chr ($unicode);
}
else if ($unicode >= 128 && $unicode < 2048) {
$binVal = str_pad (decbin ($unicode), 11, "0", STR_PAD_LEFT);
$binPart1 = substr ($binVal, 0, 5);
$binPart2 = substr ($binVal, 5);
$char1 = chr (192 + bindec ($binPart1));
$char2 = chr (128 + bindec ($binPart2));
$utf8Substring = $char1 . $char2;
}
else if ($unicode >= 2048 && $unicode < 65536) {
$binVal = str_pad (decbin ($unicode), 16, "0", STR_PAD_LEFT);
$binPart1 = substr ($binVal, 0, 4);
$binPart2 = substr ($binVal, 4, 6);
$binPart3 = substr ($binVal, 10);
$char1 = chr (224 + bindec ($binPart1));
$char2 = chr (128 + bindec ($binPart2));
$char3 = chr (128 + bindec ($binPart3));
$utf8Substring = $char1 . $char2 . $char3;
}
else {
$binVal = str_pad (decbin ($unicode), 21, "0", STR_PAD_LEFT);
$binPart1 = substr ($binVal, 0, 3);
$binPart2 = substr ($binVal, 3, 6);
$binPart3 = substr ($binVal, 9, 6);
$binPart4 = substr ($binVal, 15);
$char1 = chr (240 + bindec ($binPart1));
$char2 = chr (128 + bindec ($binPart2));
$char3 = chr (128 + bindec ($binPart3));
$char4 = chr (128 + bindec ($binPart4));
$utf8Substring = $char1 . $char2 . $char3 . $char4;
}
if (strlen ($nonEntity) > 1)
$nonEntity = substr ($nonEntity, 1); // chop the first char (';')
else
$nonEntity = '';
$utf8Str .= $utf8Substring . $nonEntity;
}
else {
$utf8Str .= $subStr;
}
}
return $utf8Str;
}
/**
* urlencode the link
*/
function linkencode($url) {
$odpurl = urlencode($url);
return str_replace (
array("%2F", "%26","%3A", "%3F", "%3D", "%2C"),
array("/","&",":","?","=",",")
, $odpurl);
}
/**
* Make sure incomming $browse variable is 'clean'
*/
function cleanBrowse($browse) {
if($browse == "/") return "";
else if($browse[0] != "/") return ""; // browse variable should always start with a slash
else {
if(get_magic_quotes_gpc()) {
return htmlspecialchars(stripslashes($browse));
} else {
return htmlspecialchars($browse);
}
}
}
/**
* Make sure incomming search variable is 'clean'
*/
function cleanSearch($search) {
return strip_tags($search);
}
/**
* Will display an error message to the webmaster
*/
function errorMsg( $msg ) {
echo "<center><table width='300' border='0' cellspacing='1' cellpadding='0' bgcolor='#000000'><tr><td><table width='100%' bgcolor='#CC0033' border='0' cellspacing='4' cellpadding='0'>";
echo "<tr><td align='center'><font face='Arial' size=3 color='#FFFF00'><b>Attention webmaster:</b></font><br><br>";
echo "<font face='Arial' size=2 color='#ffffff'>$msg</font>";
echo "</td></tr></table></td></tr></table></center>";
}
/**
* Will read data from dmoz, or the local cache (if enabled)
*/
function readData( $odpurl, $enable_cache ) {
global $cache_folder, $cache_timeout;
if($enable_cache) {
$filename = md5($odpurl);
$fullpath = $cache_folder."/".$filename;
if(file_exists($fullpath)) { // already cached
if($cache_timeout == 0) {
$odpurl = $fullpath;
} else {
$diff = time()-filemtime($fullpath);
if($diff > $cache_timeout) {
$savecache = true;
} else {
$odpurl = $fullpath;
}
}
} else {
$savecache = true;
}
}
if((@$fp = fopen( $odpurl, "r" )) != false) {
$html = join( "", file( $odpurl ) );
fclose ( $fp );
if($html != "" && $savecache) {
if(strpos($html, $donotcache) === false) { // don't cache if this is the 'ODP under heavy load' message
if((@$cf = fopen( $fullpath, "w" )) != false) {
fwrite($cf, $html);
fclose( $cf );
} else {
errorMsg("Error writing to cache!<br>Make sure the cache folder exists and is writeable by this script (you may also disable the cache)");
}
}
}
} else {
errorMsg("Error reading data from dmoz. This may be caused by the fact that you do not have access to use fopen() in this way.<br>Or it may be because the dmoz url is incorrect.<br><br>See <a href='http://www.bie.no/forum/index.php?act=ST&f=2&t=53'>discussion here</a> for more info!");
}
return $html;
}
/****************************************************************************
* Main script start
****************************************************************************/
set_error_handler("error_handler");
$browse = cleanBrowse($HTTP_GET_VARS["browse"]);
if($rootcategory != "" && $browse == "" && $search == "") $browse = $rootcategory;
$ver = $HTTP_GET_VARS["ver"];
$searchstring = $HTTP_POST_VARS["search"];
if($searchstring == "") $searchstring = $HTTP_GET_VARS["search"];
$searchstring = cleanSearch($searchstring);
$start = intval($HTTP_GET_VARS["start"]);
$morecat = htmlspecialchars($HTTP_GET_VARS["morecat"]);
/**
* Check for adult content ??
*/
if($adult_filter) {
if( $browse != "") {
$catarr = explode("/", $browse);
$i=0;
while($catarr[$i] == "") $i++;
if(strtolower($catarr[$i]) == "adult") {
include("includes/blocked.php");
die();
}
} else if($searchstring != "") {
if(in_array(strtolower($searchstring), $illegalwords)) {
include("includes/blocked.php");
die();
}
}
}
if( $browse != "" ) { // the user is browsing the categories
include("includes/browse_header.php");
if($show_browse_sponsor != "") include("includes/" . $sponsor_file_browse);
$browselink = linkencode($rooturl.$browse);
$html = readData($browselink, $browse_cache);
if($html != "") {
$startpos = strpos( $html, "[ <a" );
if($startpos != FALSE) $abc = TRUE;
if($abc == FALSE) $startpos = strpos( $html, $startbrws );
$html = substr( $html, $startpos, strlen($html));
if($abc == TRUE) $html = "<br><center>" . $html;
$endpos = strpos( $html, $endbrws );
$html = substr( $html, 0, $endpos );
$html = str_replace( $linkstr . "/", $linkstr . $replace . "/", $html );
/* Major update by Mark Dickenson 22/8/2010 to reflect change to css layout by DMOZ
* - changed xhtml tags to html
* - must use css style statements in new browse header include file to work properly
*/
$html = str_replace( "' href='" , "' href='"."/odp.php?browse=" , $html );
$html = str_replace( '[' , '' , $html );
$html = str_replace( ']' , '' , $html );
$html = str_replace( "<span class='start'></span>" , '' , $html );
$html = str_replace( "<span class='links'>" , '<span>' , $html );
$html = str_replace( "<span class='pipe'>|</span>" , ' | ' , $html );
$html = str_replace( 'Open Directory' , 'Goan Internet Portal' , $html );
$html = str_replace( "<img src='/img/dividerN.gif'" , '<hr' , $html );
$html = str_replace( '<span><hr style="height:2px;float:left;width:100%" /></span>' , '<hr>' , $html );
$html = str_replace( "<div class='alphanumeric'>" , '<center>' , $html );
$html = str_replace( "<span class='end'>" , '</center>' , $html );
$html = str_replace( '<div class="dir-1 borN">' , '<table width=95% align="center"><tr>' , $html );
$html = str_replace( '<ul class="directory dir-col">' , '<td>' , $html );
$html = str_replace( '</ul>' , '</td>' , $html );
$html = str_replace( '<div class="clear"></div>' , '</tr></table><br>' , $html );
$html = str_replace( '<legend>This' , '</ul><legend>This' , $html );
$html = str_replace( '<fieldset class="fieldcap">' , '' , $html );
$html = str_replace( '<fieldset class="fieldcap fieldcapN">' , '' , $html );
$html = str_replace( '</fieldset>' , '</ul></tr></table><br>' , $html );
$html = str_replace( '<hr />' , '' , $html );
$html = str_replace( '<li class="star">' , '' , $html );
$html = str_replace( '<li class="">' , '<li>' , $html );
$html = str_replace( '<img src="' . $odp_image_path, '<img src="' . $your_image_path, $html );
if($show_thumbnails) {
$lines = explode("\n", $html);
for($i=0; $i<count($lines); $i++) {
$curline = $lines[$i] ;
if(eregi("<a href=\"(.*)\">(.*)</a>(.*).$", $curline, $info)) {
$url = $info[1];
$title = $info[2];
$desc = $info[3];
if(eregi("(.*)<a", $desc, $descarr)) {
$senddesc = $descarr[1];
} else {
$senddesc = $desc;
}
if($use_portal_page) {
$gourl = "go.php?url=". ($url) ."&title=". urlencode( strip_tags($title)) ."&desc=". urlencode(strip_tags($senddesc));
} else {
$gourl = $url;
}
if(strpos($url, $HTTP_SERVER_VARS["PHP_SELF"]) === false) {
echo "</td></tr></table><table width=90% align='center'><tr align='left'><td align='left' width='10%'><a href=\"$gourl\"><img src='http://open.thumbshots.org/image.pxf?url=$url' border='0' onload='if (this.width>50) this.border=1'></td><td align='left' width='50%'><a href=\"$gourl\">$title</a><br>";
} else {
echo $curline;
}
} else {
echo $curline;
}
}
} else {
echo $html;
}
} else { // open failed
include("includes/404.php");
}
include("includes/browse_footer.php");
}
else if( $searchstring != "" ) { // the user is searching
$all = $HTTP_POST_VARS["all"];
$cat = $HTTP_POST_VARS["cat"];
include("includes/search_header.php");
if($show_search_sponsor != "" ) include("includes/" . $sponsor_file_search);
$searchurl = linkencode($searchurl . $searchstring . "&all=$all&cat=$cat" . ($start == "" ? "" : "&start=" . $start ) . ($morecat == "" ? "" : "&morecat=" . $morecat));
$html = readData( $searchurl, $search_cache );
if( strpos( $html, $noresult) != FALSE ) { // no results found
include("includes/search_no_result.php");
} else {
$startpos = strpos( $html, $startsrch );
$html = substr( $html, $startpos, strlen($html));
$endpos = strpos( $html, $endsrch );
$html = substr( $html, 0, $endpos );
$html = str_replace( $linkstr . "/", $linkstr . $replace . "/", $html );
$html = str_replace( "http://dmoz.org", "$filename?browse=", $html );
$html = str_replace( $search_next, $search_next_replace, $html );
$html = str_replace( $filename . '?browse=search?', $filename . '?', $html );
/* bug fix by Mark Dickenson 6-12-09
* removed star.gif completely from search results to fix thumbnails not being displayed
*/
$html = str_replace( '<img src="/img/star.gif" width=15 height=16 alt="Editor\'s Choice"> ' , '' , $html );
/* bug fix by Mark Dickenson 6-12-09
* removed carriage return - fixed pages count appearing outside table
*/
$html = str_replace( '</a>' . "\n", '</a>' , $html );
if($show_thumbnails) {
$lines = explode("\n", $html);
for($i=0; $i<count($lines); $i++) {
$curline = $lines[$i] ;
if(eregi("<li><a href=\"(.*)\">(.*)</a> - (.*)", $curline, $info)) {
$url = $info[1];
$title = $info[2];
$desc = $info[3];
if(eregi("(.*)<a", $desc, $descarr)) {
$senddesc = $descarr[1];
} else {
$senddesc = $desc;
}
if($use_portal_page) {
$gourl = "go.php?url=". ($url) ."&title=". urlencode( strip_tags($title)) ."&desc=". urlencode(strip_tags($senddesc));
} else {
$gourl = $url;
}
if(strpos($url, $HTTP_SERVER_VARS["PHP_SELF"]) === false) {
echo "<table border='0'><tr><td><a href=\"$gourl\"><img src='http://open.thumbshots.org/image.pxf?url=$url' border='0' onload='if (this.width>50) this.border=1'></a><td width='1%'></td><td>"."<h4><ul><li style='color:#ff9900'><span style='color:#00FF00'><a href=\"$gourl\">$title</a></h4><ul> $desc"."</td><td width='4%'></td></tr></table>";
} else {
echo $curline;
}
} else {
echo $curline;
}
}
} else {
echo $html;
}
}
include("includes/search_footer.php");
}
else { // show main page
include("includes/main_header.php");
$html = readData($rooturl, $browse_cache);
$startpos = strpos( $html, $startstr );
$html = substr( $html, $startpos, strlen($html));
$endpos = strpos( $html, $endstr );
$html = substr( $html, 0, $endpos );
$html = str_replace( $linkstr , $linkstr . $replace, $html );
$html = str_replace( '<img src="' . $odp_image_path, '<img src="' . $your_image_path, $html );
echo $html;
include("includes/main_footer.php");
}
?>