This repository has been archived on 2023-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
web/public/race/configure/teams/update.php

88 lines
2.3 KiB
PHP
Raw Normal View History

2022-03-15 17:20:50 +00:00
<?php $app = require '../../../../app/inc.php';
2022-03-07 10:11:33 +00:00
/**
* Creates and updates team in teamtable
*/
2022-02-14 01:52:59 +00:00
2022-03-07 06:13:17 +00:00
use App\Teamtable\Team;
2022-03-30 19:11:34 +00:00
use App\Teamtable\TeamMapper;
2022-02-14 01:52:59 +00:00
2022-03-07 06:13:17 +00:00
$item = filter_input(INPUT_GET, 'item', FILTER_VALIDATE_INT);
2022-02-14 01:52:59 +00:00
2022-04-14 20:59:42 +00:00
$team_mapper = new TeamMapper($app->database->conn);
2022-02-14 01:52:59 +00:00
2022-03-10 08:38:39 +00:00
$team;
2022-03-07 06:13:17 +00:00
if ($item !== NULL)
2022-02-14 10:23:05 +00:00
{
2022-04-14 20:59:42 +00:00
$team = $team_mapper->get($item);
2022-03-07 06:13:17 +00:00
if (!$team)
2022-02-14 10:23:05 +00:00
{
2022-03-07 06:13:17 +00:00
// team does not exist
2022-03-07 10:11:33 +00:00
$app->session->flash('Kunne ikke oppdatere lag: Lag finnes ikke', 'danger');
2022-03-07 06:13:17 +00:00
$app->redirect('index.php');
2022-02-14 10:23:05 +00:00
}
}
2022-02-14 01:52:59 +00:00
2022-03-07 10:11:33 +00:00
if ($_SERVER['REQUEST_METHOD'] == 'POST')
{
$name = filter_input(INPUT_POST, 'name');
$company = filter_input(INPUT_POST, 'company');
$cardnumber = filter_input(INPUT_POST, 'cardnumber');
$leader = filter_input(INPUT_POST, 'leader');
2022-04-12 22:52:10 +00:00
$phone = filter_input(INPUT_POST, 'phone');
$participants = (int)filter_input(INPUT_POST, 'participants');
2022-03-07 10:11:33 +00:00
2022-04-08 12:24:16 +00:00
if (!isset($team))
{
$team = new Team();
}
2022-03-07 10:11:33 +00:00
try {
$team->setName($name);
$team->setCompany($company);
$team->setCardnumber($cardnumber);
$team->setLeader($leader);
$team->setPhone($phone);
$team->setParticipants($participants);
2022-03-09 12:11:17 +00:00
} catch(InvalidArgumentException $e) {
$app->session->flash('Kunne ikke oppdatere lag: Validerings feil: ' . $e->getMessage() , 'danger');
2022-03-07 10:11:33 +00:00
$app->redirect('index.php');
}
if ($item !== NULL)
{
// team exists, lets update it
$team->id = $item;
2022-04-14 20:59:42 +00:00
$team_mapper->update($team);
2022-03-07 10:11:33 +00:00
$app->session->flash('Oppdaterte lag', 'success');
$app->redirect('index.php');
}
// no team was specified, lets create one
2022-04-14 20:59:42 +00:00
$team_mapper->create($team);
2022-03-07 10:11:33 +00:00
$app->session->flash('Opprettet nytt lag', 'success');
$app->redirect('index.php');
}
if ($item !== NULL)
{
// team exists
$title = "Endre lag";
$app->view('template/header', [
'title' => $title
]);
2022-03-19 21:22:24 +00:00
$app->view('pages/race/configure/teams/update', [
2022-03-07 10:11:33 +00:00
"team" => $team,
"title" => $title
]);
$app->view('template/footer');
die();
}
2022-03-07 06:13:17 +00:00
// lets create a team
2022-03-07 10:11:33 +00:00
$title = "Legg til lag";
$app->view('template/header', [
'title' => $title
]);
2022-03-19 21:22:24 +00:00
$app->view('pages/race/configure/teams/update', [
2022-03-07 10:11:33 +00:00
"team" => new Team,
"title" => $title
]);
2022-02-14 01:52:59 +00:00
$app->view('template/footer');