Spaces:
Running
Running
File size: 17,765 Bytes
771af3a 6789255 771af3a 6789255 771af3a 9d58301 771af3a 6789255 771af3a 6789255 771af3a 6789255 771af3a 6789255 771af3a 6789255 771af3a 9d58301 6789255 771af3a 6789255 771af3a 6789255 771af3a 6789255 771af3a 6789255 771af3a 6789255 9d58301 6789255 9d58301 771af3a 9d58301 771af3a 6789255 9d58301 6789255 9d58301 6789255 9d58301 6789255 9d58301 6789255 9d58301 6789255 9d58301 6789255 9d58301 6789255 9d58301 6789255 771af3a 6789255 9d58301 6789255 9d58301 6789255 9d58301 6789255 9d58301 6789255 9d58301 6789255 9d58301 6789255 9d58301 6789255 9d58301 6789255 9d58301 6789255 9d58301 6789255 9d58301 6789255 9d58301 6789255 9d58301 6789255 9d58301 6789255 9d58301 771af3a 12ea892 6789255 9d58301 12ea892 771af3a 6789255 9d58301 12ea892 771af3a 9d58301 6789255 9d58301 6789255 9d58301 6789255 9d58301 771af3a 6789255 771af3a 6789255 771af3a 9d58301 771af3a 9d58301 771af3a 9d58301 771af3a 9d58301 6789255 771af3a 9d58301 771af3a 6789255 771af3a 9d58301 6789255 771af3a 9d58301 6789255 771af3a 9d58301 771af3a 6789255 771af3a 9d58301 771af3a 6789255 9d58301 771af3a 6789255 771af3a 6789255 12ea892 6789255 12ea892 9d58301 771af3a 12ea892 9d58301 12ea892 771af3a 6789255 771af3a 9d58301 771af3a 9d58301 771af3a 9d58301 771af3a 9d58301 771af3a 9d58301 771af3a 12ea892 771af3a 6789255 771af3a 6789255 771af3a 6789255 771af3a 9d58301 6789255 771af3a 6789255 9d58301 771af3a 9d58301 771af3a 9d58301 771af3a 6789255 | 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 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 | /**
* bot.js β Word Grid Solver Bot (pure GramJS MTProto, zero Bot API HTTP calls)
*
* Download strategy (MTProto only, two attempts):
* 1. Re-fetch message via client.getMessages() β fresh fileReference
* β downloadFileV2 with explicit InputPhotoFileLocation + correct dcId
* 2. client.downloadMedia() on the re-fetched message (GramJS full flow)
*
* Both private chats and groups are handled identically β GramJS resolves
* the entity and handles DC auth export automatically.
*
* Required env vars:
* BOT_TOKEN β Telegram bot token (from @BotFather)
* API_ID β Telegram API ID (from https://my.telegram.org/apps)
* API_HASH β Telegram API hash (from https://my.telegram.org/apps)
*
* Optional:
* PORT β HTTP dashboard port (default 7860)
*/
'use strict';
require('dotenv').config();
const { TelegramClient } = require('telegram');
const { StringSession } = require('telegram/sessions');
const { NewMessage } = require('telegram/events');
const { Api } = require('telegram');
const bigInt = require('big-integer');
const express = require('express');
const fs = require('fs');
const path = require('path');
const { extractGrid } = require('./ocr');
const { solve } = require('./solver');
// βββ downloadFileV2 from GramJS internals βββββββββββββββββββββββββββββββββββββ
const { downloadFileV2 } = require('./node_modules/telegram/client/downloads');
// βββ Environment ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
const BOT_TOKEN = process.env.BOT_TOKEN;
const API_ID = parseInt(process.env.API_ID || '0', 10);
const API_HASH = process.env.API_HASH || '';
if (!BOT_TOKEN) { console.error('[FATAL] BOT_TOKEN is required.'); process.exit(1); }
if (!API_ID || !API_HASH) {
console.error('[FATAL] API_ID and API_HASH are required (https://my.telegram.org/apps)');
process.exit(1);
}
// βββ Dictionary βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
const dictionaryPath = path.join(__dirname, 'node_modules/check-word/words/en.txt');
const dictionary = new Set();
try {
const data = fs.readFileSync(dictionaryPath, 'utf8');
for (const line of data.split('\n')) {
const w = line.trim().toLowerCase();
if (w.length >= 3) dictionary.add(w);
}
console.log(`[Dict] Loaded ${dictionary.size} words.`);
} catch (err) {
console.error('[Dict] Failed to load dictionary:', err.message);
}
function isWord(w) { return dictionary.has((w || '').toLowerCase()); }
// βββ Stats ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
const stats = {
imagesProcessed: 0,
wordsFound: 0,
startTime: Date.now(),
botUsername: 'loading...',
};
// βββ Utilities ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
const sleep = ms => new Promise(r => setTimeout(r, ms));
async function deleteFile(p) {
for (let i = 0; i < 5; i++) {
try { if (fs.existsSync(p)) fs.unlinkSync(p); return; } catch (_) { await sleep(500); }
}
}
// βββ Photo size picker ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
/**
* Return the best (largest, non-stripped, non-progressive, non-empty) photo size.
* Telegram quality tiers: w > y > d > x > c > m > b > a > s
*/
function pickBestSize(sizes) {
if (!sizes || sizes.length === 0) return null;
for (const t of ['w', 'y', 'd', 'x', 'c', 'm', 'b', 'a', 's']) {
const s = sizes.find(sz =>
sz.type === t &&
!(sz instanceof Api.PhotoStrippedSize) &&
!(sz instanceof Api.PhotoSizeEmpty) &&
!(sz instanceof Api.PhotoSizeProgressive)
);
if (s) return s;
}
return sizes.find(sz =>
!(sz instanceof Api.PhotoStrippedSize) &&
!(sz instanceof Api.PhotoSizeEmpty)
) || null;
}
// βββ MTProto image download βββββββββββββββββββββββββββββββββββββββββββββββββββ
/**
* Get the entity for a peer β works for PeerUser, PeerChat, PeerChannel.
* GramJS handles all three cases when you pass the peerId directly.
*/
async function getEntitySafe(client, peerId) {
try {
return await client.getEntity(peerId);
} catch (e) {
// Last resort: use the peer object directly (works for most cases)
console.warn(`[DL] getEntity failed (${e.message}), using peerId directly`);
return peerId;
}
}
/**
* Re-fetch the message to get a fresh fileReference, then download via
* GramJS downloadFileV2 with an explicit InputPhotoFileLocation.
*
* This avoids two bugs:
* a) Stale fileReference in the event message β AUTH_BYTES_INVALID
* b) downloadMedia picking PhotoStrippedSize β 0-byte file
*/
async function downloadViaMTProto(client, originalMsg, destPath) {
console.log('[DL-1] Re-fetching message for fresh fileReference...');
const entity = await getEntitySafe(client, originalMsg.peerId);
// Re-fetch to get fresh fileReference
const msgs = await client.getMessages(entity, { ids: [originalMsg.id] });
const freshMsg = msgs && msgs[0];
if (!freshMsg || !freshMsg.media) {
throw new Error('Re-fetched message has no media');
}
const photo = freshMsg.media.photo;
if (!photo || photo instanceof Api.PhotoEmpty) {
throw new Error('Re-fetched message has no valid photo');
}
const size = pickBestSize(photo.sizes);
if (!size) throw new Error('Photo has no usable size');
console.log(`[DL-1] Downloading: type=${size.type} dcId=${photo.dcId}`);
const location = new Api.InputPhotoFileLocation({
id: photo.id,
accessHash: photo.accessHash,
fileReference: photo.fileReference,
thumbSize: size.type,
});
const fileSizeBi = 'size' in size ? bigInt(size.size) : bigInt(512 * 1024);
await downloadFileV2(client, location, {
outputFile: destPath,
fileSize: fileSizeBi,
dcId: photo.dcId,
});
const bytes = fs.existsSync(destPath) ? fs.statSync(destPath).size : 0;
if (bytes === 0) throw new Error('downloadFileV2 produced 0 bytes');
console.log(`[DL-1] Success: ${bytes} bytes`);
}
/**
* Fallback: use client.downloadMedia() on the re-fetched message.
* GramJS handles DC export auth internally.
*/
async function downloadViaDownloadMedia(client, originalMsg, destPath) {
console.log('[DL-2] Trying client.downloadMedia() on re-fetched message...');
const entity = await getEntitySafe(client, originalMsg.peerId);
const msgs = await client.getMessages(entity, { ids: [originalMsg.id] });
const freshMsg = msgs && msgs[0];
if (!freshMsg || !freshMsg.media) {
throw new Error('Re-fetched message has no media');
}
const result = await client.downloadMedia(freshMsg, { outputFile: destPath });
const bytes = fs.existsSync(destPath) ? fs.statSync(destPath).size : 0;
if (bytes === 0) throw new Error('downloadMedia produced 0 bytes');
console.log(`[DL-2] Success: ${bytes} bytes`);
}
/**
* Master download: try downloadFileV2 first, fall back to downloadMedia.
* Both are pure MTProto β no HTTP, no Bot API.
*/
async function downloadImage(client, msg, destPath) {
if (!msg.media) throw new Error('Message has no media');
// Attempt 1: downloadFileV2 with explicit location (avoids stripped-size bug)
try {
await downloadViaMTProto(client, msg, destPath);
return;
} catch (e1) {
console.warn(`[DL-1] Failed: ${e1.message}`);
try { fs.unlinkSync(destPath); } catch (_) {}
}
// Attempt 2: GramJS downloadMedia on re-fetched message
try {
await downloadViaDownloadMedia(client, msg, destPath);
return;
} catch (e2) {
console.error(`[DL-2] Failed: ${e2.message}`);
try { fs.unlinkSync(destPath); } catch (_) {}
throw new Error(`All MTProto download attempts failed. Last: ${e2.message}`);
}
}
// βββ Caption helpers ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
/**
* Returns { gridSize: 8|10 } if caption contains a recognised trigger phrase,
* otherwise null (message is silently ignored).
* "WORD GRID CHALLENGE" β 8Γ8
* "HARD MODE CHALLENGE" β 10Γ10
*/
function getChallengeInfo(text) {
const u = text.toUpperCase();
if (u.includes('WORD GRID CHALLENGE')) {
console.log('[Trigger] WORD GRID CHALLENGE β 8Γ8');
return { gridSize: 8 };
}
if (u.includes('HARD MODE CHALLENGE')) {
console.log('[Trigger] HARD MODE CHALLENGE β 10Γ10');
return { gridSize: 10 };
}
return null;
}
/**
* Extract word patterns from caption text β left-to-right, single pass.
* Supports: "M--- (4)", "M----", "W---- H--- (4)", mixed prose.
*/
function parsePatterns(text) {
const results = [], seen = new Set();
const re = /([A-Z])(-+)(?:\s*\(\d+\))?/g;
let m;
while ((m = re.exec(text)) !== null) {
if (m[2].length < 2) continue;
const pattern = (m[1] + m[2]).toUpperCase();
if (!seen.has(pattern)) { seen.add(pattern); results.push({ pattern }); }
}
return results;
}
// βββ Result formatter βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
function formatResults(results, grid, patterns) {
let msg = 'π― <b>WORD GRID RESULTS</b>\n\n';
let foundAny = false;
for (const p of patterns) {
const key = p.pattern || p.word;
if (!key) continue;
const entry = results[key];
if (!entry) {
msg += `β ${key}: not found\n`;
continue;
}
if (Array.isArray(entry)) {
const startChar = key[0].toUpperCase();
const wordMatches = new Set();
for (const hit of entry) {
const raw = hit.match.toUpperCase();
if (isWord(raw)) { wordMatches.add(raw); continue; }
const forced = startChar + raw.slice(1);
if (isWord(forced)) { wordMatches.add(forced); continue; }
console.log(`[Debug] Rejected: ${key} β ${raw}`);
}
if (wordMatches.size > 0) {
msg += `β
${key}: ${[...wordMatches].map(w => `<code>${w}</code>`).join(', ')}\n`;
stats.wordsFound += wordMatches.size;
foundAny = true;
} else {
msg += `β ${key}: no dictionary words found\n`;
}
} else {
msg += `β
<code>${entry.match}</code> @ [${entry.r},${entry.c}] ${entry.dir}\n`;
foundAny = true;
}
}
if (!foundAny) {
msg += 'π No real word matches found.\n';
msg += 'Tip: verify caption patterns match the grid letters.\n';
}
msg += '\nπ <b>Extracted Grid:</b>\n';
msg += '<pre>' + grid.map(row => row.join(' ')).join('\n') + '</pre>';
return msg;
}
// βββ GramJS Bot βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
async function startBot() {
const session = new StringSession('');
const client = new TelegramClient(session, API_ID, API_HASH, {
connectionRetries: 10,
retryDelay: 2000,
autoReconnect: true,
useWSS: false,
});
console.log('[GramJS] Connecting via MTProto...');
await client.start({ botAuthToken: BOT_TOKEN });
console.log('[GramJS] Connected.');
const me = await client.getMe();
stats.botUsername = me.username || 'bot';
console.log(`[Bot] Running as @${stats.botUsername}`);
// ββ Message handler ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
client.addEventHandler(async (event) => {
const msg = event.message;
if (!msg) return;
const chatId = msg.peerId;
const caption = (msg.message || '').trim();
// /start command
if (caption === '/start' || caption.startsWith('/start ')) {
await client.sendMessage(chatId, {
message: [
'π <b>Word Grid Solver Bot</b>',
'',
'Send a word grid image with the challenge caption and word patterns.',
'',
'<b>Triggers (case-insensitive):</b>',
'β’ <code>WORD GRID CHALLENGE</code> β solves 8Γ8 grid',
'β’ <code>HARD MODE CHALLENGE</code> β solves 10Γ10 grid',
'',
'<b>Example caption:</b>',
'<code>WORD GRID CHALLENGE\nM--- (4) P------- (8) C----- (6)</code>',
'',
'The bot only processes images with these exact trigger phrases.',
].join('\n'),
parseMode: 'html',
});
return;
}
// ββ Gate: only act on challenge captions βββββββββββββββββββββββββββββββββββ
const challenge = getChallengeInfo(caption);
if (!challenge) return; // silently ignore everything else
// ββ Must carry a photo βββββββββββββββββββββββββββββββββββββββββββββββββββββ
const hasPhoto = msg.media && (
msg.media.className === 'MessageMediaPhoto' ||
(msg.media.document &&
msg.media.document.mimeType &&
msg.media.document.mimeType.startsWith('image/'))
);
if (!hasPhoto) {
await client.sendMessage(chatId, {
message: 'β οΈ Please attach a grid image along with the challenge caption.',
});
return;
}
// ββ Download image βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
const imagePath = path.join(
__dirname,
`grid_${Date.now()}_${Math.random().toString(36).slice(2)}.jpg`
);
try {
await client.sendMessage(chatId, {
message: `π Processing your ${challenge.gridSize}Γ${challenge.gridSize} word grid...`,
});
await downloadImage(client, msg, imagePath);
} catch (dlErr) {
console.error('[Download] Failed:', dlErr.message);
console.error(dlErr.stack);
await client.sendMessage(chatId, {
message: `β Could not download image: ${dlErr.message}`,
});
await deleteFile(imagePath);
return;
}
// ββ OCR + Solve ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
try {
stats.imagesProcessed++;
const grid = await extractGrid(imagePath, challenge.gridSize);
if (!grid || grid.length === 0) {
await client.sendMessage(chatId, {
message: 'β Could not read the grid from the image.\nMake sure the letters are clearly visible.',
});
return;
}
const patterns = parsePatterns(caption);
if (patterns.length === 0) {
await client.sendMessage(chatId, {
message:
`π <b>${challenge.gridSize}Γ${challenge.gridSize} grid extracted</b> (no patterns found):\n\n` +
'<pre>' + grid.map(r => r.join(' ')).join('\n') + '</pre>\n\n' +
'Add patterns like <code>M--- (4)</code> to find words!',
parseMode: 'html',
});
return;
}
const results = solve(grid, patterns);
await client.sendMessage(chatId, {
message: formatResults(results, grid, patterns),
parseMode: 'html',
});
} catch (err) {
console.error('[Handler] Error:', err);
await client.sendMessage(chatId, {
message: 'π¨ Processing error. Please try again.',
});
} finally {
await deleteFile(imagePath);
}
}, new NewMessage({}));
console.log('[Bot] Listening for messages...');
const shutdown = async sig => {
console.log(`[Bot] ${sig} β disconnecting...`);
try { await client.disconnect(); } catch (_) {}
process.exit(0);
};
process.once('SIGINT', () => shutdown('SIGINT'));
process.once('SIGTERM', () => shutdown('SIGTERM'));
}
// βββ Express dashboard ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
const app = express();
const PORT = parseInt(process.env.PORT || '7860', 10);
app.use(express.static(path.join(__dirname, 'public')));
app.get('/api/stats', (_req, res) => {
res.json({ ...stats, uptime: Math.floor((Date.now() - stats.startTime) / 1000) });
});
app.listen(PORT, () => console.log(`[Dashboard] Running on port ${PORT}`));
// βββ Boot βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
startBot().catch(err => { console.error('[FATAL]', err); process.exit(1); });
|