9b395f5cc3
E2E Headed Chrome / e2e-headed (macos-15) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (ubuntu-latest) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (windows-latest) (push) Has been cancelled
CI / build (macos-latest) (push) Has been cancelled
CI / build (ubuntu-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
CI / unit-test (push) Has been cancelled
CI / bun-test (push) Has been cancelled
CI / adapter-test (push) Has been cancelled
CI / smoke-test (macos-latest) (push) Has been cancelled
CI / smoke-test (ubuntu-latest) (push) Has been cancelled
Security Audit / audit (push) Has been cancelled
Build Chrome Extension / build (push) Has been cancelled
Trigger Website Rebuild (Docs Updated) / dispatch (push) Has been cancelled
81 lines
3.2 KiB
JavaScript
81 lines
3.2 KiB
JavaScript
/**
|
|
* Weibo search — browser DOM extraction from search results.
|
|
*/
|
|
import { cli, Strategy } from '@jackwener/opencli/registry';
|
|
import { CliError } from '@jackwener/opencli/errors';
|
|
import { requireArrayEvaluateResult, unwrapEvaluateResult } from './utils.js';
|
|
cli({
|
|
site: 'weibo',
|
|
name: 'search',
|
|
access: 'read',
|
|
description: '搜索微博',
|
|
domain: 'weibo.com',
|
|
browser: true,
|
|
strategy: Strategy.COOKIE,
|
|
args: [
|
|
{ name: 'keyword', required: true, positional: true, help: 'Search keyword' },
|
|
{ name: 'limit', type: 'int', default: 10, help: 'Number of results (max 50)' },
|
|
],
|
|
columns: ['rank', 'id', 'title', 'author', 'time', 'url'],
|
|
func: async (page, kwargs) => {
|
|
const limit = Math.max(1, Math.min(Number(kwargs.limit) || 10, 50));
|
|
const keyword = encodeURIComponent(String(kwargs.keyword ?? '').trim());
|
|
await page.goto(`https://s.weibo.com/weibo?q=${keyword}`);
|
|
await page.wait(2);
|
|
const data = requireArrayEvaluateResult(unwrapEvaluateResult(await page.evaluate(`
|
|
(() => {
|
|
const clean = (value) => (value || '').replace(/\\s+/g, ' ').trim();
|
|
const absoluteUrl = (href) => {
|
|
if (!href) return '';
|
|
if (href.startsWith('http://') || href.startsWith('https://')) return href;
|
|
if (href.startsWith('//')) return window.location.protocol + href;
|
|
if (href.startsWith('/')) return window.location.origin + href;
|
|
return href;
|
|
};
|
|
|
|
const cards = Array.from(document.querySelectorAll('.card-wrap'));
|
|
const rows = [];
|
|
|
|
for (const card of cards) {
|
|
const contentEl =
|
|
card.querySelector('[node-type="feed_list_content_full"]') ||
|
|
card.querySelector('[node-type="feed_list_content"]') ||
|
|
card.querySelector('.txt');
|
|
const authorEl =
|
|
card.querySelector('.info .name') ||
|
|
card.querySelector('.name');
|
|
const timeEl = card.querySelector('.from a');
|
|
const urlEl =
|
|
card.querySelector('.from a[href*="/detail/"]') ||
|
|
card.querySelector('.from a[href*="/status/"]') ||
|
|
timeEl;
|
|
const url = absoluteUrl(urlEl && urlEl.getAttribute('href'));
|
|
const idMatch =
|
|
url.match(/^https?:\\/\\/(?:www\\.)?weibo\\.com\\/\\d+\\/([A-Za-z0-9]+)(?:[?#/]|$)/) ||
|
|
url.match(/^https?:\\/\\/(?:www\\.)?weibo\\.com\\/(?:detail|status)\\/([A-Za-z0-9]+)(?:[?#/]|$)/);
|
|
|
|
const title = clean(contentEl && contentEl.textContent);
|
|
if (!title) continue;
|
|
|
|
rows.push({
|
|
id: idMatch ? idMatch[1] : '',
|
|
title,
|
|
author: clean(authorEl && authorEl.textContent),
|
|
time: clean(timeEl && timeEl.textContent),
|
|
url,
|
|
});
|
|
}
|
|
|
|
return rows;
|
|
})()
|
|
`)), 'weibo search');
|
|
if (data.length === 0) {
|
|
throw new CliError('NOT_FOUND', 'No Weibo search results found', 'Try a different keyword or ensure you are logged into weibo.com');
|
|
}
|
|
return data.slice(0, limit).map((item, index) => ({
|
|
rank: index + 1,
|
|
...item,
|
|
}));
|
|
},
|
|
});
|