Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bs_disp_as_mime_type.php - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5284e553fad3997ee73faf30136300b1ee6ccad9 (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
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * @package     BLOBStreaming
 */

/**
 * Core library.
 */
require_once './libraries/common.inc.php';

// Check URL parameters
PMA_checkParameters(array('reference', 'c_type'));

// Increase time limit, because fetching blob might take some time
@set_time_limit(0);

$reference = $_REQUEST['reference'];
/*
 * FIXME: Maybe it would be better to check MIME type against whitelist as
 * this code sems to support only few MIME types (check
 * function PMA_BS_CreateReferenceLink in libraries/blobstreaming.lib.php).
 */
$c_type = preg_replace('/[^A-Za-z0-9/_-]/', '_', $_REQUEST['c_type']);

// Get the blob streaming URL
$filename = PMA_BS_getURL($reference);
if (empty($filename)) {
    die(__('No blob streaming server configured!'));
}

$hdrs = get_headers($filename, 1);

if ($hdrs === false) {
    die(__('Failed to fetch headers'));
}

$fHnd = fopen($filename, "rb");

if ($fHnd === false) {
    die(__('Failed to open remote URL'));
}

$f_size = $hdrs['Content-Length'];

PMA_download_header(basename($filename), $c_type, $f_size);

$pos = 0;
$content = "";

while (!feof($fHnd)) {
    $content .= fread($fHnd, $f_size);
    $pos = strlen($content);

    if ($pos >= $f_size) {
        break;
    }
}

echo $content;
flush();

fclose($fHnd);