-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontrollers.js
93 lines (74 loc) · 2.89 KB
/
controllers.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
import { dbConnection } from "./db.js";
const pool = dbConnection();
export const agregarEmpresa = async (req, res) => {
const { nombre, fecha_constitucion, tipo_empresa, comentarios, favorita } = req.body;
const fechaFormateada = new Date(fecha_constitucion).toISOString().split('T')[0]; //AAAA-MM-DD
const sql = `INSERT INTO empresas (nombre, fecha_constitucion, tipo_empresa, comentarios, favorita) VALUES (?, ?, ?, ?, ?)`;
try {
const [results] = await pool.query(sql, [
nombre,
fechaFormateada,
tipo_empresa,
comentarios || '',
favorita || false,
]);
res.status(201).json({ id: results.insertId, message: 'Empresa creada exitosamente' });
} catch (error) {
console.error(error);
res.status(500).json({ error: 'Hubo un error al crear la empresa' });
}
};
export const obtenerEmpresas = async (req, res) => {
const sql = 'SELECT * FROM empresas ORDER BY nombre';
try {
const [results] = await pool.query(sql);
res.status(200).json(results);
} catch (error) {
console.error(error);
res.status(500).json({ error: 'Hubo un error cargando las empresas' });
}
};
export const obtenerEmpresa = async (req, res) => {
const { id } = req.params;
const sql = 'SELECT * FROM empresas WHERE id = ?';
try {
const [results] = await pool.query(sql, [id]);
if (results.length === 0) {
return res.status(404).json({ error: 'Empresa no encontrada' });
}
res.status(200).json(results[0]);
} catch (error) {
console.error(error);
res.status(500).json({ error: 'Hubo un error cargando la empresa' });
}
};
export const editarEmpresa = async (req, res) => {
const { id } = req.params;
const { nombre, fecha_constitucion, tipo_empresa, comentarios, favorita } = req.body;
const fechaFormateada = new Date(fecha_constitucion).toISOString().split('T')[0];
const sql = `UPDATE empresas SET nombre = ?, fecha_constitucion = ?, tipo_empresa = ?, comentarios = ?, favorita = ? WHERE id = ?`;
try {
await pool.query(sql, [
nombre,
fechaFormateada,
tipo_empresa,
comentarios || '',
favorita || false, id
]);
res.status(200).json({ message: 'Empresa editada exitosamente' });
} catch (error) {
console.error(error);
res.status(500).json({ error: 'Hubo un error editando la empresa' });
}
};
export const eliminarEmpresa = async (req, res) => {
const { id } = req.params;
const sql = 'DELETE FROM empresas WHERE id = ?';
try {
await pool.query(sql, [id]);
res.status(200).json({ message: 'Empresa eliminada exitosamente' });
} catch (error) {
console.error(error);
res.status(500).json({ error: 'Error al eliminar la empresa' });
}
};