2021-04-28 21:46:10 +02:00
|
|
|
<?php
|
2021-05-05 16:55:00 +02:00
|
|
|
require_once($prefix.'assets/php/dao.php');
|
2021-05-03 12:37:10 +02:00
|
|
|
include_once('hall.php');
|
2021-05-06 23:23:34 +02:00
|
|
|
include_once('seat_dao.php');
|
|
|
|
|
2021-04-28 21:46:10 +02:00
|
|
|
class HallDAO extends DAO {
|
|
|
|
|
|
|
|
//Constructor:
|
|
|
|
function __construct($bd_name){
|
|
|
|
parent::__construct($bd_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
//Methods:
|
|
|
|
|
|
|
|
//Create a new Hall.
|
2021-05-06 23:23:34 +02:00
|
|
|
public function createHall($hall){
|
|
|
|
|
|
|
|
$sql = sprintf( "INSERT INTO `hall`( `number`, `idcinema`, `numrows`, `numcolumns`, `total_seats`)
|
|
|
|
VALUES ( '%d', '%d', '%d', '%d', '%d')",
|
|
|
|
$hall['number'], $hall['cinema'], $hall['rows'], $hall['cols'], $hall['seats'] );
|
2021-05-05 16:55:00 +02:00
|
|
|
|
|
|
|
$resul = mysqli_query($this->mysqli, $sql) or die ('Error BD createhall');
|
|
|
|
|
2021-05-06 23:23:34 +02:00
|
|
|
Seat::createSeats($hall);
|
|
|
|
|
2021-04-28 21:46:10 +02:00
|
|
|
return $sql;
|
|
|
|
}
|
2021-05-05 16:55:00 +02:00
|
|
|
|
2021-04-28 21:46:10 +02:00
|
|
|
//Returns a query to get the halls data.
|
|
|
|
public function getAllHalls($cinema){
|
|
|
|
$sql = sprintf( "SELECT * FROM hall WHERE
|
|
|
|
idcinema = '%s'",
|
|
|
|
$cinema);
|
|
|
|
|
|
|
|
$resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database');
|
|
|
|
|
|
|
|
$hall = null;
|
|
|
|
|
|
|
|
while($fila=mysqli_fetch_array($resul)){
|
2021-05-07 19:06:12 +02:00
|
|
|
$hall[] = $this->loadHall($fila["number"], $fila["idcinema"], $fila["numrows"], $fila["numcolumns"], $fila["total_seats"]);
|
2021-04-28 21:46:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
mysqli_free_result($resul);
|
|
|
|
|
|
|
|
return $hall;
|
|
|
|
}
|
2021-05-05 16:55:00 +02:00
|
|
|
|
|
|
|
//Returns the count of the hall searched
|
2021-05-06 23:23:34 +02:00
|
|
|
public function searchHall($hall){
|
2021-05-05 16:55:00 +02:00
|
|
|
|
|
|
|
$sql = sprintf( "SELECT COUNT(*) FROM hall WHERE
|
|
|
|
idcinema = '%s' AND number = '%s'",
|
2021-05-06 23:23:34 +02:00
|
|
|
$hall['cinema'], $hall['number']);
|
2021-05-05 16:55:00 +02:00
|
|
|
$resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database');
|
|
|
|
|
|
|
|
$hall = mysqli_fetch_array($resul);
|
|
|
|
|
|
|
|
mysqli_free_result($resul);
|
|
|
|
|
|
|
|
return $hall[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-04-28 21:46:10 +02:00
|
|
|
//Create a new Hall Data Transfer Object.
|
2021-05-07 19:06:12 +02:00
|
|
|
public function loadHall($number, $idcinema, $numrows, $numcolumns,$total_seats){
|
|
|
|
return new Hall($number, $idcinema, $numrows, $numcolumns,$total_seats);
|
2021-04-28 21:46:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//Edit Hall.
|
2021-05-07 19:06:12 +02:00
|
|
|
public function editHall($hall){
|
2021-04-28 21:46:10 +02:00
|
|
|
|
|
|
|
$sql = sprintf( "UPDATE `hall`
|
2021-05-07 19:06:12 +02:00
|
|
|
SET `numrows` = '%d' , `numcolumns` = '%d' , `total_seats` = %d
|
2021-04-28 21:46:10 +02:00
|
|
|
WHERE `hall`.`number` = '%d' AND `hall`.`idcinema` = '%d';",
|
2021-05-07 19:06:12 +02:00
|
|
|
$hall['rows'], $hall['cols'], $hall['seats'], $hall['number'], $hall['cinema'] );
|
2021-04-28 21:46:10 +02:00
|
|
|
|
|
|
|
$resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database');
|
|
|
|
|
|
|
|
return $resul;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Delete Hall.
|
2021-05-07 19:06:12 +02:00
|
|
|
public function deleteHall($hall){
|
2021-04-28 21:46:10 +02:00
|
|
|
|
2021-05-07 19:06:12 +02:00
|
|
|
$sql = sprintf( "DELETE FROM `hall` WHERE `hall`.`number` = '%d' AND `hall`.`idcinema` = '%d';",$hall['number'], $hall['cinema']);
|
2021-04-28 21:46:10 +02:00
|
|
|
|
|
|
|
$resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database');
|
|
|
|
|
|
|
|
return $resul;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|