Actualizar worker-homeserve.js
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
// worker-homeserve.js (Versión Definitiva PostgreSQL - MULTI-EMPRESA SAAS)
|
// worker-homeserve.js (Tu código exacto + Chivato de Popups)
|
||||||
import { chromium } from 'playwright';
|
import { chromium } from 'playwright';
|
||||||
import pg from 'pg';
|
import pg from 'pg';
|
||||||
|
|
||||||
@@ -10,7 +10,7 @@ const CONFIG = {
|
|||||||
LOGIN_URL: 'https://www.clientes.homeserve.es/cgi-bin/fccgi.exe?w3exec=PROF_PASS',
|
LOGIN_URL: 'https://www.clientes.homeserve.es/cgi-bin/fccgi.exe?w3exec=PROF_PASS',
|
||||||
BASE_CGI: 'https://www.clientes.homeserve.es/cgi-bin/fccgi.exe',
|
BASE_CGI: 'https://www.clientes.homeserve.es/cgi-bin/fccgi.exe',
|
||||||
NAV_TIMEOUT: 60000,
|
NAV_TIMEOUT: 60000,
|
||||||
POLL_INTERVAL_MS: 5000 // Cada 5 segundos mira si hay trabajo en la pizarra
|
POLL_INTERVAL_MS: 5000
|
||||||
};
|
};
|
||||||
|
|
||||||
if (!CONFIG.DATABASE_URL) {
|
if (!CONFIG.DATABASE_URL) {
|
||||||
@@ -18,10 +18,8 @@ if (!CONFIG.DATABASE_URL) {
|
|||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Conexión a la Base de Datos
|
|
||||||
const pool = new Pool({ connectionString: CONFIG.DATABASE_URL, ssl: false });
|
const pool = new Pool({ connectionString: CONFIG.DATABASE_URL, ssl: false });
|
||||||
|
|
||||||
// --- UTILS ---
|
|
||||||
const sleep = (ms) => new Promise((r) => setTimeout(r, ms));
|
const sleep = (ms) => new Promise((r) => setTimeout(r, ms));
|
||||||
|
|
||||||
function checkWeekend(dateStr) {
|
function checkWeekend(dateStr) {
|
||||||
@@ -32,31 +30,23 @@ function checkWeekend(dateStr) {
|
|||||||
const month = parseInt(parts[1], 10) - 1;
|
const month = parseInt(parts[1], 10) - 1;
|
||||||
const year = parseInt(parts[2], 10);
|
const year = parseInt(parts[2], 10);
|
||||||
const d = new Date(year, month, day);
|
const d = new Date(year, month, day);
|
||||||
const dayOfWeek = d.getDay();
|
if (d.getDay() === 0 || d.getDay() === 6) {
|
||||||
if (dayOfWeek === 0 || dayOfWeek === 6) {
|
throw new Error(`⛔ ERROR: La fecha ${dateStr} es fin de semana.`);
|
||||||
throw new Error(`⛔ ERROR: La fecha ${dateStr} es fin de semana (Sáb/Dom). No permitido por HomeServe.`);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// --- DESENCRIPTAR CREDENCIALES (MULTI-EMPRESA) ---
|
|
||||||
async function getHomeServeCreds(ownerId) {
|
async function getHomeServeCreds(ownerId) {
|
||||||
const q = await pool.query(
|
const q = await pool.query(
|
||||||
"SELECT username, password_hash FROM provider_credentials WHERE provider = 'homeserve' AND status = 'active' AND owner_id = $1 LIMIT 1",
|
"SELECT username, password_hash FROM provider_credentials WHERE provider = 'homeserve' AND status = 'active' AND owner_id = $1 LIMIT 1",
|
||||||
[ownerId]
|
[ownerId]
|
||||||
);
|
);
|
||||||
|
if (q.rowCount === 0) throw new Error(`Sin credenciales para ID: ${ownerId}`);
|
||||||
if (q.rowCount === 0) {
|
return {
|
||||||
throw new Error(`No hay credenciales activas de HomeServe para la empresa/dueño ID: ${ownerId}.`);
|
user: q.rows[0].username,
|
||||||
|
pass: Buffer.from(q.rows[0].password_hash, 'base64').toString('utf-8')
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
const user = q.rows[0].username;
|
|
||||||
// Convierte el Base64 a texto normal
|
|
||||||
const pass = Buffer.from(q.rows[0].password_hash, 'base64').toString('utf-8');
|
|
||||||
|
|
||||||
return { user, pass };
|
|
||||||
}
|
|
||||||
|
|
||||||
// --- PLAYWRIGHT HELPERS ---
|
|
||||||
async function withBrowser(fn) {
|
async function withBrowser(fn) {
|
||||||
const browser = await chromium.launch({ headless: true, args: ['--no-sandbox', '--disable-setuid-sandbox'] });
|
const browser = await chromium.launch({ headless: true, args: ['--no-sandbox', '--disable-setuid-sandbox'] });
|
||||||
const context = await browser.newContext();
|
const context = await browser.newContext();
|
||||||
@@ -93,11 +83,18 @@ async function loginAndProcess(page, creds, jobData) {
|
|||||||
console.log(`>>> 1. Login en HomeServe con usuario: ${creds.user}`);
|
console.log(`>>> 1. Login en HomeServe con usuario: ${creds.user}`);
|
||||||
|
|
||||||
if (jobData.appointment_date) checkWeekend(jobData.appointment_date);
|
if (jobData.appointment_date) checkWeekend(jobData.appointment_date);
|
||||||
|
|
||||||
if (!jobData.observation || jobData.observation.trim().length === 0) {
|
if (!jobData.observation || jobData.observation.trim().length === 0) {
|
||||||
throw new Error('⛔ ERROR: El campo Observaciones es obligatorio para HomeServe.');
|
throw new Error('⛔ ERROR: Observaciones es obligatorio.');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 🚨 EL CHIVATO: Guardamos el mensaje del popup si HomeServe se queja
|
||||||
|
let mensajeAlerta = null;
|
||||||
|
page.on('dialog', async dialog => {
|
||||||
|
mensajeAlerta = dialog.message();
|
||||||
|
console.log(` [CHIVATO] HomeServe lanzó un popup: "${mensajeAlerta}"`);
|
||||||
|
await dialog.accept();
|
||||||
|
});
|
||||||
|
|
||||||
await page.goto(CONFIG.LOGIN_URL, { waitUntil: 'domcontentloaded', timeout: CONFIG.NAV_TIMEOUT });
|
await page.goto(CONFIG.LOGIN_URL, { waitUntil: 'domcontentloaded', timeout: CONFIG.NAV_TIMEOUT });
|
||||||
await page.waitForTimeout(1000);
|
await page.waitForTimeout(1000);
|
||||||
|
|
||||||
@@ -108,51 +105,43 @@ async function loginAndProcess(page, creds, jobData) {
|
|||||||
await page.waitForTimeout(3000);
|
await page.waitForTimeout(3000);
|
||||||
|
|
||||||
const loginFail = await findLocatorInFrames(page, 'input[type="password"]');
|
const loginFail = await findLocatorInFrames(page, 'input[type="password"]');
|
||||||
if (loginFail) throw new Error(`Login fallido en HomeServe para el usuario ${creds.user}. Revise las credenciales.`);
|
if (loginFail) throw new Error(`Login fallido en HomeServe.`);
|
||||||
|
|
||||||
console.log(`>>> 2. Login OK. Navegando al expediente ${jobData.service_number}...`);
|
console.log(`>>> 2. Login OK. Navegando al expediente ${jobData.service_number}...`);
|
||||||
|
|
||||||
const serviceUrl = `${CONFIG.BASE_CGI}?w3exec=ver_servicioencurso&Servicio=${jobData.service_number}&Pag=1`;
|
const serviceUrl = `${CONFIG.BASE_CGI}?w3exec=ver_servicioencurso&Servicio=${jobData.service_number}&Pag=1`;
|
||||||
await page.goto(serviceUrl, { waitUntil: 'domcontentloaded', timeout: CONFIG.NAV_TIMEOUT });
|
await page.goto(serviceUrl, { waitUntil: 'domcontentloaded', timeout: CONFIG.NAV_TIMEOUT });
|
||||||
await page.waitForTimeout(1500);
|
await page.waitForTimeout(1500);
|
||||||
|
|
||||||
const changeBtn = await clickFirstThatExists(page, ['input[name="repaso"]']);
|
const changeBtn = await clickFirstThatExists(page, ['input[name="repaso"]']);
|
||||||
if (!changeBtn) {
|
if (!changeBtn) throw new Error(`No veo el botón 'repaso'.`);
|
||||||
throw new Error(`No veo el botón 'repaso'. ¿El siniestro ${jobData.service_number} existe y está abierto?`);
|
|
||||||
}
|
|
||||||
|
|
||||||
console.log('>>> 3. Accediendo al formulario. Rellenando datos...');
|
console.log('>>> 3. Accediendo al formulario. Rellenando datos...');
|
||||||
await page.waitForLoadState('domcontentloaded');
|
await page.waitForLoadState('domcontentloaded');
|
||||||
await page.waitForTimeout(1000);
|
await page.waitForTimeout(1000);
|
||||||
|
|
||||||
// 🔴 MAGIA: DICCIONARIO TRADUCTOR DE ESTADOS
|
const HOMESERVE_MAP = { 'CITADO': '307', 'ESPERA': '303', 'TERMINADO': '345', 'ANULADO': '352' };
|
||||||
const HOMESERVE_MAP = {
|
|
||||||
'CITADO': '307',
|
|
||||||
'ESPERA': '303',
|
|
||||||
'TERMINADO': '345',
|
|
||||||
'ANULADO': '352'
|
|
||||||
};
|
|
||||||
|
|
||||||
let targetCode = jobData.new_status.toUpperCase();
|
let targetCode = jobData.new_status.toUpperCase();
|
||||||
if (HOMESERVE_MAP[targetCode]) {
|
if (HOMESERVE_MAP[targetCode]) targetCode = HOMESERVE_MAP[targetCode];
|
||||||
targetCode = HOMESERVE_MAP[targetCode];
|
|
||||||
}
|
|
||||||
|
|
||||||
// 👇 CORRECCIÓN CLAVE 1: Usar selectOption nativo para que el estado cambie de verdad
|
const statusOk = await page.evaluate((code) => {
|
||||||
const selectBox = await findLocatorInFrames(page, 'select[name="ESTADO"]');
|
const select = document.querySelector('select[name="ESTADO"]');
|
||||||
if (selectBox) {
|
if (!select) return false;
|
||||||
await selectBox.locator.first().selectOption({ value: targetCode });
|
for (const opt of select.options) {
|
||||||
} else {
|
if (opt.value == code || opt.text.toUpperCase().includes(code.toUpperCase())) {
|
||||||
throw new Error(`No encontré el desplegable de estados en HomeServe.`);
|
select.value = opt.value;
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}, targetCode);
|
||||||
|
|
||||||
|
if (!statusOk) throw new Error(`No encontré el estado '${jobData.new_status}'.`);
|
||||||
|
|
||||||
if (jobData.appointment_date) {
|
if (jobData.appointment_date) {
|
||||||
const dateFilled = await fillFirstThatExists(page, ['input[name="FECSIG"]'], jobData.appointment_date);
|
await fillFirstThatExists(page, ['input[name="FECSIG"]'], jobData.appointment_date);
|
||||||
if (!dateFilled) console.warn('⚠️ No encontré el recuadro para la fecha.');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const obsFilled = await fillFirstThatExists(page, ['textarea[name="Observaciones"]'], jobData.observation);
|
await fillFirstThatExists(page, ['textarea[name="Observaciones"]'], jobData.observation);
|
||||||
if (!obsFilled) throw new Error('No encontré el recuadro de Observaciones en la web de HomeServe.');
|
|
||||||
|
|
||||||
if (jobData.inform_client) {
|
if (jobData.inform_client) {
|
||||||
const informCheck = await findLocatorInFrames(page, 'input[name="INFORMO"]');
|
const informCheck = await findLocatorInFrames(page, 'input[name="INFORMO"]');
|
||||||
@@ -161,51 +150,38 @@ async function loginAndProcess(page, creds, jobData) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 👇 CORRECCIÓN CLAVE 2: Una pausa de 1 segundo antes de guardar
|
|
||||||
await page.waitForTimeout(1000);
|
|
||||||
|
|
||||||
console.log('>>> 4. Guardando cambios en HomeServe...');
|
console.log('>>> 4. Guardando cambios en HomeServe...');
|
||||||
|
|
||||||
const saveBtnLocator = page.locator('input[name="BTNCAMBIAESTADO"]');
|
const saveBtnLocator = page.locator('input[name="BTNCAMBIAESTADO"]');
|
||||||
|
if (await saveBtnLocator.count() === 0) throw new Error('No encuentro el botón guardar.');
|
||||||
|
|
||||||
if (await saveBtnLocator.count() === 0) {
|
// Reducimos el tiempo de espera máximo de 60s a 15s para que no se quede colgado eternamente
|
||||||
throw new Error('No encuentro el botón para guardar los cambios en HomeServe.');
|
|
||||||
}
|
|
||||||
|
|
||||||
// Esperamos a que la página navegue DESPUÉS de hacer clic (El Clic Seguro)
|
|
||||||
await Promise.all([
|
await Promise.all([
|
||||||
page.waitForNavigation({ waitUntil: 'domcontentloaded', timeout: CONFIG.NAV_TIMEOUT }),
|
page.waitForNavigation({ waitUntil: 'domcontentloaded', timeout: 15000 }).catch(() => console.log(' -> Terminado el tiempo de espera de red.')),
|
||||||
saveBtnLocator.first().click()
|
saveBtnLocator.first().click()
|
||||||
]);
|
]);
|
||||||
|
|
||||||
// 👇 CORRECCIÓN CLAVE 3: Ignorar la etiqueta <b> que daba el falso error
|
// 🚨 SI HUBO ALERTA, LANZAMOS EL ERROR REAL
|
||||||
|
if (mensajeAlerta) {
|
||||||
|
throw new Error(`HomeServe bloqueó el guardado con este mensaje: "${mensajeAlerta}"`);
|
||||||
|
}
|
||||||
|
|
||||||
const alertText = await page.locator('font[color="#FF0000"], .Estilo4').first().textContent().catch(() => null);
|
const alertText = await page.locator('font[color="#FF0000"], .Estilo4').first().textContent().catch(() => null);
|
||||||
if (alertText && alertText.trim().length > 0) {
|
if (alertText && alertText.trim().length > 0) {
|
||||||
const textUpper = alertText.toUpperCase();
|
const textUpper = alertText.toUpperCase();
|
||||||
if (!textUpper.includes('EXITO') && !textUpper.includes('ÉXITO')) {
|
if (!textUpper.includes('EXITO') && !textUpper.includes('ÉXITO')) {
|
||||||
throw new Error(`HomeServe devolvió un error: ${alertText.trim()}`);
|
throw new Error(`HomeServe devolvió un error: ${alertText.trim()}`);
|
||||||
} else {
|
|
||||||
console.log(`>>> Confirmación positiva de HomeServe: ${alertText.trim()}`);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
await page.waitForTimeout(2000);
|
|
||||||
return { success: true };
|
return { success: true };
|
||||||
}
|
}
|
||||||
|
|
||||||
// --- EL CEREBRO: LECTURA DE LA COLA EN POSTGRESQL ---
|
// --- BUCLE DE COLA ---
|
||||||
async function pollQueue() {
|
async function pollQueue() {
|
||||||
try {
|
try {
|
||||||
const res = await pool.query(`
|
const res = await pool.query(`
|
||||||
UPDATE robot_queue
|
UPDATE robot_queue SET status = 'RUNNING', updated_at = NOW()
|
||||||
SET status = 'RUNNING', updated_at = NOW()
|
WHERE id = (SELECT id FROM robot_queue WHERE status = 'PENDING' AND provider = 'homeserve' ORDER BY created_at ASC FOR UPDATE SKIP LOCKED LIMIT 1)
|
||||||
WHERE id = (
|
|
||||||
SELECT id FROM robot_queue
|
|
||||||
WHERE status = 'PENDING' AND provider = 'homeserve'
|
|
||||||
ORDER BY created_at ASC
|
|
||||||
FOR UPDATE SKIP LOCKED
|
|
||||||
LIMIT 1
|
|
||||||
)
|
|
||||||
RETURNING *;
|
RETURNING *;
|
||||||
`);
|
`);
|
||||||
|
|
||||||
@@ -218,19 +194,15 @@ async function pollQueue() {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
const creds = await getHomeServeCreds(job.owner_id);
|
const creds = await getHomeServeCreds(job.owner_id);
|
||||||
|
|
||||||
await withBrowser(async (page) => {
|
await withBrowser(async (page) => {
|
||||||
await loginAndProcess(page, creds, job);
|
await loginAndProcess(page, creds, job);
|
||||||
});
|
});
|
||||||
|
|
||||||
await pool.query("UPDATE robot_queue SET status = 'DONE', updated_at = NOW() WHERE id = $1", [job.id]);
|
await pool.query("UPDATE robot_queue SET status = 'DONE', updated_at = NOW() WHERE id = $1", [job.id]);
|
||||||
console.log(`✅ TRABAJO #${job.id} COMPLETADO CON ÉXITO.\n`);
|
console.log(`✅ TRABAJO #${job.id} COMPLETADO CON ÉXITO.\n`);
|
||||||
|
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error(`❌ ERROR EN TRABAJO #${job.id}:`, err.message);
|
console.error(`❌ ERROR EN TRABAJO #${job.id}:`, err.message);
|
||||||
await pool.query("UPDATE robot_queue SET status = 'FAILED', error_msg = $1, updated_at = NOW() WHERE id = $2", [err.message, job.id]);
|
await pool.query("UPDATE robot_queue SET status = 'FAILED', error_msg = $1, updated_at = NOW() WHERE id = $2", [err.message, job.id]);
|
||||||
}
|
}
|
||||||
|
|
||||||
setTimeout(pollQueue, 1000);
|
setTimeout(pollQueue, 1000);
|
||||||
} else {
|
} else {
|
||||||
setTimeout(pollQueue, CONFIG.POLL_INTERVAL_MS);
|
setTimeout(pollQueue, CONFIG.POLL_INTERVAL_MS);
|
||||||
@@ -241,7 +213,6 @@ async function pollQueue() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// --- INICIO ---
|
|
||||||
console.log("🚀 Robot HomeServe (Multi-Empresa SaaS) Iniciado.");
|
console.log("🚀 Robot HomeServe (Multi-Empresa SaaS) Iniciado.");
|
||||||
console.log("📡 Conectado a PostgreSQL. Esperando peticiones en la cola...");
|
console.log("📡 Conectado a PostgreSQL. Esperando peticiones en la cola...");
|
||||||
pollQueue();
|
pollQueue();
|
||||||
Reference in New Issue
Block a user