This repository has been archived on 2023-12-29. You can view files and clone it, but cannot push or open issues or pull requests.
dogstats/web/pages/dogs/controller.php

151 lines
4.7 KiB
PHP
Raw Normal View History

2023-10-22 23:05:24 +02:00
<?php
class Dogs extends Page {
function setMenu()
{
$this->menu_text = 'Meine Hunde';
$this->menu_image = 'far fa-dog';
2023-10-23 14:15:33 +02:00
$this->menu_priority = 1;
2023-10-22 23:05:24 +02:00
}
function setSubmenu()
{
$this->addSubmenuItem('Hunde anzeigen','/dogs','far fa-list-alt');
$this->addSubmenuItem('Hund hinzufügen','/dogs/add','fas fa-plus-circle');
}
function index() {
$dogs = $_SESSION['user']->data['dogs'];
$doggos = [];
2023-10-23 10:00:19 +02:00
foreach($dogs as $key => $dogid)
2023-10-22 23:05:24 +02:00
{
2023-10-23 10:00:19 +02:00
//var_dump($dogid);
2023-10-22 23:05:24 +02:00
$dog = new Dog();
try{
$dog->load($dogid);
}
catch(Exception $e)
{
2023-10-23 10:00:19 +02:00
error_log("Dog $dogid not found. Deleting from user");
unset($_SESSION['user']->data['dogs'][$key]);
$_SESSION['user']->save();
2023-10-22 23:05:24 +02:00
continue;
}
if($dog->data)
$doggos[] = array_merge($dog->data,['id'=>$dogid]);
}
//var_dump($doggos);
if(count($doggos) > 0)
{
$this->set('doggos',$doggos);
$this->set('template', 'list.html');
}
else
{
$this->set('template','/templates/partials/info.html');
$this->set('infoTitle', 'Keine Hunde gefunden');
$this->set('infoMessage', 'Du hast aktuell noch keine Hunde angelegt. Klicke im Menü auf "Hund hinzufügen" um einen Hund anzulegen.');
}
}
function add() {
$this->set('template', 'edit.html');
}
function edit() {
if($_REQUEST['submit'])
{
$id = $_REQUEST['dog_id'];
$name = $_REQUEST['name'];
$kennel_name = $_REQUEST['kennel_name'];
$dog_breed = $_REQUEST['dog_breed'];
$dog_size = $_REQUEST['dog_size'];
$dog_birthday = $_REQUEST['dog_birthday'];
$agi_height_category = $_REQUEST['agi_height_category'];
$error = false;
if(!$name || !$dog_birthday )
$error = 'Bitte zumindest Name und Geburtsdatum angeben';
else if(!strtotime($dog_birthday))
$error = 'Das Geburstdatum ist ungültig. Bitte die Eingabe prüfen';
if($error){
$this->set('errorMessage', $error);
$this->set('template', '/templates/partials/error.html');
return;
}
else
{
$dog = new Dog();
if($id)
$dog->load($id);
$dog->name = $name;
$dog->kennel_name = $kennel_name;
$dog->breed = $dog_breed;
$dog->size = $dog_size;
$dog->birthday = $dog_birthday;
$dog->agility_size = $agi_height_category;
try
{
$dogid = $dog->save();
}
catch(Exception $e)
{
$this->set('template', '/templates/partials/error.html');
$this->set('errorTitle', 'Error');
$this->set('errorMessage', $e->getMessage());
return;
}
//var_dump($_SESSION['user']->data['dogs']);
if(!is_array($_SESSION['user']->data['dogs']) || !in_array($dogid, $_SESSION['user']->data['dogs'])) // new dog!
{
$_SESSION['user']->data['dogs'][] = $dogid;
try
{
$_SESSION['user']->save();
}
catch(Exception $e)
{
$this->set('template', '/templates/partials/error.html');
$this->set('errorTitle', 'Error');
$this->set('errorMessage', $e->getMessage());
return;
}
$this->redirect('/dogs');
}
else
{
$this->set('template', '/templates/partials/success.html');
$this->set('successMessage', "Daten erfolgreich gespeichert");
return;
}
}
}
else
{
//checken ob der den hund eh bearbeiten darf
$id = $this->params[0];
$dog = new Dog();
$dog->load($id);
$this->set('dogdata',$dog->data);
$this->set('dogid',$dog->id);
$this->set('template', 'edit.html');
}
}
function maySeeThisPage() {
if($_SESSION['user']) //wenn eingeloggt, kein problem
return true;
else return false;
}
}