From e73a0078128cc3154c8c70d57fd3c9c8112087b9 Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Wed, 27 Jul 2016 18:46:36 +0200 Subject: Assignment: use Model --- classes/Assignment.php | 245 ++------------------------------------- classes/Offer.php | 8 +- include/assignments-edit.php | 11 +- include/assignments-new.php | 2 +- include/assignments-overview.php | 22 ++-- include/assignments-view.php | 16 +-- include/assignments.php | 6 +- include/home.php | 4 +- include/offers-overview.php | 2 +- include/offers-view.php | 20 ++-- 10 files changed, 57 insertions(+), 279 deletions(-) diff --git a/classes/Assignment.php b/classes/Assignment.php index b4a67dc..d04568b 100644 --- a/classes/Assignment.php +++ b/classes/Assignment.php @@ -24,75 +24,17 @@ /** * An interface to the assignment table in the database */ -class Assignment { +class Assignment extends Model { use Calculatable; - /** - * @var pdo $pdo The PDO class for database communication - * @var int $id The id of the assignment - * @var int $offerId The id of the offer this assignment is linked to - * @var string $title The title of the assignment - * @var string $description The description of the assignment - * @var int $hours The amount of hours of the assignment - * @var float $price_per_hour The price per hour for this assignment, in your valuta - * @var float $vat The percentage of VAT to calculate on this assignment - */ - protected $pdo, $offerId, $id, $title, $description, $hours, $price_per_hour, $vat; + public + $table = 'assignment', + $fillable_columns = ['offerId', 'title', 'description', 'hours', 'price_per_hour', 'VAT_percentage']; const SUBTOTAL = 1; const VAT = 2; const TOTAL = 3; - /** - * Create a new instance - * - * @param PDO $pdo The PDO class, to access the database - * @param int $id The id of the assignment to fetch - * - * @throws PDOException If something went wrong with the database - * @throws Exception If the assignment could not be found - */ - public function __construct($pdo, $id) { - $this->pdo = $pdo; - - $stmt = $this->pdo->prepare("SELECT * FROM `".Constants::db_prefix."assignment` WHERE `id`=?"); - $stmt->execute(array($id)); - if ($stmt->rowCount() == 0) { - throw new Exception("The assignment with id '$id' could not be found."); - } - $assignment = $stmt->fetch(PDO::FETCH_ASSOC); - - $this->id = $assignment['id']; - $this->offerId = $assignment['offerId']; - $this->title = $assignment['title']; - $this->description = $assignment['description']; - $this->hours = $assignment['hours']; - $this->price_per_hour = $assignment['price_per_hour']; - $this->vat = $assignment['VAT_percentage']; - } - - //------------------------------------------------------------------------------ - // Getters and setters - //------------------------------------------------------------------------------ - - /** - * Get the ID of the assignment - * - * @return int The ID - */ - public function getId() { - return $this->id; - } - - /** - * Get the ID of the offer that this assignment is linked to - * - * @return int The ID - */ - public function getOfferId() { - return $this->offerId; - } - /** * Get the offer that this assignment is linked to * @@ -103,185 +45,20 @@ class Assignment { } /** - * Get the title of the assignment + * The description after having parsed markdown * - * @return string The title + * @return string The description in HTML format */ - public function getTitle() { - return $this->title; + public function getHTMLDescription() { + $pd = new Parsedown; + return $pd->text($this->description); } - /** - * Set the title of the assignment - * - * @param string $title The new title for the assignment - * - * @throws PDOException If something went wrong with the database - * - * @return bool True on succes, false on failure - */ - public function setTitle($title) { - $stmt = $this->pdo->prepare("UPDATE `".Constants::db_prefix."assignment` SET `title`=? WHERE `id`=?"); - $stmt->execute(array($title, $this->id)); - if ($stmt->rowCount() == 1) { - $this->title = $title; - return true; - } else { - return false; - } - } - - /** - * Get the description of the assignment - * - * @param bool $parseMarkdown Whether or not to parse markdown - * - * @return string The description - */ - public function getDescription($parseMarkdown = true) { - if ($parseMarkdown) { - $pd = new Parsedown; - return $pd->text($this->description); - } else { - return $this->description; - } - } - - /** - * Set the description of the assignment - * - * @param string $description The new description for the assignment - * - * @throws PDOException If something went wrong with the database - * - * @return bool True on succes, false on failure - */ - public function setDescription($description) { - $stmt = $this->pdo->prepare("UPDATE `".Constants::db_prefix."assignment` SET `description`=? WHERE `id`=?"); - $stmt->execute(array($description, $this->id)); - if ($stmt->rowCount() == 1) { - $this->description = $description; - return true; - } else { - return false; - } - } - - /** - * Get the amount of hours of the assignment - * - * @return int The amount of hours - */ - public function getHours() { - return $this->hours; - } - - /** - * Set the amount of hours of the assignment - * - * @param int $hours The new amount hours for the assignment - * - * @throws PDOException If something went wrong with the database - * - * @return bool True on succes, false on failure - */ - public function setHours($hours) { - $stmt = $this->pdo->prepare("UPDATE `".Constants::db_prefix."assignment` SET `hours`=? WHERE `id`=?"); - $stmt->execute(array($hours, $this->id)); - if ($stmt->rowCount() == 1) { - $this->hours = $hours; - return true; - } else { - return false; - } - } - - /** - * Get the price per hour of the assignment - * - * @return float The price per hour - */ - public function getPricePerHour() { - return $this->price_per_hour; - } - - /** - * Set the price per hour of the assignment - * - * @param float $price_per_hour The new price per hour for the assignment - * - * @throws PDOException If something went wrong with the database - * - * @return bool True on succes, false on failure - */ - public function setPricePerHour($price_per_hour) { - $stmt = $this->pdo->prepare("UPDATE `".Constants::db_prefix."assignment` SET `price_per_hour`=? WHERE `id`=?"); - $stmt->execute(array($price_per_hour, $this->id)); - if ($stmt->rowCount() == 1) { - $this->price_per_hour = $price_per_hour; - return true; - } else { - return false; - } - } - - /** - * Get the VAT percentage of the assignment - * - * @return float The VAT percentage - */ - public function getVAT() { - return $this->vat; - } - - /** - * Set the VAT percentage of the assignment - * - * @param float $vat The new VAT percentage for the assignment - * - * @throws PDOException If something went wrong with the database - * - * @return bool True on succes, false on failure - */ - public function setVAT($vat) { - $stmt = $this->pdo->prepare("UPDATE `".Constants::db_prefix."assignment` SET `VAT_percentage`=? WHERE `id`=?"); - $stmt->execute(array($vat, $this->id)); - if ($stmt->rowCount() == 1) { - $this->vat = $vat; - return true; - } else { - return false; - } - } - - //------------------------------------------------------------------------------ - // Other functions - //------------------------------------------------------------------------------ - protected function calculateSubtotal() { - return $this->getHours() * $this->getPricePerHour(); + return $this->hours * $this->price_per_hour; } protected function calculateVAT() { - return $this->calculateSubtotal() * $this->getVAT() / 100; - } - - /** - * Remove this assignment from the database - * - * If this doesn't succeed (i.e. false is returned), that means the assignment was removed manually or by another instance of this class - * - * @throws PDOException If something went wrong with the database - * - * @return bool True on success, false on failure - */ - public function delete() { - $stmt = $this->pdo->prepare("DELETE FROM `".Constants::db_prefix."assignment` WHERE `id`=?"); - $stmt->execute(array($this->id)); - if ($stmt->rowCount() != 1) { - return false; - } else { - return true; - } + return $this->calculateSubtotal() * $this->VAT_percentage / 100; } } diff --git a/classes/Offer.php b/classes/Offer.php index 7b23a43..1a11633 100644 --- a/classes/Offer.php +++ b/classes/Offer.php @@ -574,10 +574,10 @@ class Offer { $list = array(); foreach ($this->getAssignments() as $assignment) $list[] = array( - $assignment->getTitle(), - $assignment->getPricePerHour() * $assignment->getHours(), - $assignment->getVAT() . "%", - $assignment->getPricePerHour() * $assignment->getHours() * (1 + $assignment->getVAT() / 100) + $assignment->title, + $assignment->price_per_hour * $assignment->hours, + $assignment->VAT_percentage . "%", + $assignment->price_per_hour * $assignment->hours * (1 + $assignment->VAT_percentage / 100) ); foreach ($this->getDiscounts() as $discount) $list[] = array( diff --git a/include/assignments-edit.php b/include/assignments-edit.php index d2f5a6c..b51eab6 100644 --- a/include/assignments-edit.php +++ b/include/assignments-edit.php @@ -21,6 +21,7 @@ require_once('./conf.php'); require_once('./login-ajax.php'); $response = new Response(); +$response->success = true; try { $assignment = new Assignment($_pdo, $_REQUEST['pk']); @@ -29,19 +30,19 @@ try { $what_to_edit = $name[count($name) - 1]; switch ($what_to_edit) { case 'title': - $response->success = $assignment->setTitle($_REQUEST['value']); + $assignment->title = $_REQUEST['value']; break; case 'hours': - $response->success = $assignment->setHours($_REQUEST['value']); + $assignment->hours = $_REQUEST['value']; break; case 'price_per_hour': - $response->success = $assignment->setPricePerHour($_REQUEST['value']); + $assignment->price_per_hour = $_REQUEST['value']; break; case 'vat': - $response->success = $assignment->setVAT($_REQUEST['value']); + $assignment->VAT_percentage = $_REQUEST['value']; break; case 'description': - $response->success = $assignment->setDescription($_REQUEST['value']); + $assignment->description = $_REQUEST['value']; break; default: $response->http_response_code(404); diff --git a/include/assignments-new.php b/include/assignments-new.php index bcc545a..932e200 100644 --- a/include/assignments-new.php +++ b/include/assignments-new.php @@ -33,7 +33,7 @@ try { $_REQUEST['vat'] ); $response->success = true; - $response->message = "Assignment {$assignment->getTitle()} has been succesfully created. Refresh the page."; + $response->message = "Assignment {$assignment->title} has been succesfully created. Refresh the page."; } catch (PDOException $e) { $response->http_response_code(500); $response->success = false; diff --git a/include/assignments-overview.php b/include/assignments-overview.php index d4b350e..9fa226f 100644 --- a/include/assignments-overview.php +++ b/include/assignments-overview.php @@ -40,27 +40,27 @@ require_once('./login.php'); $assignments = BusinessAdmin::getAssignments($_pdo); foreach ($assignments as $assignment) { echo "
{$assignment->getDescription(false)}
+ {$assignment->title}{$assignment->getDescription()}
"; - $temp['assignments_header'] .= "{$assignment->getTitle()}{$assignment->getHTMLDescription()}
"; + $temp['assignments_header'] .= "{$assignment->title}{$assignment->getDescription()}
"; + echo "{$assignment->title}{$assignment->getHTMLDescription()}
"; } foreach ($offer->getDiscounts() as $discount) { echo "{$discount->getTitle()}{$discount->getDescription()}
"; diff --git a/include/offers-view.php b/include/offers-view.php index 9b69dce..6b84e5c 100644 --- a/include/offers-view.php +++ b/include/offers-view.php @@ -40,8 +40,8 @@ $_offer = new Offer($_pdo, $_id); 'assignments_header' => '' ); foreach ($_offer->getAssignments() as $assignment) { - $temp['assignments'] .= "{$assignment->getTitle()}{$assignment->getDescription()}
"; - $temp['assignments_header'] .= "{$assignment->getTitle()}{$assignment->getHTMLDescription()}
"; + $temp['assignments_header'] .= "{$assignment->title}{$assignment->getDescription()}
+ {$assignment->title}{$assignment->getHTMLDescription()}