// Browser action core. Prefers the on-screen Chrome (CDP at CDP_PORT, default // 9222) so the action is visible on the Go-Live broadcast, and prints a JSON // result on stdout for the Python `browseAndSearch` tool to wrap. // // node browse-search.mjs "" [search|youtube] // // - search : Google-search the query, return the top organic results. // - youtube : search YouTube and play the first result. // // Backend selection for `search`: // 1. The broadcast Chrome over CDP (visible on the Go-Live stream). // 2. Else, if CHROME_USER_DATA_DIR is set, a persistent Chrome using that // profile dir. Logging that dedicated profile into Google once lets Google // treat later searches as a returning signed-in user, which avoids the // bot-detection interstitial that blocks a fresh anonymous session. // 3. Else a fresh ephemeral headless Chrome (works only where Google does not // challenge the session, e.g. a non-flagged residential IP). // `youtube` only makes sense on the visible broadcast Chrome, so it never uses // the headless/persistent fallback. import { chromium } from 'playwright'; const CDP = process.env.CDP_PORT || '9222'; // Use 127.0.0.1, not "localhost": in containers localhost can resolve to IPv6 // (::1) first while Chrome's CDP listens on IPv4, giving ECONNREFUSED ::1. const CDP_HOST = process.env.CDP_HOST || '127.0.0.1'; const USER_DATA_DIR = process.env.CHROME_USER_DATA_DIR || ''; const UA = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 ' + '(KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36'; const query = process.argv[2] || ''; const mode = (process.argv[3] || 'search').toLowerCase(); const out = (o) => { process.stdout.write(JSON.stringify(o)); }; if (!query) { out({ ok: false, error: 'no query' }); process.exit(1); } let connected; // CDP Browser (the broadcast Chrome — never kill it) let launchedBrowser; // ephemeral headless Browser we launched let persistent; // persistent BrowserContext we launched let launched = false; let page; // Try system Chrome (channel:'chrome') first so no extra Playwright browser // download is needed; fall back to Playwright's bundled chromium. async function tryLaunch(launchFn) { let err; for (const opts of [{ headless: true, channel: 'chrome' }, { headless: true }]) { try { return await launchFn(opts); } catch (e) { err = e; } } throw err; } async function acquirePage() { // 1. Broadcast Chrome over CDP. try { connected = await chromium.connectOverCDP(`http://${CDP_HOST}:${CDP}`); const ctx = connected.contexts()[0]; page = ctx.pages()[0] || (await ctx.newPage()); return; } catch (e) { if (mode === 'youtube') throw e; // youtube needs the visible broadcast Chrome } // 2. Persistent profile (signed-in) when configured. if (USER_DATA_DIR) { persistent = await tryLaunch((opts) => chromium.launchPersistentContext(USER_DATA_DIR, { ...opts, locale: 'ko-KR', userAgent: UA }), ); launched = true; page = persistent.pages()[0] || (await persistent.newPage()); return; } // 3. Ephemeral headless. launchedBrowser = await tryLaunch((opts) => chromium.launch(opts)); launched = true; const ctx = await launchedBrowser.newContext({ locale: 'ko-KR', userAgent: UA }); page = await ctx.newPage(); } async function closeAll() { try { await persistent?.close(); } catch { /* ignore */ } try { await launchedBrowser?.close(); } catch { /* ignore */ } try { await connected?.close(); } catch { /* ignore */ } } try { await acquirePage(); page.setDefaultTimeout(20000); await page.bringToFront().catch(() => {}); if (mode === 'youtube') { await page.goto(`https://www.youtube.com/results?search_query=${encodeURIComponent(query)}`, { waitUntil: 'domcontentloaded' }); await page.waitForSelector('ytd-video-renderer a#video-title, a#video-title', { timeout: 20000 }); const first = page.locator('ytd-video-renderer a#video-title, a#video-title').first(); const title = (await first.getAttribute('title').catch(() => '')) || (await first.innerText().catch(() => '')); await first.click(); await page.waitForSelector('#movie_player', { timeout: 20000 }); await page.evaluate(() => { const v = document.querySelector('video'); if (v && v.paused) v.play(); }); out({ ok: true, mode, title: (title || '').trim(), url: page.url() }); } else { await page.goto(`https://www.google.com/search?q=${encodeURIComponent(query)}&hl=ko`, { waitUntil: 'domcontentloaded' }); await page.waitForTimeout(1500); // Google serves its bot-detection interstitial (/sorry/index) to sessions it // suspects are automated. Detect it structurally (by URL, locale-independent) // and fail fast so the Python caller fail-opens to the DDG cascade instead of // treating an empty challenge page as "no results". if (page.url().includes('/sorry/')) { await closeAll(); out({ ok: false, error: 'google-bot-challenge', headless: launched }); process.exit(1); } const results = await page.evaluate(() => { const seen = new Set(); const items = []; for (const h of Array.from(document.querySelectorAll('a h3'))) { const a = h.closest('a'); const url = a?.href || ''; if (!url || seen.has(url) || url.includes('google.com')) continue; const block = h.closest('div[data-hveid], div.g') || a.parentElement; let snippet = ''; const sn = block?.querySelector('div[data-sncf], div[style*="webkit-line-clamp"], .VwiC3b'); snippet = (sn?.innerText || '').trim(); seen.add(url); items.push({ title: h.innerText.trim(), url, snippet }); if (items.length >= 6) break; } return items; }); out({ ok: true, mode, query, count: results.length, results, headless: launched }); } await closeAll(); } catch (e) { await closeAll(); out({ ok: false, error: String(e?.message || e) }); process.exit(1); }