feat(library): book spec — open library

This commit is contained in:
afiqzudinhadi 2026-08-03 15:44:48 +08:00
parent abc3489d27
commit 1c90ae9abc
4 changed files with 571 additions and 0 deletions

View file

@ -0,0 +1,187 @@
import type { LibraryNoteCtx, MediaTypeSpec, SpecDeps } from 'packages/obsidian/src/library/types';
import { stripQuotes, extractMyNotes, extractCustomSections, type CustomSection } from 'packages/obsidian/src/watchlist/parse';
import { yamlList, yamlScalar, quotedOrNull } from 'packages/obsidian/src/watchlist/yaml';
const OPENLIBRARY_BASE = 'https://openlibrary.org';
export interface BookRecord {
title: string;
readStatus: string;
rating: string;
ratingStars: string;
authors: string[];
year: number | null;
pages: number | null;
genre: string[];
olid: string;
isbn: string;
poster: string | null;
url: string;
}
function deriveReadStatus(prev: Record<string, string>): string {
const canonical = stripQuotes(prev['read_status']);
if (canonical) return canonical;
// skeleton conversion: legacy boolean `read` field
return stripQuotes(prev['read']) === 'true' ? 'Read' : 'Unread';
}
function deriveRating(prev: Record<string, string>): { rating: string; ratingStars: string } {
const canonicalRating = stripQuotes(prev['rating']);
if (canonicalRating) return { rating: canonicalRating, ratingStars: stripQuotes(prev['rating_stars']) };
// skeleton conversion: legacy numeric `personalRating` field -> N stars
const legacy = Number(stripQuotes(prev['personalRating']));
if (Number.isFinite(legacy) && legacy > 0) {
return { rating: String(legacy), ratingStars: '⭐️'.repeat(legacy) };
}
return { rating: '0', ratingStars: '' };
}
function deriveAuthors(doc: any, prev: Record<string, string>): string[] {
const fresh: string[] = Array.isArray(doc.author_name) ? doc.author_name.filter(Boolean) : [];
if (fresh.length) return fresh;
// skeleton conversion: legacy singular `author` field, used only when Open Library gives none
const legacy = stripQuotes(prev['author']);
return legacy ? [legacy] : [];
}
/**
* Pure mapper: Open Library `search.json` doc + prev frontmatter -> canonical BookRecord.
* User-managed fields (read_status, rating, rating_stars, isbn) are preserved from prev
* (with legacy-skeleton fallback for read_status/rating/authors); everything else is
* freshly derived from the doc on every call.
*/
export function buildBook(doc: any, prev: Record<string, string>): BookRecord {
const title: string = doc.title ?? stripQuotes(prev['title']) ?? '';
const { rating, ratingStars } = deriveRating(prev);
const readStatus = deriveReadStatus(prev);
const authors = deriveAuthors(doc, prev);
const genre: string[] = Array.isArray(doc.subject) ? doc.subject.filter(Boolean).slice(0, 8) : [];
const olid = String(doc.key ?? '').replace(/^\/works\//, '') || stripQuotes(prev['olid']);
return {
title,
readStatus,
rating,
ratingStars,
authors,
year: typeof doc.first_publish_year === 'number' ? doc.first_publish_year : null,
pages: typeof doc.number_of_pages_median === 'number' ? doc.number_of_pages_median : null,
genre,
olid,
isbn: stripQuotes(prev['isbn']),
poster: doc.cover_i ? `https://covers.openlibrary.org/b/id/${doc.cover_i}-L.jpg` : null,
url: doc.key ? `${OPENLIBRARY_BASE}${doc.key}` : olid ? `${OPENLIBRARY_BASE}/works/${olid}` : '',
};
}
/** Carries the legacy goodreads search link forward as a `## Links` entry across every re-render. */
function resolveGoodreadsLink(prev: Record<string, string>, body: string): string {
const fromBody = /\[Goodreads\]\(([^)]+)\)/.exec(body ?? '');
if (fromBody) return fromBody[1];
// first-pass skeleton conversion: legacy plain `url` field IS the goodreads link, before
// it gets overwritten by the canonical Open Library url
const legacyUrl = stripQuotes(prev['url']);
if (legacyUrl && !legacyUrl.includes('openlibrary.org')) return legacyUrl;
return '';
}
export function renderBook(r: BookRecord, myNotes: string, customSections: CustomSection[] = [], goodreadsUrl = ''): string {
const fm = [
'---',
'type: book_item',
`title: ${yamlScalar(r.title)}`,
`read_status: ${r.readStatus}`,
`rating: ${r.rating}`,
`rating_stars: ${r.ratingStars}`,
`authors: ${yamlList(r.authors)}`,
`year: ${r.year ?? 'null'}`,
`pages: ${r.pages ?? 'null'}`,
`genre: ${yamlList(r.genre)}`,
`olid: ${r.olid}`,
`isbn: ${r.isbn}`,
`poster: ${quotedOrNull(r.poster)}`,
`url: ${quotedOrNull(r.url)}`,
'tags: [books, book]',
'---',
];
const b: string[] = ['', `# ${r.title}`, ''];
if (r.poster) b.push(`![poster|200](${r.poster})`, '');
const meta = ['**Book**', ...[r.year !== null ? String(r.year) : '', r.pages !== null ? `${r.pages} p.` : ''].filter(x => x)];
b.push(meta.join(' · '), '');
b.push(`**Read Status:** ${r.readStatus}`, '');
if (r.authors.length) b.push(`**Authors:** ${r.authors.join(', ')}`, '');
const links: string[] = [];
if (r.url) links.push(`- [Open Library](${r.url})`);
if (goodreadsUrl) links.push(`- [Goodreads](${goodreadsUrl})`);
if (links.length) b.push('## Links', ...links, '');
for (const s of customSections) b.push(`## ${s.heading}`, s.content, '');
b.push('## My Notes', '', myNotes);
if (myNotes) b.push('');
return fm.join('\n') + '\n' + b.join('\n');
}
async function fetchDocs(query: string, deps: SpecDeps): Promise<any[]> {
const qs = new URLSearchParams({ q: query, limit: '10' });
const res = await deps.http(`${OPENLIBRARY_BASE}/search.json?${qs.toString()}`, {});
return res?.docs ?? [];
}
export const bookSpec: MediaTypeSpec = {
typeName: 'book',
itemType: 'book_item',
folderSettingKey: 'libraryBookFolder',
enabledSettingKey: 'libraryBookEnabled',
throttleMs: 250,
hasId(fm: Record<string, string>): boolean {
return !!stripQuotes(fm['olid']);
},
isActive(fm: Record<string, string>): boolean {
// static once enriched; no chapter/issue sources, no flips -- only a missing
// olid ever makes a book note active again (a full sync bypasses this check)
return !stripQuotes(fm['olid']);
},
async resolve(ctx: LibraryNoteCtx, deps: SpecDeps): Promise<Record<string, string> | null> {
const query = stripQuotes(ctx.frontmatter['title']) || ctx.filename.replace(/\.md$/, '');
if (!query) return null;
try {
const docs = await fetchDocs(query, deps);
if (docs.length === 0) return null;
const q = query.toLowerCase();
const exacts = docs.filter(d => String(d.title ?? '').toLowerCase() === q);
const pick = exacts.length === 1 ? exacts[0] : exacts.length === 0 && docs.length === 1 ? docs[0] : null;
if (!pick) return null;
const olid = String(pick.key ?? '').replace(/^\/works\//, '');
return olid ? { olid } : null;
} catch (e) {
deps.log(`book resolve failed for "${query}": ${String(e)}`);
return null;
}
},
async sync(ctx: LibraryNoteCtx, deps: SpecDeps): Promise<{ content: string; flipped: boolean } | null> {
const fm = ctx.frontmatter;
const olid = stripQuotes(fm['olid']);
if (!olid) return null; // needs resolve() first
const query = stripQuotes(fm['title']) || ctx.filename.replace(/\.md$/, '');
let docs: any[];
try {
docs = await fetchDocs(query, deps);
} catch (e) {
deps.log(`book open library fetch failed (olid ${olid}): ${String(e)}`);
return null;
}
const doc = docs.find(d => String(d.key ?? '') === `/works/${olid}`) ?? docs[0];
if (!doc) return null;
const record = buildBook(doc, fm);
const goodreadsUrl = resolveGoodreadsLink(fm, ctx.body);
const content = renderBook(record, extractMyNotes(ctx.body), extractCustomSections(ctx.body), goodreadsUrl);
return { content, flipped: false }; // static spec -- no automation, never flips
},
};