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
46 lines
1.8 KiB
JavaScript
46 lines
1.8 KiB
JavaScript
import { cli, Strategy } from '@jackwener/opencli/registry';
|
|
import { EmptyResultError } from '@jackwener/opencli/errors';
|
|
import {
|
|
assertDiscordMessageRowsBelongToTarget,
|
|
navigateToDiscordTarget,
|
|
parsePositiveInt,
|
|
readDiscordMessages,
|
|
resolveDiscordThreadTarget,
|
|
} from './utils.js';
|
|
|
|
export const threadReadCommand = cli({
|
|
site: 'discord-app',
|
|
name: 'thread-read',
|
|
access: 'read',
|
|
description: 'Read recent messages from a Discord thread/post by id or URL',
|
|
domain: 'localhost',
|
|
strategy: Strategy.UI,
|
|
browser: true,
|
|
args: [
|
|
{ name: 'thread', required: false, help: 'Thread/post id, or a full Discord thread/post URL' },
|
|
{ name: 'count', required: false, default: '20', help: 'Number of messages to read (default: 20)' },
|
|
{ name: 'guild', required: false, help: 'Parent guild/server id or visible name' },
|
|
{ name: 'channel', required: false, help: 'Parent forum/channel id or visible name' },
|
|
{ name: 'url', required: false, help: 'Discord thread/post URL' },
|
|
],
|
|
columns: ['Author', 'Time', 'Message', 'channel_id', 'message_id'],
|
|
func: async (page, kwargs) => {
|
|
const count = parsePositiveInt(kwargs.count, 20, 'count');
|
|
const target = await resolveDiscordThreadTarget(page, kwargs);
|
|
await navigateToDiscordTarget(page, target, { waitForContent: 'messages' });
|
|
const rows = assertDiscordMessageRowsBelongToTarget(
|
|
await readDiscordMessages(page, count),
|
|
target,
|
|
'Discord thread read',
|
|
);
|
|
if (rows.length === 0) {
|
|
throw new EmptyResultError('discord-app thread-read', 'No messages were found in the selected Discord thread.');
|
|
}
|
|
return rows;
|
|
},
|
|
});
|
|
|
|
export const __test__ = {
|
|
threadReadCommand,
|
|
};
|