Actualizar index.js

This commit is contained in:
marsalva 2026-01-04 09:19:28 +00:00
parent 2d5cecb6a5
commit 91e87aa548
1 changed files with 416 additions and 404 deletions

820
index.js
View File

@ -5,8 +5,6 @@ const cors = require('cors');
const { chromium } = require('playwright'); const { chromium } = require('playwright');
const admin = require('firebase-admin'); const admin = require('firebase-admin');
// -------------------- Firebase --------------------
function mustEnv(name) { function mustEnv(name) {
const v = process.env[name]; const v = process.env[name];
if (!v) throw new Error(`Missing env: ${name}`); if (!v) throw new Error(`Missing env: ${name}`);
@ -14,145 +12,165 @@ function mustEnv(name) {
} }
function initFirebase() { function initFirebase() {
if (admin.apps?.length) return admin.firestore(); // Si NO quieres Firebase, puedes arrancar sin admin.
// Pero aquí lo usamos para leer secrets/homeserve.
if (!process.env.FIREBASE_PRIVATE_KEY) { if (!process.env.FIREBASE_PRIVATE_KEY) {
throw new Error('Missing env: FIREBASE_PRIVATE_KEY'); // Permitimos arrancar sin Firebase si pones creds por ENV
// (pero si tampoco hay creds, fallará al ejecutar).
return null;
} }
admin.initializeApp({ if (!admin.apps.length) {
credential: admin.credential.cert({ admin.initializeApp({
projectId: mustEnv('FIREBASE_PROJECT_ID'), credential: admin.credential.cert({
clientEmail: mustEnv('FIREBASE_CLIENT_EMAIL'), projectId: mustEnv('FIREBASE_PROJECT_ID'),
privateKey: process.env.FIREBASE_PRIVATE_KEY.replace(/\\n/g, '\n'), clientEmail: mustEnv('FIREBASE_CLIENT_EMAIL'),
}), privateKey: mustEnv('FIREBASE_PRIVATE_KEY').replace(/\\n/g, '\n'),
}); }),
});
}
return admin.firestore(); return admin.firestore();
} }
const CONFIG = {
// 🔥 IMPORTANTE: por defecto entramos por “clientes CGI” (como tu HTML),
// y si quieres lo cambias por ENV o por Firestore (secrets/homeserve.baseUrl).
DEFAULT_HS_BASE_URL:
process.env.HOMESERVE_BASE_URL ||
'https://www.clientes.homeserve.es/cgi-bin/fccgi.exe?w3exec=prof_pass&urgente',
HS_CRED_DOC_PATH: process.env.HS_CRED_DOC_PATH || 'secrets/homeserve',
// auth para el endpoint (opcional)
REQUIRE_AUTH: String(process.env.REQUIRE_AUTH || '0') === '1',
AUTH_TOKEN: process.env.AUTH_TOKEN || '',
// Selectores: mantenemos compatibles con tu robot antiguo
SEL: {
user: process.env.SEL_USER || 'input[type="text"], input[name*="user" i], input[name*="usuario" i]',
pass: process.env.SEL_PASS || 'input[type="password"], input[name*="pass" i], input[name*="clave" i]',
submit:
process.env.SEL_SUBMIT ||
'button[type="submit"], input[type="submit"], button:has-text("Entrar"), button:has-text("Acceder")',
searchBox:
process.env.SEL_SEARCH_BOX ||
'input[placeholder*="Buscar"], input[type="search"], input[name*="buscar" i], input[id*="buscar" i]',
searchBtn:
process.env.SEL_SEARCH_BTN ||
'button:has-text("Buscar"), button:has-text("Search"), input[type="submit"][value*="Buscar" i]',
openRow: process.env.SEL_OPEN_ROW || 'table tbody tr:first-child',
// Estado / observaciones / fecha / checkbox informado
statusDropdown:
process.env.SEL_STATUS_DROPDOWN ||
'select[name*="estado" i], select[id*="estado" i], select[name="ESTADO"], select:has(option)',
noteTextarea:
process.env.SEL_NOTE_TEXTAREA ||
'textarea[name*="nota" i], textarea[name*="observa" i], textarea[id*="nota" i], textarea[id*="observa" i], textarea',
dateInput:
process.env.SEL_DATE_INPUT ||
'input[name*="fecha" i], input[id*="fecha" i], input[placeholder*="dd" i], input[type="date"]',
informedCheckbox:
process.env.SEL_INFORMED_CHECKBOX ||
'input[type="checkbox"][name="INFORMO"], input[type="checkbox"][id*="inform" i], input[type="checkbox"][name*="inform" i]',
saveBtn:
process.env.SEL_SAVE_BTN ||
'button:has-text("Guardar"), button:has-text("Actualizar"), button:has-text("Aceptar"), input[type="submit"][value*="Guardar" i], input[type="submit"][value*="Actualizar" i]',
},
// timeouts
GOTO_TIMEOUT: parseInt(process.env.GOTO_TIMEOUT || '120000', 10),
WAIT_TIMEOUT: parseInt(process.env.WAIT_TIMEOUT || '60000', 10),
};
const app = express();
app.use(cors({ origin: true }));
app.use(express.json({ limit: '1mb' }));
// -------------------------
// Helpers
// -------------------------
const sleep = (ms) => new Promise((r) => setTimeout(r, ms));
function pickPort() {
// CapRover suele inyectar CAPROVER_PORT
// Si no existe, usamos PORT o 3000.
return parseInt(process.env.CAPROVER_PORT || process.env.PORT || '3000', 10);
}
function ensureAuth(req) {
if (!CONFIG.REQUIRE_AUTH) return;
const token = (req.headers.authorization || '').replace(/^Bearer\s+/i, '').trim();
if (!token || !CONFIG.AUTH_TOKEN || token !== CONFIG.AUTH_TOKEN) {
const err = new Error('Unauthorized');
err.statusCode = 401;
throw err;
}
}
let cachedCreds = null;
let cachedCredsAt = 0;
async function getHomeServeCreds(db) { async function getHomeServeCreds(db) {
// Tu caso real: providerCredentials/homeserve con { user, pass } // 1) ENV manda
const docPath = process.env.HS_CRED_DOC_PATH || 'providerCredentials/homeserve'; const envUser = process.env.HOMESERVE_USER;
const envPass = process.env.HOMESERVE_PASS;
const envBase = process.env.HOMESERVE_BASE_URL;
let fsUser = ''; if (envUser && envPass) {
let fsPass = ''; return {
user: envUser,
pass: envPass,
baseUrl: envBase || CONFIG.DEFAULT_HS_BASE_URL,
};
}
try { // 2) Firestore
const snap = await db.doc(docPath).get(); if (!db) {
if (snap.exists) {
const d = snap.data() || {};
fsUser = String(d.user || '').trim();
fsPass = String(d.pass || '').trim();
}
} catch (_) {}
const envUser = String(process.env.HOMESERVE_USER || '').trim();
const envPass = String(process.env.HOMESERVE_PASS || '').trim();
const user = fsUser || envUser;
const pass = fsPass || envPass;
if (!user || !pass) {
throw new Error( throw new Error(
`HomeServe creds missing. Put {user,pass} in Firestore doc "${docPath}" or set env HOMESERVE_USER/HOMESERVE_PASS` `HomeServe creds missing. Set env HOMESERVE_USER/HOMESERVE_PASS or provide Firebase envs + doc "${CONFIG.HS_CRED_DOC_PATH}"`
); );
} }
return { user, pass, source: fsUser ? `firestore:${docPath}` : 'env' }; // cache 30s
} const now = Date.now();
if (cachedCreds && now - cachedCredsAt < 30000) return cachedCreds;
// -------------------- Config -------------------- const snap = await db.doc(CONFIG.HS_CRED_DOC_PATH).get();
if (!snap.exists) {
throw new Error(`HomeServe creds missing. Create Firestore doc "${CONFIG.HS_CRED_DOC_PATH}" with { user, pass, baseUrl? }`);
}
const CONFIG = { const d = snap.data() || {};
// Flujo antiguo: const user = d.user || d.email || d.usuario || '';
HOMESERVE_BASE_URL: process.env.HOMESERVE_BASE_URL || 'https://gestor.homeserve.es/', const pass = d.pass || d.password || d.clave || '';
// Selectores (igual que el robot viejo, pero con extras) if (!user || !pass) {
SEL: { throw new Error(`HomeServe creds missing in Firestore doc "${CONFIG.HS_CRED_DOC_PATH}". Needs fields "user" and "pass".`);
user: process.env.SEL_USER || 'input[type="text"], input[name="user"], input[name="username"]', }
pass: process.env.SEL_PASS || 'input[type="password"], input[name="pass"], input[name="password"]',
submit: process.env.SEL_SUBMIT || 'button[type="submit"], input[type="submit"], button:has-text("Entrar")',
searchBox: process.env.SEL_SEARCH_BOX || 'input[placeholder*="Buscar"], input[type="search"]', const baseUrl = d.baseUrl || d.HOMESERVE_BASE_URL || CONFIG.DEFAULT_HS_BASE_URL;
searchBtn: process.env.SEL_SEARCH_BTN || 'button:has-text("Buscar"), button:has-text("Search")',
openRow: process.env.SEL_OPEN_ROW || 'table tbody tr:first-child',
// Cambio estado cachedCreds = { user, pass, baseUrl };
statusDropdown: cachedCredsAt = now;
process.env.SEL_STATUS_DROPDOWN || return cachedCreds;
'select[name*="estado" i], select[id*="estado" i], select:has(option)',
// Observación/nota
noteTextarea:
process.env.SEL_NOTE_TEXTAREA ||
'textarea[name*="nota" i], textarea[id*="nota" i], textarea',
// Fecha (si existe)
dateInput:
process.env.SEL_DATE_INPUT ||
'input[name*="fec" i], input[id*="fec" i], input[placeholder*="dd" i], input[placeholder*="fecha" i]',
// Checkbox “ya informado al cliente”
informedCheckbox:
process.env.SEL_INFORMED_CHECKBOX ||
'input[type="checkbox"][name*="inform" i], input[type="checkbox"][id*="inform" i]',
// Botón guardar
saveBtn:
process.env.SEL_SAVE_BTN ||
'button:has-text("Guardar"), button:has-text("Save"), button:has-text("Actualizar"), input[type="submit"]',
},
HEADLESS: String(process.env.HEADLESS || '1') !== '0',
NAV_TIMEOUT_MS: parseInt(process.env.NAV_TIMEOUT_MS || '120000', 10),
// Auth opcional del endpoint
REQUIRE_AUTH: String(process.env.REQUIRE_AUTH || '0') === '1',
API_KEY: process.env.API_KEY || '',
};
// Estados por código (los de tu app)
const STATUS_CODES = [
{ code: '303', title: 'En espera de Cliente por aceptación Presupuesto' },
{ code: '307', title: 'En espera de Profesional por fecha de inicio de trabajos' },
{ code: '313', title: 'En espera de Profesional por secado de cala, pintura o parquet' },
{ code: '318', title: 'En espera de Profesional por confirmación del Siniestro' },
{ code: '319', title: 'En espera de Profesional por material' },
{ code: '320', title: 'En espera de Profesional por espera de otro gremio' },
{ code: '321', title: 'En espera de Profesional por presupuesto/valoración' },
{ code: '323', title: 'En espera de Profesional por mejora del tiempo' },
{ code: '326', title: 'En espera de Cliente por pago de Factura Contado/Franquicia' },
{ code: '336', title: 'En espera de Profesional por avería en observación' },
{ code: '342', title: 'En espera de Profesional pendiente cobro franquicia' },
{ code: '345', title: 'En espera de Profesional en realización pendiente Terminar' },
{ code: '348', title: 'En espera de Cliente por indicaciones' },
{ code: '352', title: 'En espera de Perjudicado por indicaciones' },
];
const CODE_TO_TITLE = new Map(STATUS_CODES.map(x => [x.code, x.title]));
// -------------------- Helpers --------------------
const sleep = (ms) => new Promise((r) => setTimeout(r, ms));
const nowISO = () => new Date().toISOString();
const trim = (v) => String(v ?? '').trim();
function parseBool(v, def = true) {
if (v === undefined || v === null || v === '') return def;
const s = String(v).toLowerCase().trim();
if (['1', 'true', 'yes', 'si', 'sí'].includes(s)) return true;
if (['0', 'false', 'no'].includes(s)) return false;
return def;
} }
async function withBrowser(fn) { async function withBrowser(fn) {
const browser = await chromium.launch({ const browser = await chromium.launch({
headless: CONFIG.HEADLESS, headless: true,
args: ['--no-sandbox', '--disable-setuid-sandbox'], args: ['--no-sandbox', '--disable-setuid-sandbox'],
}); });
const context = await browser.newContext({ viewport: { width: 1280, height: 800 } }); const context = await browser.newContext();
const page = await context.newPage(); const page = await context.newPage();
// Un poco de margen
page.setDefaultTimeout(CONFIG.WAIT_TIMEOUT);
try { try {
return await fn(page); return await fn(page);
} finally { } finally {
@ -160,292 +178,300 @@ async function withBrowser(fn) {
} }
} }
// -------------------- Playwright flow (como el robot antiguo) -------------------- async function fillFirst(page, selectors, value) {
for (const sel of selectors) {
async function login(page, creds) { const el = await page.$(sel).catch(() => null);
await page.goto(CONFIG.HOMESERVE_BASE_URL, { waitUntil: 'domcontentloaded', timeout: CONFIG.NAV_TIMEOUT_MS }); if (el) {
await page.fill(sel, value);
await page.waitForSelector(CONFIG.SEL.user, { timeout: 60000 }); return true;
await page.fill(CONFIG.SEL.user, creds.user); }
}
await page.waitForSelector(CONFIG.SEL.pass, { timeout: 60000 }); return false;
await page.fill(CONFIG.SEL.pass, creds.pass);
const btn = await page.$(CONFIG.SEL.submit);
if (btn) await btn.click();
else await page.keyboard.press('Enter');
// networkidle a veces es traicionero; domcontentloaded + pause suele ir mejor
await page.waitForLoadState('domcontentloaded', { timeout: CONFIG.NAV_TIMEOUT_MS });
await sleep(1200);
} }
async function openParte(page, parteId) { async function clickFirst(page, selectors) {
const hasSearch = await page.$(CONFIG.SEL.searchBox); for (const sel of selectors) {
const el = await page.$(sel).catch(() => null);
if (el) {
await el.click();
return true;
}
}
return false;
}
async function login(page, { baseUrl, user, pass }) {
await page.goto(baseUrl, { waitUntil: 'domcontentloaded', timeout: CONFIG.GOTO_TIMEOUT });
// user/pass
const okUser = await fillFirst(page, [CONFIG.SEL.user], user);
const okPass = await fillFirst(page, [CONFIG.SEL.pass], pass);
if (!okUser || !okPass) {
throw new Error('Login form not found (user/pass selectors). Adjust SEL_USER / SEL_PASS.');
}
// submit
const clicked = await clickFirst(page, [CONFIG.SEL.submit]);
if (!clicked) {
// fallback Enter
await page.keyboard.press('Enter');
}
// esperamos navegación
await page.waitForLoadState('networkidle', { timeout: CONFIG.GOTO_TIMEOUT }).catch(() => {});
await sleep(800);
}
async function openParte(page, serviceNumber) {
// búsqueda
const hasSearch = await page.$(CONFIG.SEL.searchBox).catch(() => null);
if (hasSearch) { if (hasSearch) {
await page.fill(CONFIG.SEL.searchBox, String(parteId)); await page.fill(CONFIG.SEL.searchBox, String(serviceNumber));
const btn = await page.$(CONFIG.SEL.searchBtn); const btn = await page.$(CONFIG.SEL.searchBtn).catch(() => null);
if (btn) await btn.click(); if (btn) await btn.click();
else await page.keyboard.press('Enter'); else await page.keyboard.press('Enter');
await page.waitForLoadState('domcontentloaded', { timeout: CONFIG.NAV_TIMEOUT_MS }); await page.waitForLoadState('networkidle', { timeout: CONFIG.GOTO_TIMEOUT }).catch(() => {});
await sleep(1200); await sleep(1200);
} }
await page.waitForSelector(CONFIG.SEL.openRow, { timeout: 60000 }); // abre primera fila
await page.click(CONFIG.SEL.openRow); const row = await page.$(CONFIG.SEL.openRow).catch(() => null);
await page.waitForLoadState('domcontentloaded', { timeout: CONFIG.NAV_TIMEOUT_MS }); if (row) {
await sleep(900); await row.click();
await page.waitForLoadState('networkidle', { timeout: CONFIG.GOTO_TIMEOUT }).catch(() => {});
await sleep(900);
}
// Si tu portal entra directo al parte sin tabla, esto simplemente no hace nada.
} }
async function checkInformedBox(page) { async function trySelectStatus(page, statusValue) {
// 1) intento selector directo await page.waitForSelector(CONFIG.SEL.statusDropdown, { timeout: CONFIG.WAIT_TIMEOUT });
const cb = await page.$(CONFIG.SEL.informedCheckbox);
if (cb) { // 1) por value (lo que tú usas: 303/307/...)
const isChecked = await cb.isChecked().catch(() => false); try {
if (!isChecked) await cb.check().catch(() => {}); await page.selectOption(CONFIG.SEL.statusDropdown, { value: String(statusValue) });
return true; return true;
} } catch (_) {}
// 2) intento por texto de label (tu frase exacta) // 2) por label exacta (por si el portal usa texto)
const ok = await page.evaluate(() => { try {
const text = 'Marque esta casilla, si ya ha informado al Cliente'.toLowerCase(); await page.selectOption(CONFIG.SEL.statusDropdown, { label: String(statusValue) });
const labels = Array.from(document.querySelectorAll('label')); return true;
const hit = labels.find(l => (l.textContent || '').toLowerCase().includes(text)); } catch (_) {}
// 3) fallback DOM (busca option que contenga el código)
const ok = await page.evaluate(({ sel, value }) => {
const s = document.querySelector(sel);
if (!s) return false;
const opts = Array.from(s.querySelectorAll('option'));
const hit = opts.find(o => (o.value || '').trim() === String(value).trim()
|| (o.textContent || '').includes(String(value).trim()));
if (!hit) return false; if (!hit) return false;
s.value = hit.value;
const forId = hit.getAttribute('for'); s.dispatchEvent(new Event('change', { bubbles: true }));
if (forId) { return true;
const input = document.getElementById(forId); }, { sel: CONFIG.SEL.statusDropdown, value: statusValue });
if (input && input.type === 'checkbox') {
input.checked = true;
input.dispatchEvent(new Event('change', { bubbles: true }));
return true;
}
}
// si no hay "for", buscamos checkbox cercano
let el = hit;
for (let i = 0; i < 4; i++) {
const parent = el.parentElement;
if (!parent) break;
const cb2 = parent.querySelector('input[type="checkbox"]');
if (cb2) {
cb2.checked = true;
cb2.dispatchEvent(new Event('change', { bubbles: true }));
return true;
}
el = parent;
}
return false;
});
return !!ok; return !!ok;
} }
async function setEstadoByCodeOrLabel(page, newStatusValue) { async function setInformoCliente(page, informoCliente) {
await page.waitForSelector(CONFIG.SEL.statusDropdown, { timeout: 60000 }); if (!informoCliente) return;
// Primero intentamos por VALUE (si el select usa value=303 etc) // 1) selector directo (INFORMO)
try { const cb = await page.$(CONFIG.SEL.informedCheckbox).catch(() => null);
await page.selectOption(CONFIG.SEL.statusDropdown, { value: String(newStatusValue) }); if (cb) {
return { method: 'value', picked: String(newStatusValue) }; const checked = await cb.isChecked().catch(() => false);
} catch (_) {} if (!checked) await cb.check().catch(() => {});
return;
// Segundo: intentamos por label con el texto del código (si el option pinta "348 - En espera...")
const title = CODE_TO_TITLE.get(String(newStatusValue));
const candidates = [];
if (title) {
candidates.push(`${newStatusValue} · ${title}`);
candidates.push(`${newStatusValue} - ${title}`);
candidates.push(`${newStatusValue} ${title}`);
candidates.push(title);
} else {
candidates.push(String(newStatusValue));
} }
for (const label of candidates) { // 2) fallback por label con el texto
try { const ok = await page.evaluate(() => {
await page.selectOption(CONFIG.SEL.statusDropdown, { label }); const labels = Array.from(document.querySelectorAll('label'));
return { method: 'label', picked: label }; const target = labels.find(l => (l.textContent || '').toLowerCase().includes('marque esta casilla')
} catch (_) {} && (l.textContent || '').toLowerCase().includes('informado'));
} if (!target) return false;
const inputId = target.getAttribute('for');
// Tercero: buscar en DOM option que contenga el código if (inputId) {
const ok = await page.evaluate(({ sel, code }) => { const el = document.getElementById(inputId);
const s = document.querySelector(sel); if (el && el.type === 'checkbox') {
if (!s) return null; el.checked = true;
const opts = Array.from(s.querySelectorAll('option')); el.dispatchEvent(new Event('change', { bubbles: true }));
const hit = return true;
opts.find(o => String(o.value).trim() === String(code).trim()) || }
opts.find(o => (o.textContent || '').includes(String(code))); }
if (!hit) return null; const cb = target.querySelector('input[type="checkbox"]');
s.value = hit.value; if (cb) {
s.dispatchEvent(new Event('change', { bubbles: true })); cb.checked = true;
return { value: hit.value, text: (hit.textContent || '').trim() }; cb.dispatchEvent(new Event('change', { bubbles: true }));
}, { sel: CONFIG.SEL.statusDropdown, code: String(newStatusValue) }); return true;
}
if (!ok) throw new Error(`No matching status option for code "${newStatusValue}"`);
return { method: 'dom', picked: ok.value, text: ok.text };
}
async function fillDateIfExists(page, dateString) {
if (!trim(dateString)) return false;
const el = await page.$(CONFIG.SEL.dateInput);
if (!el) return false;
try {
await page.fill(CONFIG.SEL.dateInput, String(dateString));
return true;
} catch (_) {
return false; return false;
});
if (!ok) {
// no lo hacemos fatal: solo avisamos si quieres forzarlo
// throw new Error('Could not find "Informado al cliente" checkbox. Set SEL_INFORMED_CHECKBOX.');
} }
} }
async function fillObservationIfExists(page, observation) { async function fillOptional(page, selector, value) {
if (!trim(observation)) return false; if (!value) return false;
const ta = await page.$(CONFIG.SEL.noteTextarea); const el = await page.$(selector).catch(() => null);
if (!ta) return false; if (!el) return false;
await page.fill(CONFIG.SEL.noteTextarea, String(observation)); await page.fill(selector, String(value));
return true; return true;
} }
async function clickSave(page) { async function clickSave(page) {
const save = await page.$(CONFIG.SEL.saveBtn); const save = await page.$(CONFIG.SEL.saveBtn).catch(() => null);
if (!save) throw new Error('Save button not found'); if (!save) throw new Error('Save button not found. Adjust SEL_SAVE_BTN.');
await save.click(); await save.click();
await page.waitForLoadState('domcontentloaded', { timeout: CONFIG.NAV_TIMEOUT_MS }); await page.waitForLoadState('networkidle', { timeout: CONFIG.GOTO_TIMEOUT }).catch(() => {});
await sleep(1200); await sleep(900);
} }
async function changeStatusViaGestor(page, job, creds) { async function changeStatusViaHomeServe({ baseUrl, user, pass }, payload) {
await login(page, creds); const {
await openParte(page, job.serviceNumber); serviceNumber,
newStatusValue,
dateString,
observation,
informoCliente,
} = payload;
const pick = await setEstadoByCodeOrLabel(page, job.newStatusValue); return await withBrowser(async (page) => {
await login(page, { baseUrl, user, pass });
const informed = job.informoCliente ? await checkInformedBox(page) : false; // abre parte si hace falta
const dateFilled = await fillDateIfExists(page, job.dateString); await openParte(page, serviceNumber);
const obsFilled = await fillObservationIfExists(page, job.observation);
await clickSave(page); // cambia estado
const selected = await trySelectStatus(page, newStatusValue);
if (!selected) {
throw new Error(`No matching status option for "${newStatusValue}". Adjust status selector or confirm option values.`);
}
const title = await page.title().catch(() => ''); // fecha + observación (si el portal lo tiene)
const snippet = await page.evaluate(() => (document.body ? document.body.innerText : '')).catch(() => ''); if (dateString) {
return { await fillOptional(page, CONFIG.SEL.dateInput, dateString);
ok: true, }
flow: 'gestor', if (observation) {
picked: pick, await fillOptional(page, CONFIG.SEL.noteTextarea, observation);
informedChecked: informed, }
dateFilled,
observationFilled: obsFilled, // ✅ casilla "ya informado al Cliente"
pageTitle: title, await setInformoCliente(page, !!informoCliente);
snippet: trim(snippet).slice(0, 600),
}; // guardar
await clickSave(page);
return { ok: true };
});
} }
// -------------------- API server -------------------- // -------------------------
// Routes
// -------------------------
const app = express(); const db = initFirebase();
app.use(cors({ origin: true }));
app.use(express.json({ limit: '1mb' }));
app.get('/', (req, res) => res.status(200).send('ok')); app.get('/', (req, res) => {
res.status(200).send('ok');
});
app.get('/health', (req, res) => { app.get('/health', async (req, res) => {
const port = Number(process.env.PORT || process.env.CAPROVER_PORT || 3000);
res.json({ res.json({
ok: true, ok: true,
service: 'estados-hs', service: 'estados-hs',
port, port: pickPort(),
requireAuth: CONFIG.REQUIRE_AUTH, requireAuth: CONFIG.REQUIRE_AUTH,
hsCredDocPath: process.env.HS_CRED_DOC_PATH || 'providerCredentials/homeserve', hsCredDocPath: CONFIG.HS_CRED_DOC_PATH,
baseUrl: CONFIG.HOMESERVE_BASE_URL, defaultBaseUrl: CONFIG.DEFAULT_HS_BASE_URL,
ts: nowISO(), ts: new Date().toISOString(),
}); });
}); });
app.get('/statuses', (req, res) => { // HTML de prueba (corregido + checkbox informoCliente)
res.json({ ok: true, statuses: STATUS_CODES });
});
function authMiddleware(req, res, next) {
if (!CONFIG.REQUIRE_AUTH) return next();
if (!CONFIG.API_KEY) return res.status(500).json({ ok: false, error: { message: 'REQUIRE_AUTH=1 but API_KEY not set' } });
const k = trim(req.headers['x-api-key'] || '') || trim(req.query.apiKey || '');
if (k !== CONFIG.API_KEY) return res.status(401).json({ ok: false, error: { message: 'Unauthorized' } });
next();
}
// HTML de prueba servido desde el propio server (por si te da pereza subir un .html)
app.get('/test', (req, res) => { app.get('/test', (req, res) => {
res.type('html').send(buildTestHtml()); res.type('html').send(TEST_HTML);
}); });
app.post('/api/homeserve/change-status', authMiddleware, async (req, res) => { app.post('/api/homeserve/change-status', async (req, res) => {
const startedAtISO = nowISO(); const startedAtISO = new Date().toISOString();
const job = {
serviceNumber: trim(req.body?.serviceNumber),
newStatusValue: trim(req.body?.newStatusValue),
dateString: trim(req.body?.dateString),
observation: trim(req.body?.observation),
informoCliente: parseBool(req.body?.informoCliente, true), // por defecto TRUE
};
if (!job.serviceNumber || !job.newStatusValue) {
return res.status(400).json({
ok: false,
startedAtISO,
finishedAtISO: nowISO(),
error: { message: 'Missing serviceNumber or newStatusValue' },
});
}
let db;
try {
db = initFirebase();
} catch (e) {
return res.status(500).json({
ok: false,
startedAtISO,
finishedAtISO: nowISO(),
error: { message: String(e?.message || e), stack: String(e?.stack || '') },
});
}
try { try {
ensureAuth(req);
const body = req.body || {};
const serviceNumber = String(body.serviceNumber || '').trim();
const newStatusValue = String(body.newStatusValue || '').trim();
// dateString opcional (DD/MM/AAAA)
const dateString = String(body.dateString || '').trim();
const observation = String(body.observation || '').trim();
const informoCliente = !!body.informoCliente;
if (!serviceNumber || !newStatusValue) {
return res.status(400).json({
ok: false,
error: { message: 'Missing serviceNumber or newStatusValue' },
});
}
const creds = await getHomeServeCreds(db); const creds = await getHomeServeCreds(db);
const result = await withBrowser(async (page) => { const result = await changeStatusViaHomeServe(creds, {
return await changeStatusViaGestor(page, job, creds); serviceNumber,
newStatusValue,
dateString: dateString || '',
observation: observation || '',
informoCliente,
}); });
return res.json({ return res.json({
ok: true, ok: true,
startedAtISO, startedAtISO,
finishedAtISO: nowISO(), finishedAtISO: new Date().toISOString(),
request: job, request: {
serviceNumber,
newStatusValue,
dateString: dateString || '',
observation: observation || '',
informoCliente,
},
result, result,
}); });
} catch (err) { } catch (err) {
return res.status(500).json({ const code = err?.statusCode || 500;
return res.status(code).json({
ok: false, ok: false,
startedAtISO, startedAtISO,
finishedAtISO: nowISO(), finishedAtISO: new Date().toISOString(),
request: job, error: {
error: { message: String(err?.message || err), stack: String(err?.stack || '') }, message: String(err?.message || err),
stack: String(err?.stack || ''),
},
}); });
} }
}); });
function buildTestHtml() { const port = pickPort();
const options = STATUS_CODES.map( app.listen(port, () => {
(s) => `<option value="${s.code}">${s.code} · ${escapeHtml(s.title)}</option>` console.log(`[estados-hs] HS_CRED_DOC_PATH=${CONFIG.HS_CRED_DOC_PATH}`);
).join('\n'); console.log(`[estados-hs] REQUIRE_AUTH=${CONFIG.REQUIRE_AUTH ? '1' : '0'}`);
console.log(`[estados-hs] ENV PORT=${process.env.PORT || '(unset)'} CAPROVER_PORT=${process.env.CAPROVER_PORT || '(unset)'}`);
console.log(`[estados-hs] listening on :${port}`);
});
return `<!doctype html> // -------------------------
// Embedded TEST HTML
// -------------------------
const TEST_HTML = `<!doctype html>
<html lang="es"> <html lang="es">
<head> <head>
<meta charset="utf-8" /> <meta charset="utf-8" />
@ -453,60 +479,66 @@ function buildTestHtml() {
<title>estados-hs · test</title> <title>estados-hs · test</title>
<style> <style>
body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;margin:0;padding:24px;background:#0b1220;color:#e8eefc} body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;margin:0;padding:24px;background:#0b1220;color:#e8eefc}
.card{max-width:820px;margin:0 auto;background:#111a2e;border:1px solid rgba(255,255,255,.08);border-radius:16px;padding:18px} .card{max-width:760px;margin:0 auto;background:#111a2e;border:1px solid rgba(255,255,255,.08);border-radius:16px;padding:18px}
label{display:block;margin:12px 0 6px;font-size:13px;opacity:.85} label{display:block;margin:12px 0 6px;font-size:13px;opacity:.85}
input,select,textarea,button{width:100%;padding:12px;border-radius:12px;border:1px solid rgba(255,255,255,.12);background:#0b1220;color:#e8eefc} input,select,textarea,button{width:100%;padding:12px;border-radius:12px;border:1px solid rgba(255,255,255,.12);background:#0b1220;color:#e8eefc}
textarea{min-height:90px} textarea{min-height:90px}
button{cursor:pointer;font-weight:700} button{cursor:pointer;font-weight:800}
.row{display:grid;grid-template-columns:1fr 1fr;gap:12px} .row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.log{white-space:pre-wrap;background:#0b1220;border-radius:12px;border:1px solid rgba(255,255,255,.12);padding:12px;margin-top:12px;font-size:12px} .log{white-space:pre-wrap;background:#0b1220;border-radius:12px;border:1px solid rgba(255,255,255,.12);padding:12px;margin-top:12px;font-size:12px}
.muted{opacity:.7;font-size:12px} .muted{opacity:.7;font-size:12px}
.btnrow{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:10px} .checkline{display:flex;gap:10px;align-items:flex-start;margin-top:12px;padding:10px;border-radius:12px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08)}
.check{display:flex;gap:10px;align-items:center;margin-top:10px} .checkline input{width:auto;margin-top:2px}
.check input{width:auto}
</style> </style>
</head> </head>
<body> <body>
<div class="card"> <div class="card">
<h2 style="margin:0 0 8px">estados-hs · pruebas (flujo gestor)</h2> <h2 style="margin:0 0 8px">estados-hs · prueba</h2>
<div class="muted">Consejo: si /health responde JSON, el server está vivo. Si POST devuelve ok:true, ya estás cambiando estado 🔧</div> <div class="muted">POST <code>/api/homeserve/change-status</code></div>
<label>Base URL (auto)</label> <label> de Servicio</label>
<input id="base" /> <input id="serviceNumber" placeholder="Ej: 15251178" />
<div class="btnrow">
<button id="btnHealth">Probar /health</button>
<button id="btnStatuses">Ver /statuses</button>
</div>
<hr style="border:0;border-top:1px solid rgba(255,255,255,.08);margin:14px 0" />
<label>Service Number</label>
<input id="serviceNumber" placeholder="15251178" />
<div class="row"> <div class="row">
<div> <div>
<label>Código estado</label> <label>Código estado</label>
<select id="statusCode"> <select id="statusCode">
${options} <option value="303">303 · En espera de Cliente por aceptación Presupuesto</option>
<option value="307">307 · En espera de Profesional por fecha de inicio de trabajos</option>
<option value="313">313 · En espera de Profesional por secado de cala, pintura o parquet</option>
<option value="318">318 · En espera de Profesional por confirmación del Siniestro</option>
<option value="319">319 · En espera de Profesional por material</option>
<option value="320">320 · En espera de Profesional por espera de otro gremio</option>
<option value="321">321 · En espera de Profesional por presupuesto/valoración</option>
<option value="323">323 · En espera de Profesional por mejora del tiempo</option>
<option value="326">326 · En espera de Cliente por pago de Factura Contado/Franquicia</option>
<option value="336">336 · En espera de Profesional por avería en observación</option>
<option value="342">342 · En espera de Profesional pendiente cobro franquicia</option>
<option value="345">345 · En espera de Profesional en realización pendiente Terminar</option>
<option value="348" selected>348 · En espera de Cliente por indicaciones</option>
<option value="352">352 · En espera de Perjudicado por indicaciones</option>
</select> </select>
</div> </div>
<div> <div>
<label>Fecha (DD/MM/AAAA) (opcional)</label> <label>Fecha siguiente acción</label>
<input id="dateString" placeholder="05/01/2026" /> <input id="fecha" type="date" />
<div class="muted" id="fechaOut" style="margin-top:6px"></div>
</div> </div>
</div> </div>
<label>Observación (opcional)</label> <label>Observación (opcional)</label>
<textarea id="observation" placeholder="se le envia whatsapp al asegurado"></textarea> <textarea id="observation" placeholder="Ej: se le envía WhatsApp al asegurado"></textarea>
<div class="check"> <div class="checkline">
<input type="checkbox" id="informo" checked /> <input id="informoCliente" type="checkbox" />
<label for="informo" style="margin:0">Marcar ya he informado al cliente</label> <div>
<div style="font-weight:800">Marcar como informado al cliente</div>
<div class="muted">Equivale a: Marque esta casilla, si ya ha informado al Cliente</div>
</div>
</div> </div>
<div style="height:10px"></div> <div style="height:12px"></div>
<button id="btnSend">Enviar (POST /api/homeserve/change-status)</button> <button id="btn">Enviar</button>
<div class="log" id="log">Listo.</div> <div class="log" id="log">Listo.</div>
</div> </div>
@ -514,67 +546,47 @@ function buildTestHtml() {
<script> <script>
const $ = (id)=>document.getElementById(id); const $ = (id)=>document.getElementById(id);
const log = (x)=>{ $('log').textContent = (typeof x==='string'?x:JSON.stringify(x,null,2)); }; const log = (x)=>{ $('log').textContent = (typeof x==='string'?x:JSON.stringify(x,null,2)); };
const baseDefault = window.location.origin;
$('base').value = baseDefault;
async function call(path, opts){ function toDDMMYYYY(iso){
const base = $('base').value.trim() || baseDefault; if(!iso) return "";
const url = base.replace(/\\/$/, '') + path; const [y,m,d] = iso.split("-");
const r = await fetch(url, opts); if(!y||!m||!d) return "";
const txt = await r.text(); return \`\${d}/\${m}/\${y}\`;
let j = {};
try{ j = JSON.parse(txt); } catch(_){ j = { raw: txt }; }
return { http: r.status, url, ...j };
} }
$('btnHealth').addEventListener('click', async () => { function refreshFechaOut(){
try{ log('probando /health...'); log(await call('/health')); } const iso = $('fecha').value;
catch(e){ log(String(e)); } const dd = toDDMMYYYY(iso);
}); $('fechaOut').textContent = dd ? ('Se enviará como: ' + dd) : '';
}
$('fecha').addEventListener('change', refreshFechaOut);
refreshFechaOut();
$('btnStatuses').addEventListener('click', async () => { $('btn').addEventListener('click', async () => {
try{ log('cargando /statuses...'); log(await call('/statuses')); }
catch(e){ log(String(e)); }
});
$('btnSend').addEventListener('click', async () => {
try{ try{
log('Enviando...'); log('Enviando...');
const dateString = toDDMMYYYY($('fecha').value);
const body = { const body = {
serviceNumber: $('serviceNumber').value.trim(), serviceNumber: $('serviceNumber').value.trim(),
newStatusValue: $('statusCode').value.trim(), newStatusValue: $('statusCode').value.trim(),
dateString: $('dateString').value.trim(), dateString,
observation: $('observation').value.trim(), observation: $('observation').value.trim(),
informoCliente: $('informo').checked informoCliente: $('informoCliente').checked
}; };
log(await call('/api/homeserve/change-status', {
const r = await fetch('/api/homeserve/change-status', {
method:'POST', method:'POST',
headers:{'Content-Type':'application/json'}, headers:{'Content-Type':'application/json'},
body: JSON.stringify(body) body: JSON.stringify(body)
})); });
const j = await r.json().catch(()=>({}));
log({ http: r.status, url: location.origin + '/api/homeserve/change-status', ...j });
}catch(e){ }catch(e){
log(String(e)); log(String(e));
} }
}); });
</script> </script>
</body> </body>
</html>`; </html>`;
}
function escapeHtml(s) {
return String(s || '')
.replaceAll('&', '&amp;')
.replaceAll('<', '&lt;')
.replaceAll('>', '&gt;')
.replaceAll('"', '&quot;')
.replaceAll("'", '&#039;');
}
const PORT = Number(process.env.PORT || process.env.CAPROVER_PORT || 3000);
app.listen(PORT, () => {
console.log(`[estados-hs] listening on :${PORT}`);
console.log(`[estados-hs] HOMESERVE_BASE_URL=${CONFIG.HOMESERVE_BASE_URL}`);
console.log(`[estados-hs] HS_CRED_DOC_PATH=${process.env.HS_CRED_DOC_PATH || 'providerCredentials/homeserve'}`);
console.log(`[estados-hs] REQUIRE_AUTH=${CONFIG.REQUIRE_AUTH ? 1 : 0}`);
console.log(`[estados-hs] HEADLESS=${CONFIG.HEADLESS ? 1 : 0}`);
});