diff options
author | Brian Evans <grknight@gentoo.org> | 2018-01-30 10:41:36 -0500 |
---|---|---|
committer | Brian Evans <grknight@gentoo.org> | 2018-01-30 10:41:36 -0500 |
commit | a6b2a6f02cff02b0417ae10a7057ca3e87f337e6 (patch) | |
tree | 2e9bbf7cb08668997d3c33621c5b4742607eb5f8 /php | |
parent | update admin/lstats.php (diff) | |
download | bouncer-a6b2a6f02cff02b0417ae10a7057ca3e87f337e6.tar.gz bouncer-a6b2a6f02cff02b0417ae10a7057ca3e87f337e6.tar.bz2 bouncer-a6b2a6f02cff02b0417ae10a7057ca3e87f337e6.zip |
Remove old index backup
Diffstat (limited to 'php')
-rw-r--r-- | php/index.php.orig | 79 |
1 files changed, 0 insertions, 79 deletions
diff --git a/php/index.php.orig b/php/index.php.orig deleted file mode 100644 index 9cc7791..0000000 --- a/php/index.php.orig +++ /dev/null @@ -1,79 +0,0 @@ -<?php -/** - * Main handler. - * @package mirror - * @subpackage pub - */ -error_reporting(0); // hide all errors -require_once('./cfg/config.php'); // config file that defines constants - -// if we don't have an os, make it windows, playing the odds -if (empty($_GET['os'])) { - $_GET['os'] = 'Any'; -} - -// do we even have an os or product? -if (!empty($_GET['os'])&&!empty($_GET['product'])) { - require_once(LIB.'/db.php'); // core mysql wrappers - db_connect(DBHOST,DBUSER,DBPASS); // open persistent connection to db - db_select(DBNAME); // select db - - // clean in os and product strings - $os_name = mysql_real_escape_string(trim(strtolower($_GET['os']))); - $product_name = mysql_real_escape_string(trim(strtolower($_GET['product']))); - - printf("osname=%s<br />\nprname=%s<br />\n",$os_name,$product_name); - - // get os and product IDs - $os_id = db_name_to_id('mirror_os','os_id','os_name',$os_name); - $product_id = db_name_to_id('mirror_products','product_id','product_name',$product_name); - - printf("osid=%s<br />\nprid=%s<br />\n",$os_id,$product_id); - - // do we have a valid os and product? - if (!empty($os_id)&&!empty($product_id)) { - $location = db_get_one("SELECT location_id,location_path FROM mirror_locations WHERE product_id={$product_id} AND os_id={$os_id}"); - - // did we get a valid location? - if (!empty($location)) { - $mirror = db_get_one("SELECT mirror_mirrors.mirror_id,mirror_baseurl FROM mirror_mirrors, mirror_location_mirror_map WHERE mirror_mirrors.mirror_id = mirror_location_mirror_map.mirror_id AND mirror_location_mirror_map.location_id = {$location['location_id']} AND mirror_active='1' AND location_active ='1' ORDER BY rand()*(1/mirror_rating)"); - - // did we get a valid mirror? - if (!empty($mirror)) { - - // if logging is enabled, insert log - if (LOGGING) { - db_query("UPDATE mirror_mirrors SET mirror_count=mirror_count+1 WHERE mirror_id={$mirror['mirror_id']}"); - db_query("UPDATE mirror_products SET product_count=product_count+1 WHERE product_id={$product_id}"); - } - - // LANGUAGE HACK - if (!empty($_GET['lang'])) { -//// $location['location_path'] = str_replace('x86',$_GET['lang'],$location['location_path']); - $location['location_path'] = str_replace('en-US',$_GET['lang'],$location['location_path']); - } - - // BitTorrent HACK - robbat2 - if (!empty($_GET['extra'])) { - $extra = $_GET['extra']; - $location['location_path'] .= ereg_replace('\?.*|&.*','',$extra); - } - - // if we are just testing, then just print and exit. - if (!empty($_GET['print'])) { - print('Location: '.$mirror['mirror_baseurl'].$location['location_path']); - exit; - } - - // otherwise, by default, redirect them and exit - header('Location: '.$mirror['mirror_baseurl'].$location['location_path']); - exit; - } - } - } -} - -// if we get here, the request was invalid; redirect to mozilla home -header('Location: http://www.gentoo.org/'); -exit; -?> |