Files
wehub-resource-sync 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
chore: import upstream snapshot with attribution
2026-07-13 12:39:48 +08:00

229 lines
9.8 KiB
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* Xiaohongshu comments — DOM extraction from note detail page.
* XHS API requires signed requests, so we scrape the rendered DOM instead.
*
* Supports both top-level comments and nested replies (楼中楼) via
* the --with-replies flag.
*/
import { cli, Strategy } from '@jackwener/opencli/registry';
import { AuthRequiredError, CliError, EmptyResultError } from '@jackwener/opencli/errors';
import { parseNoteId, buildNoteUrl } from './note-helpers.js';
const XHS_PROFILE_HREF_SELECTOR = '.author-wrapper a[href*="/user/profile/"], a.name[href*="/user/profile/"], a.user-name[href*="/user/profile/"], a[href*="/user/profile/"]';
export function parseXhsProfileHref(href, webHost = 'www.xiaohongshu.com') {
const raw = typeof href === 'string' ? href.trim() : '';
if (!raw)
return '';
const expectedHost = String(webHost || 'www.xiaohongshu.com').toLowerCase();
let parsed;
try {
parsed = new URL(raw, `https://${expectedHost}`);
}
catch {
return '';
}
if (parsed.protocol !== 'https:')
return '';
const host = parsed.hostname.toLowerCase();
if (host !== expectedHost)
return '';
const match = parsed.pathname.match(/^\/user\/profile\/([a-zA-Z0-9]+)\/?$/);
return match?.[1] ?? '';
}
export function buildXhsProfileUrl(href, webHost = 'www.xiaohongshu.com') {
const userId = parseXhsProfileHref(href, webHost);
if (!userId)
return '';
return `https://${webHost}/user/profile/${userId}`;
}
export function parseCommentLimit(raw, fallback = 20) {
const n = Number(raw);
if (!Number.isFinite(n))
return fallback;
return Math.max(1, Math.min(Math.floor(n), 50));
}
export function parseXhsLikeCountText(value) {
const integerRe = /^(?:\d+|\d{1,3}(?:[,]\d{3})+)\+?$/u;
const shortformRe = /^((?:\d+|\d{1,3}(?:[,]\d{3})+)(?:\.\d+)?)([wWkK万千])\+?$/u;
const raw = String(value ?? '').replace(/\s+/g, '');
if (!raw)
return 0;
if (integerRe.test(raw))
return Number(raw.replace(/[,+]/g, ''));
const short = raw.match(shortformRe);
if (!short)
return 0;
const numeric = Number(short[1].replace(/[,]/g, ''));
if (!Number.isFinite(numeric))
return 0;
const unit = short[2].toLowerCase();
const multiplier = unit === 'w' || unit === '万' ? 10000 : 1000;
return Math.round(numeric * multiplier);
}
/**
* Host-agnostic IIFE that scrolls a note's comment list and extracts
* top-level comments (and optionally nested 楼中楼 replies). Exported so
* the rednote adapter can reuse the exact same selector chain.
*/
export function buildCommentsExtractJs(withReplies) {
const parseLikeCountText = parseXhsLikeCountText.toString();
return `
(async () => {
const wait = (ms) => new Promise(r => setTimeout(r, ms))
const withReplies = ${withReplies}
// Check login state
const bodyText = document.body?.innerText || ''
const loginWall = /登录后查看|请登录/.test(bodyText)
const securityBlock = /安全限制|访问链接异常/.test(bodyText)
|| /website-login\\/error|error_code=300017|error_code=300031/.test(location.href)
// Scroll the note container to trigger comment loading
const scroller = document.querySelector('.note-scroller') || document.querySelector('.container')
if (scroller) {
for (let i = 0; i < 3; i++) {
const beforeCount = scroller.querySelectorAll('.parent-comment').length
scroller.scrollTo(0, scroller.scrollHeight)
await wait(800 + Math.random() * 1200)
const afterCount = scroller.querySelectorAll('.parent-comment').length
if (afterCount <= beforeCount) break
}
}
const clean = (el) => (el?.textContent || '').replace(/\\s+/g, ' ').trim()
const parseLikeCountText = ${parseLikeCountText}
const parseLikes = (el) => {
return parseLikeCountText(clean(el))
}
const HREF_SELECTOR = ${JSON.stringify(XHS_PROFILE_HREF_SELECTOR)}
const extractAuthorHref = (el) => {
if (!el) return ''
const anchor = el.querySelector(HREF_SELECTOR)
return anchor ? (anchor.getAttribute('href') || '') : ''
}
const expandReplyThreads = async (root) => {
if (!withReplies || !root) return
const clickedTexts = new Set()
for (let round = 0; round < 3; round++) {
const expanders = Array.from(root.querySelectorAll('button, [role="button"], span, div')).filter(el => {
if (!(el instanceof HTMLElement)) return false
const text = clean(el)
if (!text || text.length > 24) return false
if (!/(展开|更多回复|全部回复|查看.*回复|共\\d+条回复)/.test(text)) return false
if (clickedTexts.has(text)) return false
return true
})
if (!expanders.length) break
for (const el of expanders) {
const text = clean(el)
el.click()
clickedTexts.add(text)
await wait(200 + Math.random() * 300)
}
}
}
const results = []
const parents = document.querySelectorAll('.parent-comment')
for (const p of parents) {
const item = p.querySelector('.comment-item')
if (!item) continue
const author = clean(item.querySelector('.author-wrapper .name, .user-name'))
const authorHrefRaw = extractAuthorHref(item)
const text = clean(item.querySelector('.content, .note-text'))
const likes = parseLikes(item.querySelector('.count'))
const time = clean(item.querySelector('.date, .time'))
if (!text) continue
results.push({ author, authorHrefRaw, text, likes, time, is_reply: false, reply_to: '' })
// Extract nested replies (楼中楼)
if (withReplies) {
await expandReplyThreads(p)
p.querySelectorAll('.reply-container .comment-item-sub, .sub-comment-list .comment-item').forEach(sub => {
const sAuthor = clean(sub.querySelector('.name, .user-name'))
const sAuthorHrefRaw = extractAuthorHref(sub)
const sText = clean(sub.querySelector('.content, .note-text'))
const sLikes = parseLikes(sub.querySelector('.count'))
const sTime = clean(sub.querySelector('.date, .time'))
if (!sText) return
results.push({ author: sAuthor, authorHrefRaw: sAuthorHrefRaw, text: sText, likes: sLikes, time: sTime, is_reply: true, reply_to: author })
})
}
}
return { pageUrl: location.href, securityBlock, loginWall, results }
})()
`;
}
export const command = cli({
site: 'xiaohongshu',
name: 'comments',
access: 'read',
description: '获取小红书笔记评论(支持楼中楼子回复)',
domain: 'www.xiaohongshu.com',
strategy: Strategy.COOKIE,
navigateBefore: false,
args: [
{ name: 'note-id', required: true, positional: true, help: 'Full Xiaohongshu note URL with xsec_token' },
{ name: 'limit', type: 'int', default: 20, help: 'Number of top-level comments (max 50)' },
{ name: 'with-replies', type: 'boolean', default: false, help: 'Include nested replies (楼中楼)' },
],
columns: ['rank', 'author', 'userId', 'profileUrl', 'text', 'likes', 'time', 'is_reply', 'reply_to'],
func: async (page, kwargs) => {
const limit = parseCommentLimit(kwargs.limit);
const withReplies = Boolean(kwargs['with-replies']);
const raw = String(kwargs['note-id']);
const noteId = parseNoteId(raw);
await page.goto(buildNoteUrl(raw, { commandName: 'xiaohongshu comments' }));
await page.wait({ time: 2 + Math.random() * 3 });
const data = await page.evaluate(buildCommentsExtractJs(withReplies));
if (!data || typeof data !== 'object') {
throw new EmptyResultError('xiaohongshu/comments', 'Unexpected evaluate response');
}
if (data.securityBlock) {
throw new CliError('SECURITY_BLOCK', 'Xiaohongshu security block: the note detail page was blocked by risk control.', /^https?:\/\//.test(raw)
? 'The page may be temporarily restricted. Try again later or from a different session.'
: 'Try using a full URL from search results (with xsec_token) instead of a bare note ID.');
}
if (data.loginWall) {
throw new AuthRequiredError('www.xiaohongshu.com', 'Note comments require login');
}
// noteId currently unused after parsing — kept for symmetry with the note command
void noteId;
const all = data.results ?? [];
// authorHrefRaw is a raw transport field from the extractor; it is consumed
// here into userId / profileUrl and intentionally not part of the row shape.
const enrich = (c, i) => ({
rank: i + 1,
author: c.author,
userId: c.authorHrefRaw ? parseXhsProfileHref(c.authorHrefRaw) : '',
profileUrl: c.authorHrefRaw ? buildXhsProfileUrl(c.authorHrefRaw) : '',
text: c.text,
likes: c.likes,
time: c.time,
is_reply: c.is_reply,
reply_to: c.reply_to,
});
// When limiting, count only top-level comments; their replies are included for free
if (withReplies) {
const limited = [];
let topCount = 0;
for (const c of all) {
if (!c.is_reply)
topCount++;
if (topCount > limit)
break;
limited.push(c);
}
return limited.map(enrich);
}
return all.slice(0, limit).map(enrich);
},
});