forked from Th3-822/rapidleech
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathother.php
549 lines (494 loc) · 20.5 KB
/
other.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
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
<?php
if (!defined('RAPIDLEECH')) {
require('../deny.php');
exit;
}
function create_hosts_file($host_file = 'hosts.php') { // To be rewritten or deleted
$fp = opendir(HOST_DIR . 'download/');
while (($file = readdir($fp)) !== false) {
if (substr($file, -4) == '.inc') require_once (HOST_DIR . "download/$file");
}
if (!is_array($host)) html_error(lang(127));
else {
$fs = fopen(HOST_DIR . "download/$host_file", 'wb');
if (!$fs) html_error(lang(128));
else {
fwrite($fs, "<?php\r\n\$host = array(\r\n");
$i = 0;
foreach ($host as $site => $file) {
if ($i != (count($host) - 1)) fwrite($fs, "'" . $site . "' => '" . $file . "',\r\n");
else fwrite($fs, "'" . $site . "' => '" . $file . "');\r\n?>");
$i++;
}
closedir($fp);
fclose($fs);
}
}
}
function login_check() {
global $options;
if ($options['login']) {
function logged_user($ul) {
foreach ($ul as $user => $pass) {
if ($_SERVER['PHP_AUTH_USER'] == $user && isset($_SERVER['PHP_AUTH_PW']) && $_SERVER['PHP_AUTH_PW'] == $pass) return true;
}
return false;
}
if (empty($_SERVER['PHP_AUTH_USER']) && (!empty($_SERVER['HTTP_AUTHORIZATION']) || !empty($_SERVER['REDIRECT_HTTP_AUTHORIZATION']))) {
$auth = !empty($_SERVER['HTTP_AUTHORIZATION']) ? $_SERVER['HTTP_AUTHORIZATION'] : $_SERVER['REDIRECT_HTTP_AUTHORIZATION'];
if (stripos($auth, 'Basic ') === 0 && strpos(($auth = base64_decode(substr($auth, 6))), ':') > 0) list($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']) = explode(':', $auth, 2);
unset($auth);
}
if (empty($_SERVER['PHP_AUTH_USER']) || !logged_user($options['users'])) {
header('WWW-Authenticate: Basic realm="RAPIDLEECH PLUGMOD"');
header('HTTP/1.0 401 Unauthorized');
include('deny.php');
exit;
}
}
}
function is_present($lpage, $mystr, $strerror = '') {
if (stripos($lpage, $mystr) !== false) html_error((!empty($strerror) ? $strerror : $mystr));
}
function is_notpresent($lpage, $mystr, $strerror) {
if (stripos($lpage, $mystr) === false) html_error($strerror);
}
function insert_location($inputs, $action = 0) {
if (!is_array($inputs)) {
if (strpos($inputs, '?') !== false) list($action, $inputs) = explode('?', $inputs, 2);
$query = explode('&', $inputs);
$inputs = array();
foreach($query as $q) {
list($name, $value) = explode('=', $q, 2);
if (empty($name) || empty($value)) continue;
$inputs[$name] = $value;
}
unset($query);
}
if (isset($_GET['GO']) && $_GET['GO'] == 'GO') $_GET = array_merge($_GET, $inputs);
else {
if ($action === 0) $action = $_SERVER['SCRIPT_NAME'];
$fname = 'r'.time().'l';
echo "\n<form name='$fname' ".(!empty($action) ? "action='$action' " : '')."method='POST'>\n";
foreach($inputs as $name => $value) echo "\t<input type='hidden' name='$name' value='" . htmlspecialchars($value, ENT_QUOTES) . "' />\n";
echo "</form>\n<script type='text/javascript'>void(document.$fname.submit());</script>\n</body>\n</html>";
flush();
}
}
function pause_download() { // To make sure that the files pointers and streams are closed and unlocked.
if (!empty($GLOBALS['fs']) && is_resource($GLOBALS['fs'])) {
flock($GLOBALS['fs'], LOCK_UN);
if (get_resource_type($GLOBALS['fs']) == 'stream') stream_socket_shutdown($GLOBALS['fs'], STREAM_SHUT_RDWR);
fclose($GLOBALS['fs']);
}
if (!empty($GLOBALS['fp']) && is_resource($GLOBALS['fp'])) {
flock($GLOBALS['fp'], LOCK_UN);
if (get_resource_type($GLOBALS['fp']) == 'stream') stream_socket_shutdown($GLOBALS['fp'], STREAM_SHUT_RDWR);
fclose($GLOBALS['fp']);
}
}
function cut_str($str, $left, $right) {
$str = substr(stristr($str, $left), strlen($left));
$leftLen = strlen(stristr($str, $right));
$leftLen = $leftLen ? -($leftLen) : strlen($str);
$str = substr($str, 0, $leftLen);
return $str;
}
// tweaked cutstr with pluresearch functionality
function cutter($str, $left, $right, $cont = 1) {
for($iii = 1; $iii <= $cont; $iii++) $str = substr(stristr($str, $left), strlen($left));
$leftLen = strlen(stristr($str, $right));
$leftLen = $leftLen ? -($leftLen) : strlen($str);
$str = substr($str, 0, $leftLen);
return $str;
}
function write_file($file_name, $data, $trunk = 1) {
if ($trunk == 1) $mode = 'wb';
elseif ($trunk == 0) $mode = 'ab';
$fp = fopen($file_name, $mode);
if (!$fp || !flock($fp, LOCK_EX) || !fwrite($fp, $data) || !flock($fp, LOCK_UN) || !fclose($fp)) return FALSE;
return TRUE;
}
function read_file($file_name, $count = -1) {
if ($count == -1) $count = filesize($file_name);
$fp = fopen($file_name, 'rb');
flock($fp, LOCK_SH);
$ret = fread($fp, $count);
flock($fp, LOCK_UN);
fclose($fp);
return $ret;
}
function pre($var) {
echo "<pre>\n" . htmlspecialchars(print_r($var, true)) . "\n</pre>\n";
}
function getmicrotime() {
list ($usec, $sec) = explode(' ', microtime());
return ((float)$usec + (float)$sec);
}
function html_error($msg) {
if (!empty($GLOBALS['throwRLErrors']) || (strtolower(basename($_SERVER['SCRIPT_NAME'])) == 'audl.php' && isset($_REQUEST['GO']) && $_REQUEST['GO'] == 'GO' && $_REQUEST['server_side'] == 'on' && !empty($GLOBALS['isHost']))) throw new Exception($msg); // throw errors for try and catch usage.
else {
if (!headers_sent()) include_once(TEMPLATE_DIR.'header.php');
echo '<div align="center">';
echo "<span class='htmlerror'><b>$msg</b></span><br /><br />";
if (isset($_GET['audl'])) echo '<script type="text/javascript">parent.nextlink();</script>';
if (!empty($GLOBALS['options']['new_window'])) echo '<a href="javascript:window.close();">'.lang(378).'</a>';
else echo '<a href="'.htmlspecialchars($_SERVER['SCRIPT_NAME'], ENT_QUOTES).'">'.lang(13).'</a>';
echo '</div>';
}
pause_download();
include(TEMPLATE_DIR.'footer.php');
exit();
}
function sec2time($time) {
$hour = round($time / 3600, 2);
if ($hour >= 1) {
$hour = floor($hour);
$time -= $hour * 3600;
}
$min = round($time / 60, 2);
if ($min >= 1) {
$min = floor($min);
$time -= $min * 60;
}
$sec = $time;
$hour = ($hour > 1) ? $hour . ' ' . lang(129) . ' ' : ($hour == 1) ? $hour . ' ' . lang(130).' ' : '';
$min = ($min > 1) ? $min . ' ' . lang(131) . ' ' : ($min == 1) ? $min . ' ' . lang(132).' ' : '';
$sec = ($sec > 1) ? $sec . ' ' . lang(133) : ($sec == 1 || $sec == 0) ? $sec . ' ' . lang(134) : '';
return $hour . $min . $sec;
}
// Updated function to be able to format up to Yotabytes!
function bytesToKbOrMbOrGb($bytes) {
if (is_numeric($bytes)) {
$s = array('B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB');
$e = floor(log($bytes) / log(1024));
return sprintf('%.2f ' . $s[$e], @($bytes / pow(1024, floor($e))));
} else $size = 'Unknown';
return $size;
}
function updateListInFile($list) {
if (count($list) > 0) {
foreach($list as $key => $value) $list[$key] = serialize($value);
if (!@write_file(CONFIG_DIR . 'files.lst', implode("\r\n", $list) . "\r\n") && count($list) > 0) return FALSE;
else return TRUE;
} elseif (@file_exists(CONFIG_DIR . 'files.lst')) {
// Truncate files.lst instead of removing it since we don't have full
// read/write permission on the configs folder
$fh = fopen(CONFIG_DIR . 'files.lst','w');
fclose($fh);
return true;
}
}
function _cmp_list_enums($a, $b) {
return strcmp($a['name'], $b['name']);
}
function file_data_size_time($file) {
$size = $time = false;
if (is_file($file)) {
$size = @filesize($file);
$time = @filemtime($file);
}
if ($size === false && $GLOBALS['options']['2gb_fix'] && file_exists($file) && !is_dir($file) && !is_link($file)) {
if (substr(PHP_OS, 0, 3) !== 'WIN') {
@exec('stat' . (stripos(@php_uname('s'), 'bsd') !== false ? '-f %m ' : ' -c %Y ') . escapeshellarg($file), $time, $tmp);
if ($tmp == 0) $time = trim(implode($time));
@exec('stat' . (stripos(@php_uname('s'), 'bsd') !== false ? '-f %z ' : ' -c %s ') . escapeshellarg($file), $size, $tmp);
if ($tmp == 0) $size = trim(implode($size));
}
}
if ($size === false || $time === false) { return false; }
return array($size, $time);
}
function _create_list() {
$glist = array();
if (($GLOBALS['options']['show_all'] === true) && (isset($_COOKIE['showAll']) && $_COOKIE['showAll'] == 1)) {
$dir = dir(DOWNLOAD_DIR);
while(false !== ($file = $dir->read())) {
if ($file == '.' || $file == '..' || ($tmp = file_data_size_time(DOWNLOAD_DIR.$file)) === false) continue;
list($size, $time) = $tmp;
if (!is_array($GLOBALS['options']['forbidden_filetypes']) || !in_array(strtolower(strrchr($file, '.')), $GLOBALS['options']['forbidden_filetypes'])) {
$file = DOWNLOAD_DIR . $file;
while(isset($glist[$time])) $time++;
$glist[$time] = array('name' => realpath($file), 'size' => bytesToKbOrMbOrGb($size), 'date' => $time);
}
}
$dir->close();
@uasort($glist, '_cmp_list_enums');
} else {
if (@file_exists(CONFIG_DIR . 'files.lst') && ($glist = file(CONFIG_DIR . 'files.lst')) !== false) {
$listReformat = array();
foreach($glist as $key => $record) {
if ($record = @unserialize($record)) {
$date = 0;
foreach($record as $field => $value) {
switch ($field) {
case 'date':
$date = $value;
default:
$listReformat[$key][$field] = $value;
break;
case 'comment':
$listReformat[$key][$field] = htmlspecialchars($value, ENT_QUOTES, 'UTF-8');
break;
}
}
if (!empty($date)) $glist[$date] = $listReformat[$key];
}
unset($glist[$key], $listReformat[$key]);
}
}
}
$GLOBALS['list'] = $glist;
}
function checkmail($mail) {
if (strlen($mail) == 0 || strpos($mail, '@') === false || strpos($mail, '.') === false || !preg_match('/^[a-z0-9_\.-]{1,20}@(([a-z0-9-]+\.)+(com|net|org|mil|edu|gov|arpa|info|biz|inc|name|[a-z]{2})|[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3})$/is', $mail)) return false;
return true;
}
/* Fixed Shell exploit by: icedog */
function fixfilename($fname, $fpach = '') {
$f_name = basename($fname);
$f_dir = dirname(preg_replace('@\.\./@i', '', $fname));
$f_dir = ($f_dir == '.') ? '' : $f_dir;
$f_dir = preg_replace('@\.\./@i', '', $f_dir);
$fpach = preg_replace('@\.\./@i', '', $fpach);
$f_name = preg_replace('@\.(((s|\d)?php)|(hta)|(p[l|y])|(cgi)|(sph))@i', '.xxx', $f_name);
$ret = ($fpach) ? $fpach . DIRECTORY_SEPARATOR . $f_name : ($f_dir ? $f_dir . DIRECTORY_SEPARATOR : '') . $f_name;
return $ret;
}
function getfilesize($f) {
$stat = stat($f);
if ($GLOBALS['is_windows'] || (($stat[11] * $stat[12]) < 4 * 1024 * 1024 * 1024)) return sprintf('%u', $stat[7]);
global $max_4gb;
if ($max_4gb === false) {
$tmp_ = trim(@shell_exec('ls -Ll ' . @escapeshellarg($f)));
while(strstr($tmp_, ' ')) $tmp_ = @str_replace(' ', ' ', $tmp_);
$r = @explode(' ', $tmp_);
$size_ = $r[4];
} else $size_ = -1;
return $size_;
}
function bytesToKbOrMb($bytes) {
$size = ($bytes >= (1024 * 1024 * 1024 * 1024)) ? round($bytes / (1024 * 1024 * 1024 * 1024), 2) . ' TB' : (($bytes >= (1024 * 1024 * 1024)) ? round($bytes / (1024 * 1024 * 1024), 2) . ' GB' : (($bytes >= (1024 * 1024)) ? round($bytes / (1024 * 1024), 2) . ' MB' : round($bytes / 1024, 2) . ' KB'));
return $size;
}
function defport($urls) {
if (!empty($urls['port'])) return $urls['port'];
switch(strtolower($urls['scheme'])) {
case 'http' :
return '80';
case 'https' :
return '443';
case 'ftp' :
return '21';
}
}
function getSize($file) {
$size = filesize($file);
if ($size < 0) {
if (strtoupper(substr(PHP_OS, 0, 3)) != 'WIN') {
$file = @escapeshellarg($file);
$size = trim(`stat -c%s $file`);
} else {
$fsobj = new COM('Scripting.FileSystemObject');
$f = $fsobj->GetFile($file);
$size = $file->Size;
}
}
return $size;
}
function purge_files($delay) {
if (file_exists(CONFIG_DIR . 'files.lst') && is_numeric($delay) && $delay > 0) {
$files_lst = file(CONFIG_DIR . 'files.lst');
$files_new = '';
foreach ($files_lst as $files_line) {
$files_data = unserialize(trim($files_line));
if (file_exists($files_data['name']) && is_file($files_data['name'])) {
if (time() - $files_data['date'] >= $delay) @unlink ($files_data['name']);
else $files_new .= $files_line;
}
}
file_put_contents(CONFIG_DIR . 'files.lst', $files_new);
}
}
// Using this function instead due to some compatibility problems
function is__writable($path) {
//will work in despite of Windows ACLs bug
//NOTE: use a trailing slash for folders!!!
//see http://bugs.php.net/bug.php?id=27609
//see http://bugs.php.net/bug.php?id=30931
if ($path[strlen($path) - 1] == '/') return is__writable($path . uniqid(mt_rand()) . '.tmp');// recursively return a temporary file path
else if (is_dir($path)) return is__writable($path . '/' . uniqid(mt_rand()) . '.tmp');
// check tmp file for read/write capabilities
$rm = file_exists($path);
$f = @fopen($path, 'a');
if ($f === false) return false;
fclose($f);
if (!$rm) unlink($path);
return true;
}
function link_for_file($filename, $only_link = FALSE, $style = '') {
$inCurrDir = strpos(dirname($filename), ROOT_DIR) !== FALSE ? TRUE : FALSE;
if ($inCurrDir) {
$Path = parse_url($_SERVER['SCRIPT_NAME']);
$Path = substr($Path['path'], 0, strlen($Path['path']) - strlen(strrchr($Path['path'], '/')));
$Path = str_replace('\\', '/', $Path.substr(dirname($filename), strlen(ROOT_DIR)));
} elseif (dirname($_SERVER ['SCRIPT_NAME'].'safe') != '/') {
$in_webdir_path = dirname(str_replace('\\', '/', $_SERVER ['SCRIPT_NAME'].'safe'));
$in_webdir_sub = substr_count($in_webdir_path, '/');
$in_webdir_root = ROOT_DIR.'/';
for ($i=1; $i <= $in_webdir_sub; $i++) {
$in_webdir_path = substr($in_webdir_path, 0, strrpos($in_webdir_path, '/'));
$in_webdir_root = realpath($in_webdir_root.'/../').'/';
$in_webdir = (strpos(str_replace('\\', '/', dirname($filename).'/'), str_replace('\\', '/', $in_webdir_root)) === 0) ? TRUE : FALSE;
if ($in_webdir) {
$Path = dirname($in_webdir_path.'/'.substr($filename, strlen($in_webdir_root)));
break;
}
}
} else {
$Path = FALSE;
if ($only_link) return '';
}
$basename = basename($filename);
$Path = $Path.'/'.rawurlencode($basename);
if ($only_link) return 'http://'.$_SERVER['HTTP_HOST'].$Path;
elseif ($Path === FALSE) return '<span>' . htmlspecialchars($basename) . '</span>';
else return '<a href="'.htmlspecialchars($Path, ENT_QUOTES).'"'.($style !== '' ? ' '.$style : '').'>'.htmlspecialchars($basename).'</a>';
}
function lang($id) {
global $lang;
if (empty($lang) || !is_array($lang)) $lang = array();
if (basename($GLOBALS['options']['default_language']) != 'en' && file_exists('languages/en.php')) require_once('languages/en.php');
require_once('languages/'.basename($GLOBALS['options']['default_language']).'.php');
return $lang[$id];
}
#need to keep premium account cookies safe!
function encrypt($string) {
global $secretkey;
if (!$secretkey) return html_error('Value for $secretkey is empty, please create a random one (56 chars max) in config.php!');
require_once 'class.pcrypt.php';
/*
MODE: MODE_ECB or MODE_CBC
ALGO: BLOWFISH
KEY: Your secret key :) (max lenght: 56)
*/
$crypt = new pcrypt(MODE_CBC, 'BLOWFISH', "$secretkey");
// to encrypt
$ciphertext = $crypt->encrypt($string);
return $ciphertext;
}
function decrypt($string) {
global $secretkey;
if (!$secretkey) return html_error('Value for $secretkey is empty, please create a random one (56 chars max) in config.php!');
require_once 'class.pcrypt.php';
/*
MODE: MODE_ECB or MODE_CBC
ALGO: BLOWFISH
KEY: Your secret key :) (max lenght: 56)
*/
$crypt = new pcrypt(MODE_CBC, 'BLOWFISH', "$secretkey");
// to decrypt
$decrypted = $crypt->decrypt($string);
return $decrypted;
}
/**
* Textarea for debugging variable
* @param string The variable you want to debug
* @param int Column for variable display
* @param int Rows for variable display
* @param bool Options to continue or not process
* @param string Charset encoding for htmlspecialchars
*/
function textarea($var, $cols = 100, $rows = 30, $stop = false, $char = 'UTF-8') {
$cols = ($cols == 0) ? 100 : $cols;
$rows = ($rows == 0) ? 30 : $rows;
if ($char === false) $char = 'ISO-8859-1';
echo "\n<br /><textarea cols='$cols' rows='$rows' readonly='readonly'>";
if (is_array($var)) $text = htmlspecialchars(print_r($var, true), ENT_QUOTES, $char);
else $text = htmlspecialchars($var, ENT_QUOTES, $char);
if (empty($text) && !empty($var)) { // Fix "empty?" textarea bug
$char = ($char == 'ISO-8859-1') ? '' : 'ISO-8859-1';
if (is_array($var)) $text = htmlspecialchars(print_r($var, true), ENT_QUOTES, $char);
else $text = htmlspecialchars($var, ENT_QUOTES, $char);
}
echo "$text</textarea><br />\n";
if ($stop) exit;
}
// Get time in miliseconds, like getTime() in javascript
function jstime() {
list($u, $s) = explode(' ', microtime());
return sprintf('%d%03d', $s, $u*1000);
}
function check_referer() {
$refhost = !empty($_SERVER['HTTP_REFERER']) ? cut_str($_SERVER['HTTP_REFERER'], '://', '/') : false;
if (empty($refhost)) return;
//Remove the port.
$httphost = ($pos = strpos($_SERVER['HTTP_HOST'], ':')) !== false ? substr($_SERVER['HTTP_HOST'], 0, $pos) : $_SERVER['HTTP_HOST'];
$refhost = ($pos = strpos($refhost, ':')) !== false ? substr($refhost, 0, $pos) : $refhost;
// If there is a login on the referer, remove it.
$refhost = ($pos = strpos($refhost, '@')) !== false ? substr($refhost, $pos+1) : $refhost;
$whitelist = array($httphost, 'localhost', 'rapidleech.com');
$is_ext = ($refhost == $_SERVER['SERVER_ADDR'] ? false : true);
if ($is_ext)
foreach ($whitelist as $host)
if (host_matches($host, $refhost)) {
$is_ext = false;
break;
}
if ($is_ext) {
// Uncomment next line if you want rickroll the users from Form leechers.
// header("Location: http://www.youtube.com/watch?v=oHg5SJYRHA0");
html_error(sprintf(lang(7), $refhost, 'External referer not allowed.'));
}
}
function rebuild_url($url) {
$url['scheme'] = strtolower($url['scheme']);
return $url['scheme'] . '://' . (!empty($url['user']) && !empty($url['pass']) ? rawurlencode($url['user']) . ':' . rawurlencode($url['pass']) . '@' : '') . strtolower($url['host']) . (!empty($url['port']) && $url['port'] != defport(array('scheme' => $url['scheme'])) ? ':' . $url['port'] : '') . (empty($url['path']) ? '/' : $url['path']) . (!empty($url['query']) ? '?' . $url['query'] : '') . (!empty($url['fragment']) ? '#' . $url['fragment'] : '');
}
if (!function_exists('http_chunked_decode')) {
// Added implementation from a comment at php.net's function page
function http_chunked_decode($chunk) {
$pos = 0;
$len = strlen($chunk);
$dechunk = null;
while(($pos < $len) && ($chunkLenHex = substr($chunk, $pos, ($newlineAt = strpos($chunk, "\n", $pos + 1)) - $pos))) {
if (!is_hex($chunkLenHex)) {
trigger_error('Value is not properly chunk encoded_', E_USER_WARNING);
return false;
}
$pos = $newlineAt + 1;
$chunkLen = hexdec(rtrim($chunkLenHex, "\r\n"));
$dechunk .= substr($chunk, $pos, $chunkLen);
$pos = strpos($chunk, "\n", $pos + $chunkLen) + 1;
}
return $dechunk;
}
function is_hex($hex) {
$hex = strtolower(trim(ltrim($hex, '0')));
if (empty($hex)) $hex = 0;
$dec = hexdec($hex);
return ($hex == dechex($dec));
}
}
function host_matches($site, $host) {
if (empty($site) || empty($host)) return false;
if (strtolower($site) == strtolower($host)) return true;
if (($pos = strripos($host, $site)) !== false && ($pos + strlen($site) == strlen($host)) && $pos > 1 && substr($host, $pos - 1, 1) == '.') return true;
return false;
}
function GetDefaultParams() {
$DParam = array();
if (!empty($_GET['useproxy']) && !empty($_GET['proxy'])) {
$DParam['useproxy'] = 'on';
$DParam['proxy'] = $_GET['proxy'];
if (!empty($GLOBALS['pauth'])) $DParam['pauth'] = urlencode(encrypt($GLOBALS['pauth']));
}
if (isset($_GET['autoclose'])) $DParam['autoclose'] = '1';
if (isset($_GET['audl'])) $DParam['audl'] = 'doum';
if (isset($_GET['premium_acc']) && $_GET['premium_acc'] == 'on') $DParam['premium_acc'] = 'on';
if ($GLOBALS['options']['download_dir_is_changeable'] && !empty($_GET['path'])) $DParam['saveto'] = urlencode($_GET['path']);
$params = array('add_comment', 'domail', 'comment', 'email', 'split', 'partSize', 'method', 'uploadlater', 'uploadtohost');
foreach ($params as $key) if (!empty($_GET[$key])) $DParam[$key] = $_GET[$key];
return $DParam;
}
?>