aboutsummaryrefslogtreecommitdiff
blob: c161efd2dba68266d53448f9203c29185d36fc77 (plain)
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
<?php
/**
 *  Regions.
 *  @package mirror
 *  @subpackage admin
 */
$protect=1;  // protect this page
require_once('../cfg/init.php');

if (!empty($_GET['os'])&&!empty($_GET['product'])) {
    // 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'])));
    // 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);
}

if (!empty($_GET['os_id'])&&!empty($_GET['product_id'])) {

    $os_id = intval($_GET['os_id']);
    $product_id = intval($_GET['product_id']);

    
	$mirrors = db_get("
        SELECT DISTINCT
            mirror_baseurl 
        FROM 
            mirror_mirrors 
        INNER JOIN
            mirror_location_mirror_map
        ON
            mirror_location_mirror_map.mirror_id = mirror_mirrors.mirror_id
        INNER JOIN
            mirror_locations
        ON
            mirror_location_mirror_map.location_id = mirror_locations.location_id
        WHERE
            mirror_locations.os_id = {$os_id} AND
            mirror_locations.product_id = {$product_id} AND
            mirror_location_mirror_map.location_active = '1' AND
            mirror_mirrors.mirror_active = '1'
        ");

    header("Content-type: text/plain;");
    foreach ($mirrors as $mirror) {
        echo $mirror['mirror_baseurl']."\n";
    }
    exit;

} else {

    $title = 'Mirror Listing';
    require_once(HEADER);
    echo '<h1>Mirror List</h1>';
    echo '<p>Use this form to get a list of all mirrors serving up active files
    for the selected Product/OS.</p>';
    form_start('list','list','get','./mirror-list.php');
    echo '<div>';
    form_label('Product', 'product','label-small');
    form_select('product_id','product','',mirror_get_products_select(),$posts['product_id']);
    echo ' [<a href="./products.php">edit products</a>]';
    echo '</div><br />';

    echo '<div>';
    form_label('OS', 'os','label-small');
    form_select('os_id','os','',mirror_get_oss_select(),$posts['os_id']);
    echo ' [<a href="./os.php">edit operating systems</a>]';
    echo '</div><br />';
    form_submit('submit','','button1','Update');
    form_end();
    require_once(FOOTER);
}
?>