Files
wehub-resource-sync 9b395f5cc3
Build Chrome Extension / build (push) Waiting to run
Trigger Website Rebuild (Docs Updated) / dispatch (push) Waiting to run
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
chore: import upstream snapshot with attribution
2026-07-13 12:39:48 +08:00

100 lines
4.7 KiB
JavaScript

import { cli, Strategy } from '@jackwener/opencli/registry';
import { CommandExecutionError } from '@jackwener/opencli/errors';
import { parseTweetUrl, buildTwitterArticleScopeSource, unwrapBrowserResult } from './shared.js';
function buildDeleteScript(tweetId) {
return `(async () => {
try {
const visible = (el) => !!el && (el.offsetParent !== null || el.getClientRects().length > 0);
${buildTwitterArticleScopeSource(tweetId)}
// The article's self-referential /status/<id> link can hydrate late on
// slow networks, so poll findTargetArticle() for ~5s before giving up.
let targetArticle = findTargetArticle();
for (let i = 0; i < 20 && !targetArticle; i++) {
await new Promise(r => setTimeout(r, 250));
targetArticle = findTargetArticle();
}
if (!targetArticle) {
return { ok: false, message: 'Could not find the tweet card matching the requested URL.' };
}
const belongsToTargetArticle = (el) => el.closest('article') === targetArticle;
const buttons = Array.from(targetArticle.querySelectorAll('button,[role="button"]')).filter(belongsToTargetArticle);
// X localizes the "More" caret aria-label (zh-Hans: 更多), so prefer the
// language-agnostic data-testid and fall back to a multilingual label match.
const moreMenu = Array.from(targetArticle.querySelectorAll('[data-testid="caret"]')).filter(belongsToTargetArticle).find(visible)
|| buttons.find((el) => visible(el) && /^(More|更多)/.test((el.getAttribute('aria-label') || '').trim()));
if (!moreMenu) {
return { ok: false, message: 'Could not find the "More" context menu on the matched tweet. Are you sure you are logged in and looking at a valid tweet?' };
}
const beforeMenuItems = new Set(document.querySelectorAll('[role="menuitem"]'));
moreMenu.click();
await new Promise(r => setTimeout(r, 1000));
const items = Array.from(document.querySelectorAll('[role="menuitem"]'))
.filter((item) => visible(item) && !beforeMenuItems.has(item));
const deleteBtn = items.find((item) => {
const text = (item.textContent || '').trim();
// X localizes the menu item (zh-Hans: 删除); exclude the "Add/remove
// from Lists" item in both languages so we never click the wrong row.
return (text.includes('Delete') || text.includes('删除')) && !text.includes('List') && !text.includes('列表');
});
if (!deleteBtn) {
return { ok: false, message: 'The matched tweet menu did not contain Delete. This tweet may not belong to you.' };
}
deleteBtn.click();
await new Promise(r => setTimeout(r, 1000));
const confirmBtn = document.querySelector('[data-testid="confirmationSheetConfirm"]');
if (confirmBtn) {
confirmBtn.click();
return { ok: true, message: 'Tweet successfully deleted.' };
} else {
return { ok: false, message: 'Delete confirmation dialog did not appear.' };
}
} catch (e) {
return { ok: false, message: e.toString() };
}
})()`;
}
cli({
site: 'twitter',
name: 'delete',
access: 'write',
description: 'Delete a specific tweet by URL',
domain: 'x.com',
strategy: Strategy.UI, // Utilizes internal DOM flows for interaction
browser: true,
args: [
{ name: 'url', type: 'string', required: true, positional: true, help: 'The URL of the tweet to delete' },
],
columns: ['status', 'message'],
func: async (page, kwargs) => {
if (!page)
throw new CommandExecutionError('Browser session required for twitter delete');
// parseTweetUrl throws ArgumentError on malformed/off-domain inputs —
// this replaces the ad-hoc local extractTweetId which only checked
// the path shape and accepted any host (silent: would try to act on
// attacker-controlled redirect URLs).
const target = parseTweetUrl(kwargs.url);
await page.goto(target.url);
await page.wait({ selector: '[data-testid="primaryColumn"]' }); // Wait for tweet to load completely
const result = unwrapBrowserResult(await page.evaluate(buildDeleteScript(target.id)));
if (result.ok) {
// Wait for the deletion request to be processed
await page.wait(2);
}
return [{
status: result.ok ? 'success' : 'failed',
message: result.message
}];
}
});
export const __test__ = {
buildDeleteScript,
};