get_cdf.php
1.99 KB
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
<?php
/**
* Look for a NetCDF file in the local base dir, then convert it using the NetCDF to CDF Python converter.
*/
$converterPath = './nc2cdf.py';
$tmpDir = '/tmp/';
$log_path = $tmpDir . 'get_cdf.log';
if (!$_GET['id']) {
exit('INPUT ERROR');
}
require_once './DDserverWeb_ini.php';
$name = preg_replace('/\..*/', '', $_GET['id']); // ie. ACE/SW/sw19980204
$inputFilePath = baseDir . $name . '.nc.gz'; // ie. /data/DDBASE/DATA/ACE/SW/sw19980204.nc.gz
$outputFilePath = $tmpDir . str_replace('/', '_', $name) . '.cdf'; // ie. /tmp/ACE_SW_sw19980204.cdf
function send_file($mime_type, $send_file_path) {
header('Content-Description: File Transfer');
header('Content-Type: ' . $mime_type);
header('Content-Disposition: attachment; filename="' . basename($send_file_path) . '"');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($send_file_path));
readfile($send_file_path);
}
function error($log_msg) {
global $inputFilePath, $log_path;
file_put_contents($log_path, date("Y-m-d H:i:s") . " with id='" . $_GET['id'] . "': $log_msg\n", FILE_APPEND);
// If the file can not be converted, return the NetCDF file.
send_file('application/x-gzip', basename($inputFilePath));
exit;
}
if (!file_exists($inputFilePath)) {
exit('NO SUCH FILE');
}
if (!is_dir(pathinfo($outputFilePath, PATHINFO_DIRNAME))) {
error("Can not create $outputFilePath because the folder does not exist.");
}
try {
$res = shell_exec("$converterPath $inputFilePath $outputFilePath");
} catch (Exception $e) {
error("Error on shell_exec():\n$e");
}
// The converter is not supposed to output something if the file has been successfully converted
if(trim($res) != '') {
error("The converter said:\n$res");
}
if(! file_exists($outputFilePath)) {
error("The output file $outputFilePath has not been created.");
}
send_file('application/x-cdf', $outputFilePath);
sleep(600); // Wait 10 minutes before to delete the converted file.
unlink($outputFilePath);
exit;
?>