mirror of
				https://gitlab.com/animath/si/plateforme.git
				synced 2025-11-04 07:02:10 +01:00 
			
		
		
		
	Amélioration du code de la page "Tournoi"
This commit is contained in:
		@@ -9,103 +9,117 @@ if ($tournament === null)
 | 
			
		||||
if (isset($_GET["modifier"]) && $_SESSION["role"] != Role::ADMIN && !$tournament->organize($_SESSION["user_id"]))
 | 
			
		||||
    require_once "server_files/403.php";
 | 
			
		||||
 | 
			
		||||
$has_error = false;
 | 
			
		||||
$error_message = null;
 | 
			
		||||
 | 
			
		||||
if (isset($_POST["edit_tournament"])) {
 | 
			
		||||
	$error_message = updateTournament();
 | 
			
		||||
	$update_tournament = new UpdateTournament($_POST);
 | 
			
		||||
	try {
 | 
			
		||||
		$update_tournament->makeVerifications();
 | 
			
		||||
		$update_tournament->updateTournament();
 | 
			
		||||
	} catch (AssertionError $e) {
 | 
			
		||||
		$has_error = true;
 | 
			
		||||
		$error_message = $e->getMessage();
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
$orgas = $tournament->getOrganizers();
 | 
			
		||||
$teams = $tournament->getAllTeams();
 | 
			
		||||
$orgas_response = $DB->query("SELECT `id`, `surname`, `first_name` FROM `users` WHERE (`role` = 'ORGANIZER' OR `role` = 'ADMIN') AND `year` = '$YEAR';");
 | 
			
		||||
 | 
			
		||||
function updateTournament() {
 | 
			
		||||
	global $DB, $URL_BASE, $YEAR, $tournament, $orgas;
 | 
			
		||||
class UpdateTournament
 | 
			
		||||
{
 | 
			
		||||
	public $name;
 | 
			
		||||
	public $organizers;
 | 
			
		||||
	public $size;
 | 
			
		||||
	public $place;
 | 
			
		||||
	public $price;
 | 
			
		||||
	public $date_start;
 | 
			
		||||
	public $date_end;
 | 
			
		||||
	public $date_inscription;
 | 
			
		||||
	public $time_inscription;
 | 
			
		||||
	public $date_solutions;
 | 
			
		||||
	public $time_solutions;
 | 
			
		||||
	public $date_syntheses;
 | 
			
		||||
	public $time_syntheses;
 | 
			
		||||
	public $description;
 | 
			
		||||
	public $final;
 | 
			
		||||
 | 
			
		||||
    $name = htmlspecialchars($_POST["name"]);
 | 
			
		||||
	public function __construct($data)
 | 
			
		||||
	{
 | 
			
		||||
		global $tournament;
 | 
			
		||||
 | 
			
		||||
	$result = $DB->query("SELECT `id` FROM `tournaments` WHERE `name` = '" . $name . "' AND `id` != " . $tournament->getId() . " AND `year` = '$YEAR';");
 | 
			
		||||
	if ($result->fetch())
 | 
			
		||||
		return "Un tournoi existe déjà avec ce nom.";
 | 
			
		||||
		foreach ($data as $key => $value)
 | 
			
		||||
			$this->$key = ($key == "organizers" ? $value : htmlspecialchars($value));
 | 
			
		||||
 | 
			
		||||
	if (!isset($_POST["organizer"]) || sizeof($_POST["organizer"]) == 0)
 | 
			
		||||
		return "Aucun organisateur n'a été choisi.";
 | 
			
		||||
		if ($_SESSION["role"] != Role::ADMIN) {
 | 
			
		||||
			$this->organizers = [];
 | 
			
		||||
			/** @var User $organizer */
 | 
			
		||||
			foreach ($tournament->getOrganizers() as $organizer)
 | 
			
		||||
				$this->organizers[] = $organizer->getId();
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	public function makeVerifications()
 | 
			
		||||
	{
 | 
			
		||||
		global $tournament;
 | 
			
		||||
 | 
			
		||||
		ensure($this->name != null && $this->name != "", "Le nom est invalide.");
 | 
			
		||||
		ensure($this->name == $tournament->getName() || !tournamentExists($this->name), "Un tournoi existe déjà avec ce nom.");
 | 
			
		||||
		ensure(sizeof($this->organizers) > 0, "Aucun organisateur n'a été choisi.");
 | 
			
		||||
 | 
			
		||||
	if ($_SESSION["role"] == Role::ADMIN) {
 | 
			
		||||
		$organizers = $_POST["organizer"];
 | 
			
		||||
		$orgas = [];
 | 
			
		||||
 | 
			
		||||
		foreach ($organizers as $orga_id) {
 | 
			
		||||
		foreach ($this->organizers as $orga_id) {
 | 
			
		||||
			$orga = User::fromId($orga_id);
 | 
			
		||||
			if ($orga === null)
 | 
			
		||||
				return "L'organisateur spécifié n'existe pas.";
 | 
			
		||||
			if ($orga->getRole() != Role::ORGANIZER && $orga->getRole() != Role::ADMIN)
 | 
			
		||||
				return "L'organisateur indiqué ne peut pas organiser de tournoi.";
 | 
			
		||||
			ensure($orga != null, "Un organisateur spécifié n'existe pas.");
 | 
			
		||||
			ensure($orga->getRole() == Role::ORGANIZER || $orga->getRole() == Role::ADMIN, "Une personne indiquée ne peut pas organiser de tournoi.");
 | 
			
		||||
			$orgas[] = $orga;
 | 
			
		||||
		}
 | 
			
		||||
		$this->organizers = $orgas;
 | 
			
		||||
 | 
			
		||||
		ensure(preg_match("#[0-9]*#", $this->size), "Le nombre d'équipes indiqué n'est pas un nombre valide.");
 | 
			
		||||
		$this->size = intval($this->size);
 | 
			
		||||
		ensure($this->size >= 3 && $this->size <= 15, "Un tournoi doit avoir au moins 3 et au plus 15 équipes.");
 | 
			
		||||
 | 
			
		||||
		ensure(preg_match("#[0-9]*#", $this->price), "Le tarif pour les participants n'est pas un entier valide.");
 | 
			
		||||
		$this->price = intval($this->price);
 | 
			
		||||
		ensure($this->price >= 0, "Le TFJM² ne va pas payer les élèves pour venir.");
 | 
			
		||||
		ensure($this->price <= 50, "Soyons raisonnable sur le prix.");
 | 
			
		||||
 | 
			
		||||
		ensure(dateWellFormed($this->date_start), "La date de début n'est pas valide.");
 | 
			
		||||
		ensure(dateWellFormed($this->date_end), "La date de fin n'est pas valide.");
 | 
			
		||||
		ensure(dateWellFormed($this->date_inscription . " " . $this->time_inscription), "La date de clôture des inscriptions n'est pas valide.");
 | 
			
		||||
		ensure(dateWellFormed($this->date_solutions . " " . $this->time_solutions), "La date limite de remise des solutions n'est pas valide.");
 | 
			
		||||
		ensure(dateWellFormed($this->date_syntheses . " " . $this->time_syntheses), "La date limite de remise des notes de synthèse n'est pas valide.");
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	try {
 | 
			
		||||
		$size = intval(htmlspecialchars($_POST["size"]));
 | 
			
		||||
	}
 | 
			
		||||
	catch (Exception $ex) {
 | 
			
		||||
		return "Le nombre d'équipes indiqué n'est pas un entier valide.";
 | 
			
		||||
	}
 | 
			
		||||
	public function updateTournament()
 | 
			
		||||
	{
 | 
			
		||||
		global $URL_BASE, $tournament;
 | 
			
		||||
 | 
			
		||||
	if ($size < 3 || $size > 12)
 | 
			
		||||
		return "Un tournoi doit comporter entre 3 et 12 équipes.";
 | 
			
		||||
		$tournament->setName($this->name);
 | 
			
		||||
		$tournament->setSize($this->size);
 | 
			
		||||
		$tournament->setPlace($this->place);
 | 
			
		||||
		$tournament->setPrice($this->price);
 | 
			
		||||
		$tournament->setStartDate($this->date_start);
 | 
			
		||||
		$tournament->setEndDate($this->date_end);
 | 
			
		||||
		$tournament->setInscriptionDate("$this->date_inscription $this->time_inscription");
 | 
			
		||||
		$tournament->setSolutionsDate("$this->date_solutions $this->time_solutions");
 | 
			
		||||
		$tournament->setSynthesesDate("$this->date_syntheses $this->time_syntheses");
 | 
			
		||||
 | 
			
		||||
	$place = htmlspecialchars($_POST["place"]);
 | 
			
		||||
 | 
			
		||||
	try {
 | 
			
		||||
		$price = intval(htmlspecialchars($_POST["price"]));
 | 
			
		||||
	}
 | 
			
		||||
	catch (Throwable $t) {
 | 
			
		||||
		return "Le tarif pour les participants n'est pas un nombre valide.";
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if ($price < 0)
 | 
			
		||||
		return "Le TFJM² ne va pas payer les élèves pour venir.";
 | 
			
		||||
 | 
			
		||||
	if ($price > 50)
 | 
			
		||||
		return "Soyons raisonnable sur le prix.";
 | 
			
		||||
 | 
			
		||||
	$date_start = htmlspecialchars($_POST["date_start"]);
 | 
			
		||||
	$date_start_parsed = date_parse_from_format("yyyy-mm-dd", $date_start);
 | 
			
		||||
 | 
			
		||||
	$date_end = htmlspecialchars($_POST["date_end"]);
 | 
			
		||||
	$date_end_parsed = date_parse_from_format("yyyy-mm-dd", $date_end);
 | 
			
		||||
 | 
			
		||||
	$date_inscription = htmlspecialchars($_POST["date_inscription"]);
 | 
			
		||||
	$time_inscription = htmlspecialchars($_POST["time_inscription"]);
 | 
			
		||||
	$date_inscription_parsed = date_parse_from_format("yyyy-mm-dd", $date_inscription . ' ' . $time_inscription);
 | 
			
		||||
 | 
			
		||||
	$date_solutions = htmlspecialchars($_POST["date_solutions"]);
 | 
			
		||||
	$time_solutions = htmlspecialchars($_POST["time_solutions"]);
 | 
			
		||||
	$date_solutions_parsed = date_parse_from_format("yyyy-mm-dd", $date_solutions . ' ' . $time_solutions);
 | 
			
		||||
 | 
			
		||||
	$date_syntheses = htmlspecialchars($_POST["date_syntheses"]);
 | 
			
		||||
	$time_syntheses = htmlspecialchars($_POST["time_syntheses"]);
 | 
			
		||||
	$date_syntheses_parsed = date_parse_from_format("yyyy-mm-dd", $date_syntheses . ' ' . $time_syntheses);
 | 
			
		||||
 | 
			
		||||
	if (!$date_start_parsed || !$date_end_parsed || !$date_inscription_parsed || !$date_solutions_parsed || !$date_syntheses_parsed)
 | 
			
		||||
		return "Une date est mal formée.";
 | 
			
		||||
 | 
			
		||||
	$description = htmlspecialchars($_POST["description"]);
 | 
			
		||||
 | 
			
		||||
	$req = $DB->prepare("UPDATE `tournaments` SET `name` = ?, `size` = ?, `place` = ?, `price` = ?, `description` = ?, 
 | 
			
		||||
                           `date_start` = ?, `date_end` = ?, `date_inscription` = ?, `date_solutions` = ?, `date_syntheses` = ?
 | 
			
		||||
                            WHERE `id` = " . $tournament->getId() . ";");
 | 
			
		||||
	$req->execute([$name, $size, $place, $price, $description, $date_start, $date_end,
 | 
			
		||||
		"$date_inscription $time_inscription", "$date_solutions $time_solutions", "$date_syntheses $time_syntheses"]);
 | 
			
		||||
 | 
			
		||||
	if ($_SESSION["role"] == Role::ADMIN) {
 | 
			
		||||
		$DB->exec("DELETE FROM `organizers` WHERE `tournament` = " . $tournament->getId() . ";");
 | 
			
		||||
		foreach ($orgas as $orga) {
 | 
			
		||||
			$req = $DB->prepare("INSERT INTO `organizers`(`organizer`, `tournament`) VALUES(?, ?);");
 | 
			
		||||
			$req->execute([$orga->getId(), $tournament->getId()]);
 | 
			
		||||
		foreach ($this->organizers as $organizer) {
 | 
			
		||||
			if (!$tournament->organize($organizer->getId()))
 | 
			
		||||
				Mailer::sendAddOrganizerForTournamentMail($organizer, $tournament);
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	header("Location: $URL_BASE/tournoi/" . $name);
 | 
			
		||||
	exit();
 | 
			
		||||
		$tournament->clearOrganizers();
 | 
			
		||||
		/** @var User $organizer */
 | 
			
		||||
		foreach ($this->organizers as $organizer)
 | 
			
		||||
			$tournament->addOrganizer($organizer);
 | 
			
		||||
 | 
			
		||||
		header("Location: $URL_BASE/tournoi/" . $this->name);
 | 
			
		||||
		exit();
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
require_once "server_files/views/tournoi.php";
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user