File size: 9,316 Bytes
7226ab4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 |
/**
* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
* CLASSE: MessageProcessor
* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
* Processamento inteligente de mensagens: anΓ‘lise, detecΓ§Γ£o de reply, contexto
* ExtraΓ§Γ£o de informaΓ§Γ΅es de grupos e usuΓ‘rios
* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
*/
const { getContentType } = require('@whiskeysockets/baileys');
const ConfigManager = require('./ConfigManager');
let parsePhoneNumberFromString = null;
try {
// optional modern phone parsing if available
({ parsePhoneNumberFromString } = require('libphonenumber-js'));
} catch (e) {
// lib not installed β graceful fallback to simple digit extraction
}
class MessageProcessor {
constructor(logger = null) {
this.config = ConfigManager.getInstance();
this.logger = logger || console;
}
/**
* Extrai nΓΊmero real do usuΓ‘rio
*/
extractUserNumber(message) {
try {
const key = message.key || {};
const remoteJid = key.remoteJid || '';
// Se for PV (nΓ£o termina com @g.us)
if (!String(remoteJid).endsWith('@g.us')) {
return String(remoteJid).split('@')[0];
}
// Se for grupo, obtΓ©m do participant
if (key.participant) {
const participant = String(key.participant);
if (participant.includes('@s.whatsapp.net')) {
return participant.split('@')[0];
}
if (participant.includes('@lid')) {
const limpo = participant.split(':')[0];
const digitos = limpo.replace(/\D/g, '');
// If libphonenumber-js is available, try to normalize to E.164 (without '+')
try {
const cfg = ConfigManager.getInstance();
let defaultCountry = null;
if (cfg.BOT_NUMERO_REAL && String(cfg.BOT_NUMERO_REAL).startsWith('244')) {
defaultCountry = 'AO';
}
if (parsePhoneNumberFromString) {
const pn = defaultCountry
? parsePhoneNumberFromString(digitos, defaultCountry)
: parsePhoneNumberFromString(digitos);
if (pn && pn.isValid && pn.isValid()) {
// return E.164 without '+' to match JID numeric part
return String(pn.number).replace(/^\+/, '');
}
}
} catch (err) {
// fallback to raw digits if parsing fails
}
// Fallback: return the raw extracted digits (no forced country prefix)
if (digitos.length > 0) return digitos;
}
}
return 'desconhecido';
} catch (e) {
this.logger.error('Erro ao extrair nΓΊmero:', e.message);
return 'desconhecido';
}
}
/**
* Extrai texto de mensagem
*/
extractText(message) {
try {
const tipo = getContentType(message.message);
if (!tipo) return '';
const msg = message.message;
switch (tipo) {
case 'conversation':
return msg.conversation || '';
case 'extendedTextMessage':
return msg.extendedTextMessage?.text || '';
case 'imageMessage':
return msg.imageMessage?.caption || '';
case 'videoMessage':
return msg.videoMessage?.caption || '';
case 'audioMessage':
return '[mensagem de voz]';
case 'stickerMessage':
return '[figurinha]';
case 'documentMessage':
return msg.documentMessage?.caption || '[documento]';
default:
return '';
}
} catch (e) {
return '';
}
}
/**
* Detecta tipo de conversa (PV ou Grupo)
*/
getConversationType(message) {
const remoteJid = message.key?.remoteJid || '';
return String(remoteJid).endsWith('@g.us') ? 'grupo' : 'pv';
}
/**
* Extrai informaΓ§Γ΅es de reply
*/
extractReplyInfo(message) {
try {
const context = message.message?.extendedTextMessage?.contextInfo;
if (!context || !context.quotedMessage) return null;
const quoted = context.quotedMessage;
const tipo = getContentType(quoted);
// Extrai texto da mensagem citada
let textoMensagemCitada = '';
let tipoMidia = 'texto';
if (tipo === 'conversation') {
textoMensagemCitada = quoted.conversation || '';
tipoMidia = 'texto';
} else if (tipo === 'extendedTextMessage') {
textoMensagemCitada = quoted.extendedTextMessage?.text || '';
tipoMidia = 'texto';
} else if (tipo === 'imageMessage') {
textoMensagemCitada = quoted.imageMessage?.caption || '[imagem]';
tipoMidia = 'imagem';
} else if (tipo === 'videoMessage') {
textoMensagemCitada = quoted.videoMessage?.caption || '[vΓdeo]';
tipoMidia = 'video';
} else if (tipo === 'audioMessage') {
textoMensagemCitada = '[Γ‘udio]';
tipoMidia = 'audio';
} else if (tipo === 'stickerMessage') {
textoMensagemCitada = '[figurinha]';
tipoMidia = 'sticker';
} else {
textoMensagemCitada = '[conteΓΊdo]';
tipoMidia = 'outro';
}
const participantJidCitado = context.participant || null;
return {
textoMensagemCitada,
tipoMidia,
participantJidCitado,
ehRespostaAoBot: this.isReplyToBot(participantJidCitado),
quemEscreveuCitacao: this.extractUserNumber({ key: { participant: participantJidCitado } })
};
} catch (e) {
this.logger.error('Erro ao extrair reply info:', e.message);
return null;
}
}
/**
* Verifica se Γ© reply ao bot
*/
isReplyToBot(jid) {
if (!jid) return false;
const jidStr = String(jid).toLowerCase();
const jidNumero = jidStr.split('@')[0].split(':')[0];
const botNumero = String(this.config.BOT_NUMERO_REAL).toLowerCase();
return jidNumero === botNumero || jidStr.includes(botNumero);
}
/**
* Detecta se tem Γ‘udio
*/
hasAudio(message) {
try {
const tipo = getContentType(message.message);
return tipo === 'audioMessage';
} catch (e) {
return false;
}
}
/**
* Detecta tipo de mΓdia
*/
getMediaType(message) {
try {
const tipo = getContentType(message.message);
const mimeMap = {
'imageMessage': 'imagem',
'videoMessage': 'video',
'audioMessage': 'audio',
'stickerMessage': 'sticker',
'documentMessage': 'documento'
};
return mimeMap[tipo] || 'texto';
} catch (e) {
return 'texto';
}
}
/**
* Verifica se Γ© menΓ§Γ£o do bot
*/
isBotMentioned(message) {
try {
const mentions = message.message?.extendedTextMessage?.contextInfo?.mentionedJid || [];
return mentions.some(jid => this.isReplyToBot(jid));
} catch (e) {
return false;
}
}
/**
* Extrai menΓ§Γ΅es
*/
extractMentions(message) {
try {
return message.message?.extendedTextMessage?.contextInfo?.mentionedJid || [];
} catch (e) {
return [];
}
}
/**
* Verifica se Γ© comando
*/
isCommand(text) {
if (!text) return false;
return text.trim().startsWith(this.config.PREFIXO);
}
/**
* Parseia comando
*/
parseCommand(text) {
if (!this.isCommand(text)) return null;
const args = text.slice(this.config.PREFIXO.length).trim().split(/ +/);
const comando = args.shift().toLowerCase();
return {
comando,
args,
textoCompleto: args.join(' ')
};
}
/**
* Valida taxa de requisiΓ§Γ΅es
*/
checkRateLimit(userId, windowSeconds = null, maxCalls = null) {
const window = windowSeconds || this.config.RATE_LIMIT_WINDOW;
const max = maxCalls || this.config.RATE_LIMIT_MAX_CALLS;
if (!this.rateLimitMap) {
this.rateLimitMap = new Map();
}
const now = Date.now();
const rec = this.rateLimitMap.get(userId) || [];
const filtered = rec.filter(t => (now - t) < window * 1000);
if (filtered.length >= max) {
return false;
}
filtered.push(now);
this.rateLimitMap.set(userId, filtered);
return true;
}
/**
* Sanitiza texto para seguranΓ§a
*/
sanitizeText(text, maxLength = 2000) {
if (!text) return '';
let sanitized = String(text)
.trim()
.substring(0, maxLength);
// Remove caracteres de controle perigosos
sanitized = sanitized.replace(/[\x00-\x08\x0B\x0C\x0E-\x1F\x7F]/g, '');
return sanitized;
}
/**
* Limpa cache
*/
clearCache() {
if (this.rateLimitMap) {
this.rateLimitMap.clear();
}
this.logger.info('πΎ Cache de processamento limpo');
}
/**
* Retorna estatΓsticas
*/
getStats() {
return {
rateLimitEntries: this.rateLimitMap?.size || 0,
prefixo: this.config.PREFIXO
};
}
}
module.exports = MessageProcessor;
|