2019-08-26 14:27:55 +00:00
|
|
|
<?php
|
|
|
|
|
2019-09-06 23:33:05 +00:00
|
|
|
if (!isset($_SESSION["role"]) || $_SESSION["role"] != Role::ADMIN && $_SESSION["role"] != Role::ORGANIZER)
|
2019-09-07 11:42:36 +00:00
|
|
|
require_once "server_files/403.php";
|
2019-09-06 11:48:50 +00:00
|
|
|
|
2019-08-26 14:27:55 +00:00
|
|
|
if (isset($_POST["download_zip"])) {
|
|
|
|
$id = $_POST["tournament"];
|
2019-09-09 22:57:33 +00:00
|
|
|
$tournament = Tournament::fromId($id);
|
2019-08-26 14:27:55 +00:00
|
|
|
|
2019-09-09 10:15:48 +00:00
|
|
|
$file_name = getZipFile(DocumentType::SOLUTION, $id);
|
2019-08-26 14:27:55 +00:00
|
|
|
|
|
|
|
header("Content-Type: application/zip");
|
2019-09-07 23:35:05 +00:00
|
|
|
header("Content-Disposition: attachment; filename=\"Solutions du tournoi de " . $tournament->getName() . ".zip\"");
|
2019-09-09 10:15:48 +00:00
|
|
|
header("Content-Length: " . strval(filesize($file_name)));
|
2019-08-26 14:27:55 +00:00
|
|
|
|
2019-09-09 10:15:48 +00:00
|
|
|
readfile($file_name);
|
2019-08-26 14:27:55 +00:00
|
|
|
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2019-09-07 23:35:05 +00:00
|
|
|
$user = $_SESSION["user"];
|
|
|
|
$tournaments = $_SESSION["role"] == Role::ADMIN ? Tournament::getAllTournaments() : $user->getOrganizedTournaments();
|
2019-08-21 20:56:46 +00:00
|
|
|
|
2019-09-07 23:35:05 +00:00
|
|
|
require_once "server_files/views/solutions_orga.php";
|