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
55 lines
2.5 KiB
JavaScript
55 lines
2.5 KiB
JavaScript
import { AuthRequiredError, CommandExecutionError } from '@jackwener/opencli/errors';
|
|
import { registerSiteAuthCommands } from '../_shared/site-auth.js';
|
|
|
|
async function hasGoogleSessionCookie(page) {
|
|
const cookies = await page.getCookies({ url: 'https://www.youtube.com' });
|
|
const names = new Set(cookies.map(c => c.name));
|
|
return names.has('SID') || names.has('SAPISID') || names.has('__Secure-1PSID');
|
|
}
|
|
|
|
async function verifyYoutubeIdentity(page) {
|
|
if (!await hasGoogleSessionCookie(page)) {
|
|
throw new AuthRequiredError('www.youtube.com', 'Google session cookies missing');
|
|
}
|
|
await page.goto('https://www.youtube.com/');
|
|
await page.wait(3);
|
|
const probe = await page.evaluate(`
|
|
(() => {
|
|
const cfg = (typeof window !== 'undefined' && window.ytcfg && typeof window.ytcfg.get === 'function') ? window.ytcfg : null;
|
|
// ytcfg LOGGED_IN is the reliable signed-in signal; the avatar button is a fallback.
|
|
const loggedIn = !!(cfg && cfg.get('LOGGED_IN') === true) || !!document.querySelector('#avatar-btn');
|
|
if (!loggedIn) {
|
|
return { kind: 'auth', detail: 'YouTube ytcfg LOGGED_IN not true and no avatar — not signed in' };
|
|
}
|
|
// Name is best-effort: YouTube's masthead avatar exposes a generic
|
|
// "Account menu" aria-label, so the channel name is often unavailable
|
|
// without opening the menu. Surface it when present, else leave empty.
|
|
let name = '';
|
|
try { const ctx = cfg && cfg.get('INNERTUBE_CONTEXT'); name = (ctx && ctx.user && ctx.user.identityName) || ''; } catch {}
|
|
if (!name) {
|
|
const aria = (document.querySelector('#avatar-btn')?.getAttribute('aria-label') || '').trim();
|
|
if (aria && !/^account menu$/i.test(aria)) name = aria;
|
|
}
|
|
return { ok: true, name: String(name || '') };
|
|
})()
|
|
`);
|
|
if (probe?.kind === 'auth') throw new AuthRequiredError('www.youtube.com', probe.detail);
|
|
if (!probe?.ok) throw new CommandExecutionError(`Unexpected YouTube probe: ${JSON.stringify(probe)}`);
|
|
return { name: probe.name };
|
|
}
|
|
|
|
registerSiteAuthCommands({
|
|
site: 'youtube',
|
|
domain: 'www.youtube.com',
|
|
loginUrl: 'https://accounts.google.com/ServiceLogin?service=youtube&continue=https%3A%2F%2Fwww.youtube.com%2F',
|
|
columns: ['name'],
|
|
quickCheck: hasGoogleSessionCookie,
|
|
verify: verifyYoutubeIdentity,
|
|
poll: async (page) => {
|
|
if (!await hasGoogleSessionCookie(page)) {
|
|
throw new AuthRequiredError('www.youtube.com', 'Waiting for Google session cookies');
|
|
}
|
|
return verifyYoutubeIdentity(page);
|
|
},
|
|
});
|