-
Notifications
You must be signed in to change notification settings - Fork 0
/
tareasdb.js
138 lines (103 loc) · 3.8 KB
/
tareasdb.js
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
//Requerir node-postgres
const { Client } = require('pg');
//Función para la conección a la DB
const conectarDB = async () => {
const cliente = new Client ({
user: 'postgres',
host: 'localhost',
database: 'proyecto',
password: 'root',
port: 5432,
});
return cliente;
};
const insertarHabitacion = async (nro_hab = 0, cant_camas = '', cod_tipo_hab = 0) => {
//Conección a la DB
let client = await conectarDB();
await client.connect();
try {
//Ejecucion de Query
const text = 'INSERT INTO proyecto.habitaciones (nro_habitacion, cantidad_camas, cod_tipo_habitacion) VALUES ($1, $2, $3)';
const values = [nro_hab, cant_camas, cod_tipo_hab];
const res = await client.query(text, values);
//Respuesta de Query
const result = await client.query('SELECT * FROM proyecto.habitaciones');
console.log ( 'Habitacion insertada con exito');
//Muestra de datos actualizados
console.log( result.rows );
//Cerrar conexion
await client.end();
return result;
}
catch ( err ) {
console.log('\n');
console.log (`No se pudo ingresar la habitación. Detalles del error:`);
console.log( err.stack );
await client.end();
};
};
const insertarFechaDeHoy = async () => {
//Conección a la DB
let client = await conectarDB();
await client.connect();
//Ejecucion de Querys
const text = 'INSERT INTO proyecto.fecha (d_m_a) VALUES ( now() );';
//La fecha se insertá si no devuelve un error
//Si devuelve error -> la fecha de hoy está cargada en el sistema
try {
const res = await client.query( text );
console.log('Se actualizó el sistema con la fecha de hoy');
await client.end();
return res;
}
catch (err) {
console.log('\n');
console.log ('La fecha de hoy ya está registrada en el sistema. No se ejecutó la inserción de la fecha actual');
await client.end();
};
};
const insertarEnOcupa = async ( nrohab , DNI , monto , dias ) => {
//Conección a la DB
let client = await conectarDB();
await client.connect();
let fechaActual = 'now()';
//Se intenta hacer el INSERT y se muestra por pantalla los resultados si no hay errores
//Caso contrario, se muestra el stack de errores con un mensaje
try {
const text = 'INSERT INTO proyecto.ocupa (nro_habitacion, d_m_a, dni, monto, dias_permanecio) VALUES ($1, $2, $3, $4, $5);';
const values = [nrohab, fechaActual, DNI, monto, dias];
const res = await client.query(text, values);
//Respuesta de Query
console.log('\n');
const result = await client.query('SELECT * FROM proyecto.ocupa; ');
console.log ( 'El cliente fue registrado en la habitación con fecha de hoy exitosamente' );
console.log( result.rows );
//Cerrar conexion
await client.end();
return result;
}
catch ( err ) {
console.log('\n');
console.log ('Los datos que ingresó violan alguna restricción de la BDD. Detalles del error:');
console.log( err.stack );
await client.end();
};
};
const listarClientesFechas = async ( habitacion = 0 ) => {
//Conección a la DB
let client = await conectarDB();
await client.connect();
//Ejecucion de la select
const text = 'select nombre, apellido, dni, d_m_a from proyecto.persona inner join proyecto.ocupa using (dni) where (nro_habitacion = $1)';
const values = [ habitacion ];
const res = await client.query(text, values);
//Cerrar conexion
await client.end();
return res;
};
module.exports = {
insertarHabitacion,
insertarEnOcupa,
insertarFechaDeHoy,
listarClientesFechas
}