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
53 lines
2.4 KiB
JavaScript
53 lines
2.4 KiB
JavaScript
import { AuthRequiredError, CommandExecutionError } from '@jackwener/opencli/errors';
|
|
import { registerSiteAuthCommands } from '../_shared/site-auth.js';
|
|
|
|
async function has1Point3AcresAuthCookie(page) {
|
|
const host = await page.getCookies({ url: 'https://www.1point3acres.com' });
|
|
const root = await page.getCookies({ url: 'https://.1point3acres.com' });
|
|
return [...host, ...root].some(c => /_auth$/.test(c.name) && c.value);
|
|
}
|
|
|
|
async function verify1Point3AcresIdentity(page) {
|
|
if (!await has1Point3AcresAuthCookie(page)) {
|
|
throw new AuthRequiredError('1point3acres.com', '1point3acres Discuz *_auth cookie missing');
|
|
}
|
|
await page.goto('https://www.1point3acres.com/bbs/');
|
|
await page.wait(2);
|
|
const probe = await page.evaluate(`
|
|
(() => {
|
|
if (/auth\\.1point3acres\\.com\\/login/.test(location.href)) {
|
|
return { kind: 'auth', detail: '1point3acres bbs redirected to auth login' };
|
|
}
|
|
const loginLink = document.querySelector('a[href*="auth.1point3acres.com/login"], a[href*="member.php?mod=logging&action=login"]');
|
|
if (loginLink && /登录/.test(loginLink.innerText || '')) {
|
|
return { kind: 'auth', detail: '1point3acres bbs shows 登录 link — anonymous' };
|
|
}
|
|
const nameEl = document.querySelector('#um .vwmy h4 a, a.username, .vwmy a');
|
|
const username = (nameEl?.innerText || '').trim();
|
|
const uid = (nameEl?.getAttribute('href') || '').match(/uid[=-](\\d+)/)?.[1] || '';
|
|
if (!uid && !username) {
|
|
return { kind: 'auth', detail: '1point3acres bbs rendered but no #um identity — anonymous or shape drifted' };
|
|
}
|
|
return { ok: true, user_id: uid, username };
|
|
})()
|
|
`);
|
|
if (probe?.kind === 'auth') throw new AuthRequiredError('1point3acres.com', probe.detail);
|
|
if (!probe?.ok) throw new CommandExecutionError(`Unexpected 1point3acres probe: ${JSON.stringify(probe)}`);
|
|
return { user_id: probe.user_id, username: probe.username };
|
|
}
|
|
|
|
registerSiteAuthCommands({
|
|
site: '1point3acres',
|
|
domain: '1point3acres.com',
|
|
loginUrl: 'https://auth.1point3acres.com/login',
|
|
columns: ['user_id', 'username'],
|
|
quickCheck: has1Point3AcresAuthCookie,
|
|
verify: verify1Point3AcresIdentity,
|
|
poll: async (page) => {
|
|
if (!await has1Point3AcresAuthCookie(page)) {
|
|
throw new AuthRequiredError('1point3acres.com', 'Waiting for 1point3acres Discuz *_auth cookie');
|
|
}
|
|
return verify1Point3AcresIdentity(page);
|
|
},
|
|
});
|