-
Notifications
You must be signed in to change notification settings - Fork 0
/
Database.php
319 lines (290 loc) · 12.8 KB
/
Database.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
<?php
class Database extends mysqli
{
public function __construct($host, $user, $password, $database)
{
parent::__construct($host, $user, $password, $database);
if (mysqli_connect_error()) {
die('Error de conexión (' . mysqli_connect_errno() . ') ' . mysqli_connect_error());
}
}
public function getRoomTypes()
{
$sql = "SHOW COLUMNS FROM habitaciones LIKE 'tipo_habitacion'";
$result = $this->query($sql);
if (!$result || $result->num_rows == 0) {
return [];
}
$row = $result->fetch_assoc();
$typeColumn = $row['Type'];
preg_match('/enum\((.*)\)$/', $typeColumn, $matches);
$roomTypes = str_getcsv($matches[1], ',', "'");
return $roomTypes;
}
public function getRooms($filters)
{
$query = "SELECT id, numero, tipo_habitacion, bano_privado, precio FROM habitaciones";
$applicableFilters = $this->applicableFilters($filters);
$i = 0;
foreach ($applicableFilters as $filter => $value) {
if ($i == 0) {
$query .= " WHERE";
}
$query .= $this->$filter($value);
$i++;
if ($i > 0 && $i < count($applicableFilters)) {
$query .= " AND";
}
}
$result = $this->query($query);
if (!$result || $result->num_rows == 0) {
return [];
}
$rooms = $result->fetch_all(MYSQLI_ASSOC);
return $rooms;
}
private function applicableFilters($filters)
{
$validFilters = ['preciomax', 'tipohabitacion', 'banoprivado', 'fechas'];
$applicableFilters = [];
foreach ($filters as $filter => $value) {
if ($value != '' && in_array($filter, $validFilters)) {
$applicableFilters[$filter] = $value;
}
}
return $applicableFilters;
}
private function preciomax($precio)
{
return " precio <= $precio";
}
private function tipohabitacion($tipo)
{
return " tipo_habitacion = '$tipo'";
}
private function banoprivado($value)
{
return " bano_privado = $value";
}
private function fechas($fechas)
{
return " id NOT IN (SELECT habitacion_id FROM reservas WHERE fecha_inicio BETWEEN '$fechas[0]' AND '$fechas[1]' OR fecha_fin BETWEEN '$fechas[0]' AND '$fechas[1]' AND esta_activo = 1)";
}
public function storeRoom($numero, $tipohabitacion, $banio, $precio)
{
$query = "INSERT INTO habitaciones (numero, tipo_habitacion, bano_privado, precio) VALUES ($numero, '$tipohabitacion',$banio, $precio)";
return $this->query($query);
}
public function getRoomById($id)
{
$query = "SELECT id, numero, tipo_habitacion, bano_privado, precio FROM habitaciones WHERE id = $id";
$result = $this->query($query);
if (!$result || $result->num_rows == 0) {
return [];
}
$room = $result->fetch_array(MYSQLI_ASSOC);
return $room;
}
public function getReservationsByRoomId($id)
{
$query = "SELECT id, fecha_inicio, fecha_fin FROM reservas WHERE habitacion_id = $id AND esta_activo = 1 AND (fecha_inicio >= NOW() OR fecha_fin >= NOW())";
$result = $this->query($query);
if (!$result || $result->num_rows == 0) {
return [];
}
$reservations = $result->fetch_all(MYSQLI_ASSOC);
return $reservations;
}
public function storeReservation(
$ci,
$nombres,
$apellidoPaterno,
$apellidoMaterno,
$telefono,
$fechaInicio,
$fechaFin,
$habitacionId
) {
$query = "SELECT id FROM reservas WHERE habitacion_id = $habitacionId AND (fecha_inicio BETWEEN '$fechaInicio' AND '$fechaFin' OR fecha_fin BETWEEN '$fechaInicio' AND '$fechaFin') AND esta_activo = 1";
$result = $this->query($query);
if ($result->num_rows == 0) {
try {
$this->begin_transaction();
$query1 = "INSERT INTO clientes (ci, nombres, apellido_paterno, apellido_materno, telefono) VALUES ('$ci', '$nombres', '$apellidoPaterno', '$apellidoMaterno', '$telefono')";
$this->query($query1);
$clienteId = $this->insert_id;
$query2 = "INSERT INTO reservas (fecha_inicio, fecha_fin, habitacion_id, cliente_id) VALUES ('$fechaInicio', '$fechaFin', $habitacionId, $clienteId)";
$this->query($query2);
$reservationId = $this->insert_id;
$this->commit();
return $reservationId;
} catch (mysqli_sql_exception $exception) {
$this->rollback();
throw $exception;
}
} else {
throw new Error("¡Error: La habitación no se encuentra disponible en esas fechas!");
}
}
public function storeReservationWithPromo(
$ci,
$nombres,
$apellidoPaterno,
$apellidoMaterno,
$telefono,
$fechaInicio,
$fechaFin,
$habitacionId,
$promocionId
) {
$query = "SELECT id FROM reservas WHERE habitacion_id = $habitacionId AND (fecha_inicio BETWEEN '$fechaInicio' AND '$fechaFin' OR fecha_fin BETWEEN '$fechaInicio' AND '$fechaFin') AND esta_activo = 1";
$result = $this->query($query);
if ($result->num_rows == 0) {
try {
$this->begin_transaction();
$query1 = "INSERT INTO clientes (ci, nombres, apellido_paterno, apellido_materno, telefono) VALUES ('$ci', '$nombres', '$apellidoPaterno', '$apellidoMaterno', '$telefono')";
$this->query($query1);
$clienteId = $this->insert_id;
$query2 = "INSERT INTO reservas (fecha_inicio, fecha_fin, habitacion_id, cliente_id, promocion_id_promo, habitacion_id_promo) VALUES ('$fechaInicio', '$fechaFin', $habitacionId, $clienteId, $promocionId, $habitacionId)";
$this->query($query2);
$reservationId = $this->insert_id;
$this->commit();
return $reservationId;
} catch (mysqli_sql_exception $exception) {
$this->rollback();
throw $exception;
}
} else {
throw new Error("¡Error: La habitación no se encuentra disponible en esas fechas!");
}
}
public function getReservationsById($id)
{
$query = "SELECT r.id, r.fecha, fecha_inicio, fecha_fin, habitacion_id, h.id, numero, tipo_habitacion, bano_privado, precio, c.id, ci, nombres, apellido_paterno, apellido_materno, telefono FROM reservas AS r LEFT JOIN habitaciones AS h ON habitacion_id = h.id LEFT JOIN clientes AS c ON cliente_id = c.id WHERE r.id = $id AND esta_activo = 1 LIMIT 1";
$result = $this->query($query);
if (!$result || $result->num_rows == 0) {
return [];
}
$reservation = $result->fetch_array(MYSQLI_ASSOC);
return $reservation;
}
public function getReservationsByIdWithPromo($id)
{
$query = "SELECT r.id, r.fecha, r.fecha_inicio, r.fecha_fin, habitacion_id, h.id, numero, tipo_habitacion, bano_privado, precio, c.id, ci, nombres, apellido_paterno, apellido_materno, telefono, nombre AS promocion, porcentaje_descuento FROM reservas AS r LEFT JOIN habitaciones AS h ON habitacion_id = h.id LEFT JOIN clientes AS c ON cliente_id = c.id LEFT JOIN promociones AS p ON r.promocion_id_promo = p.id WHERE r.id = $id AND esta_activo = 1 LIMIT 1";
$result = $this->query($query);
if (!$result || $result->num_rows == 0) {
return [];
}
$reservation = $result->fetch_array(MYSQLI_ASSOC);
return $reservation;
}
public function getReservedRooms()
{
$query = "SELECT id, numero, tipo_habitacion, bano_privado, precio FROM habitaciones WHERE id IN (SELECT habitacion_id FROM reservas WHERE (fecha_inicio >= NOW() OR fecha_fin >= NOW()) AND esta_activo = 1)";
$result = $this->query($query);
if (!$result || $result->num_rows == 0) {
return [];
}
$reservedRooms = $result->fetch_all(MYSQLI_ASSOC);
return $reservedRooms;
}
public function getRoomsWithoutReservations()
{
$query = "SELECT id, numero, tipo_habitacion, bano_privado, precio FROM habitaciones WHERE id NOT IN (SELECT habitacion_id FROM reservas WHERE (fecha_inicio >= NOW() OR fecha_fin >= NOW()) AND esta_activo = 1)";
$result = $this->query($query);
if (!$result || $result->num_rows == 0) {
return [];
}
$reservedRooms = $result->fetch_all(MYSQLI_ASSOC);
return $reservedRooms;
}
public function storePromo($nombre, $porcentajeDescuento, $fechaInicio, $fechaFin, $idsHabitaciones)
{
try {
$this->begin_transaction();
$query = "INSERT INTO promociones (nombre, porcentaje_descuento, fecha_inicio, fecha_fin) VALUES ('$nombre', $porcentajeDescuento, '$fechaInicio', '$fechaFin')";
$this->query($query);
$promocionId = $this->insert_id;
foreach ($idsHabitaciones as $idHabitacion) {
$query1 = "INSERT INTO promocion_habitacion (promocion_id, habitacion_id) VALUES ($promocionId, $idHabitacion)";
$this->query($query1);
}
$this->commit();
return $promocionId;
} catch (mysqli_sql_exception $exception) {
$this->rollback();
throw $exception;
return null;
}
}
public function getPromos()
{
$query = "SELECT id, nombre, porcentaje_descuento, fecha, fecha_inicio, fecha_fin FROM promociones";
$result = $this->query($query);
if (!$result || $result->num_rows == 0) {
return [];
}
$promociones = $result->fetch_all(MYSQLI_ASSOC);
foreach ($promociones as $key => $promocion) {
$query1 = "SELECT id, numero, tipo_habitacion, bano_privado, precio, ph.habitacion_id FROM promocion_habitacion AS ph LEFT JOIN habitaciones AS h ON habitacion_id = id WHERE promocion_id = {$promocion['id']} AND (SELECT COUNT(*) FROM reservas WHERE promocion_id_promo = {$promocion['id']} AND habitacion_id_promo = ph.habitacion_id) = 0";
$result1 = $this->query($query1);
$habitaciones = $result1->fetch_all(MYSQLI_ASSOC);
$promociones[$key]['habitaciones'] = $habitaciones;
}
return $promociones;
}
public function getPromo($promocionId)
{
$query = "SELECT id, nombre, porcentaje_descuento, fecha, fecha_inicio, fecha_fin FROM promociones WHERE id = $promocionId";
$result = $this->query($query);
if (!$result || $result->num_rows == 0) {
return [];
}
return $result->fetch_array(MYSQLI_ASSOC);
}
public function storeComment($nombreCompleto, $valuacion, $texto)
{
$query = "INSERT INTO comentarios (nombre_completo, valuacion, texto) VALUES ('$nombreCompleto', $valuacion, '$texto')";
return $this->query($query);
}
public function getComments()
{
$query = "SELECT id, nombre_completo, valuacion, texto FROM comentarios ORDER BY id DESC LIMIT 5";
$result = $this->query($query);
if (!$result || $result->num_rows == 0) {
return [];
}
$comments = $result->fetch_all(MYSQLI_ASSOC);
return $comments;
}
public function getHistorialReservationsByRoomId($id)
{
$query = "SELECT r.id AS reserva_id, r.fecha AS fecha_reservacion, r.fecha_inicio, r.fecha_fin, ci, nombres, apellido_paterno, apellido_materno, telefono, p.id AS promocion_id, nombre, porcentaje_descuento FROM reservas AS r LEFT JOIN clientes AS c ON cliente_id = c.id LEFT JOIN promociones AS p ON promocion_id_promo = p.id WHERE habitacion_id = $id";
$result = $this->query($query);
if (!$result || $result->num_rows == 0) {
return [];
}
$reservations = $result->fetch_all(MYSQLI_ASSOC);
return $reservations;
}
public function storeImageByRoomId($nombreImagen, $rutaImagen, $idHabitacion)
{
$query = "INSERT INTO imagenes (ruta_imagen, nombre_imagen, id_habitacion) VALUES ('$rutaImagen', '$nombreImagen', $idHabitacion)";
return $this->query($query);
}
public function getImagesByRoomId($id)
{
$query = "SELECT id, ruta_imagen, nombre_imagen, id_habitacion FROM imagenes WHERE id_habitacion = $id";
$result = $this->query($query);
if (!$result || $result->num_rows == 0) {
return [];
}
$images = $result->fetch_all(MYSQLI_ASSOC);
return $images;
}
public function deleteImageById($id)
{
$query = "DELETE FROM imagenes WHERE id = $id ";
return $this->query($query);
}
}