extranet/www/pages/fichier.php

56 lines
1.7 KiB
PHP
Raw Normal View History

<?php
include_once(FWK_PATH.'/common/curl.php');
if (!$_SESSION['connected'])
echo ('Vous devez <20>tre connect<63> afin de pouvoir utiliser cette fonctionnalit<69>');
else
{
2009-04-01 12:45:45 +00:00
$tabInfo = $_SESSION['tabInfo'];
if (isset($_REQUEST['nomFic'])) $nomFic = $_REQUEST['nomFic'];
else $nomFic = '';
try {
$file = PATH_DATA.'/survliste/'.$nomFic;
$file2 = $file.'.bz2';
2009-07-07 08:12:49 +00:00
if (!file_exists($file) || filesize($file)==0) {
//G<>n<EFBFBD>ration du fichier
try {
$O = $client->getListeFichierSurv($_SESSION['tabInfo']['login'], $_SESSION['tabInfo']['prenom'], $nomFic);
} catch (SoapFault $fault) {
require_once 'soaperror.php';
processSoapFault($client,$fault,$tabInfo);
}
//R<>cup<75>ration du fichier
$page=getUrl(WEBSERVICE_URI.'csv/'.$nomFic.'.bz2', '', '', '', false);
$body=$page['body'];
$fp=@fopen($file2, 'w');
@fwrite($fp, $body);
@fclose($fp);
$bz = bzopen($file2, "r") or die("Impossible d'ouvrir le fichier $file");
$fp=@fopen($file, 'w');
while (!feof($bz)) {
@fwrite($fp, bzread($bz, 4096));
}
bzclose($bz);
}
} catch (SoapFault $fault) {
2009-02-26 17:16:11 +00:00
include_once(realpath(dirname(__FILE__).'/../../').'/includes/soaperror.php');
processSoapFault($client,$fault,$tabInfo);
}
$filename=basename($file);
$body=file_get_contents($file);
header("Pragma: public");
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: must-revalidate");
header("Content-type: application/csv");
header("Content-Length: ".strlen($body));
header('Content-disposition: inline; filename="'.$filename.'"');// attachement or inline
header("Accept-Ranges: ".strlen($body));
echo $body;
}
?>