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
44 lines
1.5 KiB
JavaScript
44 lines
1.5 KiB
JavaScript
import { cli, Strategy } from '@jackwener/opencli/registry';
|
|
cli({
|
|
site: 'reddit',
|
|
name: 'user-posts',
|
|
access: 'read',
|
|
description: `View a Reddit user's submitted posts`,
|
|
domain: 'reddit.com',
|
|
strategy: Strategy.COOKIE,
|
|
browser: true,
|
|
args: [
|
|
{ name: 'username', type: 'string', required: true, positional: true, help: 'Reddit username (no `u/` prefix needed)' },
|
|
{ name: 'limit', type: 'int', default: 15 },
|
|
],
|
|
columns: ['title', 'subreddit', 'score', 'comments', 'url'],
|
|
pipeline: [
|
|
{ navigate: 'https://www.reddit.com' },
|
|
{ evaluate: `(async () => {
|
|
const username = \${{ args.username | json }};
|
|
const name = username.startsWith('u/') ? username.slice(2) : username;
|
|
const limit = \${{ args.limit }};
|
|
const res = await fetch('/user/' + name + '/submitted.json?limit=' + limit + '&raw_json=1', {
|
|
credentials: 'include'
|
|
});
|
|
const d = await res.json();
|
|
return (d?.data?.children || []).map(c => ({
|
|
title: c.data.title,
|
|
subreddit: c.data.subreddit_name_prefixed,
|
|
score: c.data.score,
|
|
comments: c.data.num_comments,
|
|
url: 'https://www.reddit.com' + c.data.permalink,
|
|
}));
|
|
})()
|
|
` },
|
|
{ map: {
|
|
title: '${{ item.title }}',
|
|
subreddit: '${{ item.subreddit }}',
|
|
score: '${{ item.score }}',
|
|
comments: '${{ item.comments }}',
|
|
url: '${{ item.url }}',
|
|
} },
|
|
{ limit: '${{ args.limit }}' },
|
|
],
|
|
});
|