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
48 lines
1.9 KiB
JavaScript
48 lines
1.9 KiB
JavaScript
import { AuthRequiredError, CommandExecutionError } from '@jackwener/opencli/errors';
|
|
import { registerSiteAuthCommands } from '../_shared/site-auth.js';
|
|
|
|
async function hasHupuUserCookie(page) {
|
|
const cookies = await page.getCookies({ url: 'https://my.hupu.com' });
|
|
return cookies.some(c => c.name === 'u' && c.value);
|
|
}
|
|
|
|
async function verifyHupuIdentity(page) {
|
|
if (!await hasHupuUserCookie(page)) {
|
|
throw new AuthRequiredError('hupu.com', 'Hupu u cookie missing — anonymous');
|
|
}
|
|
await page.goto('https://my.hupu.com/');
|
|
await page.wait(2);
|
|
const probe = await page.evaluate(`
|
|
(() => {
|
|
if (/passport\\.hupu\\.com\\/.*login/.test(location.href)) {
|
|
return { kind: 'auth', detail: 'Hupu my page redirected to passport login' };
|
|
}
|
|
const uCookie = (document.cookie.split('; ').find(c => c.startsWith('u=')) || '').split('=')[1] || '';
|
|
const el = document.querySelector('.user-name, .username, .nick, [class*="userName"]');
|
|
const username = (el?.innerText || '').trim();
|
|
if (!uCookie) {
|
|
return { kind: 'auth', detail: 'Hupu my page rendered but u cookie absent — stale session' };
|
|
}
|
|
return { ok: true, user_id: uCookie, username };
|
|
})()
|
|
`);
|
|
if (probe?.kind === 'auth') throw new AuthRequiredError('hupu.com', probe.detail);
|
|
if (!probe?.ok) throw new CommandExecutionError(`Unexpected Hupu probe: ${JSON.stringify(probe)}`);
|
|
return { user_id: probe.user_id, username: probe.username };
|
|
}
|
|
|
|
registerSiteAuthCommands({
|
|
site: 'hupu',
|
|
domain: 'hupu.com',
|
|
loginUrl: 'https://passport.hupu.com/pc/login',
|
|
columns: ['user_id', 'username'],
|
|
quickCheck: hasHupuUserCookie,
|
|
verify: verifyHupuIdentity,
|
|
poll: async (page) => {
|
|
if (!await hasHupuUserCookie(page)) {
|
|
throw new AuthRequiredError('hupu.com', 'Waiting for Hupu u cookie');
|
|
}
|
|
return verifyHupuIdentity(page);
|
|
},
|
|
});
|