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
97 lines
4.1 KiB
JavaScript
97 lines
4.1 KiB
JavaScript
import { AuthRequiredError, CommandExecutionError, EmptyResultError } from '@jackwener/opencli/errors';
|
|
import { cli, Strategy } from '@jackwener/opencli/registry';
|
|
import {
|
|
buildClickInboxConversationEvaluate,
|
|
buildExtractInboxEvaluate,
|
|
buildInboxUrl,
|
|
buildReadCurrentConversationUrlEvaluate,
|
|
DEFAULT_INBOX_LIMIT,
|
|
MAX_INBOX_LIMIT,
|
|
normalizeLimit,
|
|
requireClickResult,
|
|
requireEvaluateObject,
|
|
} from './im.js';
|
|
|
|
cli({
|
|
site: 'xianyu',
|
|
name: 'inbox',
|
|
access: 'read',
|
|
description: '列出闲鱼最近私信会话',
|
|
domain: 'www.goofish.com',
|
|
strategy: Strategy.COOKIE,
|
|
navigateBefore: false,
|
|
browser: true,
|
|
args: [
|
|
{ name: 'limit', type: 'int', default: DEFAULT_INBOX_LIMIT, help: 'Number of conversations to return' },
|
|
{ name: 'unread-only', type: 'bool', default: false, help: 'Return only conversations with unread messages' },
|
|
{ name: 'resolve-ids', type: 'bool', default: false, help: 'Click each visible conversation to resolve item_id and peer_user_id from the chat URL' },
|
|
],
|
|
columns: ['rank', 'peer_name', 'peer_user_id', 'item_id', 'item_title', 'price', 'last_message', 'unread', 'unread_count', 'url'],
|
|
func: async (page, kwargs) => {
|
|
const limit = normalizeLimit(kwargs.limit, DEFAULT_INBOX_LIMIT, MAX_INBOX_LIMIT, 'inbox --limit');
|
|
const unreadOnly = Boolean(kwargs['unread-only']);
|
|
const resolveIds = Boolean(kwargs['resolve-ids']);
|
|
let currentUrl = '';
|
|
if (page.getCurrentUrl) {
|
|
try {
|
|
currentUrl = await page.getCurrentUrl();
|
|
} catch {
|
|
currentUrl = '';
|
|
}
|
|
}
|
|
if (!/https:\/\/www\.goofish\.com\/im\b/.test(currentUrl)) {
|
|
await page.goto(buildInboxUrl());
|
|
}
|
|
await page.wait(4);
|
|
const payload = requireEvaluateObject(await page.evaluate(buildExtractInboxEvaluate(limit)), 'inbox');
|
|
if (payload?.requiresAuth) {
|
|
throw new AuthRequiredError('www.goofish.com', 'Xianyu inbox requires a logged-in browser session');
|
|
}
|
|
if (payload?.blocked) {
|
|
throw new AuthRequiredError('www.goofish.com', 'Xianyu inbox is blocked by verification or risk control');
|
|
}
|
|
if (!Array.isArray(payload.items)) {
|
|
throw new CommandExecutionError('Xianyu inbox returned malformed conversation list');
|
|
}
|
|
const items = payload.items;
|
|
if (!items.length) {
|
|
throw new EmptyResultError('xianyu inbox', 'No Xianyu inbox conversations were found');
|
|
}
|
|
let conversations = items.slice(0, limit);
|
|
if (unreadOnly) {
|
|
conversations = conversations.filter((item) => Boolean(item.unread));
|
|
}
|
|
if (resolveIds) {
|
|
for (const item of conversations) {
|
|
if (item.item_id && item.peer_user_id) continue;
|
|
const rowIndex = Number(item.row_index);
|
|
if (!Number.isInteger(rowIndex) || rowIndex < 0) continue;
|
|
requireClickResult(await page.evaluate(buildClickInboxConversationEvaluate(rowIndex)), 'inbox resolve-ids click');
|
|
await page.wait(1);
|
|
const current = requireEvaluateObject(await page.evaluate(buildReadCurrentConversationUrlEvaluate()), 'inbox current-url');
|
|
item.item_id = current?.item_id || item.item_id || '';
|
|
item.peer_user_id = current?.peer_user_id || item.peer_user_id || '';
|
|
item.url = current?.url || item.url || '';
|
|
}
|
|
}
|
|
return conversations.map((item, index) => ({
|
|
rank: index + 1,
|
|
peer_name: item.peer_name || '',
|
|
peer_user_id: item.peer_user_id || '',
|
|
item_id: item.item_id || '',
|
|
item_title: item.item_title || '',
|
|
price: item.price || '',
|
|
last_message: item.last_message || '',
|
|
unread: Boolean(item.unread),
|
|
unread_count: Number(item.unread_count || 0),
|
|
url: item.url || '',
|
|
}));
|
|
},
|
|
});
|
|
|
|
export const __test__ = {
|
|
buildInboxUrl,
|
|
buildExtractInboxEvaluate,
|
|
normalizeLimit,
|
|
};
|