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
76 lines
2.6 KiB
JavaScript
76 lines
2.6 KiB
JavaScript
import { CommandExecutionError, EmptyResultError } from '@jackwener/opencli/errors';
|
|
export const SITE = 'lesswrong';
|
|
export const DOMAIN = 'www.lesswrong.com';
|
|
const GRAPHQL_URL = `https://${DOMAIN}/graphql`;
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- GraphQL responses vary per query
|
|
export async function gqlRequest(query) {
|
|
const resp = await fetch(GRAPHQL_URL, {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
Accept: 'application/json',
|
|
},
|
|
body: JSON.stringify({ query }),
|
|
signal: AbortSignal.timeout(15000),
|
|
});
|
|
if (!resp.ok) {
|
|
throw new CommandExecutionError(`LessWrong API returned HTTP ${resp.status}`);
|
|
}
|
|
const json = (await resp.json());
|
|
if (json.errors?.length) {
|
|
throw new CommandExecutionError(json.errors[0]?.message ?? 'Unknown GraphQL error');
|
|
}
|
|
return json.data;
|
|
}
|
|
export function gqlEscape(str) {
|
|
return str.replace(/\\/g, '\\\\').replace(/"/g, '\\"');
|
|
}
|
|
export function stripHtml(html) {
|
|
if (!html)
|
|
return '';
|
|
return html
|
|
.replace(/<script[^>]*>.*?<\/script>/gis, ' ')
|
|
.replace(/<style[^>]*>.*?<\/style>/gis, ' ')
|
|
.replace(/<[^>]+>/g, ' ')
|
|
.replace(/\s+/g, ' ')
|
|
.trim();
|
|
}
|
|
export function daysAgo(n) {
|
|
const d = new Date();
|
|
d.setDate(d.getDate() - n);
|
|
return d.toISOString();
|
|
}
|
|
export async function resolveTagId(slug) {
|
|
const normalized = gqlEscape(slug.toLowerCase().trim().replace(/\s+/g, '-'));
|
|
const query = `query TagBySlug {
|
|
tags(input: {terms: {view: "tagBySlug", slug: "${normalized}"}}) {
|
|
results { _id name slug }
|
|
}
|
|
}`;
|
|
const data = await gqlRequest(query);
|
|
const tag = data?.tags?.results?.[0];
|
|
if (!tag?._id || !tag?.name)
|
|
return null;
|
|
return { _id: tag._id, name: tag.name };
|
|
}
|
|
export function resolveUserId(slug) {
|
|
const normalized = gqlEscape(slug.toLowerCase());
|
|
const query = `query UserProfile {
|
|
user(input: {selector: {slug: "${normalized}"}}) {
|
|
result { _id displayName slug }
|
|
}
|
|
}`;
|
|
return gqlRequest(query).then((data) => {
|
|
const user = data?.user?.result;
|
|
if (!user?._id) {
|
|
throw new EmptyResultError(`lesswrong user ${slug}`, 'Check the username — LessWrong slugs are lowercase (e.g. "zvi", "eliezer-yudkowsky")');
|
|
}
|
|
return { _id: user._id, displayName: (user.displayName ?? '') };
|
|
});
|
|
}
|
|
export function parsePostId(urlOrId) {
|
|
const trimmed = urlOrId.trim();
|
|
const match = trimmed.match(/posts\/([a-zA-Z0-9]+)/);
|
|
return match ? match[1] : trimmed;
|
|
}
|