refactored appr model
This commit is contained in:
parent
b33a6346bd
commit
332a98958f
@ -1,8 +1,68 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
final class ApprModel {
|
final class ApprModel {
|
||||||
|
public $I_ID = null;
|
||||||
|
public $S_COMMENT = null;
|
||||||
|
public $I_NOTE = null;
|
||||||
|
public $S_DATE = null;
|
||||||
|
public $I_AUTHOR_ID = null;
|
||||||
|
public $I_RECIPE_ID = null;
|
||||||
|
|
||||||
public function searchRecipeApprsWithAuthors($I_recipe_id)
|
public $O_AUTHOR = null;
|
||||||
|
|
||||||
|
public function __construct($S_COMMENT, $I_NOTE, $S_DATE, $I_AUTHOR_ID, $I_RECIPE_ID)
|
||||||
|
{
|
||||||
|
$this->S_COMMENT = $S_COMMENT;
|
||||||
|
$this->I_NOTE = $I_NOTE;
|
||||||
|
$this->S_DATE = $S_DATE;
|
||||||
|
$this->I_AUTHOR_ID = $I_AUTHOR_ID;
|
||||||
|
$this->I_RECIPE_ID = $I_RECIPE_ID;
|
||||||
|
}
|
||||||
|
private function createFromRow($A_row,$I_id){
|
||||||
|
$O_appr = new ApprModel($A_row["COMMENT"], $A_row["NOTE"], $A_row["DATE"], $A_row["AUTHOR_ID"], $A_row["RECIPE_ID"]);
|
||||||
|
$O_appr->I_ID = $I_id;
|
||||||
|
return $O_appr;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function insert(){
|
||||||
|
$O_model = Model::get();
|
||||||
|
$stmt = $O_model->prepare("INSERT INTO APPRECIATION (COMMENT, NOTE, DATE, AUTHOR_ID, RECIPE_ID) VALUES(:comment, :note, :date, :author_id, :recipe_id)");
|
||||||
|
$stmt->bindParam("comment", $this->S_COMMENT);
|
||||||
|
$stmt->bindParam("note", $this->I_NOTE);
|
||||||
|
$stmt->bindParam("date", $this->S_DATE);
|
||||||
|
$stmt->bindParam("author_id", $this->I_AUTHOR_ID);
|
||||||
|
$stmt->bindParam("recipe_id", $this->I_RECIPE_ID);
|
||||||
|
$stmt->execute();
|
||||||
|
$this->I_ID = Model::get()->lastInsertId();
|
||||||
|
}
|
||||||
|
public function update(){
|
||||||
|
$O_model = Model::get();
|
||||||
|
$stmt = $O_model->prepare("UPDATE APPRECIATION SET COMMENT=:comment, NOTE =:note, DATE =:date, AUTHOR_ID =:author_id, RECIPE_ID =:recipe_id WHERE ID = :id");
|
||||||
|
$stmt->bindParam("id", $this->I_ID);
|
||||||
|
$stmt->bindParam("comment", $this->S_COMMENT);
|
||||||
|
$stmt->bindParam("note", $this->I_NOTE);
|
||||||
|
$stmt->bindParam("date", $this->S_DATE);
|
||||||
|
$stmt->bindParam("author_id", $this->I_AUTHOR_ID);
|
||||||
|
$stmt->bindParam("recipe_id", $this->I_RECIPE_ID);
|
||||||
|
$stmt->execute();
|
||||||
|
$this->I_ID = Model::get()->lastInsertId();
|
||||||
|
}
|
||||||
|
public function delete(){
|
||||||
|
$O_model = Model::get();
|
||||||
|
$stmt = $O_model->prepare("DELETE FROM APPRECIATION WHERE ID=:id");
|
||||||
|
$stmt->bindParam("id", $this->I_ID);
|
||||||
|
$stmt->execute();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getAuthor(){
|
||||||
|
if($this->O_AUTHOR === null){
|
||||||
|
$this->O_AUTHOR = UserModel::getByID($this->I_AUTHOR_ID);
|
||||||
|
}
|
||||||
|
return $this->O_AUTHOR;
|
||||||
|
}
|
||||||
|
|
||||||
|
//DECRECATED
|
||||||
|
public static function searchRecipeApprsWithAuthors($I_recipe_id)
|
||||||
{
|
{
|
||||||
$O_model = Model::get();
|
$O_model = Model::get();
|
||||||
$stmt = $O_model->prepare("
|
$stmt = $O_model->prepare("
|
||||||
@ -14,59 +74,56 @@ final class ApprModel {
|
|||||||
");
|
");
|
||||||
$stmt->bindParam("recipe_id", $I_recipe_id);
|
$stmt->bindParam("recipe_id", $I_recipe_id);
|
||||||
$stmt->execute();
|
$stmt->execute();
|
||||||
|
|
||||||
$rows = $stmt->fetchAll();
|
$rows = $stmt->fetchAll();
|
||||||
|
|
||||||
return $rows;
|
return $rows;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function searchRecipeApprs($I_recipe_id)
|
public static function searchRecipeApprs($I_recipe_id)
|
||||||
{
|
{
|
||||||
$O_model = Model::get();
|
$O_model = Model::get();
|
||||||
$stmt = $O_model->prepare("SELECT * FROM APPRECIATION WHERE RECIPE_ID = :recipe_id");
|
$stmt = $O_model->prepare("SELECT * FROM APPRECIATION WHERE RECIPE_ID = :recipe_id");
|
||||||
$stmt->bindParam("recipe_id", $I_recipe_id);
|
$stmt->bindParam("recipe_id", $I_recipe_id);
|
||||||
$stmt->execute();
|
$stmt->execute();
|
||||||
return $stmt->fetchAll();
|
$A_apprs = array();
|
||||||
|
foreach($stmt->fetchAll() as $row){
|
||||||
|
array_push($A_apprs, self::createFromRow($row, $row["ID"]));
|
||||||
|
}
|
||||||
|
return $A_apprs;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function createAppr($I_user_id, $I_recipe_id, $S_Comment, $I_note)
|
public static function deleteById($I_id)
|
||||||
{
|
|
||||||
$O_model = Model::get();
|
|
||||||
$stmt = $O_model->prepare("
|
|
||||||
INSERT INTO APPRECIATION (COMMENT,NOTE,DATE,AUTHOR_ID,RECIPE_ID) VALUES (:comment, :note, :date, :author_id, :recipe_id)
|
|
||||||
");
|
|
||||||
$stmt->bindParam("comment",$S_Comment);
|
|
||||||
$stmt->bindParam("note",$I_note);
|
|
||||||
$_date = date("Y-m-d");
|
|
||||||
$stmt->bindParam("date",$_date);
|
|
||||||
$stmt->bindParam("author_id",$I_user_id);
|
|
||||||
$stmt->bindParam("recipe_id",$I_recipe_id);
|
|
||||||
$stmt->execute();
|
|
||||||
return $stmt->fetch();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function deleteAppr($I_appr_id)
|
|
||||||
{
|
{
|
||||||
$O_model = Model::get();
|
$O_model = Model::get();
|
||||||
$stmt = $O_model->prepare("DELETE FROM APPRECIATION WHERE ID = :appr_id");
|
$stmt = $O_model->prepare("DELETE FROM APPRECIATION WHERE ID = :appr_id");
|
||||||
$stmt->bindParam("appr_id", $I_appr_id);
|
$stmt->bindParam("appr_id", $I_id);
|
||||||
$stmt->execute();
|
$stmt->execute();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getApprByID($I_appr_id)
|
public static function getApprById($I_id)
|
||||||
{
|
{
|
||||||
$O_model = Model::get();
|
$O_model = Model::get();
|
||||||
$stmt = $O_model->prepare("SELECT * FROM APPRECIATION WHERE ID = :appr_id");
|
$stmt = $O_model->prepare("SELECT * FROM APPRECIATION WHERE ID = :appr_id");
|
||||||
$stmt->bindParam("appr_id", $I_appr_id);
|
$stmt->bindParam("appr_id", $I_id);
|
||||||
$stmt->execute();
|
$stmt->execute();
|
||||||
|
|
||||||
$row = $stmt->fetch();
|
$row = $stmt->fetch();
|
||||||
if ($row === false) return null;
|
if ($row === false) return null;
|
||||||
return $row;
|
$O_appr = new ApprModel($row["COMMENT"], $row["NOTE"], $row["DATE"], $row["AUTHOR_ID"], $row["RECIPE_ID"]);
|
||||||
|
$O_appr->I_ID = $I_id;
|
||||||
|
return $O_appr;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function updateAppreciation($I_appr_id)
|
public static function getAppsrByRecipeId($I_id)
|
||||||
{
|
{
|
||||||
|
$O_model = Model::get();
|
||||||
|
$stmt = $O_model->prepare("SELECT * FROM APPRECIATION WHERE RECIPE_ID = :recipe_id");
|
||||||
|
$stmt->bindParam("recipe_id", $I_id);
|
||||||
|
$stmt->execute();
|
||||||
|
|
||||||
|
$row = $stmt->fetch();
|
||||||
|
if ($row === false) return null;
|
||||||
|
$O_appr = new ApprModel($row["COMMENT"], $row["NOTE"], $row["DATE"], $row["AUTHOR_ID"], $row["RECIPE_ID"]);
|
||||||
|
$O_appr->I_ID = $I_id;
|
||||||
|
return $O_appr;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user