247 lines
8.4 KiB
TypeScript
247 lines
8.4 KiB
TypeScript
import { spawn } from 'node:child_process';
|
|
import { mkdir } from 'node:fs/promises';
|
|
import process from 'node:process';
|
|
import {
|
|
CHROME_CANDIDATES_FULL,
|
|
CdpConnection,
|
|
findChromeExecutable,
|
|
getDefaultProfileDir,
|
|
getFreePort,
|
|
sleep,
|
|
waitForChromeDebugPort,
|
|
} from './x-utils.js';
|
|
|
|
function extractTweetUrl(urlOrId: string): string | null {
|
|
// If it's already a full URL, normalize it
|
|
if (urlOrId.match(/(?:x\.com|twitter\.com)\/\w+\/status\/\d+/)) {
|
|
return urlOrId.replace(/twitter\.com/, 'x.com').split('?')[0];
|
|
}
|
|
return null;
|
|
}
|
|
|
|
interface QuoteOptions {
|
|
tweetUrl: string;
|
|
comment?: string;
|
|
submit?: boolean;
|
|
timeoutMs?: number;
|
|
profileDir?: string;
|
|
chromePath?: string;
|
|
}
|
|
|
|
export async function quotePost(options: QuoteOptions): Promise<void> {
|
|
const { tweetUrl, comment, submit = false, timeoutMs = 120_000, profileDir = getDefaultProfileDir() } = options;
|
|
|
|
const chromePath = options.chromePath ?? findChromeExecutable(CHROME_CANDIDATES_FULL);
|
|
if (!chromePath) throw new Error('Chrome not found. Set X_BROWSER_CHROME_PATH env var.');
|
|
|
|
await mkdir(profileDir, { recursive: true });
|
|
|
|
const port = await getFreePort();
|
|
console.log(`[x-quote] Launching Chrome (profile: ${profileDir})`);
|
|
console.log(`[x-quote] Opening tweet: ${tweetUrl}`);
|
|
|
|
const chrome = spawn(chromePath, [
|
|
`--remote-debugging-port=${port}`,
|
|
`--user-data-dir=${profileDir}`,
|
|
'--no-first-run',
|
|
'--no-default-browser-check',
|
|
'--start-maximized',
|
|
tweetUrl,
|
|
], { stdio: 'ignore' });
|
|
|
|
let cdp: CdpConnection | null = null;
|
|
|
|
try {
|
|
const wsUrl = await waitForChromeDebugPort(port, 30_000, { includeLastError: true });
|
|
cdp = await CdpConnection.connect(wsUrl, 30_000, { defaultTimeoutMs: 15_000 });
|
|
|
|
const targets = await cdp.send<{ targetInfos: Array<{ targetId: string; url: string; type: string }> }>('Target.getTargets');
|
|
let pageTarget = targets.targetInfos.find((t) => t.type === 'page' && t.url.includes('x.com'));
|
|
|
|
if (!pageTarget) {
|
|
const { targetId } = await cdp.send<{ targetId: string }>('Target.createTarget', { url: tweetUrl });
|
|
pageTarget = { targetId, url: tweetUrl, type: 'page' };
|
|
}
|
|
|
|
const { sessionId } = await cdp.send<{ sessionId: string }>('Target.attachToTarget', { targetId: pageTarget.targetId, flatten: true });
|
|
|
|
await cdp.send('Page.enable', {}, { sessionId });
|
|
await cdp.send('Runtime.enable', {}, { sessionId });
|
|
|
|
console.log('[x-quote] Waiting for tweet to load...');
|
|
await sleep(3000);
|
|
|
|
// Wait for retweet button to appear (indicates tweet loaded and user logged in)
|
|
const waitForRetweetButton = async (): Promise<boolean> => {
|
|
const start = Date.now();
|
|
while (Date.now() - start < timeoutMs) {
|
|
const result = await cdp!.send<{ result: { value: boolean } }>('Runtime.evaluate', {
|
|
expression: `!!document.querySelector('[data-testid="retweet"]')`,
|
|
returnByValue: true,
|
|
}, { sessionId });
|
|
if (result.result.value) return true;
|
|
await sleep(1000);
|
|
}
|
|
return false;
|
|
};
|
|
|
|
const retweetFound = await waitForRetweetButton();
|
|
if (!retweetFound) {
|
|
console.log('[x-quote] Tweet not found or not logged in. Please log in to X in the browser window.');
|
|
console.log('[x-quote] Waiting for login...');
|
|
const loggedIn = await waitForRetweetButton();
|
|
if (!loggedIn) throw new Error('Timed out waiting for tweet. Please log in first or check the tweet URL.');
|
|
}
|
|
|
|
// Click the retweet button
|
|
console.log('[x-quote] Clicking retweet button...');
|
|
await cdp.send('Runtime.evaluate', {
|
|
expression: `document.querySelector('[data-testid="retweet"]')?.click()`,
|
|
}, { sessionId });
|
|
await sleep(1000);
|
|
|
|
// Wait for and click the "Quote" option in the menu
|
|
console.log('[x-quote] Selecting quote option...');
|
|
const waitForQuoteOption = async (): Promise<boolean> => {
|
|
const start = Date.now();
|
|
while (Date.now() - start < 10_000) {
|
|
const result = await cdp!.send<{ result: { value: boolean } }>('Runtime.evaluate', {
|
|
expression: `!!document.querySelector('[data-testid="Dropdown"] [role="menuitem"]:nth-child(2)')`,
|
|
returnByValue: true,
|
|
}, { sessionId });
|
|
if (result.result.value) return true;
|
|
await sleep(200);
|
|
}
|
|
return false;
|
|
};
|
|
|
|
const quoteOptionFound = await waitForQuoteOption();
|
|
if (!quoteOptionFound) {
|
|
throw new Error('Quote option not found. The menu may not have opened.');
|
|
}
|
|
|
|
// Click the quote option (second menu item)
|
|
await cdp.send('Runtime.evaluate', {
|
|
expression: `document.querySelector('[data-testid="Dropdown"] [role="menuitem"]:nth-child(2)')?.click()`,
|
|
}, { sessionId });
|
|
await sleep(2000);
|
|
|
|
// Wait for the quote compose dialog
|
|
console.log('[x-quote] Waiting for quote compose dialog...');
|
|
const waitForQuoteDialog = async (): Promise<boolean> => {
|
|
const start = Date.now();
|
|
while (Date.now() - start < 10_000) {
|
|
const result = await cdp!.send<{ result: { value: boolean } }>('Runtime.evaluate', {
|
|
expression: `!!document.querySelector('[data-testid="tweetTextarea_0"]')`,
|
|
returnByValue: true,
|
|
}, { sessionId });
|
|
if (result.result.value) return true;
|
|
await sleep(200);
|
|
}
|
|
return false;
|
|
};
|
|
|
|
const dialogFound = await waitForQuoteDialog();
|
|
if (!dialogFound) {
|
|
throw new Error('Quote compose dialog not found.');
|
|
}
|
|
|
|
// Type the comment if provided
|
|
if (comment) {
|
|
console.log('[x-quote] Typing comment...');
|
|
// Use CDP Input.insertText for more reliable text insertion
|
|
await cdp.send('Runtime.evaluate', {
|
|
expression: `document.querySelector('[data-testid="tweetTextarea_0"]')?.focus()`,
|
|
}, { sessionId });
|
|
await sleep(200);
|
|
|
|
await cdp.send('Input.insertText', {
|
|
text: comment,
|
|
}, { sessionId });
|
|
await sleep(500);
|
|
}
|
|
|
|
if (submit) {
|
|
console.log('[x-quote] Submitting quote post...');
|
|
await cdp.send('Runtime.evaluate', {
|
|
expression: `document.querySelector('[data-testid="tweetButton"]')?.click()`,
|
|
}, { sessionId });
|
|
await sleep(2000);
|
|
console.log('[x-quote] Quote post submitted!');
|
|
} else {
|
|
console.log('[x-quote] Quote composed (preview mode). Add --submit to post.');
|
|
console.log('[x-quote] Browser will stay open for 30 seconds for preview...');
|
|
await sleep(30_000);
|
|
}
|
|
} finally {
|
|
if (cdp) {
|
|
try { await cdp.send('Browser.close', {}, { timeoutMs: 5_000 }); } catch {}
|
|
cdp.close();
|
|
}
|
|
|
|
setTimeout(() => {
|
|
if (!chrome.killed) try { chrome.kill('SIGKILL'); } catch {}
|
|
}, 2_000).unref?.();
|
|
try { chrome.kill('SIGTERM'); } catch {}
|
|
}
|
|
}
|
|
|
|
function printUsage(): never {
|
|
console.log(`Quote a tweet on X (Twitter) using real Chrome browser
|
|
|
|
Usage:
|
|
npx -y bun x-quote.ts <tweet-url> [options] [comment]
|
|
|
|
Options:
|
|
--submit Actually post (default: preview only)
|
|
--profile <dir> Chrome profile directory
|
|
--help Show this help
|
|
|
|
Examples:
|
|
npx -y bun x-quote.ts https://x.com/user/status/123456789 "Great insight!"
|
|
npx -y bun x-quote.ts https://x.com/user/status/123456789 "I agree!" --submit
|
|
`);
|
|
process.exit(0);
|
|
}
|
|
|
|
async function main(): Promise<void> {
|
|
const args = process.argv.slice(2);
|
|
if (args.includes('--help') || args.includes('-h')) printUsage();
|
|
|
|
let tweetUrl: string | undefined;
|
|
let submit = false;
|
|
let profileDir: string | undefined;
|
|
const commentParts: string[] = [];
|
|
|
|
for (let i = 0; i < args.length; i++) {
|
|
const arg = args[i]!;
|
|
if (arg === '--submit') {
|
|
submit = true;
|
|
} else if (arg === '--profile' && args[i + 1]) {
|
|
profileDir = args[++i];
|
|
} else if (!arg.startsWith('-')) {
|
|
// First non-option argument is the tweet URL
|
|
if (!tweetUrl && arg.match(/(?:x\.com|twitter\.com)\/\w+\/status\/\d+/)) {
|
|
tweetUrl = extractTweetUrl(arg) ?? undefined;
|
|
} else {
|
|
commentParts.push(arg);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!tweetUrl) {
|
|
console.error('Error: Please provide a tweet URL.');
|
|
console.error('Example: npx -y bun x-quote.ts https://x.com/user/status/123456789 "Your comment"');
|
|
process.exit(1);
|
|
}
|
|
|
|
const comment = commentParts.join(' ').trim() || undefined;
|
|
|
|
await quotePost({ tweetUrl, comment, submit, profileDir });
|
|
}
|
|
|
|
await main().catch((err) => {
|
|
console.error(`Error: ${err instanceof Error ? err.message : String(err)}`);
|
|
process.exit(1);
|
|
});
|