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
42 lines
1.5 KiB
JavaScript
42 lines
1.5 KiB
JavaScript
import { AuthRequiredError } from '@jackwener/opencli/errors';
|
|
import { registerSiteAuthCommands } from '../_shared/site-auth.js';
|
|
import { normalizeTwitterScreenName, unwrapBrowserResult } from './shared.js';
|
|
|
|
async function hasTwitterSessionCookies(page) {
|
|
const cookies = await page.getCookies({ url: 'https://x.com' });
|
|
const names = new Set(cookies.map(cookie => cookie.name));
|
|
return names.has('auth_token') && names.has('ct0');
|
|
}
|
|
|
|
async function verifyTwitterIdentity(page) {
|
|
if (!await hasTwitterSessionCookies(page)) {
|
|
throw new AuthRequiredError('x.com', 'Twitter/X auth cookies are missing');
|
|
}
|
|
await page.goto('https://x.com/home');
|
|
await page.wait(1);
|
|
const href = unwrapBrowserResult(await page.evaluate(`() => {
|
|
const link = document.querySelector('a[data-testid="AppTabBar_Profile_Link"]');
|
|
return link ? link.getAttribute('href') : null;
|
|
}`));
|
|
const username = normalizeTwitterScreenName(typeof href === 'string' ? href : '');
|
|
if (!username) {
|
|
throw new AuthRequiredError('x.com', 'Could not detect the logged-in Twitter/X profile link');
|
|
}
|
|
return { username, url: `https://x.com/${username}` };
|
|
}
|
|
|
|
registerSiteAuthCommands({
|
|
site: 'twitter',
|
|
domain: 'x.com',
|
|
loginUrl: 'https://x.com/i/flow/login',
|
|
columns: ['username', 'url'],
|
|
quickCheck: hasTwitterSessionCookies,
|
|
verify: verifyTwitterIdentity,
|
|
poll: async (page) => {
|
|
if (!await hasTwitterSessionCookies(page)) {
|
|
throw new AuthRequiredError('x.com', 'Waiting for Twitter/X auth cookies');
|
|
}
|
|
return verifyTwitterIdentity(page);
|
|
},
|
|
});
|