115 lines
3.5 KiB
PHP
115 lines
3.5 KiB
PHP
<?php
|
|
|
|
include_once('../assets/php/config.php');
|
|
include_once('../assets/php/common/cinema_dao.php');
|
|
include_once('../assets/php/common/cinema.php');
|
|
include_once('../assets/php/form.php');
|
|
|
|
class FormCinema extends Form {
|
|
|
|
//Atributes:
|
|
private $correct; // Indicates if the session is correct.
|
|
private $reply; // Validation response
|
|
private $option;
|
|
private $array;
|
|
//Constructor:
|
|
public function __construct() {
|
|
parent::__construct('formCinema');
|
|
$this->reply = array();
|
|
}
|
|
|
|
public function getReply() {
|
|
if($this->correct){
|
|
if($this->option == "new"){
|
|
$this->reply = "<h1> Operacion realizada con exito </h1><hr />
|
|
<p> Se ha añadido el cine correctamente en la base de datos.</p>
|
|
<a href='../panel_admin/index.php?state=mc'><button>Cerrar Mensaje</button></a>";
|
|
}else if($this->option == "edit"){
|
|
$this->reply = "<h1> Operacion realizada con exito </h1><hr />
|
|
<p> Se ha editado el cine correctamente en la base de datos.</p>
|
|
<a href='../panel_admin/index.php?state=mc'><button>Cerrar Mensaje</button></a>";
|
|
}else if($this->option == "del"){
|
|
$this->reply = "<h1> Operacion realizada con exito </h1><hr />
|
|
<p> Se ha eliminado el cine correctamente en la base de datos.</p>
|
|
<a href='../panel_admin/index.php?state=mc'><button>Cerrar Mensaje</button></a>";
|
|
}
|
|
|
|
} else {
|
|
$this->reply = "<h1> ERROR </h1><hr />
|
|
<p> Ha habido un error en la operacion. Revisa los datos introducidos</p>
|
|
<a href='../panel_admin/index.php?state=mc'><button>Panel Admin</button></a>";
|
|
|
|
}
|
|
return $this->reply;
|
|
}
|
|
|
|
//Process form:
|
|
public function processesForm($_id, $_name, $_direction, $_phone, $_option) {
|
|
$this->correct = true;
|
|
$this->option = $_option;
|
|
|
|
$id= $this->test_input($_id);
|
|
$name=$this->test_input($_name);
|
|
$direction=$this->test_input($_direction);
|
|
$phone=$this->test_input($_phone);
|
|
|
|
//Habria que validar todo para que encaje en la base de datos
|
|
|
|
$bd = new Cinema_DAO('complucine');
|
|
if($bd){
|
|
if($this->option == "new"){
|
|
//Primero comprobar si los campos no son vacios y la duracion es mayor que 0
|
|
if(!empty($name)&&!empty($direction)&&!empty($phone)){
|
|
// comprobar si existe una pelicula con el mismo nombre y direccion
|
|
$exist = $bd->GetCinema($name,$direction);
|
|
if( mysqli_num_rows($exist) != 0){
|
|
$this->correct =false;
|
|
}
|
|
else{
|
|
$bd->createCinema(null, $name, $direction, $phone);
|
|
|
|
}
|
|
$exist->free();
|
|
}
|
|
else{
|
|
$this->correct =false;
|
|
}
|
|
} else if ($this->option == "del"){
|
|
//Primero comprobar si existe una pelicula con el mismo id
|
|
$exist = $bd-> CinemaData($id);
|
|
if( mysqli_num_rows($exist) == 1){
|
|
$bd->deleteCinema($id);
|
|
}
|
|
else{
|
|
$this->correct =false;
|
|
}
|
|
} else if ($this->option == "edit"){
|
|
//Primero comprobar si los campos no son vacios y la duracion es mayor que 0
|
|
if(!empty($name)&&!empty($direction)&&!empty($phone)){
|
|
//comprobar si existe una pelicula con el mismo id
|
|
$exist = $bd-> CinemaData($id);
|
|
if( mysqli_num_rows($exist) == 1){
|
|
$bd->editCinema($id,$name,$direction,$phone);
|
|
}
|
|
else{
|
|
$this->correct =false;
|
|
}
|
|
$exist->free();
|
|
}
|
|
else{
|
|
$this->correct =false;
|
|
}
|
|
}
|
|
else {$this->correct = false;}
|
|
}
|
|
|
|
|
|
}
|
|
|
|
protected function test_input($input){
|
|
return htmlspecialchars(trim(strip_tags($input)));
|
|
}
|
|
}
|
|
|
|
|
|
?>
|