Some checks failed
Build and Deploy / build-and-deploy (push) Failing after 6m46s
Reemplazo completo de Evolution API por implementación directa con Baileys. Características: - Dashboard completo con Nuxt UI v4 - Soporte para múltiples instancias de WhatsApp - Conexión via QR code o pairing code - Persistencia de mensajes en PostgreSQL - API REST para integraciones externas - Webhooks con firma HMAC - SSE para actualizaciones en tiempo real - Autenticación con Authentik
37 lines
1.0 KiB
TypeScript
37 lines
1.0 KiB
TypeScript
/**
|
|
* GET /api/instances/:id/status
|
|
* Get instance connection status
|
|
*/
|
|
import { query } from '../../../utils/database'
|
|
import { baileysManager } from '../../../services/baileys/manager'
|
|
|
|
export default defineEventHandler(async (event) => {
|
|
const username = getHeader(event, 'x-authentik-username')
|
|
if (!username) {
|
|
throw createError({ statusCode: 401, message: 'Unauthorized' })
|
|
}
|
|
|
|
const id = getRouterParam(event, 'id')
|
|
|
|
// Check if instance exists
|
|
const result = await query<{ id: string; status: string; phone_number: string | null }>(
|
|
'SELECT id, status, phone_number FROM instances WHERE id = $1',
|
|
[id]
|
|
)
|
|
|
|
if (result.rows.length === 0) {
|
|
throw createError({ statusCode: 404, message: 'Instance not found' })
|
|
}
|
|
|
|
const instance = result.rows[0]
|
|
const liveStatus = baileysManager.getStatus(id!)
|
|
|
|
return {
|
|
instanceId: id,
|
|
status: liveStatus?.status || instance.status,
|
|
phoneNumber: liveStatus?.phoneNumber || instance.phone_number,
|
|
hasQR: !!liveStatus?.qrCode,
|
|
hasPairingCode: !!liveStatus?.pairingCode
|
|
}
|
|
})
|