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
51 lines
2.4 KiB
JavaScript
51 lines
2.4 KiB
JavaScript
import { cli, Strategy } from '@jackwener/opencli/registry';
|
|
import { CliError } from '@jackwener/opencli/errors';
|
|
import { getActiveGroupId, browserJsonRequest, ensureZsxqAuth, ensureZsxqPage, fetchFirstJson, getCommentsFromResponse, getTopicFromResponse, getTopicUrl, summarizeComments, toTopicRow, } from './utils.js';
|
|
cli({
|
|
site: 'zsxq',
|
|
name: 'topic',
|
|
access: 'read',
|
|
description: '获取单个话题详情和评论',
|
|
domain: 'wx.zsxq.com',
|
|
strategy: Strategy.COOKIE,
|
|
browser: true,
|
|
args: [
|
|
{ name: 'id', required: true, positional: true, help: 'Topic ID' },
|
|
{ name: 'group_id', help: 'Group ID (optional; defaults to active group in Chrome)' },
|
|
{ name: 'comment_limit', type: 'int', default: 20, help: 'Number of comments to fetch' },
|
|
],
|
|
columns: ['topic_id', 'type', 'author', 'title', 'comments', 'likes', 'comment_preview', 'url'],
|
|
func: async (page, kwargs) => {
|
|
await ensureZsxqPage(page);
|
|
await ensureZsxqAuth(page);
|
|
const topicId = String(kwargs.id);
|
|
const groupId = String(kwargs.group_id || await getActiveGroupId(page));
|
|
const commentLimit = Math.max(1, Number(kwargs.comment_limit) || 20);
|
|
const detailUrl = `https://api.zsxq.com/v2/groups/${groupId}/topics/${topicId}`;
|
|
const detailResp = await browserJsonRequest(page, detailUrl);
|
|
if (detailResp.status === 404) {
|
|
throw new CliError('NOT_FOUND', `Topic ${topicId} not found`);
|
|
}
|
|
if (!detailResp.ok) {
|
|
throw new CliError('FETCH_ERROR', detailResp.error || `Failed to fetch topic ${topicId}`, `Checked endpoint: ${detailUrl}`);
|
|
}
|
|
const commentsResp = await fetchFirstJson(page, [
|
|
`https://api.zsxq.com/v2/groups/${groupId}/topics/${topicId}/comments?sort=asc&count=${commentLimit}`,
|
|
]);
|
|
const topic = getTopicFromResponse(detailResp.data);
|
|
if (!topic)
|
|
throw new CliError('NOT_FOUND', `Topic ${topicId} not found`);
|
|
const comments = getCommentsFromResponse(commentsResp.data);
|
|
const row = toTopicRow({
|
|
...topic,
|
|
comments,
|
|
comments_count: topic.comments_count ?? comments.length,
|
|
});
|
|
return [{
|
|
...row,
|
|
comment_preview: summarizeComments(comments, 5),
|
|
url: getTopicUrl(topic.topic_id ?? topicId),
|
|
}];
|
|
},
|
|
});
|