From 31cb6b32121948386ca09921af5d4afb72447607 Mon Sep 17 00:00:00 2001 From: Markines16 <80280295+Markines16@users.noreply.github.com> Date: Sat, 5 Jun 2021 11:50:04 +0200 Subject: [PATCH] Add files via upload --- panel_manager/eventos.php | 82 ++++++++++++++------ panel_manager/includes/NewSessionForm.php | 79 +++++++++++++++++++ panel_manager/index.php | 7 +- panel_manager/panel_manager.php | 14 ++-- panel_manager/processSession.php | 57 ++++++++++++++ panel_manager/sessioncalendar.js | 15 ++-- panel_manager/sessionforms.js | 93 +++++++++++++++++++++++ 7 files changed, 310 insertions(+), 37 deletions(-) create mode 100644 panel_manager/includes/NewSessionForm.php create mode 100644 panel_manager/processSession.php create mode 100644 panel_manager/sessionforms.js diff --git a/panel_manager/eventos.php b/panel_manager/eventos.php index b6e7c79..0a72204 100644 --- a/panel_manager/eventos.php +++ b/panel_manager/eventos.php @@ -2,6 +2,7 @@ require_once('../assets/php/config.php'); require_once('./Evento.php'); +include_once($prefix.'assets/php/includes/session.php'); // Procesamos la cabecera Content-Type $contentType= $_SERVER['CONTENT_TYPE'] ?? 'application/json'; @@ -67,31 +68,68 @@ switch($_SERVER['REQUEST_METHOD']) { break; // Añadir un nuevo evento case 'POST': - // 1. Leemos el contenido que nos envían - $entityBody = file_get_contents('php://input'); - // 2. Verificamos que nos envían un objeto - $dictionary = json_decode($entityBody); - if (!is_object($dictionary)) { - //throw new ParametroNoValidoException('El cuerpo de la petición no es valido'); - } - - // 3. Reprocesamos el cuerpo de la petición como un array PHP - $dictionary = json_decode($entityBody, true); - $dictionary['userId'] = 1;// HACK: normalmente debería de ser App::getSingleton()->idUsuario(); + $errors = []; + $data = []; + //Testing hacks + $correct_response = 'Operación completada'; + $film = "1"; - $e = Evento::creaDesdeDicionario($dictionary); - - // 4. Guardamos el evento en BD - $result = Evento::guardaOActualiza($e); - - // 5. Generamos un objecto como salida. - $json = json_encode($result, JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES | JSON_NUMERIC_CHECK); + $entityBody = file_get_contents('php://input'); + $dictionary = json_decode($entityBody); + + if (!is_object($dictionary)) + $errors['global'] = 'El cuerpo de la petición no es valido'; + + $price = $dictionary->{"price"} ?? ""; + $format = $dictionary->{"format"} ?? ""; + $hall = $dictionary->{"hall"} ?? ""; + $startDate = $dictionary->{"startDate"} ?? ""; + $endDate = $dictionary->{"endDate"} ?? ""; + $startHour = $dictionary->{"startHour"} ?? ""; + + if (empty($price) || $price <= 0 ) + $errors['price'] = 'El precio no puede ser 0.'; + if (empty($format)) + $errors['format'] = 'El formato no puede estar vacio. Ej: 3D, 2D, voz original'; + if (empty($hall) || $hall<=0 ) + $errors['hall'] = 'La sala no puede ser 0 o menor'; + if (empty($startDate)) + $errors['startDate'] = 'Las sesiones tienen que empezar algun dia.'; + else if (empty($endDate)) + $errors['endDate'] = 'Las sesiones tienen que teminar algun dia.'; + else { + $start = strtotime($startDate); + $end = strtotime($endDate); + $start = date('Y-m-d', $start); + $end = date('Y-m-d', $end); + + if($start >= $end) + $errors['date'] = 'La fecha inicial no puede ser antes o el mismo dia que la final.'; + } + if (empty($startHour)) + $errors['startHour'] = 'Es necesario escoger el horario de la sesion.'; - http_response_code(201); // 201 Created - header('Content-Type: application/json; charset=utf-8'); - header('Content-Length: ' . mb_strlen($json)); + while($startDate < $endDate && empty($errors)){ + $msg = Session::create_session($_SESSION["cinema"], $hall, $startHour, $startDate, $film, $price, $format); + + if(strcmp($msg,$correct_response)!== 0) + $errors['price'] = $msg; + else + $data['message'] = $msg; + + $startDate = date('Y-m-d H:i:s', strtotime( $startDate . ' +1 day')); + } + + if (!empty($errors)) { + error_log("no success"); + $data['success'] = false; + $data['errors'] = $errors; + } else { + error_log("succes"); + $data['success'] = true; + } - echo $json; + echo json_encode($data); break; case 'PUT': diff --git a/panel_manager/includes/NewSessionForm.php b/panel_manager/includes/NewSessionForm.php new file mode 100644 index 0000000..f116797 --- /dev/null +++ b/panel_manager/includes/NewSessionForm.php @@ -0,0 +1,79 @@ +allFilmData(); + + $form=' +
+
+
+ Datos +
+
+
+
+
+
+
'; + foreach(Hall::getListHalls($_SESSION["cinema"]) as $hll){ + if($hll->getNumber() == $hall){ + $panel.= ' + '; + }else{ + $panel.= ' + '; + } + } + $form.=' +
+
+ Horario +
+
+ + + + +
+
+
+
+ + +
+
+
+ + +
+
+ + + +
+
+ +
'; + + return $form; + } + +} +?> \ No newline at end of file diff --git a/panel_manager/index.php b/panel_manager/index.php index c9cb827..a20bce6 100644 --- a/panel_manager/index.php +++ b/panel_manager/index.php @@ -23,7 +23,7 @@

¡ATENCIÓN!


Está viendo la web como un Usuario NO Registrado.

- +
@@ -39,7 +39,7 @@

¡ATENCIÓN!


Está viendo la web como un Usuario Registrado.

- +
@@ -121,7 +121,7 @@

¡ATENCIÓN!


Está viendo la web como un Usuario Registrado.

- +
@@ -195,3 +195,4 @@ + diff --git a/panel_manager/panel_manager.php b/panel_manager/panel_manager.php index f826823..1513c9d 100644 --- a/panel_manager/panel_manager.php +++ b/panel_manager/panel_manager.php @@ -5,7 +5,7 @@ require_once($prefix.'assets/php/includes/cinema_dao.php'); include_once('./includes/formHall.php'); include_once('./includes/formSession.php'); - + include_once('./includes/NewSessionForm.php'); class Manager_panel { @@ -89,7 +89,7 @@ return $panel; } static function calendar(){ - $formSession = new FormSession("new_session", $_SESSION["cinema"] ); + $hall = $_POST['hall'] ?? $_GET['hall'] ?? "1"; $halls = Hall::getListHalls($_SESSION["cinema"]); @@ -114,15 +114,15 @@
-
-