2021-06-06 13:34:13 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
include_once($prefix.'assets/php/includes/session.php');
|
|
|
|
|
|
|
|
//Full calendar only accepts Events objects
|
|
|
|
class Event implements \JsonSerializable
|
|
|
|
{
|
|
|
|
public static function searchAllEvents($idhall, $cinema)
|
|
|
|
{
|
|
|
|
$result = [];
|
|
|
|
$sessions = Session::getListSessions($idhall,$cinema,null);
|
|
|
|
|
|
|
|
foreach($sessions as $s){
|
|
|
|
$e = new Event();
|
|
|
|
$diccionario = self::session2dictionary($s);
|
|
|
|
$e = $e->dictionary2event($diccionario);
|
|
|
|
$result[] = $e;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function searchEventsBetween2dates(string $start, string $end = null, $idhall, $cinema)
|
|
|
|
{
|
|
|
|
|
|
|
|
$result = [];
|
2021-06-07 23:16:22 +02:00
|
|
|
$sessions = Session::getListSessionsBetween2Dates($idhall,$cinema,$start,$end);
|
|
|
|
if($sessions){
|
|
|
|
foreach($sessions as $s){
|
|
|
|
$e = new Event();
|
|
|
|
$dictionary = self::session2dictionary($s);
|
|
|
|
$e = $e->dictionary2event($dictionary);
|
|
|
|
$result[] = $e;
|
|
|
|
}
|
|
|
|
}
|
2021-06-06 13:34:13 +02:00
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
private $id;
|
|
|
|
private $title;
|
|
|
|
private $start;
|
|
|
|
private $end;
|
|
|
|
|
|
|
|
private $idfilm;
|
|
|
|
private $start_time;
|
|
|
|
private $seat_price;
|
|
|
|
private $format;
|
|
|
|
private $seats_full;
|
|
|
|
|
|
|
|
|
|
|
|
private function __construct()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getId()
|
|
|
|
{
|
|
|
|
return $this->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getIdfilm()
|
|
|
|
{
|
|
|
|
return $this->idfilm;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Return an object that allows Event object to be serialized as json because private atributes cant be serialized
|
|
|
|
public function jsonSerialize()
|
|
|
|
{
|
2021-06-07 23:16:22 +02:00
|
|
|
$film = Session::getThisSessionFilm($this->idfilm);
|
|
|
|
|
|
|
|
$undesirable = array(
|
|
|
|
'á','À','Á','Â','Ã','Ä','Å',
|
|
|
|
'ß','Ç',
|
|
|
|
'È','É','Ê','Ë',
|
|
|
|
'Ì','Í','Î','Ï','Ñ',
|
|
|
|
'Ò','Ó','Ô','Õ','Ö',
|
|
|
|
'Ù','Ú','Û','Ü',
|
|
|
|
'ñ'
|
|
|
|
);
|
|
|
|
$good = array(
|
|
|
|
'a','A','A','A','A','A','A',
|
|
|
|
'B','C',
|
|
|
|
'E','E','E','E',
|
|
|
|
'I','I','I','I','N',
|
|
|
|
'O','O','O','O','O',
|
|
|
|
'U','U','U','U',
|
|
|
|
'n'
|
|
|
|
);
|
|
|
|
|
|
|
|
$lan = str_replace($undesirable, $good, $film["language"]);
|
|
|
|
|
|
|
|
|
2021-06-06 13:34:13 +02:00
|
|
|
$o = new \stdClass();
|
|
|
|
$o->id = $this->id;
|
|
|
|
$o->title = $this->title;
|
2021-06-07 23:16:22 +02:00
|
|
|
$o->start = $this->start;
|
|
|
|
$o->end = $this->end;
|
2021-06-06 13:34:13 +02:00
|
|
|
$o->start_time = $this->start_time;
|
|
|
|
$o->seat_price = $this->seat_price;
|
|
|
|
$o->format = $this->format;
|
2021-06-07 23:16:22 +02:00
|
|
|
$o->film_dur = $film["duration"];
|
|
|
|
$o->film_id = $film["idfilm"];
|
|
|
|
$o->film_lan = $lan;
|
|
|
|
$o->film_img = $film["img"];
|
|
|
|
$o->date = $this->start;
|
|
|
|
|
2021-06-06 13:34:13 +02:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function session2dictionary($session){
|
|
|
|
$extraDurationBetweenFilms = 10;
|
|
|
|
|
|
|
|
$film = Session::getThisSessionFilm($session->getIdfilm());
|
|
|
|
$dur = $film["duration"]+$extraDurationBetweenFilms;
|
|
|
|
|
2021-06-07 23:16:22 +02:00
|
|
|
$tittle = \str_replace('_', ' ', $film["tittle"]) ;
|
2021-06-06 13:34:13 +02:00
|
|
|
$start = $session->getDate()." ".$session->getStartTime();
|
2021-06-07 23:16:22 +02:00
|
|
|
$end = \date('Y-m-d H:i:s', \strtotime( $start . ' +'.$dur.' minute'));
|
2021-06-06 13:34:13 +02:00
|
|
|
|
|
|
|
$dictionary = array(
|
|
|
|
"id" => $session->getId(),
|
|
|
|
"title" => $tittle,
|
|
|
|
"start" => $start,
|
|
|
|
"end" => $end,
|
|
|
|
"idfilm" => $session->getIdfilm(),
|
|
|
|
"start_time" => $session->getStartTime(),
|
|
|
|
"seat_price" => $session->getSeatPrice(),
|
|
|
|
"format" => $session->getFormat(),
|
|
|
|
"seats_full" => $session->getSeatsFull(),
|
|
|
|
);
|
|
|
|
|
|
|
|
return $dictionary;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function dictionary2event(array $dictionary)
|
|
|
|
{
|
|
|
|
if (array_key_exists('id', $dictionary)) {
|
|
|
|
$id = $dictionary['id'];
|
|
|
|
$this->id =(int)$id;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (array_key_exists('title', $dictionary)) {
|
|
|
|
$title = $dictionary['title'];
|
|
|
|
$this->title = $title;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (array_key_exists('start', $dictionary)) {
|
|
|
|
$start = $dictionary['start'];
|
2021-06-07 23:16:22 +02:00
|
|
|
//$start = DateTime::createFromFormat("y-m-d H:i:s", $start);
|
|
|
|
$this->start = $start;
|
2021-06-06 13:34:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (array_key_exists('end', $dictionary)) {
|
|
|
|
$end = $dictionary['end'] ?? null;
|
2021-06-07 23:16:22 +02:00
|
|
|
$this->end = $end;
|
2021-06-06 13:34:13 +02:00
|
|
|
}
|
|
|
|
|
2021-06-07 23:16:22 +02:00
|
|
|
|
2021-06-06 13:34:13 +02:00
|
|
|
if (array_key_exists('idfilm', $dictionary)) {
|
|
|
|
$idfilm = $dictionary['idfilm'] ?? null;
|
|
|
|
$this->idfilm = $idfilm;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (array_key_exists('start_time', $dictionary)) {
|
|
|
|
$start_time = $dictionary['start_time'] ?? null;
|
|
|
|
$this->start_time = $start_time;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (array_key_exists('seat_price', $dictionary)) {
|
|
|
|
$seat_price = $dictionary['seat_price'] ?? null;
|
|
|
|
$this->seat_price = $seat_price;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (array_key_exists('format', $dictionary)) {
|
|
|
|
$format = $dictionary['format'] ?? null;
|
|
|
|
$this->format = $format;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (array_key_exists('seats_full', $dictionary)) {
|
|
|
|
$seats_full = $dictionary['seats_full'] ?? null;
|
|
|
|
$this->seats_full = $seats_full;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
}
|