238 lines
12 KiB
TypeScript
238 lines
12 KiB
TypeScript
// The plugin contract — the product's main API surface: the machine-readable types + pure rules.
|
||
// README → Building plugins is the prose reference; discovery/router wire this to FS + HTTP.
|
||
//
|
||
// A plugin's identity is its folder under plugins/: folder name = `id` (isValidPluginId), mount =
|
||
// `/<id>`. Neither is in the manifest — the host derives them, so they can't drift or be claimed twice.
|
||
|
||
import type { RequestContext } from "../http/context.ts";
|
||
import type { NavNode } from "../ui/nav.ts";
|
||
import type { StorageCredentials } from "./storage.ts";
|
||
|
||
// The Plainpages release this contract ships in — see README → Contract versioning.
|
||
export const HOST_API_VERSION = "0.1.0";
|
||
|
||
export type HttpMethod = "DELETE" | "GET" | "HEAD" | "PATCH" | "POST" | "PUT";
|
||
|
||
// A handler's return value; the host turns it into the HTTP response. Returning void is the
|
||
// escape hatch — the handler wrote to `ctx.res` itself (streaming, custom headers, etc.).
|
||
export type RouteResult =
|
||
| { headers?: Record<string, string>; html: string; status?: number }
|
||
| { headers?: Record<string, string>; json: unknown; status?: number } // for opt-in JS enhancement
|
||
| { data?: Record<string, unknown>; headers?: Record<string, string>; status?: number; view: string }
|
||
| { redirect: string; status?: number };
|
||
|
||
export type RouteHandler = (ctx: RequestContext) => Promise<RouteResult | void> | RouteResult | void;
|
||
|
||
export interface Route {
|
||
handler: RouteHandler;
|
||
method: HttpMethod;
|
||
path: string; // relative to the plugin's mount path `/<id>`; ":name" segments → ctx.params.name
|
||
permission?: string; // coarse gate — the Keto Permission the caller must hold; checked before the handler runs
|
||
// Same as omitting `permission`, but stated outright so public is a deliberate choice rather than
|
||
// a forgotten gate. Mutually exclusive with `permission` (discovery refuses both).
|
||
public?: boolean;
|
||
}
|
||
|
||
// A Keto Permission this plugin gates on — declared for docs/seeding. Names are a shared global
|
||
// namespace, so an operator grants them once in Keto. See README → Users, groups & permissions.
|
||
export interface PermissionDecl {
|
||
description?: string;
|
||
name: string;
|
||
}
|
||
|
||
// `<resource>:<action>`. The 64-char cap keeps a name usable as a Keto object and a URL path
|
||
// segment. Enforced at discovery like every other manifest rule, so the convention holds for
|
||
// plugins the admin GUI never touches.
|
||
const PERMISSION_NAME = /^[a-z0-9][a-z0-9_-]*:[a-z0-9][a-z0-9_-]*$/;
|
||
|
||
export function isValidPermissionName(name: string): boolean {
|
||
return name.length <= 64 && PERMISSION_NAME.test(name);
|
||
}
|
||
|
||
// Every permission the installed plugins declare, deduped by name and sorted — the fixed list the
|
||
// admin screens offer when granting. Permissions are authored in code, never invented in the GUI, so
|
||
// this *is* the catalog; a name in Keto that no plugin declares gates nothing and is not offered.
|
||
// First declaration of a name wins its description (shared names are legitimate, findConflicts warns).
|
||
export function declaredPermissions(plugins: Plugin[]): PermissionDecl[] {
|
||
const byName = new Map<string, PermissionDecl>();
|
||
for (const plugin of plugins) {
|
||
for (const decl of plugin.permissions ?? []) if (!byName.has(decl.name)) byName.set(decl.name, decl);
|
||
}
|
||
return [...byName.values()].sort((a, b) => a.name.localeCompare(b.name));
|
||
}
|
||
|
||
// What onBoot receives. A hook declaring no parameter stays valid, so this may grow additively.
|
||
export interface BootContext {
|
||
storage?: StorageCredentials; // this plugin's own database; present iff the manifest declared `storage`
|
||
}
|
||
|
||
// Optional hooks on system actions. Crash-isolation is a non-goal — a throwing hook fails loud.
|
||
export interface PluginHooks {
|
||
onBoot?: (host: BootContext) => Promise<void> | void; // after discovery, before the server listens
|
||
onRequest?: (ctx: RequestContext) => Promise<RouteResult | void> | RouteResult | void; // may short-circuit
|
||
onResponse?: (ctx: RequestContext, result: RouteResult | null) => Promise<void> | void;
|
||
}
|
||
|
||
// The authored manifest — a plugin's `plugin.ts` default-exports this. No `id`/mount path: the
|
||
// host derives them from the folder name at discovery (see Plugin).
|
||
export interface PluginManifest {
|
||
apiVersion: string; // semver of the host contract this targets — write a literal, NOT HOST_API_VERSION (see docs)
|
||
// Take over "/dashboard"; the host gates it to a signed-in session first. At most one plugin may
|
||
// declare it (findConflicts → error, never last-write-wins).
|
||
dashboard?: RouteHandler;
|
||
// Take over the ungated public landing "/". At most one plugin may declare it.
|
||
home?: RouteHandler;
|
||
hooks?: PluginHooks;
|
||
nav?: NavNode[]; // fragment merged into the menu (composeNav); node `icon` is a Lucide sprite id (src/ui/icons.ts), node ids must be globally unique
|
||
permissions?: PermissionDecl[];
|
||
routes?: Route[];
|
||
// Ask for a Postgres database of this plugin's own; its credentials arrive on onBoot's BootContext.
|
||
// The host provisions and locks it down but owns no schema inside it, and never drops it.
|
||
storage?: boolean;
|
||
}
|
||
|
||
// A discovered plugin: the manifest plus the `id` the host read from the folder name. Mounted
|
||
// at `/<id>`, with views/static namespaced under the id.
|
||
export interface Plugin extends PluginManifest {
|
||
id: string;
|
||
}
|
||
|
||
// Types the manifest and returns it unchanged; validation happens at discovery, so a plugin may
|
||
// equally be a plain typed object.
|
||
export function definePlugin(manifest: PluginManifest): PluginManifest {
|
||
return manifest;
|
||
}
|
||
|
||
// The id forms the mount path `/<id>`, the view/static namespace and the central-override target,
|
||
// so it must stay URL/path-safe: no uppercase, underscores, dots, slashes or spaces.
|
||
const PLUGIN_ID = /^[a-z0-9-]+$/;
|
||
|
||
export function isValidPluginId(id: string): boolean {
|
||
return PLUGIN_ID.test(id);
|
||
}
|
||
|
||
// Plugin routes resolve before the built-ins, so a folder named one of these would silently shadow
|
||
// one — discovery refuses it. "/" is owned by the `home` field, not a route, so it needs no
|
||
// reservation; `admin` is deliberately absent, the admin screens being a drop-in plugin.
|
||
export const RESERVED_PLUGIN_IDS: ReadonlySet<string> = new Set([
|
||
"auth", "dashboard", "login", "logout", "oauth2", "public", "recovery", "registration", "settings", "verification",
|
||
]);
|
||
|
||
export interface Semver {
|
||
major: number;
|
||
minor: number;
|
||
patch: number;
|
||
}
|
||
|
||
// The official semver.org 2.0.0 core regex. Only major/minor drive compatibility, so the
|
||
// prerelease/build groups are matched to accept valid input but otherwise ignored.
|
||
const SEMVER =
|
||
/^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*)?(?:\+[0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*)?$/;
|
||
|
||
// Rejects ranges/prefixes (`^1.2.3`, `v1`), leading zeros and missing parts — fail loud over coerce.
|
||
export function parseSemver(version: unknown): Semver | null {
|
||
if (typeof version !== "string") return null;
|
||
const m = SEMVER.exec(version);
|
||
if (!m) return null;
|
||
return { major: Number(m[1]), minor: Number(m[2]), patch: Number(m[3]) };
|
||
}
|
||
|
||
export interface VersionCheck {
|
||
level: "ok" | "refuse" | "warn";
|
||
message: string;
|
||
}
|
||
|
||
// Provider/consumer semver check (full table in README → Contract versioning). Discovery maps
|
||
// refuse→throw, warn→log.
|
||
export function checkApiVersion(pluginVersion: unknown, hostVersion: string = HOST_API_VERSION): VersionCheck {
|
||
const plugin = parseSemver(pluginVersion);
|
||
const host = parseSemver(hostVersion);
|
||
if (!host) throw new Error(`hostVersion is not a semver: ${JSON.stringify(hostVersion)}`); // invariant, not user input
|
||
if (!plugin) {
|
||
return { level: "refuse", message: `apiVersion must be a semver string (e.g. "${hostVersion}"); got ${JSON.stringify(pluginVersion)}` };
|
||
}
|
||
if (plugin.major !== host.major) {
|
||
return { level: "refuse", message: `plugin targets apiVersion ${pluginVersion}; host is ${hostVersion} — incompatible major` };
|
||
}
|
||
if (plugin.minor > host.minor) {
|
||
return { level: "refuse", message: `plugin targets apiVersion ${pluginVersion} but host is ${hostVersion}; upgrade the host` };
|
||
}
|
||
if (plugin.minor < host.minor) {
|
||
// Pre-1.0 the major is pinned at 0, so a minor is the only slot a breaking change can use.
|
||
if (host.major === 0) {
|
||
return { level: "refuse", message: `plugin targets apiVersion ${pluginVersion}; host is ${hostVersion} — pre-1.0 a minor is a contract break, rebuild against ${hostVersion}` };
|
||
}
|
||
return { level: "warn", message: `plugin targets apiVersion ${pluginVersion}; host is ${hostVersion} — built against an older release` };
|
||
}
|
||
return { level: "ok", message: `apiVersion ${pluginVersion}` };
|
||
}
|
||
|
||
export interface PluginConflict {
|
||
kind: "dashboard" | "home" | "id" | "nav-id" | "permission" | "route";
|
||
level: "error" | "warn";
|
||
message: string;
|
||
plugins: string[]; // unique ids involved
|
||
}
|
||
|
||
// Loud resolution, never last-write-wins: discovery throws on any "error" and logs every "warn".
|
||
// Mount-path uniqueness needs no rule of its own — it follows from the id check. Shared permission
|
||
// names are the one intentional overlap, so they warn rather than error.
|
||
export function findConflicts(plugins: Plugin[]): PluginConflict[] {
|
||
const out: PluginConflict[] = [];
|
||
|
||
const idCounts = new Map<string, number>();
|
||
for (const plugin of plugins) idCounts.set(plugin.id, (idCounts.get(plugin.id) ?? 0) + 1);
|
||
for (const [id, n] of idCounts) {
|
||
if (n > 1) out.push({ kind: "id", level: "error", message: `${n} plugins share id "${id}"; ids must be globally unique`, plugins: [id] });
|
||
}
|
||
|
||
// The landing pages are single slots: "/" (home) and "/dashboard" (dashboard) take one owner
|
||
// each — two plugins claiming either is a loud error, not a race.
|
||
for (const slot of ["home", "dashboard"] as const) {
|
||
const owners = plugins.filter((plugin) => plugin[slot]).map((plugin) => plugin.id);
|
||
if (owners.length > 1) out.push({ kind: slot, level: "error", message: `${owners.length} plugins claim "${slot}" (${owners.join(", ")}); only one may own that page`, plugins: uniq(owners) });
|
||
}
|
||
|
||
collect(plugins, (plugin, push) => {
|
||
for (const route of plugin.routes ?? []) push(`${route.method} ${fullPath(plugin.id, route.path)}`);
|
||
}).forEach((owners, key) => {
|
||
if (owners.length > 1) out.push({ kind: "route", level: "error", message: `${owners.length} routes resolve to "${key}"`, plugins: uniq(owners) });
|
||
});
|
||
|
||
collect(plugins, (plugin, push) => collectNavIds(plugin.nav, push)).forEach((owners, id) => {
|
||
if (owners.length > 1) out.push({ kind: "nav-id", level: "error", message: `nav id "${id}" used ${owners.length}×; override targets ids, so they must be unique`, plugins: uniq(owners) });
|
||
});
|
||
|
||
collect(plugins, (plugin, push) => {
|
||
for (const decl of plugin.permissions ?? []) push(decl.name);
|
||
}).forEach((owners, name) => {
|
||
if (owners.length > 1) out.push({ kind: "permission", level: "warn", message: `permission "${name}" declared by ${uniq(owners).length} plugins; pick a more specific "<resource>" unless shared on purpose`, plugins: uniq(owners) });
|
||
});
|
||
|
||
return out;
|
||
}
|
||
|
||
// Map each emitted key → the plugin ids that emitted it (repeats kept, so within-plugin dups count).
|
||
function collect(plugins: Plugin[], emit: (plugin: Plugin, push: (key: string) => void) => void): Map<string, string[]> {
|
||
const owners = new Map<string, string[]>();
|
||
for (const plugin of plugins) emit(plugin, (key) => owners.set(key, [...(owners.get(key) ?? []), plugin.id]));
|
||
return owners;
|
||
}
|
||
|
||
function collectNavIds(nodes: NavNode[] | undefined, push: (id: string) => void): void {
|
||
for (const node of nodes ?? []) {
|
||
if (node.id != null) push(node.id);
|
||
collectNavIds(node.children, push);
|
||
}
|
||
}
|
||
|
||
// A route's full path = the plugin's mount path `/<id>` + the route path. The single source of
|
||
// truth for both conflict detection (here) and the router, so they can't disagree.
|
||
export function fullPath(id: string, path: string): string {
|
||
return `/${id}${path.startsWith("/") ? path : `/${path}`}`;
|
||
}
|
||
|
||
function uniq(xs: string[]): string[] {
|
||
return [...new Set(xs)];
|
||
}
|