mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2025-06-25 15:37:27 +02:00
Optimisation des téléchargements ZIP
This commit is contained in:
@ -5,36 +5,15 @@ if (!isset($_SESSION["role"]) || $_SESSION["role"] != Role::ADMIN && $_SESSION["
|
||||
|
||||
if (isset($_POST["download_zip"])) {
|
||||
$id = $_POST["tournament"];
|
||||
$tournament = Tournament::fromId($id);
|
||||
$sols = $tournament->getAllSolutions();
|
||||
|
||||
$zip = new ZipArchive();
|
||||
|
||||
$temp = tempnam("tmp", "tfjm-");
|
||||
|
||||
if ($zip->open($temp, ZipArchive::CREATE) !== true) {
|
||||
die("Impossible de créer le fichier zip.");
|
||||
}
|
||||
|
||||
/** @var Solution $sol */
|
||||
foreach ($sols as $sol) {
|
||||
$file_id = $sol->getFileId();
|
||||
$problem = $sol->getProblem();
|
||||
$version = $sol->getVersion();
|
||||
$team = Team::fromId($sol->getTeamId());
|
||||
$team_name = $team->getName();
|
||||
$team_trigram = $team->getTrigram();
|
||||
|
||||
$zip->addFile("$LOCAL_PATH/files/$file_id", "Problème $problem $team_trigram.pdf");
|
||||
}
|
||||
|
||||
$zip->close();
|
||||
$file_name = getZipFile(DocumentType::SOLUTION, $id);
|
||||
|
||||
header("Content-Type: application/zip");
|
||||
header("Content-Disposition: attachment; filename=\"Solutions du tournoi de " . $tournament->getName() . ".zip\"");
|
||||
header("Content-Length: " . strval(filesize($temp)));
|
||||
header("Content-Length: " . strval(filesize($file_name)));
|
||||
|
||||
readfile($temp);
|
||||
readfile($file_name);
|
||||
|
||||
exit();
|
||||
}
|
||||
|
Reference in New Issue
Block a user