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

67 lines
2.9 KiB
JavaScript

import { AuthRequiredError, EmptyResultError } from '@jackwener/opencli/errors';
import { cli, Strategy } from '@jackwener/opencli/registry';
const WEIXIN_DOMAIN = 'mp.weixin.qq.com';
export const draftsCommand = cli({
site: 'weixin',
name: 'drafts',
access: 'read',
description: '列出微信公众号草稿箱',
domain: WEIXIN_DOMAIN,
strategy: Strategy.COOKIE,
browser: true,
navigateBefore: false,
args: [
{ name: 'limit', type: 'int', default: 10, help: '最多显示条数' },
{ name: 'timeout', type: 'int', required: false, default: 60, help: 'Max seconds for the overall command (default: 60)' },
],
columns: ['Index', 'Title', 'Time'],
func: async (page, kwargs) => {
await page.goto('https://mp.weixin.qq.com/');
await page.wait(3);
const token = await page.evaluate(`(window.location.href.match(/token=(\\d+)/)||[])[1]`);
if (!token) {
throw new AuthRequiredError(WEIXIN_DOMAIN, '微信公众号草稿箱需要已登录的 mp.weixin.qq.com 会话');
}
await page.goto(`https://mp.weixin.qq.com/cgi-bin/appmsg?begin=0&count=${kwargs.limit}&type=77&action=list_card&token=${token}&lang=zh_CN`);
await page.wait(4);
const drafts = await page.evaluate(`(() => {
var results = [];
var idx = 0;
var cards = document.querySelectorAll('.weui-desktop-card');
for (var i = 0; i < cards.length; i++) {
if (cards[i].className.includes('card_new')) continue;
var titleEl = cards[i].querySelector('[class*=title]');
var timeEl = cards[i].querySelector('[class*=tips]');
var title = titleEl ? titleEl.textContent.trim() : '';
var time = timeEl ? timeEl.textContent.trim().replace(/\\s+/g, ' ') : '';
if (title) results.push({ Index: ++idx, Title: title, Time: time });
}
if (results.length > 0) return results;
var rows = document.querySelectorAll('tr, [class*=appmsg_item], [class*=list_item]');
rows.forEach(function(row) {
var titleEl = row.querySelector('[class*=title] a, [class*=title], h4');
var timeEl = row.querySelector('[class*=time], td:nth-child(2)');
var title = titleEl ? titleEl.textContent.trim() : '';
var time = timeEl ? timeEl.textContent.trim() : '';
if (title && title !== '内容' && title.length < 80) {
results.push({ Index: ++idx, Title: title, Time: time });
}
});
return results;
})()`);
if (!drafts || drafts.length === 0) {
throw new EmptyResultError('weixin drafts', 'No structured drafts found in the current Weixin Official Account backend');
}
return drafts.slice(0, kwargs.limit);
},
});