mirror of
https://github.com/jackwener/OpenCLI.git
synced 2026-09-14 18:25:42 +08:00
9139baaef8
Adds the no-navigation `quickCheck` to each adapter's registerSiteAuthCommands config so `opencli auth status` (PR #1879) resolves login state in quick mode (CDP getCookies, no per-site goto) instead of reporting `unknown`. - quickCheck reuses each adapter's existing poll cookie gate (has<Site>Cookie), which is a logged-in-only, no-nav check returning boolean. - Deliberately NOT wired (stay `unknown` in quick mode, available via --full): - gitee/hf/deepseek/quark/reuters/zsxq: no reliable logged-in cookie; they detect via no-nav fetch / localStorage / Bearer which need the site origin. - doubao/ke/coupang/manus: session cookie is present for anonymous users, so a cookie quickCheck would false-positive — `unknown` is more honest. Live: auth status --site resolves logged_in/not_logged_in for cookie-gate sites (v2ex/github/zhihu/claude/taobao/twitter/bilibili) in quick mode; excluded sites report unknown. Audits new=0/new=0; suite 5054 passed.
45 lines
1.7 KiB
JavaScript
45 lines
1.7 KiB
JavaScript
import { AuthRequiredError } from '@jackwener/opencli/errors';
|
|
import { registerSiteAuthCommands } from '../_shared/site-auth.js';
|
|
|
|
async function hasGithubSessionCookies(page) {
|
|
const cookies = await page.getCookies({ url: 'https://github.com' });
|
|
const names = new Set(cookies.map(cookie => cookie.name));
|
|
return names.has('user_session') || names.has('dotcom_user') || names.has('logged_in');
|
|
}
|
|
|
|
async function verifyGithubIdentity(page) {
|
|
await page.goto('https://github.com/settings/profile');
|
|
await page.wait(1);
|
|
const identity = await page.evaluate(`() => {
|
|
const meta = (name) => document.querySelector('meta[name="' + name + '"]')?.getAttribute('content') || '';
|
|
const username = meta('octolytics-actor-login');
|
|
const id = meta('octolytics-actor-id');
|
|
const name = document.querySelector('input#user_profile_name')?.value || '';
|
|
return { username, id, name, url: location.href };
|
|
}`);
|
|
if (!identity?.username || /\/login(?:\?|$)/.test(String(identity?.url ?? ''))) {
|
|
throw new AuthRequiredError('github.com', 'Could not detect a logged-in GitHub account');
|
|
}
|
|
return {
|
|
id: identity.id || '',
|
|
username: identity.username,
|
|
name: identity.name || '',
|
|
url: `https://github.com/${identity.username}`,
|
|
};
|
|
}
|
|
|
|
registerSiteAuthCommands({
|
|
site: 'github',
|
|
domain: 'github.com',
|
|
loginUrl: 'https://github.com/login',
|
|
columns: ['id', 'username', 'name', 'url'],
|
|
quickCheck: hasGithubSessionCookies,
|
|
verify: verifyGithubIdentity,
|
|
poll: async (page) => {
|
|
if (!await hasGithubSessionCookies(page)) {
|
|
throw new AuthRequiredError('github.com', 'Waiting for GitHub session cookies');
|
|
}
|
|
return verifyGithubIdentity(page);
|
|
},
|
|
});
|