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

108 lines
4.1 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.
import { cli, Strategy } from '@jackwener/opencli/registry';
/**
* 评论即刻帖子
*
* 帖子详情页有评论输入框(contenteditable 或 textarea),
* 填入文本后点击"回复"或"发布"按钮提交。
*/
cli({
site: 'jike',
name: 'comment',
access: 'write',
description: '评论即刻帖子',
domain: 'web.okjike.com',
strategy: Strategy.UI,
browser: true,
args: [
{ name: 'id', type: 'string', required: true, positional: true, help: '帖子 ID' },
{ name: 'text', type: 'string', required: true, positional: true, help: '评论内容' },
],
columns: ['status', 'message'],
func: async (page, kwargs) => {
await page.goto(`https://web.okjike.com/originalPost/${kwargs.id}`);
// 1. 找到评论输入框并填入文本
const inputResult = await page.evaluate(`(async () => {
try {
const textToInsert = ${JSON.stringify(kwargs.text)};
// 优先在评论区容器内找 contenteditable,避免误选页面其他编辑器;
// 若评论区 class 名变更则回退到全页查找
const editor =
document.querySelector('[class*="_comment_"] [contenteditable="true"]') ||
document.querySelector('[contenteditable="true"]');
if (editor) {
editor.focus();
const dt = new DataTransfer();
dt.setData('text/plain', textToInsert);
editor.dispatchEvent(new ClipboardEvent('paste', {
clipboardData: dt, bubbles: true, cancelable: true,
}));
await new Promise(r => setTimeout(r, 800));
if (editor.textContent?.length > 0) {
return { ok: true, message: 'contenteditable' };
}
}
// 回退:textarea(带评论相关 placeholder
const textareas = document.querySelectorAll('textarea');
for (const ta of textareas) {
const ph = ta.getAttribute('placeholder') || '';
if (ph.includes('评论') || ph.includes('回复') || ph.includes('说点什么')) {
ta.focus();
const setter = Object.getOwnPropertyDescriptor(
HTMLTextAreaElement.prototype, 'value'
)?.set;
setter?.call(ta, textToInsert);
ta.dispatchEvent(new Event('input', { bubbles: true }));
await new Promise(r => setTimeout(r, 500));
return { ok: true, message: 'textarea' };
}
}
// 兜底:任意 textarea
if (textareas.length > 0) {
const ta = textareas[0];
ta.focus();
const setter = Object.getOwnPropertyDescriptor(
HTMLTextAreaElement.prototype, 'value'
)?.set;
setter?.call(ta, textToInsert);
ta.dispatchEvent(new Event('input', { bubbles: true }));
await new Promise(r => setTimeout(r, 500));
return { ok: true, message: 'textarea-fallback' };
}
return { ok: false, message: '未找到评论输入框' };
} catch (e) {
return { ok: false, message: e.toString() };
}
})()`);
if (!inputResult.ok) {
return [{ status: 'failed', message: inputResult.message }];
}
// 2. 点击"回复"或"发布"按钮
const submitResult = await page.evaluate(`(async () => {
try {
await new Promise(r => setTimeout(r, 500));
const btns = Array.from(document.querySelectorAll('button')).filter(btn => {
const text = btn.textContent?.trim() || '';
return (text === '回复' || text === '发布' || text === '发送' || text === '评论') && !btn.disabled;
});
if (btns.length === 0) {
return { ok: false, message: '未找到可用的回复按钮(可能因内容为空而禁用)' };
}
btns[0].click();
return { ok: true, message: '评论发布成功' };
} catch (e) {
return { ok: false, message: e.toString() };
}
})()`);
if (submitResult.ok)
await page.wait(3);
return [{
status: submitResult.ok ? 'success' : 'failed',
message: submitResult.message,
}];
},
});