This commit is contained in:
lizandrogd
2026-01-21 02:22:29 -05:00
parent 3fffb0d023
commit b1961f0116
35 changed files with 1006 additions and 122 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php
require_once __DIR__ . '/../config/config_enhanced.php';
require_once __DIR__ . '/../config/config.php';
require_once __DIR__ . '/../api/webhook.php';
header('Content-Type: application/json; charset=utf-8');
try {
$w = new WhatsAppWebhook();
echo json_encode(['ok' => true, 'message' => 'Webhook class instantiated successfully']);
} catch (Throwable $t) {
http_response_code(500);
error_log('[debug_webhook_init] Throwable: ' . $t->getMessage());
error_log($t->getTraceAsString());
echo json_encode(['ok' => false, 'error' => $t->getMessage(), 'trace' => $t->getTraceAsString()]);
}
+30
View File
@@ -0,0 +1,30 @@
<?php
require_once __DIR__ . '/../config/config_enhanced.php';
require_once __DIR__ . '/../config/config.php';
header('Content-Type: application/json; charset=utf-8');
if (function_exists('requireAuthentication')) requireAuthentication();
$input = json_decode(file_get_contents('php://input'), true) ?: $_POST;
$conversationId = isset($input['conversation_id']) ? intval($input['conversation_id']) : null;
$userId = isset($input['user_id']) ? intval($input['user_id']) : null;
if (!$conversationId && !$userId) {
http_response_code(400);
echo json_encode(['success' => false, 'error' => 'conversation_id or user_id required']);
exit;
}
try {
$db = Database::getInstance();
if ($conversationId) {
$db->execute('DELETE FROM conversations WHERE id = ?', [$conversationId]);
}
if ($userId) {
$db->execute('DELETE FROM conversations WHERE user_id = ?', [$userId]);
}
echo json_encode(['success' => true]);
} catch (Exception $e) {
http_response_code(500);
echo json_encode(['success' => false, 'error' => $e->getMessage()]);
}
+25
View File
@@ -0,0 +1,25 @@
<?php
require_once __DIR__ . '/../config/config_enhanced.php';
require_once __DIR__ . '/../config/config.php';
header('Content-Type: application/json; charset=utf-8');
if (function_exists('requireAuthentication')) requireAuthentication();
$input = json_decode(file_get_contents('php://input'), true) ?: $_POST;
$id = intval($input['id'] ?? 0);
if (!$id) {
http_response_code(400);
echo json_encode(['success' => false, 'error' => 'id is required']);
exit;
}
try {
$db = Database::getInstance();
$db->execute("DELETE FROM message_templates WHERE id = ?", [$id]);
echo json_encode(['success' => true]);
} catch (Exception $e) {
http_response_code(500);
echo json_encode(['success' => false, 'error' => $e->getMessage()]);
}
+20 -12
View File
@@ -14,21 +14,29 @@ header('Access-Control-Allow-Headers: Content-Type');
try {
$db = Database::getInstance();
// Obtener conversaciones de la tabla conversations
// Obtener conversaciones agregadas por usuario: último mensaje + conteo de no leídos + avatar
$conversations = $db->fetchAll(
"SELECT
c.id,
c.user_id,
COALESCE(c.content, '') as content,
c.direction,
c.message_type,
c.status,
c.created_at,
u.id AS user_id,
COALESCE(u.name, u.phone_number) AS name,
u.phone_number,
COALESCE(u.name, u.phone_number) as name
FROM conversations c
JOIN users u ON c.user_id = u.id
ORDER BY c.created_at DESC
u.avatar_url,
lm.message_id AS last_message_id,
lm.content AS last_message,
lm.direction AS direction,
lm.message_type AS message_type,
lm.created_at AS last_time,
IFNULL(SUM(CASE WHEN c.direction = 'incoming' AND (c.is_read IS NULL OR c.is_read = 0) THEN 1 ELSE 0 END), 0) AS unread_count
FROM users u
LEFT JOIN conversations c ON c.user_id = u.id
LEFT JOIN (
SELECT t1.* FROM conversations t1
JOIN (
SELECT user_id, MAX(created_at) AS last_time FROM conversations GROUP BY user_id
) t2 ON t1.user_id = t2.user_id AND t1.created_at = t2.last_time
) lm ON lm.user_id = u.id
GROUP BY u.id
ORDER BY lm.created_at DESC
LIMIT 500"
);
+17 -12
View File
@@ -24,18 +24,23 @@ header('Access-Control-Allow-Headers: Content-Type');
try {
$db = Database::getInstance();
$templates = $db->fetchAll(
"SELECT
id,
name,
template_name,
language_code,
category,
status,
created_at
FROM message_templates
ORDER BY name ASC"
);
$approvedOnly = isset($_GET['approved_only']) && $_GET['approved_only'] == '1';
$limit = isset($_GET['limit']) ? intval($_GET['limit']) : null;
$sql = "SELECT id, name, template_name, language_code, category, status, body_text, created_at FROM message_templates";
$params = [];
if ($approvedOnly) {
$sql .= " WHERE status = 'approved'";
}
$sql .= " ORDER BY name ASC";
if ($limit && $limit > 0) {
$sql .= " LIMIT " . $limit;
}
$templates = $db->fetchAll($sql, $params);
echo json_encode([
'success' => true,
+7 -2
View File
@@ -37,7 +37,8 @@ try {
direction,
message_type,
status,
created_at
created_at,
COALESCE(c.is_read, 0) as is_read
FROM conversations c
LEFT JOIN users u ON c.user_id = u.id
WHERE user_id = :user_id
@@ -46,10 +47,14 @@ try {
id,
user_id,
message_text as content,
NULL as message_id,
NULL as media_url,
NULL as user_phone,
direction,
message_type,
status,
created_at
created_at,
1 as is_read
FROM messages
WHERE user_id = :user_id
ORDER BY created_at ASC",
+22
View File
@@ -0,0 +1,22 @@
<?php
require_once '../config/config.php';
header('Content-Type: application/json; charset=utf-8');
requireAuthentication();
try {
$input = json_decode(file_get_contents('php://input'), true) ?: $_POST;
$userId = isset($input['user_id']) ? intval($input['user_id']) : 0;
if (!$userId) {
http_response_code(400);
echo json_encode(['success' => false, 'error' => 'user_id is required']);
exit;
}
$db = Database::getInstance();
$db->execute("UPDATE conversations SET is_read = 1 WHERE user_id = ? AND direction = 'incoming' AND (is_read IS NULL OR is_read = 0)", [$userId]);
echo json_encode(['success' => true]);
} catch (Exception $e) {
http_response_code(500);
echo json_encode(['success' => false, 'error' => $e->getMessage()]);
}
+3 -36
View File
@@ -371,13 +371,8 @@ try {
$messageContent = "Plantilla: {$templateName}";
}
// Guardar en la tabla conversations
$stmt = $db->query(
"INSERT INTO conversations (user_id, content, direction, message_type, status, message_id, created_at) VALUES (?, ?, 'outgoing', ?, 'sent', ?, NOW())",
[$userId, $messageContent, $messageType, $response['messages'][0]['id'] ?? null]
);
error_log("Mensaje guardado en BD - User ID: $userId, Content: $messageContent");
// Guardado en BD manejado por WhatsAppService->saveOutgoingMessage()
error_log("Outgoing message saving delegated to WhatsAppService - User ID: $userId, Content: $messageContent");
} else {
error_log("Error: No se pudo obtener o crear user_id para recipient: $recipient");
}
@@ -476,35 +471,7 @@ try {
$response = $whatsappService->sendTextMessage($user['phone_number'], $message);
if ($response && isset($response['messages']) && !empty($response['messages'])) {
// Guardar mensaje en la base de datos
$messageData = [
'user_id' => $userId,
'content' => $message,
'direction' => 'outgoing',
'message_type' => 'text',
'status' => 'sent',
'message_id' => $response['messages'][0]['id'] ?? null,
'created_at' => date('Y-m-d H:i:s')
];
// Intentar insertar en conversations primero
try {
$stmt = $db->query(
"INSERT INTO conversations (user_id, content, direction, message_type, status, message_id, created_at) VALUES (?, ?, ?, ?, ?, ?, ?)",
array_values($messageData)
);
} catch (Exception $e) {
// Si falla, intentar en messages
try {
$stmt = $db->query(
"INSERT INTO messages (user_id, message_text, direction, message_type, status, message_id, created_at) VALUES (?, ?, ?, ?, ?, ?, ?)",
[$userId, $message, 'outgoing', 'text', 'sent', $response['messages'][0]['id'] ?? null, date('Y-m-d H:i:s')]
);
} catch (Exception $e2) {
error_log("Error guardando mensaje: " . $e2->getMessage());
}
}
// Saving handled by WhatsAppService->saveOutgoingMessage(), skip manual insert to avoid duplicates
echo json_encode([
'success' => true,
'message' => 'Mensaje enviado correctamente',
+32 -17
View File
@@ -42,12 +42,13 @@ try {
throw new Exception('Datos inválidos');
}
// Validar datos requeridos
if (!isset($data['user_id']) || empty($data['user_id'])) {
throw new Exception('ID de usuario requerido');
// Validar datos requeridos: user_id o phone
if ((!isset($data['user_id']) || empty($data['user_id'])) && (!isset($data['phone']) || empty($data['phone']))) {
throw new Exception('ID de usuario o teléfono requerido');
}
$user_id = intval($data['user_id']);
$user_id = isset($data['user_id']) ? intval($data['user_id']) : null;
$phone = isset($data['phone']) ? trim($data['phone']) : null;
$name = isset($data['name']) && !empty(trim($data['name'])) ? trim($data['name']) : null;
$status = isset($data['status']) ? $data['status'] : 'active';
@@ -60,20 +61,34 @@ try {
// Crear conexión a la base de datos usando el patrón Singleton
$db = Database::getInstance();
// Verificar si el usuario existe
$checkUser = $db->fetch("SELECT id FROM users WHERE id = :user_id", ['user_id' => $user_id]);
if (!$checkUser) {
throw new Exception('Usuario no encontrado');
}
// Si tenemos user_id - actualizar
if ($user_id) {
// Verificar si el usuario existe
$checkUser = $db->fetch("SELECT id FROM users WHERE id = :user_id", ['user_id' => $user_id]);
if (!$checkUser) {
throw new Exception('Usuario no encontrado');
}
// Actualizar usuario usando el método de la clase Database
$updateData = [
'name' => $name,
'status' => $status
];
$result = $db->update('users', $updateData, 'id = :user_id', ['user_id' => $user_id]);
// Actualizar usuario usando el método de la clase Database
$updateData = [
'name' => $name,
'status' => $status
];
$result = $db->update('users', $updateData, 'id = :user_id', ['user_id' => $user_id]);
} else {
// Buscar por teléfono y crear/actualizar
$existing = $db->fetch('SELECT id FROM users WHERE phone_number = :p LIMIT 1', ['p' => $phone]);
if ($existing) {
$result = $db->update('users', ['name' => $name, 'status' => $status], 'id = :id', ['id' => $existing['id']]);
$user_id = $existing['id'];
} else {
$user_id = $db->insert('users', ['phone_number' => $phone, 'name' => $name, 'status' => $status, 'created_at' => date('Y-m-d H:i:s')]);
$result = $user_id ? true : false;
}
}
if ($result === false) {
throw new Exception('No se pudo actualizar el usuario');
+24 -4
View File
@@ -100,7 +100,7 @@ class WhatsAppWebhook {
if (!isset($value['messages'])) {
return;
}
foreach ($value['messages'] as $message) {
$phoneNumber = $message['from'];
$messageId = $message['id'];
@@ -134,6 +134,13 @@ class WhatsAppWebhook {
$emoji = $message['reaction']['emoji'] ?? '';
$reactionTo = $message['reaction']['message_id'] ?? '';
$messageText = json_encode(['emoji' => $emoji, 'message_id' => $reactionTo]);
// Guardar campos específicos para reacciones
$extraFields = [
'reaction_to_message_id' => $reactionTo ? intval($reactionTo) : null,
'reaction_emoji' => $emoji
];
} elseif (isset($message['text'])) {
$messageText = $message['text']['body'];
$messageType = 'text';
@@ -155,15 +162,28 @@ class WhatsAppWebhook {
}
// Guardar mensaje en base de datos
$this->saveMessage([
$saveData = [
'user_id' => $user['id'],
'message_id' => $messageId,
'direction' => 'incoming',
'message_type' => $messageType,
'content' => $messageText,
'media_url' => $mediaUrl,
'status' => 'received'
]);
'status' => 'received',
'is_read' => 0
];
// Si el mensaje incluye contexto (es respuesta a otro mensaje)
if (isset($message['context']) && isset($message['context']['id'])) {
$saveData['reply_to_message_id'] = $message['context']['id'];
}
// Añadir campos extra (si se detectaron)
if (isset($extraFields) && is_array($extraFields)) {
$saveData = array_merge($saveData, $extraFields);
}
$this->saveMessage($saveData);
// Procesar con bot (protección contra excepciones externas)
try {
+7 -3
View File
@@ -1245,9 +1245,13 @@ class WhatsAppBotManager {
try {
this.showLoading('Eliminando plantilla...');
// Por ahora usaremos update_template_status para marcar como eliminada
// En el futuro se puede crear delete_template.php
this.showError('Función de eliminar aún no implementada');
const result = await this.apiCall('delete_template.php', 'POST', { id: templateId });
if (result && result.success) {
this.showSuccess('Plantilla eliminada');
this.loadTemplates();
} else {
this.showError(result.error || 'Error eliminando plantilla');
}
} catch (error) {
this.showError('Error eliminando plantilla: ' + error.message);
} finally {
+227 -33
View File
@@ -398,6 +398,31 @@
transform: translateX(-100%);
}
}
.reply-preview {
background: #f4f6f8;
border-left: 3px solid #d0d7de;
padding: 6px 8px;
margin-bottom: 6px;
font-size: 12px;
color: #555;
border-radius: 4px;
}
.reaction-badge {
display: inline-block;
background: rgba(0,0,0,0.06);
padding: 2px 6px;
border-radius: 12px;
font-size: 12px;
margin-top: 8px;
}
.conversation-avatar img, .conversation-avatar-img { max-width: 44px; max-height:44px; border-radius:50%; }
.conversation-avatar-wrapper { width:48px; display:flex; align-items:center; justify-content:center }
.conversation-item.unread { background: rgba(255, 248, 220, 0.9); }
.unread-badge { margin-left: 8px; font-size: 12px; }
</style>
</head>
<body>
@@ -446,9 +471,12 @@
<i class="fas fa-user"></i>
</div>
<div class="chat-header-info">
<h6 id="chat-name">Usuario</h6>
<h6 id="chat-name">Usuario <button class="btn btn-sm btn-link" id="edit-user-btn" title="Editar usuario"><i class="fas fa-user-edit"></i></button></h6>
<small id="chat-phone">+1234567890</small>
</div>
<div style="margin-left: auto; display:flex; gap:8px; align-items:center;">
<button class="btn btn-sm btn-outline-danger" id="delete-conversation-btn" title="Eliminar conversación"><i class="fas fa-trash"></i></button>
</div>
</div>
<div class="chat-messages" id="chat-messages">
@@ -477,6 +505,9 @@
<button class="btn" id="attach-btn" title="Adjuntar archivo">
<i class="fas fa-paperclip"></i>
</button>
<div class="quick-replies" id="quick-replies" style="display:flex;gap:6px;align-items:center;">
<!-- Quick replies buttons inserted dynamically -->
</div>
<input type="text" placeholder="Escribe un mensaje..." id="message-input" maxlength="4096">
<button class="btn" id="send-btn">
<i class="fas fa-paper-plane"></i>
@@ -582,43 +613,26 @@
return;
}
// Agrupar por usuario
const userConversations = {};
this.conversations.forEach(conv => {
const key = conv.user_id;
if (!userConversations[key]) {
userConversations[key] = {
user_id: conv.user_id,
name: conv.name || conv.phone_number,
phone_number: conv.phone_number,
last_message: conv.content,
last_time: conv.created_at,
direction: conv.direction,
unread: 0
};
}
// Mantener el mensaje más reciente
if (new Date(conv.created_at) > new Date(userConversations[key].last_time)) {
userConversations[key].last_message = conv.content;
userConversations[key].last_time = conv.created_at;
userConversations[key].direction = conv.direction;
}
});
const html = Object.values(userConversations).map(conv => {
const initials = this.getInitials(conv.name);
// Ahora el backend devuelve por usuario: last_message, last_time, unread_count y avatar_url
const html = this.conversations.map(conv => {
const isActive = conv.user_id == this.currentUserId ? 'active' : '';
const time = this.formatTime(conv.last_time);
const preview = this.truncateText(conv.last_message || 'Sin mensajes', 50);
const isActive = conv.user_id == this.currentUserId ? 'active' : '';
const avatar = conv.avatar_url ? `<img src="${conv.avatar_url}" alt="avatar" class="conversation-avatar-img">` : `<div class="conversation-avatar">${this.getInitials(conv.name)}</div>`;
const unreadBadge = conv.unread_count && conv.unread_count > 0 ? `<span class="badge bg-danger unread-badge">${conv.unread_count}</span>` : '';
// different color if has unread and not active
const unreadClass = (conv.unread_count && conv.unread_count > 0 && !isActive) ? 'unread' : '';
return `
<div class="conversation-item ${isActive}" data-user-id="${conv.user_id}" onclick="chat.openConversation(${conv.user_id}, '${conv.name}', '${conv.phone_number}')">
<div class="conversation-avatar">
${initials}
<div class="conversation-item ${isActive} ${unreadClass}" data-user-id="${conv.user_id}" onclick="chat.openConversation(${conv.user_id}, '${conv.name}', '${conv.phone_number}')">
<div class="conversation-avatar-wrapper">
${avatar}
</div>
<div class="conversation-info">
<div class="conversation-name">${conv.name}</div>
<div class="conversation-name">${conv.name} ${unreadBadge}</div>
<div class="conversation-preview">
${conv.direction === 'outgoing' ? '✓ ' : ''}${preview}
</div>
@@ -630,6 +644,17 @@
`;
}).join('');
// Detectar nuevas notificaciones: comparar unread counts previos
if (!this._prevConversations) this._prevConversations = {};
this.conversations.forEach(c => {
const prev = this._prevConversations[c.user_id] || { unread_count: 0 };
if (c.unread_count > prev.unread_count && c.user_id != this.currentUserId) {
// nueva notificación
this.playNotificationSound();
}
this._prevConversations[c.user_id] = { unread_count: c.unread_count };
});
container.innerHTML = html;
}
@@ -667,6 +692,24 @@
return text.substring(0, maxLength) + '...';
}
playNotificationSound() {
try {
// Small beep using Web Audio API (no external file needed)
const ctx = new (window.AudioContext || window.webkitAudioContext)();
const o = ctx.createOscillator();
const g = ctx.createGain();
o.type = 'sine';
o.frequency.value = 880;
o.connect(g);
g.connect(ctx.destination);
g.gain.value = 0.05;
o.start();
setTimeout(() => { o.stop(); ctx.close(); }, 180);
} catch (e) {
console.warn('Notification sound failed', e);
}
}
async openConversation(userId, userName, phoneNumber) {
this.currentUserId = userId;
@@ -687,6 +730,8 @@
// Cargar mensajes
await this.loadMessages(userId);
// Cargar respuestas rápidas
await this.loadQuickReplies();
}
async loadMessages(userId, showLoading = true) {
@@ -706,6 +751,19 @@
this.messages = data;
this.renderMessages();
this.scrollToBottom();
// Marcar como leídos en el backend
try {
await fetch('api/mark_conversation_read.php', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ user_id: userId })
});
// Recargar lista de conversaciones para refrescar contadores
await this.loadConversations();
} catch (e) {
console.error('Error marking conversation as read', e);
}
}
} catch (error) {
console.error('Error loading messages:', error);
@@ -743,11 +801,27 @@
const content = msg.media_url
? this.renderMediaMessage(msg)
: (msg.content || msg.message_text || '[Mensaje vacío]');
// Mostrar preview si es reply/context
let replyHtml = '';
if (msg.reply_to_message_id) {
const target = this.messages.find(m => m.message_id == msg.reply_to_message_id);
const previewText = target ? (target.content || target.message_text || '').substring(0,140) : ('Mensaje ' + msg.reply_to_message_id);
replyHtml = `<div class="reply-preview">En respuesta a: ${previewText}</div>`;
}
// Mostrar reacción si existe
let reactionHtml = '';
if (msg.reaction_emoji) {
reactionHtml = `<div class="reaction-badge">${msg.reaction_emoji}</div>`;
}
return `
<div class="message ${msg.direction}">
<div class="message-bubble">
${replyHtml}
${content}
${reactionHtml}
<div class="message-actions mt-1">
<button class="btn btn-sm btn-link" onclick="app.replyToMessage('${msg.message_id}','${msg.user_phone}')" title="Responder"><i class="fas fa-reply"></i></button>
<button class="btn btn-sm btn-link" onclick="app.reactToMessage('${msg.message_id}','${msg.user_phone}')" title="Reaccionar"><i class="far fa-grin"></i></button>
@@ -773,6 +847,51 @@
}
}
async loadQuickReplies() {
const container = document.getElementById('quick-replies');
container.innerHTML = '';
try {
const resp = await fetch('api/get_templates.php?approved_only=1&limit=6');
const json = await resp.json();
if (json && json.success && Array.isArray(json.data)) {
json.data.forEach(t => {
const btn = document.createElement('button');
btn.className = 'btn btn-outline-primary btn-sm';
btn.style.marginRight = '6px';
btn.textContent = t.name;
btn.addEventListener('click', () => this.sendTemplateQuick(t.template_name, t.language_code || 'es'));
container.appendChild(btn);
});
}
} catch (e) {
console.error('Error loading quick replies', e);
}
}
async sendTemplateQuick(templateName, language) {
if (!this.currentUserId) return;
const conv = this.conversations.find(c => c.user_id === this.currentUserId);
const phone = conv ? conv.user_phone : document.getElementById('chat-phone').textContent;
try {
const resp = await fetch('api/send_message.php', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ recipient: phone, type: 'template', template_name: templateName, language })
});
const result = await resp.json();
if (result.success) {
await this.loadMessages(this.currentUserId, false);
await this.loadConversations();
} else {
alert('Error al enviar plantilla: ' + (result.error || JSON.stringify(result)));
}
} catch (e) {
console.error('Error sending template quick', e);
alert('Error al enviar plantilla');
}
}
scrollToBottom() {
const container = document.getElementById('chat-messages');
container.scrollTop = container.scrollHeight;
@@ -812,6 +931,8 @@
await this.loadMessages(this.currentUserId, false);
// Actualizar lista de conversaciones
this.loadConversations();
// Actualizar respuestas rápidas
await this.loadQuickReplies();
} else {
alert('Error al enviar mensaje: ' + (result.error || 'Error desconocido'));
}
@@ -825,6 +946,79 @@
}
}
async loadQuickReplies() {
try {
const resp = await fetch('api/get_templates.php?approved_only=1&limit=10');
const json = await resp.json();
const container = document.getElementById('quick-replies');
if (!container) return;
container.innerHTML = '';
if (json && json.success && Array.isArray(json.data)) {
const templates = json.data.slice(0,5);
templates.forEach(t => {
const text = (t.body_text || t.name || t.template_name || '').replace(/\n/g,' ');
const btn = document.createElement('button');
btn.className = 'btn btn-sm btn-outline-secondary';
btn.dataset.qr = text;
btn.textContent = text.length > 30 ? text.substring(0,30) + '...' : text;
container.appendChild(btn);
});
}
} catch (err) {
console.error('loadQuickReplies error', err);
}
}
async promptEditUser() {
const currentName = document.getElementById('chat-name').textContent || '';
const newName = prompt('Nombre del usuario:', currentName);
if (!newName) return;
try {
const resp = await fetch('api/update_user.php', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ user_id: this.currentUserId, name: newName })
});
const json = await resp.json();
if (json && json.success) {
document.getElementById('chat-name').textContent = newName;
this.showSuccess('Usuario actualizado');
this.loadConversations();
} else {
this.showError('No se pudo actualizar usuario');
}
} catch (err) {
console.error(err);
this.showError('Error actualizando usuario');
}
}
async deleteCurrentConversation() {
if (!confirm('¿Eliminar esta conversación? Se borrará todo el historial.')) return;
try {
const resp = await fetch('api/delete_conversation.php', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ user_id: this.currentUserId })
});
const json = await resp.json();
if (json && json.success) {
this.showSuccess('Conversación eliminada');
// reset UI
document.getElementById('chat-area').style.display = 'none';
document.getElementById('no-conversation').style.display = 'block';
this.currentUserId = null;
this.loadConversations();
} else {
this.showError('No se pudo eliminar la conversación');
}
} catch (err) {
console.error(err);
this.showError('Error eliminando la conversación');
}
}
searchConversations(query) {
const items = document.querySelectorAll('.conversation-item');
items.forEach(item => {
+12
View File
@@ -6,3 +6,15 @@ Stack trace:
#0 C:\laragon\www\whatsapp\scripts\send_template_test.php(18): WhatsAppService->__construct()
#1 {main}
thrown in C:\laragon\www\whatsapp\services\WhatsAppService.php on line 18
[20-Jan-2026 23:53:41 America/Bogota] [webhook] __construct start
[20-Jan-2026 23:53:42 America/Bogota] [webhook] __construct end
[20-Jan-2026 23:53:42 America/Bogota] [webhook] handleRequest start, method=GET
[20-Jan-2026 23:53:47 America/Bogota] [webhook] __construct start
[20-Jan-2026 23:53:47 America/Bogota] [webhook] __construct end
[20-Jan-2026 23:53:47 America/Bogota] [webhook] handleRequest start, method=GET
[20-Jan-2026 23:53:55 America/Bogota] [webhook] __construct start
[20-Jan-2026 23:53:55 America/Bogota] [webhook] __construct end
[20-Jan-2026 23:53:55 America/Bogota] [webhook] handleRequest start, method=GET
[20-Jan-2026 23:54:02 America/Bogota] [webhook] __construct start
[20-Jan-2026 23:54:03 America/Bogota] [webhook] __construct end
[20-Jan-2026 23:54:03 America/Bogota] [webhook] handleRequest start, method=GET
+36
View File
@@ -0,0 +1,36 @@
<?php
/**
* Migration: añadir columnas reply_to_message_id, reaction_to_message_id, reaction_emoji
*/
require_once __DIR__ . '/../config/config_enhanced.php';
require_once __DIR__ . '/../classes/Database.php';
try {
$db = Database::getInstance();
$columns = $db->fetchAll("SHOW COLUMNS FROM conversations");
$colNames = array_column($columns, 'Field');
if (!in_array('reply_to_message_id', $colNames)) {
$db->query("ALTER TABLE conversations ADD COLUMN reply_to_message_id INT NULL AFTER message_id");
echo "Added column reply_to_message_id\n";
} else {
echo "reply_to_message_id exists\n";
}
if (!in_array('reaction_to_message_id', $colNames)) {
$db->query("ALTER TABLE conversations ADD COLUMN reaction_to_message_id INT NULL AFTER reply_to_message_id");
echo "Added column reaction_to_message_id\n";
} else {
echo "reaction_to_message_id exists\n";
}
if (!in_array('reaction_emoji', $colNames)) {
$db->query("ALTER TABLE conversations ADD COLUMN reaction_emoji VARCHAR(32) NULL AFTER reaction_to_message_id");
echo "Added column reaction_emoji\n";
} else {
echo "reaction_emoji exists\n";
}
} catch (Exception $e) {
echo "Error: " . $e->getMessage() . "\n";
}
+15
View File
@@ -0,0 +1,15 @@
<?php
require_once __DIR__ . '/../config/config.php';
$db = Database::getInstance();
$col = $db->fetch("SHOW COLUMNS FROM conversations LIKE 'is_read'");
if ($col) {
echo "Column is_read already exists\n";
exit(0);
}
try {
$db->query("ALTER TABLE conversations ADD COLUMN is_read TINYINT(1) NULL DEFAULT 0 AFTER status");
echo "Added column is_read\n";
} catch (Exception $e) {
echo "Failed to add is_read: " . $e->getMessage() . "\n";
exit(1);
}
+26
View File
@@ -0,0 +1,26 @@
<?php
require_once __DIR__ . '/../config/config.php';
$db = Database::getInstance();
// Verificar columna message_type
$col = $db->fetch("SHOW COLUMNS FROM conversations LIKE 'message_type'");
if (!$col) {
echo "Column message_type not found\n";
exit(1);
}
$type = $col['Type'];
if (strpos($type, "'reaction'") !== false) {
echo "reaction already present in message_type enum\n";
exit(0);
}
// Construir nuevo enum
$newEnum = "ENUM('text','image','audio','video','document','template','reaction') NOT NULL DEFAULT 'text'";
try {
$db->query("ALTER TABLE conversations MODIFY COLUMN message_type $newEnum");
echo "Added reaction to message_type enum\n";
} catch (Exception $e) {
echo "Failed to alter table: " . $e->getMessage() . "\n";
exit(1);
}
+15
View File
@@ -0,0 +1,15 @@
<?php
require_once __DIR__ . '/../config/config.php';
$db = Database::getInstance();
$col = $db->fetch("SHOW COLUMNS FROM users LIKE 'avatar_url'");
if ($col) {
echo "Column avatar_url already exists\n";
exit(0);
}
try {
$db->query("ALTER TABLE users ADD COLUMN avatar_url VARCHAR(255) NULL AFTER name");
echo "Added column avatar_url\n";
} catch (Exception $e) {
echo "Failed to add avatar_url: " . $e->getMessage() . "\n";
exit(1);
}
+10
View File
@@ -0,0 +1,10 @@
<?php
require_once __DIR__ . '/../config/config.php';
$db = Database::getInstance();
$r = $db->fetch('SELECT * FROM conversations WHERE message_type = :mt ORDER BY id DESC LIMIT 5', ['mt' => 'reaction']);
var_export($r);
echo "\nAll recent rows:\n";
$rows = $db->fetchAll('SELECT id,message_id,message_type,direction,content,reaction_to_message_id,reaction_emoji,reply_to_message_id FROM conversations ORDER BY id DESC LIMIT 10');
foreach ($rows as $row) {
echo json_encode($row) . "\n";
}
+13
View File
@@ -0,0 +1,13 @@
<?php
ini_set('display_errors',1);
error_reporting(E_ALL);
require_once __DIR__ . '/../config/config.php';
try {
$db = Database::getInstance();
echo "DB instance ok\n";
} catch (Throwable $t) {
echo "ERROR: " . $t->getMessage() . "\n";
echo $t->getTraceAsString() . "\n";
}
+24
View File
@@ -0,0 +1,24 @@
<?php
require_once __DIR__ . '/../config/config_enhanced.php';
require_once __DIR__ . '/../config/config.php';
require_once __DIR__ . '/../services/WhatsAppService.php';
require_once __DIR__ . '/../services/BotService.php';
ini_set('display_errors', 1);
error_reporting(E_ALL);
try {
$s = new WhatsAppService();
echo "WhatsAppService OK\n";
} catch (Throwable $t) {
echo "WhatsAppService ERR: " . $t->getMessage() . "\n";
echo $t->getTraceAsString() . "\n";
}
try {
$b = new BotService();
echo "BotService OK\n";
} catch (Throwable $t) {
echo "BotService ERR: " . $t->getMessage() . "\n";
echo $t->getTraceAsString() . "\n";
}
+7
View File
@@ -0,0 +1,7 @@
<?php
require_once __DIR__ . '/../config/config.php';
$db = Database::getInstance();
$cols = $db->fetchAll('DESCRIBE conversations');
foreach ($cols as $c) {
echo $c['Field'] . ' => ' . $c['Type'] . PHP_EOL;
}
+7
View File
@@ -0,0 +1,7 @@
<?php
require_once __DIR__ . '/../config/config.php';
$db = Database::getInstance();
$cols = $db->fetchAll('DESCRIBE users');
foreach ($cols as $c) {
echo $c['Field'] . ' => ' . $c['Type'] . PHP_EOL;
}
+24
View File
@@ -0,0 +1,24 @@
<?php
require_once __DIR__ . '/../config/config_enhanced.php';
require_once __DIR__ . '/../config/config.php';
require_once __DIR__ . '/../api/webhook.php';
// Simular GET verification
action:
$_SERVER['REQUEST_METHOD'] = 'GET';
$_GET['hub_mode'] = 'subscribe';
$_GET['hub_verify_token'] = WEBHOOK_VERIFY_TOKEN;
$_GET['hub_challenge'] = 'testchallenge123';
try {
$w = new WhatsAppWebhook();
ob_start();
$w->handleRequest();
$out = ob_get_clean();
echo "Output:\n" . $out . "\n";
} catch (Throwable $t) {
echo "Throwable: " . $t->getMessage() . "\n";
echo $t->getTraceAsString() . "\n";
}
View File
+121
View File
@@ -0,0 +1,121 @@
<?php
ini_set('display_errors',1);
error_reporting(E_ALL);
require_once __DIR__ . '/../api/webhook.php';
$db = Database::getInstance();
$webhook = new WhatsAppWebhook();
// Test reaction
$testPhone = '573007777000';
$userId = $db->insert('users', ['phone_number' => $testPhone, 'name' => 'Reactor', 'status' => 'active']);
$origMsgId = '1001';
$db->insert('conversations', [
'user_id' => $userId,
'message_id' => $origMsgId,
'direction' => 'incoming',
'message_type' => 'text',
'content' => 'Original msg',
'status' => 'received',
'created_at' => date('Y-m-d H:i:s')
]);
$payload = [
'object' => 'whatsapp_business_account',
'entry' => [
[
'changes' => [
[
'field' => 'messages',
'value' => [
'messaging_product' => 'whatsapp',
'metadata' => [
'display_phone_number' => '16505551111',
'phone_number_id' => '123'
],
'contacts' => [
[ 'profile' => ['name' => 'reactor'], 'wa_id' => $testPhone ]
],
'messages' => [
[
'from' => $testPhone,
'id' => '2001',
'timestamp' => time(),
'type' => 'reaction',
'reaction' => ['message_id' => $origMsgId, 'emoji' => '👍']
]
]
]
]
]
]
]
];
$r = $webhook->processPayload($payload);
$conv = $db->fetch('SELECT * FROM conversations WHERE message_id = :mid', ['mid' => '2001']);
if ($conv) {
echo "Reaction saved: reaction_to_message_id={$conv['reaction_to_message_id']}, reaction_emoji={$conv['reaction_emoji']}\n";
} else {
echo "Reaction not saved\n";
}
// Cleanup reaction test
$db->execute('DELETE FROM conversations WHERE message_id = :mid', ['mid' => '2001']);
$db->execute('DELETE FROM conversations WHERE message_id = :mid', ['mid' => $origMsgId]);
$db->execute('DELETE FROM users WHERE id = :id', ['id' => $userId]);
// Test reply/context
$testPhone2 = '573007777111';
$userId2 = $db->insert('users', ['phone_number' => $testPhone2, 'name' => 'Replier', 'status' => 'active']);
$origMsgId2 = '1002';
$db->insert('conversations', [
'user_id' => $userId2,
'message_id' => $origMsgId2,
'direction' => 'incoming',
'message_type' => 'text',
'content' => 'Original for reply',
'status' => 'received',
'created_at' => date('Y-m-d H:i:s')
]);
$payload2 = [
'object' => 'whatsapp_business_account',
'entry' => [
[
'changes' => [
[
'field' => 'messages',
'value' => [
'messages' => [
[
'from' => $testPhone2,
'id' => '2002',
'timestamp' => time(),
'type' => 'text',
'text' => ['body' => 'Reply message'],
'context' => ['id' => $origMsgId2]
]
]
]
]
]
]
]
];
$r2 = $webhook->processPayload($payload2);
$conv2 = $db->fetch('SELECT * FROM conversations WHERE message_id = :mid', ['mid' => '2002']);
if ($conv2) {
echo "Reply saved: reply_to_message_id={$conv2['reply_to_message_id']}\n";
} else {
echo "Reply not saved\n";
}
// Cleanup reply test
$db->execute('DELETE FROM conversations WHERE message_id = :mid', ['mid' => '2002']);
$db->execute('DELETE FROM conversations WHERE message_id = :mid', ['mid' => $origMsgId2]);
$db->execute('DELETE FROM users WHERE id = :id', ['id' => $userId2]);
echo "Done\n";
+12
View File
@@ -0,0 +1,12 @@
<?php
ini_set('display_errors',1);
error_reporting(E_ALL);
try {
require_once __DIR__ . '/../config/config_enhanced.php';
echo "config_enhanced OK\n";
require_once __DIR__ . '/../config/config.php';
echo "config.php OK\n";
} catch (Throwable $t) {
echo "Throwable on require: " . $t->getMessage() . "\n";
echo $t->getTraceAsString() . "\n";
}
Binary file not shown.
+16
View File
@@ -0,0 +1,16 @@
<?php
ini_set('display_errors',1);
error_reporting(E_ALL);
echo "START wa_service_test\n";
require_once __DIR__ . '/../services/WhatsAppService.php';
echo "AFTER REQUIRE\n";
try {
$s = new WhatsAppService();
echo "WhatsAppService OK\n";
} catch (Throwable $t) {
echo "ERROR: " . $t->getMessage() . "\n";
echo $t->getTraceAsString() . "\n";
}
echo "END wa_service_test\n";
+13
View File
@@ -0,0 +1,13 @@
<?php
ini_set('display_errors',1);
error_reporting(E_ALL);
require_once __DIR__ . '/../api/webhook.php';
try {
$w = new WhatsAppWebhook();
echo "Webhook instance OK\n";
} catch (Throwable $t) {
echo "ERROR: " . $t->getMessage() . "\n";
echo $t->getTraceAsString() . "\n";
}
+8 -2
View File
@@ -35,7 +35,13 @@ class BotService {
if ($this->processSpecialCommands($phoneNumber, $messageText)) {
return;
}
// Si el asesor ya respondió después del último mensaje del usuario, frenar al bot
$lastIncoming = $this->db->fetch("SELECT created_at FROM conversations WHERE user_id = :uid AND direction = 'incoming' ORDER BY created_at DESC LIMIT 1", ['uid' => $user['id']]);
$lastOutgoing = $this->db->fetch("SELECT created_at FROM conversations WHERE user_id = :uid AND direction = 'outgoing' ORDER BY created_at DESC LIMIT 1", ['uid' => $user['id']]);
if ($lastOutgoing && $lastIncoming && strtotime($lastOutgoing['created_at']) >= strtotime($lastIncoming['created_at'])) {
// El asesor ya respondió, no enviar respuestas automáticas
return;
}
// Verificar si el usuario está en un menú
if ($user['current_menu_id']) {
$this->processMenuSelection($user, $messageText);
@@ -85,7 +91,7 @@ class BotService {
$this->exitMenu($phoneNumber);
return true;
case 'help':
case 'asesor':
case 'ayuda':
$this->showHelp($phoneNumber);
return true;
+11
View File
@@ -514,6 +514,17 @@ class WhatsAppService
'created_at' => date('Y-m-d H:i:s')
];
// Si es reply (context)
if (isset($data['context']['message_id'])) {
$messageData['reply_to_message_id'] = is_numeric($data['context']['message_id']) ? intval($data['context']['message_id']) : null;
}
// Si es reaction
if ($data['type'] === 'reaction' && isset($data['reaction'])) {
$messageData['reaction_to_message_id'] = is_numeric($data['reaction']['message_id'] ?? null) ? intval($data['reaction']['message_id']) : null;
$messageData['reaction_emoji'] = $data['reaction']['emoji'] ?? null;
}
$this->db->insert('conversations', $messageData);
}
} catch (Exception $e) {
+120 -1
View File
@@ -306,6 +306,117 @@ class WebhookTestSuite {
return "Conversación guardada correctamente";
});
$this->webhookTest("Procesamiento de reacción entrante", function() {
$testPhone = '573007777000';
// Crear usuario y mensaje referenciado
$userId = $this->db->insert('users', ['phone_number' => $testPhone, 'name' => 'Reactor', 'status' => 'active']);
$origMsgId = '1001';
$this->db->insert('conversations', [
'user_id' => $userId,
'message_id' => $origMsgId,
'direction' => 'incoming',
'message_type' => 'text',
'content' => 'Original msg',
'status' => 'received',
'created_at' => date('Y-m-d H:i:s')
]);
$payload = [
'object' => 'whatsapp_business_account',
'entry' => [
[
'changes' => [
[
'field' => 'messages',
'value' => [
'messages' => [
[
'from' => $testPhone,
'id' => '2001',
'timestamp' => time(),
'type' => 'reaction',
'reaction' => ['message_id' => $origMsgId, 'emoji' => '👍']
]
]
]
]
]
]
]
];
$webhook = new WhatsAppWebhook();
$result = $webhook->processPayload($payload);
$conv = $this->db->fetch("SELECT * FROM conversations WHERE message_id = :mid", ['mid' => '2001']);
// Limpiar
$this->db->execute("DELETE FROM conversations WHERE message_id = :mid", ['mid' => '2001']);
$this->db->execute("DELETE FROM conversations WHERE message_id = :mid", ['mid' => $origMsgId]);
$this->db->execute("DELETE FROM users WHERE id = :id", ['id' => $userId]);
if (!$conv) throw new Exception("Reacción no se guardó");
if (intval($conv['reaction_to_message_id']) !== intval($origMsgId)) throw new Exception("reaction_to_message_id no guardado correctamente");
if ($conv['reaction_emoji'] !== '👍') throw new Exception("reaction_emoji incorrecto");
return "Reacción procesada y guardada correctamente";
});
$this->webhookTest("Procesamiento de reply/context entrante", function() {
$testPhone = '573007777111';
$userId = $this->db->insert('users', ['phone_number' => $testPhone, 'name' => 'Replier', 'status' => 'active']);
$origMsgId = '1002';
$this->db->insert('conversations', [
'user_id' => $userId,
'message_id' => $origMsgId,
'direction' => 'incoming',
'message_type' => 'text',
'content' => 'Original for reply',
'status' => 'received',
'created_at' => date('Y-m-d H:i:s')
]);
$payload = [
'object' => 'whatsapp_business_account',
'entry' => [
[
'changes' => [
[
'field' => 'messages',
'value' => [
'messages' => [
[
'from' => $testPhone,
'id' => '2002',
'timestamp' => time(),
'type' => 'text',
'text' => ['body' => 'Reply message'],
'context' => ['id' => $origMsgId]
]
]
]
]
]
]
]
];
$webhook = new WhatsAppWebhook();
$result = $webhook->processPayload($payload);
$conv = $this->db->fetch("SELECT * FROM conversations WHERE message_id = :mid", ['mid' => '2002']);
// Limpiar
$this->db->execute("DELETE FROM conversations WHERE message_id = :mid", ['mid' => '2002']);
$this->db->execute("DELETE FROM conversations WHERE message_id = :mid", ['mid' => $origMsgId]);
$this->db->execute("DELETE FROM users WHERE id = :id", ['id' => $userId]);
if (!$conv) throw new Exception("Reply no se guardó");
if ($conv['reply_to_message_id'] != $origMsgId) throw new Exception("reply_to_message_id no guardado correctamente");
return "Reply/context procesado y guardado correctamente";
});
}
private function testWebhookSecurity() {
@@ -524,12 +635,20 @@ class WebhookTestSuite {
}
// No ejecutar si es incluido por el runner principal
if (basename($_SERVER['PHP_SELF']) === 'webhook_tests.php') {
if (basename($_SERVER['PHP_SELF']) === 'webhook_tests.php' || php_sapi_name() === 'cli') {
$configPath = __DIR__ . '/../config/config.php';
if (file_exists($configPath)) {
require_once $configPath;
}
// Asegurar que la clase WhatsAppWebhook esté disponible cuando se ejecutan tests desde CLI
$webhookPath = __DIR__ . '/../api/webhook.php';
if (file_exists($webhookPath)) {
require_once $webhookPath;
}
$suite = new WebhookTestSuite();
echo "RUNNING WEBHOOK TESTS\n";
$suite->runAllWebhookTests();
}
?>
Binary file not shown.
+86
View File
@@ -0,0 +1,86 @@
<?php
/**
* Tests para WhatsAppService saveOutgoingMessage
*/
require_once __DIR__ . '/../config/config.php';
require_once __DIR__ . '/../services/WhatsAppService.php';
$db = Database::getInstance();
$service = new WhatsAppService();
$ref = new ReflectionClass($service);
$method = $ref->getMethod('saveOutgoingMessage');
$method->setAccessible(true);
// Test reaction save
$phone = '573001234999';
$db->execute('DELETE FROM users WHERE phone_number = :p', ['p' => $phone]);
$userId = $db->insert('users', ['phone_number' => $phone, 'name' => 'Outgoing Reactor', 'status' => 'active']);
$data = [
'to' => $phone,
'type' => 'reaction',
'reaction' => ['message_id' => '5001', 'emoji' => '❤️']
];
$response = ['messages' => [['id' => 'out_msg_1']]];
$foundUser = $db->fetch('SELECT * FROM users WHERE phone_number = :p', ['p' => $phone]);
echo "User found for outgoing reaction? " . ($foundUser ? 'yes' : 'no') . "\n";
$method->invokeArgs($service, [$data, $response]);
$conv = $db->fetch('SELECT * FROM conversations WHERE message_id = :mid', ['mid' => 'out_msg_1']);
if ($conv) {
echo "Outgoing reaction saved: id={$conv['id']} reaction_to={$conv['reaction_to_message_id']} emoji={$conv['reaction_emoji']}\n";
} else {
echo "Outgoing reaction NOT saved\n";
$recent = $db->fetchAll('SELECT id,message_id,message_type,direction,content,created_at FROM conversations WHERE user_id = :uid ORDER BY id DESC LIMIT 5', ['uid' => $userId]);
echo "Recent rows for user:\n";
foreach ($recent as $r) echo json_encode($r) . "\n";
echo "Trying direct DB insert to see if constraints block it...\n";
$msg = [
'user_id' => $userId,
'message_id' => 'direct_out_msg_1',
'direction' => 'outgoing',
'message_type' => 'reaction',
'content' => '❤️',
'status' => 'sent',
'created_at' => date('Y-m-d H:i:s')
];
try {
$res = $db->insert('conversations', $msg);
echo "Direct insert result: " . ($res ? 'ok id=' . $res : 'failed') . "\n";
$r2 = $db->fetch('SELECT * FROM conversations WHERE message_id = :mid', ['mid' => 'direct_out_msg_1']);
echo "Fetched direct row: " . json_encode($r2) . "\n";
$db->execute('DELETE FROM conversations WHERE message_id = :mid', ['mid' => 'direct_out_msg_1']);
} catch (Exception $e) {
echo "Direct insert threw: " . $e->getMessage() . "\n";
}
}
// cleanup
$db->execute('DELETE FROM conversations WHERE message_id = :mid', ['mid' => 'out_msg_1']);
$db->execute('DELETE FROM users WHERE id = :id', ['id' => $userId]);
// Test text reply save
$phone2 = '573001234998';
$db->execute('DELETE FROM users WHERE phone_number = :p', ['p' => $phone2]);
$userId2 = $db->insert('users', ['phone_number' => $phone2, 'name' => 'Outgoing Replier', 'status' => 'active']);
$data2 = [
'to' => $phone2,
'type' => 'text',
'context' => ['message_id' => '5002'],
'text' => ['body' => 'Gracias']
];
$response2 = ['messages' => [['id' => 'out_msg_2']]];
$method->invokeArgs($service, [$data2, $response2]);
$conv2 = $db->fetch('SELECT * FROM conversations WHERE message_id = :mid', ['mid' => 'out_msg_2']);
if ($conv2) {
echo "Outgoing reply saved: id={$conv2['id']} reply_to={$conv2['reply_to_message_id']}\n";
} else {
echo "Outgoing reply NOT saved\n";
}
// cleanup
$db->execute('DELETE FROM conversations WHERE message_id = :mid', ['mid' => 'out_msg_2']);
$db->execute('DELETE FROM users WHERE id = :id', ['id' => $userId2]);
echo "Done tests\n";
Binary file not shown.