import { parsePaginationFlags } from '../cli/pagination.js'; import { mentionsQueryFromUserOption, normalizeHandle } from '../lib/normalize-handle.js'; import { TwitterClient } from '../lib/twitter-client.js'; export function registerSearchCommands(program, ctx) { program .command('search') .description('Search for tweets') .argument('', 'Search query (e.g., "@clawdbot" or "from:clawdbot")') .option('-n, --count ', 'Number of tweets to fetch', '10') .option('--all', 'Fetch all search results (paged)') .option('--max-pages ', 'Stop after N pages when using --all') .option('--cursor ', 'Resume pagination from a cursor') .option('--json', 'Output as JSON') .option('--json-full', 'Output as JSON with full raw API response in _raw field') .action(async (query, cmdOpts) => { const opts = program.opts(); const timeoutMs = ctx.resolveTimeoutFromOptions(opts); const quoteDepth = ctx.resolveQuoteDepthFromOptions(opts); const count = Number.parseInt(cmdOpts.count || '10', 10); const pagination = parsePaginationFlags(cmdOpts); if (!pagination.ok) { console.error(`${ctx.p('err')}${pagination.error}`); process.exit(1); } const maxPages = pagination.maxPages; const { cookies, warnings } = await ctx.resolveCredentialsFromOptions(opts); for (const warning of warnings) { console.error(`${ctx.p('warn')}${warning}`); } if (!cookies.authToken || !cookies.ct0) { console.error(`${ctx.p('err')}Missing required credentials`); process.exit(1); } const usePagination = pagination.usePagination; if (maxPages !== undefined && !usePagination) { console.error(`${ctx.p('err')}--max-pages requires --all or --cursor.`); process.exit(1); } if (!usePagination && (!Number.isFinite(count) || count <= 0)) { console.error(`${ctx.p('err')}Invalid --count. Expected a positive integer.`); process.exit(1); } const client = new TwitterClient({ cookies, timeoutMs, quoteDepth }); const includeRaw = cmdOpts.jsonFull ?? false; const searchOptions = { includeRaw }; const paginationOptions = { includeRaw, maxPages, cursor: pagination.cursor }; const result = usePagination ? await client.getAllSearchResults(query, paginationOptions) : await client.search(query, count, searchOptions); if (result.success) { const isJson = Boolean(cmdOpts.json || cmdOpts.jsonFull); ctx.printTweetsResult(result, { json: isJson, usePagination: Boolean(usePagination), emptyMessage: 'No tweets found.', }); } else { console.error(`${ctx.p('err')}Search failed: ${result.error}`); process.exit(1); } }); program .command('mentions') .description('Find tweets mentioning a user (defaults to current user)') .option('-u, --user ', 'User handle (e.g. @steipete)') .option('-n, --count ', 'Number of tweets to fetch', '10') .option('--json', 'Output as JSON') .option('--json-full', 'Output as JSON with full raw API response in _raw field') .action(async (cmdOpts) => { const opts = program.opts(); const timeoutMs = ctx.resolveTimeoutFromOptions(opts); const quoteDepth = ctx.resolveQuoteDepthFromOptions(opts); const count = Number.parseInt(cmdOpts.count || '10', 10); const fromUserOpt = mentionsQueryFromUserOption(cmdOpts.user); if (fromUserOpt.error) { console.error(`${ctx.p('err')}${fromUserOpt.error}`); process.exit(2); } let query = fromUserOpt.query; const { cookies, warnings } = await ctx.resolveCredentialsFromOptions(opts); for (const warning of warnings) { console.error(`${ctx.p('warn')}${warning}`); } if (!cookies.authToken || !cookies.ct0) { console.error(`${ctx.p('err')}Missing required credentials`); process.exit(1); } const client = new TwitterClient({ cookies, timeoutMs, quoteDepth }); if (!query) { const who = await client.getCurrentUser(); const handle = normalizeHandle(who.user?.username); if (handle) { query = `@${handle}`; } else { console.error(`${ctx.p('err')}Could not determine current user (${who.error ?? 'Unknown error'}). Use --user .`); process.exit(1); } } const includeRaw = cmdOpts.jsonFull ?? false; const result = await client.search(query, count, { includeRaw }); if (result.success) { ctx.printTweets(result.tweets, { json: cmdOpts.json || cmdOpts.jsonFull, emptyMessage: 'No mentions found.', }); } else { console.error(`${ctx.p('err')}Failed to fetch mentions: ${result.error}`); process.exit(1); } }); } //# sourceMappingURL=search.js.map