Compare commits

..

3 Commits

Author SHA1 Message Date
3378e66916 mooooooore fixes 2023-12-18 08:21:51 +01:00
621e25ee86 more fixes 2023-12-18 08:19:27 +01:00
c598e48006 Fixes 2023-12-18 08:16:21 +01:00
8 changed files with 334 additions and 302 deletions

View File

@ -8,26 +8,30 @@ namespace ppb\Controller;
use ppb\Library\Msg;
use ppb\Model\BenutzerModel;
class BenutzerController{
class BenutzerController
{
private $db;
public function __construct(){
public function __construct()
{
$this->db = new BenutzerModel();
}
// Updated einen Benutzer
public function updateBenutzer($elternId, $data){
public function updateBenutzer($elternId, $data)
{
$result = $this->db->updateBenutzer($benutzerId, $data);
$result = $this->db->updateBenutzer($elternId, $data);
return json_encode($result);
}
// Fügt einen Benutzer in die Datenbank hinzu
public function insertBenutzer($data){
$result = $this->db->insertBenutzer($data)
public function insertBenutzer($data)
{
$result = $this->db->insertBenutzer($data);
return json_encode($data);
}

View File

@ -1,18 +1,29 @@
<?php
//Programmiert von: Max Heer, Getestet von:
namespace kindergartenverwaltung\Controller;
namespace ppb\Controller;
use kindergartenverwaltung\Libary\Msg;
use kindergartenverwaltung\Model\EnthaeltModel;
use ppb\Libary\Msg;
use ppb\Model\EnthaeltModel;
class EnthaeltController(){
public function getInhaltsstoffe($gerichtId){
class EnthaeltController
{
private $db;
public function __construct()
{
$this->db = new EnthaeltModel();
}
public function getInhaltsstoffe($gerichtId)
{
$result = $this->db->getEnthaelt($gerichtId);
return json_encode($result);
}
public function insertEnthaelt($data){
public function insertEnthaelt($data)
{
$result = $this->db->insertEnthaelt($data);
return json_encode($result);
}

View File

@ -8,38 +8,44 @@ namespace ppb\Controller;
use ppb\Library\Msg;
use ppb\Model\KindModel;
class KindController{
class KindController
{
private $db;
public function __construct(){
public function __construct()
{
$this->db = new KindModel();
}
// $parentId ist standardmäßig auf false und gibt damit alle Kinder aus,
// das setzen gibt nur Kinder eines bestimmten Benutzerkontos aus.
public function getKind($parentId = false){
public function getKind($parentId = false)
{
$result = $this->db->getKind($parentId);
return json_encode($result);
}
// Updated ein Kind
public function updateKind($kindId, $data){
public function updateKind($kindId, $data)
{
$result = $this->db->updateKind($kindId, $data);
return json_encode($result);
}
// Fügt ein Kind hinzu
public function addKind($data){
public function addKind($data)
{
$result = $this->db->addKind($data);
return json_encode($data);
}
// Löscht ein Kind
public function deleteKind($kindId){
public function deleteKind($kindId)
{
$result = $this->db->deleteKind($kindId);
return $result;

View File

@ -3,12 +3,12 @@
// Programmiert durch Samuel Wolff
// Getestet durch: Nicht getestet
namespace ppb\Controller;
namespace ppb\Model;
use ppb\Library\Msg;
use ppb\Model\BenutzerModel;
class BenutzerModel extends Database{
class BenutzerModel extends Database
{
/**
@ -19,12 +19,13 @@ class BenutzerModel extends Database{
* @param $data Die gegebenen Daten
*
*/
public function updateBenutzer($elternId, $data){
public function updateBenutzer($elternId, $data)
{
$pdo = $this->linkDB();
$params = array();
$sql = "UPDATE Benutzer SET"
$sql = "UPDATE Benutzer SET";
foreach ($data as $index => $value) {
$sql .= " " . $index . " = :" . $index;
@ -33,13 +34,12 @@ class BenutzerModel extends Database{
$sql .= " WHERE id = :benutzerId;";
$params[":benutzerId"] = $kindId;
$params[":benutzerId"] = $elternId;
try {
$stmt = $pdo->prepare($sql);
$stmt->excute($params);
}
catch(\PDOException $e){
$stmt->execute($params);
} catch (\PDOException $e) {
return false;
}
@ -56,7 +56,8 @@ class BenutzerModel extends Database{
* @param $data Die gegebenen Daten
*
*/
public function insertBenutzer($data){
public function insertBenutzer($data)
{
$pdo = $this->linkDB();
$params = array();
@ -79,9 +80,8 @@ class BenutzerModel extends Database{
try {
$stmt = $pdo->prepare($sql);
$stmt->excute($params);
}
catch(\PDOException $e){
$stmt->execute($params);
} catch (\PDOException $e) {
return false;
}

View File

@ -4,13 +4,15 @@ namespace ppb\Model;
use ppb\Library\Msg;
class BestellungModel extends Database {
class BestellungModel extends Database
{
/**
* Sucht die Bestellung in der Datenbank und gibt diese im json-Format zurück.
* @param $id gibt die id, des gesuchten Objektes an. Wenn keine id angegeben wird, werden alle Einträge ausgegeben
*/
public function selectBestellung($id = false) {
public function selectBestellung($id = false)
{
$pdo = $this->linkDB();
$sql = "SELECT * FROM Bestellung";
$params = array();
@ -23,8 +25,7 @@ class BestellungModel extends Database {
try {
$stmt = $pdo->prepare($sql);
$stmt->execute($params);
}
catch(\PDOException $e) {
} catch (\PDOException $e) {
echo $e;
return false;
}
@ -42,14 +43,15 @@ class BestellungModel extends Database {
* Fügt ein Bestellung in die Datenbank ein.
* @param $data gibt die Attribute des Datensatzes an.
*/
public function insertBestellung($data) {
public function insertBestellung($data)
{
$pdo = $this->linkDB();
$sql = "INSERT INTO Bestellung (" . implode(",", array_keys($data)) . ") VALUES(:" . implode(",:", array_keys($data)) . ")";
try {
$stmt = $pdo->prepare($sql);
$result = $stmt->execute($data);
}catch (\PDOExpecion $e) {
} catch (\PDOException $e) {
echo $e;
}
return $result;
@ -60,9 +62,10 @@ class BestellungModel extends Database {
* @param $id des Datensatzes
* @param $data neue Parameter des Datensatzes
*/
public function updateBestellung($id, $data){
public function updateBestellung($id, $data)
{
$pdo = $this->linkDB();
$sql = "UPDATE Bestellung SET "
$sql = "UPDATE Bestellung SET ";
//Fügt alle Parameter und einen Platzhalter in den SQL Befehl ein
foreach (array_keys($data) as $key) {
$sql .= $key . " = :" . $key . ",";
@ -72,7 +75,7 @@ class BestellungModel extends Database {
try {
$stmt = $pdo->prepare($sql);
$result = $stmt->execute($data);
}catch (\PDOExpection $e){
} catch (\PDOException $e) {
echo $e;
return false;
}
@ -83,7 +86,8 @@ class BestellungModel extends Database {
* Löscht ein Bestellung aus der Tabelle
* @param $id des zu löschenden Bestellung
*/
public function deleteBestellung($id){
public function deleteBestellung($id)
{
$pdo = $this->linkDB();
$sql = "DELETE FROM Bestellung WHERE id = :id";
$params = array();
@ -91,7 +95,7 @@ class BestellungModel extends Database {
try {
$stmt = $pdo->prepare($sql);
$result = $stmt->execute($params);
}catch (\PDOExpection $e){
} catch (\PDOException $e) {
echo $e;
return false;
}

View File

@ -1,20 +1,22 @@
<?php
namespace kindergartenverwaltung\EnthaeltModel;
use kindergartenverwaltung\Library\Msg;
namespace ppb\Model;
class EnthaeltModel extends Database{
use ppb\Library\Msg;
public function getEnthaelt($gerichtId){
class EnthaeltModel extends Database
{
public function getEnthaelt($gerichtId)
{
$pdo = $this->linkDB();
$params = array();
$sql = "SELECT * FROM Enthaelt WHERE gid = :gerichtId;";
$params[":gerichtId"] = gerichtId;
$params[":gerichtId"] = $gerichtId;
try {
$stmt = $pdo->prepare($sql);
$stmt->execute($params);
}
catch(\PDOExeption $e){
} catch (\PDOException $e) {
return false;
}
$result = $stmt->fetchAll(\PDO::FETCH_ASSOC);
@ -22,7 +24,8 @@
return $result;
}
public function insertEnthaelt($data){
public function insertEnthaelt($data)
{
$pdo = $this->linkDB();
$params = array();
$sql = "INSERT INTO Enthaelt (";
@ -43,8 +46,7 @@
$stmt = $pdo->prepare($sql);
$stmt->execute($params);
return true;
}
catch(\PDOExeption $e){
} catch (\PDOException $e) {
return false;
}
}

View File

@ -4,13 +4,15 @@ namespace ppb\Model;
use ppb\Library\Msg;
class GerichtModel extends Database {
class GerichtModel extends Database
{
/**
* Sucht die Gerichte in der Datenbank und gibt diese im json-Format zurück.
* @param $id gibt die id, des gesuchten Objektes an. Wenn keine id angegeben wird, werden alle Einträge ausgegeben
*/
public function selectGericht($id = false) {
public function selectGericht($id = false)
{
$pdo = $this->linkDB();
$sql = "SELECT * FROM Gericht";
$params = array();
@ -23,8 +25,7 @@ class GerichtModel extends Database {
try {
$stmt = $pdo->prepare($sql);
$stmt->execute($params);
}
catch(\PDOException $e) {
} catch (\PDOException $e) {
echo $e;
return false;
}
@ -42,14 +43,15 @@ class GerichtModel extends Database {
* Fügt ein Gericht in die Datenbank ein.
* @param $data gibt die Attribute des Datensatzes an.
*/
public function insertGericht($data) {
public function insertGericht($data)
{
$pdo = $this->linkDB();
$sql = "INSERT INTO Gericht (" . implode(",", array_keys($data)) . ") VALUES(:" . implode(",:", array_keys($data)) . ")";
try {
$stmt = $pdo->prepare($sql);
$result = $stmt->execute($data);
}catch (\PDOExpecion $e) {
} catch (\PDOException $e) {
echo $e;
}
return $result;
@ -60,9 +62,10 @@ class GerichtModel extends Database {
* @param $id des Datensatzes
* @param $data neue Parameter des Datensatzes
*/
public function updateGericht($id, $data){
public function updateGericht($id, $data)
{
$pdo = $this->linkDB();
$sql = "UPDATE Gericht SET "
$sql = "UPDATE Gericht SET ";
//Fügt alle Parameter und einen Platzhalter in den SQL Befehl ein
foreach (array_keys($data) as $key) {
$sql .= $key . " = :" . $key . ",";
@ -72,7 +75,7 @@ class GerichtModel extends Database {
try {
$stmt = $pdo->prepare($sql);
$result = $stmt->execute($data);
}catch (\PDOExpection $e){
} catch (\PDOException $e) {
echo $e;
return false;
}
@ -83,7 +86,8 @@ class GerichtModel extends Database {
* Löscht ein Gericht aus der Tabelle
* @param $id des zu löschenden Gerichtes
*/
public function deleteGericht($id){
public function deleteGericht($id)
{
$pdo = $this->linkDB();
$sql = "DELETE FROM Gericht WHERE id = :id";
$params = array();
@ -91,7 +95,7 @@ class GerichtModel extends Database {
try {
$stmt = $pdo->prepare($sql);
$result = $stmt->execute($params);
}catch (\PDOExpection $e){
} catch (\PDOException $e) {
echo $e;
return false;
}

View File

@ -8,9 +8,11 @@ namespace ppb\Model;
use ppb\Library\Msg;
class KindModel extends Database{
class KindModel extends Database
{
public function getKind($parentId){
public function getKind($parentId)
{
$pdo = $this->linkDB();
$params = array();
@ -27,8 +29,7 @@ public function getKind($parentId){
try {
$stmt = $pdo->prepare($sql);
$stmt->execute($params);
}
catch(\PDOException $e){
} catch (\PDOException $e) {
return false;
}
@ -44,7 +45,8 @@ public function getKind($parentId){
* @param $kindId Id des Kindes
* @param $data Json encoded Daten mit den neuen Werten
*/
public function updateKind($kindId, $data){
public function updateKind($kindId, $data)
{
$pdo = $this->linkDB();
$params = array();
@ -65,9 +67,8 @@ public function updateKind($kindId, $data){
try {
$stmt = $pdo->prepare($sql);
$stmt->excute($params);
}
catch(\PDOException $e){
$stmt->execute($params);
} catch (\PDOException $e) {
return false;
}
@ -82,7 +83,8 @@ public function updateKind($kindId, $data){
*
* @param $data Die Daten für das neue Kind
*/
public function addKind($data){
public function addKind($data)
{
$pdo = $this->linkDB();
$params = array();
@ -105,9 +107,8 @@ public function addKind($data){
try {
$stmt = $pdo->prepare($sql);
$stmt->excute($params);
}
catch(\PDOException $e){
$stmt->execute($params);
} catch (\PDOException $e) {
return false;
}
@ -123,7 +124,8 @@ public function addKind($data){
* @param $kindId Die Id des zu löschenden Kindes
*
*/
public function deleteKind($kindId){
public function deleteKind($kindId)
{
$pdo = $this->linkDB();
$params = array();
@ -134,9 +136,8 @@ public function deleteKind($kindId){
try {
$stmt = $pdo->prepare($sql);
$stmt->excute($params);
}
catch(\PDOException $e){
$stmt->execute($params);
} catch (\PDOException $e) {
return false;
}