2022-02-07 10:09:16 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class Teamtable
|
|
|
|
{
|
2022-02-28 04:51:22 +00:00
|
|
|
public array $template = [
|
2022-02-15 11:26:15 +00:00
|
|
|
'LagNavn' => 'NN',
|
|
|
|
'Bedrift' => 'NN',
|
|
|
|
'Kortnummer' => 'NN',
|
|
|
|
'Lagleder' => 'NN',
|
|
|
|
'Telefon' => 0,
|
|
|
|
'Deltagere' => 0,
|
|
|
|
'Runder' => 0
|
|
|
|
];
|
|
|
|
|
2022-02-28 04:51:22 +00:00
|
|
|
public PDO $dbh;
|
|
|
|
|
2022-02-07 10:09:16 +00:00
|
|
|
public function __construct(Database $database)
|
|
|
|
{
|
|
|
|
$this->dbh = $database->conn;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getTable(): array
|
|
|
|
{
|
|
|
|
$sth = $this->dbh->query('SELECT * FROM lagtabell');
|
|
|
|
return $sth->fetchAll(PDO::FETCH_ASSOC);
|
|
|
|
}
|
2022-02-09 15:59:20 +00:00
|
|
|
|
|
|
|
public function deleteTeamByID(int $LagID): void
|
|
|
|
{
|
|
|
|
$sth = $this->dbh->prepare('DELETE FROM lagtabell WHERE LagID = ?');
|
|
|
|
$sth->execute([$LagID]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getTeamByID(int $LagID) # Mixed, array if exists, false if not
|
|
|
|
{
|
|
|
|
$sth = $this->dbh->prepare('SELECT * FROM lagtabell WHERE LagID = ?');
|
|
|
|
$sth->execute([$LagID]);
|
|
|
|
return $sth->fetch(PDO::FETCH_ASSOC);
|
|
|
|
}
|
|
|
|
|
2022-02-14 10:23:05 +00:00
|
|
|
// why this is so long who cares???
|
|
|
|
public function updateTeamByID(
|
|
|
|
int $id,
|
|
|
|
string $LagNavn,
|
|
|
|
string $Bedrift,
|
|
|
|
string $Kortnummer,
|
|
|
|
string $Lagleder,
|
|
|
|
int $Telefon,
|
|
|
|
string $Deltagere,
|
|
|
|
int $Runder
|
|
|
|
): void
|
2022-02-09 15:59:20 +00:00
|
|
|
{
|
2022-02-15 11:26:15 +00:00
|
|
|
$sth = $this->dbh->prepare(
|
|
|
|
'UPDATE lagtabell SET LagNavn = ?, Bedrift = ?, Kortnummer = ?, Lagleder = ?, Telefon = ?, Deltagere = ?, Runder = ? WHERE LagID = ?'
|
|
|
|
);
|
2022-02-14 10:23:05 +00:00
|
|
|
$sth->execute([$LagNavn, $Bedrift, $Kortnummer, $Lagleder, $Telefon, $Deltagere, $Runder, $id]);
|
2022-02-09 15:59:20 +00:00
|
|
|
}
|
|
|
|
|
2022-02-15 11:26:15 +00:00
|
|
|
public function addEmptyTeam(): int
|
|
|
|
{
|
|
|
|
$sth = $this->dbh->prepare(
|
|
|
|
'INSERT INTO lagtabell (LagNavn, Bedrift, Kortnummer, Lagleder, Telefon, Deltagere, Runder) VALUES (?, ?, ?, ?, ?, ?, ?)'
|
|
|
|
);
|
2022-02-28 04:51:22 +00:00
|
|
|
$template = $this->template;
|
2022-02-16 10:59:47 +00:00
|
|
|
$sth->execute([
|
2022-02-15 11:26:15 +00:00
|
|
|
$template['LagNavn'],
|
|
|
|
$template['Bedrift'],
|
|
|
|
$template['Kortnummer'],
|
|
|
|
$template['Lagleder'],
|
|
|
|
$template['Telefon'],
|
|
|
|
$template['Deltagere'],
|
|
|
|
$template['Runder'],
|
2022-02-16 10:59:47 +00:00
|
|
|
]);
|
2022-02-15 11:26:15 +00:00
|
|
|
return $this->dbh->lastInsertId();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if team is empty by comparing it to the template
|
|
|
|
public function isEqualEmptyTemplate(array $team): bool
|
2022-02-09 15:59:20 +00:00
|
|
|
{
|
2022-02-28 04:51:22 +00:00
|
|
|
$template = $this->template;
|
2022-02-16 10:59:47 +00:00
|
|
|
foreach ($template as $key => $value) {
|
|
|
|
if ((string)$team[$key] !== (string)$template[$key]) {
|
|
|
|
return FALSE;
|
2022-02-15 11:26:15 +00:00
|
|
|
}
|
|
|
|
}
|
2022-02-16 10:59:47 +00:00
|
|
|
return TRUE;
|
2022-02-09 15:59:20 +00:00
|
|
|
}
|
2022-02-15 11:40:57 +00:00
|
|
|
|
|
|
|
// Return true if team exists, false if not
|
2022-02-16 12:05:13 +00:00
|
|
|
// ;))
|
|
|
|
public function recieveStick(string $cardnumber): bool
|
2022-02-15 11:40:57 +00:00
|
|
|
{
|
|
|
|
$sth = $this->dbh->prepare('SELECT * FROM lagtabell WHERE Kortnummer = ?');
|
|
|
|
$sth->execute([$cardnumber]);
|
|
|
|
|
|
|
|
$row = $sth->fetch(PDO::FETCH_ASSOC);
|
|
|
|
if ($row)
|
|
|
|
{
|
|
|
|
// Team exists, insert into time table
|
|
|
|
$sth = $this->dbh->prepare('INSERT INTO tidtabell (LagID) VALUES (?)');
|
|
|
|
$sth->execute([$row['LagID']]);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
// Team does not exist, lets create it
|
|
|
|
$sth = $this->dbh->prepare(
|
|
|
|
"INSERT INTO `lagtabell` (`LagNavn`, `Bedrift`, `Kortnummer`, `Lagleder`, `Telefon`, `Deltagere`, `Runder`) VALUES (?, ?, ?, ?, ?, ?, ?)"
|
|
|
|
);
|
2022-02-28 04:51:22 +00:00
|
|
|
$template = $this->template;
|
2022-02-16 12:05:13 +00:00
|
|
|
$sth->execute([
|
2022-02-15 11:40:57 +00:00
|
|
|
$template['LagNavn'],
|
|
|
|
$template['Bedrift'],
|
|
|
|
$cardnumber,
|
|
|
|
$template['Lagleder'],
|
|
|
|
$template['Telefon'],
|
|
|
|
$template['Deltagere'],
|
|
|
|
$template['Runder'],
|
2022-02-16 12:05:13 +00:00
|
|
|
]);
|
2022-02-15 11:40:57 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2022-02-07 10:09:16 +00:00
|
|
|
}
|