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
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 hasGrokSessionCookie(page) {
|
|
const cookies = await page.getCookies({ url: 'https://grok.com' });
|
|
return cookies.some(c => c.name === '__Secure-next-auth.session-token' && c.value);
|
|
}
|
|
|
|
async function verifyGrokIdentity(page) {
|
|
if (!await hasGrokSessionCookie(page)) {
|
|
throw new AuthRequiredError('grok.com', 'Grok __Secure-next-auth.session-token cookie missing');
|
|
}
|
|
await page.goto('https://grok.com/');
|
|
await page.wait(2);
|
|
const result = await page.evaluate(`(async () => {
|
|
try {
|
|
const res = await fetch('/api/auth/session', { credentials: 'include', headers: { 'Accept': 'application/json' } });
|
|
if (res.status === 401 || res.status === 403) {
|
|
return { kind: 'auth', detail: 'Grok /api/auth/session HTTP ' + res.status };
|
|
}
|
|
if (!res.ok) return { kind: 'http', httpStatus: res.status };
|
|
const d = await res.json();
|
|
const user = d && d.user;
|
|
if (!user || !user.id) {
|
|
return { kind: 'auth', detail: 'Grok /api/auth/session has no user — anonymous' };
|
|
}
|
|
return { ok: true, user_id: String(user.id), name: String(user.name || '') };
|
|
} catch (e) {
|
|
return { kind: 'exception', detail: String(e && e.message || e) };
|
|
}
|
|
})()`);
|
|
if (result?.kind === 'auth') throw new AuthRequiredError('grok.com', result.detail);
|
|
if (result?.kind === 'http') throw new CommandExecutionError(`HTTP ${result.httpStatus} from /api/auth/session`);
|
|
if (result?.kind === 'exception') throw new CommandExecutionError(`Grok whoami failed: ${result.detail}`);
|
|
if (!result?.ok) throw new CommandExecutionError(`Unexpected Grok probe: ${JSON.stringify(result)}`);
|
|
return { user_id: result.user_id, name: result.name };
|
|
}
|
|
|
|
registerSiteAuthCommands({
|
|
site: 'grok',
|
|
domain: 'grok.com',
|
|
loginUrl: 'https://grok.com/auth/sign-in',
|
|
columns: ['user_id', 'name'],
|
|
quickCheck: hasGrokSessionCookie,
|
|
verify: verifyGrokIdentity,
|
|
poll: async (page) => {
|
|
if (!await hasGrokSessionCookie(page)) {
|
|
throw new AuthRequiredError('grok.com', 'Waiting for Grok session cookie');
|
|
}
|
|
return verifyGrokIdentity(page);
|
|
},
|
|
});
|