mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2025-06-25 07:00:32 +02:00
Paiement
This commit is contained in:
@ -3,8 +3,15 @@
|
||||
if (!isset($_SESSION["user_id"]))
|
||||
require_once "server_files/403.php";
|
||||
|
||||
/** @var User $user */
|
||||
/**
|
||||
* @var User $user
|
||||
* @var Team $team
|
||||
* @var Tournament $tournament
|
||||
*/
|
||||
$user = $_SESSION["user"];
|
||||
$team = $_SESSION["team"];
|
||||
|
||||
$tournament = Tournament::fromId($team->getTournamentId());
|
||||
|
||||
$has_error = false;
|
||||
$error_message = null;
|
||||
@ -33,6 +40,18 @@ if (isset($_POST["update_password"])) {
|
||||
}
|
||||
}
|
||||
|
||||
if (isset($_POST["send_document"])) {
|
||||
$send_document = new SendDocument();
|
||||
try {
|
||||
$send_document->makeVerifications();
|
||||
$send_document->sendDocument();
|
||||
}
|
||||
catch (AssertionError $e) {
|
||||
$has_error = true;
|
||||
$error_message = $e->getMessage();
|
||||
}
|
||||
}
|
||||
|
||||
class MyAccount
|
||||
{
|
||||
public $email;
|
||||
@ -151,4 +170,46 @@ class NewPassword
|
||||
}
|
||||
}
|
||||
|
||||
class SendDocument
|
||||
{
|
||||
private $file;
|
||||
private $type;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->file = $_FILES["document"];
|
||||
$this->type = strtoupper(htmlspecialchars($_POST["type"]));
|
||||
}
|
||||
|
||||
public function makeVerifications()
|
||||
{
|
||||
global $LOCAL_PATH;
|
||||
|
||||
ensure($this->file["size"] <= 2e6, "Le fichier doit peser moins que 2 Mo.");
|
||||
ensure(!$this->file["error"], "Une erreur est survenue.");
|
||||
ensure(finfo_file(finfo_open(FILEINFO_MIME_TYPE), $this->file["tmp_name"]) == "application/pdf", "Le fichier doit être au format PDF.");
|
||||
ensure(is_dir("$LOCAL_PATH/files") || mkdir("$LOCAL_PATH/files"), "Un problème est survenue dans l'envoi du fichier. Veuillez contacter l'administrateur du serveur.");
|
||||
}
|
||||
|
||||
public function sendDocument()
|
||||
{
|
||||
global $LOCAL_PATH, $DB, $FINAL;
|
||||
|
||||
do
|
||||
$id = genRandomPhrase(64);
|
||||
while (file_exists("$LOCAL_PATH/files/$id"));
|
||||
|
||||
if (!rename($this->file["tmp_name"], "$LOCAL_PATH/files/$id"))
|
||||
throw new AssertionError("Une erreur est survenue lors de l'envoi du fichier.");
|
||||
|
||||
$req = $DB->prepare("INSERT INTO `documents`(`file_id`, `user`, `team`, `tournament`, `type`)
|
||||
VALUES (?, ?, ?, ?, ?);");
|
||||
$req->execute([$id, $_SESSION["user_id"], $_SESSION["team"]->getId(), $_SESSION["team"]->isSelectedForFinal() ? $FINAL->getId() : $_SESSION["team"]->getTournamentId(), $this->type]);
|
||||
}
|
||||
}
|
||||
|
||||
$documents = $user->getAllDocuments($team->getTournamentId());
|
||||
if ($team->isSelectedForFinal())
|
||||
$documents_final = $user->getAllDocuments($FINAL->getId());
|
||||
|
||||
require_once "server_files/views/mon_compte.php";
|
||||
|
@ -10,18 +10,6 @@ $tournaments = Tournament::getAllTournaments(false, true);
|
||||
$has_error = false;
|
||||
$error_message = null;
|
||||
|
||||
if (isset($_POST["send_document"])) {
|
||||
$send_document = new SendDocument();
|
||||
try {
|
||||
$send_document->makeVerifications();
|
||||
$send_document->sendDocument();
|
||||
}
|
||||
catch (AssertionError $e) {
|
||||
$has_error = true;
|
||||
$error_message = $e->getMessage();
|
||||
}
|
||||
}
|
||||
|
||||
if (isset($_POST["team_edit"])) {
|
||||
$my_team = new MyTeam($_POST);
|
||||
try {
|
||||
@ -57,44 +45,6 @@ if (isset($_SESSION["user_id"]) && isset($_SESSION["team"]) && $_SESSION["team"]
|
||||
else
|
||||
require_once "server_files/403.php";
|
||||
|
||||
class SendDocument
|
||||
{
|
||||
private $file;
|
||||
private $type;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->file = $_FILES["document"];
|
||||
$this->type = strtoupper(htmlspecialchars($_POST["type"]));
|
||||
}
|
||||
|
||||
public function makeVerifications()
|
||||
{
|
||||
global $LOCAL_PATH;
|
||||
|
||||
ensure($this->file["size"] <= 2e6, "Le fichier doit peser moins que 2 Mo.");
|
||||
ensure(!$this->file["error"], "Une erreur est survenue.");
|
||||
ensure(finfo_file(finfo_open(FILEINFO_MIME_TYPE), $this->file["tmp_name"]) == "application/pdf", "Le fichier doit être au format PDF.");
|
||||
ensure(is_dir("$LOCAL_PATH/files") || mkdir("$LOCAL_PATH/files"), "Un problème est survenue dans l'envoi du fichier. Veuillez contacter l'administrateur du serveur.");
|
||||
}
|
||||
|
||||
public function sendDocument()
|
||||
{
|
||||
global $LOCAL_PATH, $DB, $FINAL;
|
||||
|
||||
do
|
||||
$id = genRandomPhrase(64);
|
||||
while (file_exists("$LOCAL_PATH/files/$id"));
|
||||
|
||||
if (!rename($this->file["tmp_name"], "$LOCAL_PATH/files/$id"))
|
||||
throw new AssertionError("Une erreur est survenue lors de l'envoi du fichier.");
|
||||
|
||||
$req = $DB->prepare("INSERT INTO `documents`(`file_id`, `user`, `team`, `tournament`, `type`)
|
||||
VALUES (?, ?, ?, ?, ?);");
|
||||
$req->execute([$id, $_SESSION["user_id"], $_SESSION["team"]->getId(), $_SESSION["team"]->isSelectedForFinal() ? $FINAL->getId() : $_SESSION["team"]->getTournamentId(), $this->type]);
|
||||
}
|
||||
}
|
||||
|
||||
class MyTeam
|
||||
{
|
||||
public $name;
|
||||
|
@ -13,4 +13,66 @@ $team = $_SESSION["team"];
|
||||
$tournament = $team->getEffectiveTournament();
|
||||
$payment = $user->getPayment();
|
||||
|
||||
if (isset($_POST["pay"])) {
|
||||
$pay = new Pay($_POST);
|
||||
try {
|
||||
$pay->makeVerifications();
|
||||
$pay->submit();
|
||||
}
|
||||
catch (AssertionError $e) {
|
||||
$has_error = true;
|
||||
$error_message = $e->getMessage();
|
||||
}
|
||||
}
|
||||
|
||||
class Pay {
|
||||
private $method;
|
||||
private $infos;
|
||||
private $scholarship;
|
||||
|
||||
public function __construct($data)
|
||||
{
|
||||
foreach ($data as $key => $value)
|
||||
$this->$key = $value;
|
||||
|
||||
$this->method = PaymentMethod::fromName(strtoupper($this->method));
|
||||
|
||||
$this->scholarship = $_FILES["scholarship"];
|
||||
}
|
||||
|
||||
public function makeVerifications()
|
||||
{
|
||||
global $payment;
|
||||
|
||||
ensure($payment->getValidationStatus() == ValidationStatus::NOT_READY, "Un paiement est déjà initié.");
|
||||
ensure($this->method != PaymentMethod::NOT_PAID, "Vous n'avez pas payé.");
|
||||
ensure($this->method == PaymentMethod::SCHOLARSHIP || ($this->infos != null && sizeof($this->infos) > 0), "Merci d'indiquer des informations pour retrouver votre paiement.");
|
||||
ensure($this->method != PaymentMethod::SCHOLARSHIP || ($this->scholarship != null && !$this->scholarship["error"]), "Si vous êtes boursier, vous devez indiquer votre notifcation de bourse (une erreur est survenue).");
|
||||
}
|
||||
|
||||
public function submit()
|
||||
{
|
||||
global $DB, $LOCAL_PATH, $payment, $tournament;
|
||||
|
||||
$payment->setMethod($this->method);
|
||||
$payment->setAmount($this->method == PaymentMethod::SCHOLARSHIP ? 0 : $tournament->getPrice());
|
||||
$payment->setValidationStatus(ValidationStatus::WAITING);
|
||||
if ($this->method == PaymentMethod::SCHOLARSHIP) {
|
||||
do
|
||||
$id = genRandomPhrase(64);
|
||||
while (file_exists("$LOCAL_PATH/files/$id"));
|
||||
|
||||
if (!rename($this->scholarship["tmp_name"], "$LOCAL_PATH/files/$id"))
|
||||
throw new AssertionError("Une erreur est survenue lors de l'envoi du fichier.");
|
||||
|
||||
$req = $DB->prepare("INSERT INTO `documents`(`file_id`, `user`, `team`, `tournament`, `type`)
|
||||
VALUES (?, ?, ?, ?, ?);");
|
||||
$req->execute([$id, $_SESSION["user_id"], $_SESSION["team"]->getId(), $tournament->getId(), DocumentType::getName(DocumentType::SCHOLARSHIP)]);
|
||||
$payment->setTransactionInfos($id);
|
||||
}
|
||||
else
|
||||
$payment->setTransactionInfos($this->infos);
|
||||
}
|
||||
}
|
||||
|
||||
require_once "server_files/views/paiement.php";
|
@ -63,6 +63,9 @@ if ($file !== null) {
|
||||
case DocumentType::SANITARY_PLUG:
|
||||
$name = "Fiche sanitaire";
|
||||
break;
|
||||
case DocumentType::SCHOLARSHIP:
|
||||
$name = "Notification de bourse";
|
||||
break;
|
||||
}
|
||||
$name .= " de $first_name $surname.pdf";
|
||||
}
|
||||
|
Reference in New Issue
Block a user