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
53 lines
2.2 KiB
JavaScript
53 lines
2.2 KiB
JavaScript
import { AuthRequiredError, CommandExecutionError } from '@jackwener/opencli/errors';
|
|
import { registerSiteAuthCommands } from '../_shared/site-auth.js';
|
|
|
|
async function hasRedditSessionCookie(page) {
|
|
const cookies = await page.getCookies({ url: 'https://www.reddit.com' });
|
|
return cookies.some(c => c.name === 'reddit_session' && c.value);
|
|
}
|
|
|
|
async function verifyRedditIdentity(page) {
|
|
if (!await hasRedditSessionCookie(page)) {
|
|
throw new AuthRequiredError('reddit.com', 'Reddit reddit_session cookie missing');
|
|
}
|
|
await page.goto('https://www.reddit.com/');
|
|
await page.wait(2);
|
|
const result = await page.evaluate(`(async () => {
|
|
try {
|
|
const res = await fetch('/api/me.json', { credentials: 'include', headers: { 'Accept': 'application/json' } });
|
|
if (res.status === 401 || res.status === 403) {
|
|
return { kind: 'auth', detail: 'Reddit /api/me.json HTTP ' + res.status };
|
|
}
|
|
if (!res.ok) return { kind: 'http', httpStatus: res.status };
|
|
const d = await res.json();
|
|
const data = d && d.data;
|
|
if (!data || !data.name) {
|
|
return { kind: 'auth', detail: 'Reddit /api/me.json 200 but no data.name — anonymous' };
|
|
}
|
|
return { ok: true, username: String(data.name), id: String(data.id || '') };
|
|
} catch (e) {
|
|
return { kind: 'exception', detail: String(e && e.message || e) };
|
|
}
|
|
})()`);
|
|
if (result?.kind === 'auth') throw new AuthRequiredError('reddit.com', result.detail);
|
|
if (result?.kind === 'http') throw new CommandExecutionError(`HTTP ${result.httpStatus} from /api/me.json`);
|
|
if (result?.kind === 'exception') throw new CommandExecutionError(`Reddit whoami failed: ${result.detail}`);
|
|
if (!result?.ok) throw new CommandExecutionError(`Unexpected Reddit probe: ${JSON.stringify(result)}`);
|
|
return { username: result.username, id: result.id };
|
|
}
|
|
|
|
registerSiteAuthCommands({
|
|
site: 'reddit',
|
|
domain: 'reddit.com',
|
|
loginUrl: 'https://www.reddit.com/login',
|
|
columns: ['username', 'id'],
|
|
quickCheck: hasRedditSessionCookie,
|
|
verify: verifyRedditIdentity,
|
|
poll: async (page) => {
|
|
if (!await hasRedditSessionCookie(page)) {
|
|
throw new AuthRequiredError('reddit.com', 'Waiting for Reddit reddit_session cookie');
|
|
}
|
|
return verifyRedditIdentity(page);
|
|
},
|
|
});
|