mirror of
https://github.com/sigmasternchen/mobmash.click
synced 2025-03-15 16:19:02 +00:00
77 lines
2 KiB
PHP
77 lines
2 KiB
PHP
<?php
|
|
|
|
require_once __DIR__ . "/../core.php";
|
|
require_once __DIR__ . "/../lib/pairing.php";
|
|
require_once __DIR__ . "/../lib/rating.php";
|
|
require_once __DIR__ . "/../lib/security.php";
|
|
|
|
function renderChoice(): void {
|
|
[$left, $right] = [$_SESSION["left"], $_SESSION["right"]];
|
|
|
|
$csrfToken = $_SESSION["csrfToken"];
|
|
|
|
$ajax = isset($_GET["ajax"]);
|
|
|
|
if ($ajax) {
|
|
include __DIR__ . "/../view/fragments/mobSelection.php";
|
|
} else {
|
|
$title = "MobMash";
|
|
$content = function() use ($left, $right, $csrfToken) {
|
|
include __DIR__ . "/../view/pages/mobSelection.php";
|
|
};
|
|
|
|
include __DIR__ . "/../view/layout.php";
|
|
}
|
|
}
|
|
|
|
function reload(): void {
|
|
if (isset($_GET["ajax"])) {
|
|
header("LOCATION: ?ajax");
|
|
} else {
|
|
header("LOCATION: /");
|
|
}
|
|
|
|
http_send_status(303);
|
|
}
|
|
|
|
function newPairing(): array {
|
|
return makeInitialPairing(session_id());
|
|
}
|
|
|
|
const LEFT = 0;
|
|
const RIGHT = 1;
|
|
|
|
function voteAndNextPairing(int $winner): array {
|
|
if ($_POST["csrfToken"] != $_SESSION["csrfToken"]) {
|
|
return [$_SESSION["left"], $_SESSION["right"]];
|
|
}
|
|
|
|
addMatch($_SESSION["left"]["id"], $_SESSION["right"]["id"], $winner, session_id());
|
|
|
|
$winnerMob = ($winner == 0) ? $_SESSION["left"] : $_SESSION["right"];
|
|
|
|
[$left, $right] = makeFollowUpPairing(session_id(), $winnerMob["id"]);
|
|
if (($winner == LEFT && $left["id"] != $winnerMob["id"]) ||
|
|
($winner == RIGHT && $right["id"] != $winnerMob["id"])
|
|
) {
|
|
[$left, $right] = [$right, $left];
|
|
}
|
|
|
|
return [$left, $right];
|
|
}
|
|
|
|
session_start();
|
|
|
|
[$_SESSION["left"], $_SESSION["right"], $render] = match (true) {
|
|
isset($_GET["new"]), !isset($_SESSION["left"]) => [...newPairing(), false],
|
|
isset($_GET["left"]) => [...voteAndNextPairing(LEFT), false],
|
|
isset($_GET["right"]) => [...voteAndNextPairing(RIGHT), false],
|
|
default => [$_SESSION["left"], $_SESSION["right"], true],
|
|
};
|
|
|
|
if ($render) {
|
|
renderChoice();
|
|
} else {
|
|
$_SESSION["csrfToken"] = makeCcrfToken();
|
|
reload();
|
|
}
|