Compare commits

..

No commits in common. "3378e669163df1382d31ec2d3aef6aa584ec4d3a" and "9f7060d20293770dcff1122142794e1bc8a7e852" have entirely different histories.

8 changed files with 300 additions and 332 deletions

View File

@ -8,30 +8,26 @@ 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($elternId, $data);
$result = $this->db->updateBenutzer($benutzerId, $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,29 +1,18 @@
<?php
//Programmiert von: Max Heer, Getestet von:
namespace ppb\Controller;
namespace kindergartenverwaltung\Controller;
use ppb\Libary\Msg;
use ppb\Model\EnthaeltModel;
use kindergartenverwaltung\Libary\Msg;
use kindergartenverwaltung\Model\EnthaeltModel;
class EnthaeltController
{
private $db;
public function __construct()
{
$this->db = new EnthaeltModel();
}
public function getInhaltsstoffe($gerichtId)
{
class EnthaeltController(){
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,44 +8,38 @@ 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\Model;
namespace ppb\Controller;
use ppb\Library\Msg;
use ppb\Model\BenutzerModel;
class BenutzerModel extends Database
{
class BenutzerModel extends Database{
/**
@ -19,13 +19,12 @@ 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;
@ -34,12 +33,13 @@ class BenutzerModel extends Database
$sql .= " WHERE id = :benutzerId;";
$params[":benutzerId"] = $elternId;
$params[":benutzerId"] = $kindId;
try{
$stmt = $pdo->prepare($sql);
$stmt->execute($params);
} catch (\PDOException $e) {
$stmt->excute($params);
}
catch(\PDOException $e){
return false;
}
@ -56,8 +56,7 @@ class BenutzerModel extends Database
* @param $data Die gegebenen Daten
*
*/
public function insertBenutzer($data)
{
public function insertBenutzer($data){
$pdo = $this->linkDB();
$params = array();
@ -80,8 +79,9 @@ class BenutzerModel extends Database
try{
$stmt = $pdo->prepare($sql);
$stmt->execute($params);
} catch (\PDOException $e) {
$stmt->excute($params);
}
catch(\PDOException $e){
return false;
}

View File

@ -4,15 +4,13 @@ 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();
@ -25,7 +23,8 @@ class BestellungModel extends Database
try {
$stmt = $pdo -> prepare($sql);
$stmt -> execute($params);
} catch (\PDOException $e) {
}
catch(\PDOException $e) {
echo $e;
return false;
}
@ -43,15 +42,14 @@ 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 (\PDOException $e) {
}catch (\PDOExpecion $e) {
echo $e;
}
return $result;
@ -62,10 +60,9 @@ 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. ",";
@ -75,7 +72,7 @@ class BestellungModel extends Database
try{
$stmt = $pdo->prepare($sql);
$result = $stmt->execute($data);
} catch (\PDOException $e) {
}catch (\PDOExpection $e){
echo $e;
return false;
}
@ -86,8 +83,7 @@ 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();
@ -95,7 +91,7 @@ class BestellungModel extends Database
try{
$stmt = $pdo->prepare($sql);
$result = $stmt->execute($params);
} catch (\PDOException $e) {
}catch (\PDOExpection $e){
echo $e;
return false;
}

View File

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

View File

@ -4,15 +4,13 @@ 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();
@ -25,7 +23,8 @@ class GerichtModel extends Database
try {
$stmt = $pdo -> prepare($sql);
$stmt -> execute($params);
} catch (\PDOException $e) {
}
catch(\PDOException $e) {
echo $e;
return false;
}
@ -43,15 +42,14 @@ 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 (\PDOException $e) {
}catch (\PDOExpecion $e) {
echo $e;
}
return $result;
@ -62,10 +60,9 @@ 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. ",";
@ -75,7 +72,7 @@ class GerichtModel extends Database
try{
$stmt = $pdo->prepare($sql);
$result = $stmt->execute($data);
} catch (\PDOException $e) {
}catch (\PDOExpection $e){
echo $e;
return false;
}
@ -86,8 +83,7 @@ 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();
@ -95,7 +91,7 @@ class GerichtModel extends Database
try{
$stmt = $pdo->prepare($sql);
$result = $stmt->execute($params);
} catch (\PDOException $e) {
}catch (\PDOExpection $e){
echo $e;
return false;
}

View File

@ -8,11 +8,9 @@ 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();
@ -29,7 +27,8 @@ class KindModel extends Database
try{
$stmt = $pdo->prepare($sql);
$stmt->execute($params);
} catch (\PDOException $e) {
}
catch(\PDOException $e){
return false;
}
@ -45,8 +44,7 @@ class KindModel extends Database
* @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();
@ -67,8 +65,9 @@ class KindModel extends Database
try{
$stmt = $pdo->prepare($sql);
$stmt->execute($params);
} catch (\PDOException $e) {
$stmt->excute($params);
}
catch(\PDOException $e){
return false;
}
@ -83,8 +82,7 @@ class KindModel extends Database
*
* @param $data Die Daten für das neue Kind
*/
public function addKind($data)
{
public function addKind($data){
$pdo = $this->linkDB();
$params = array();
@ -107,8 +105,9 @@ class KindModel extends Database
try{
$stmt = $pdo->prepare($sql);
$stmt->execute($params);
} catch (\PDOException $e) {
$stmt->excute($params);
}
catch(\PDOException $e){
return false;
}
@ -124,8 +123,7 @@ class KindModel extends Database
* @param $kindId Die Id des zu löschenden Kindes
*
*/
public function deleteKind($kindId)
{
public function deleteKind($kindId){
$pdo = $this->linkDB();
$params = array();
@ -136,8 +134,9 @@ class KindModel extends Database
try{
$stmt = $pdo->prepare($sql);
$stmt->execute($params);
} catch (\PDOException $e) {
$stmt->excute($params);
}
catch(\PDOException $e){
return false;
}