astro
Version:
Astro is a modern site builder with web best practices, performance, and DX front-of-mind.
558 lines (557 loc) • 17.3 kB
JavaScript
import fsMod from "node:fs";
import { fileURLToPath } from "node:url";
import { bold } from "kleur/colors";
import { mergeConfig as mergeViteConfig } from "vite";
import astroIntegrationActionsRouteHandler from "../actions/integration.js";
import { isActionsFilePresent } from "../actions/utils.js";
import { CONTENT_LAYER_TYPE } from "../content/consts.js";
import { globalContentLayer } from "../content/content-layer.js";
import { globalContentConfigObserver } from "../content/utils.js";
import { buildClientDirectiveEntrypoint } from "../core/client-directive/index.js";
import { mergeConfig } from "../core/config/index.js";
import { validateConfigRefined } from "../core/config/validate.js";
import { validateSetAdapter } from "../core/dev/adapter-validation.js";
import { getClientOutputDirectory } from "../prerender/utils.js";
import { validateSupportedFeatures } from "./features-validation.js";
async function withTakingALongTimeMsg({
name,
hookName,
hookFn,
logger,
integrationLogger
}) {
const timeout = setTimeout(() => {
logger.info(
"build",
`Waiting for integration ${bold(JSON.stringify(name))}, hook ${bold(
JSON.stringify(hookName)
)}...`
);
}, 3e3);
try {
return await hookFn();
} catch (err) {
integrationLogger.error(
`An unhandled error occurred while running the ${bold(JSON.stringify(hookName))} hook`
);
throw err;
} finally {
clearTimeout(timeout);
}
}
async function runHookInternal({
integration,
hookName,
logger,
params
}) {
const hook = integration?.hooks?.[hookName];
const integrationLogger = getLogger(integration, logger);
if (hook) {
await withTakingALongTimeMsg({
name: integration.name,
hookName,
hookFn: () => hook(Object.assign(params(), { logger: integrationLogger })),
logger,
integrationLogger
});
}
return { integrationLogger };
}
const Loggers = /* @__PURE__ */ new WeakMap();
function getLogger(integration, logger) {
if (Loggers.has(integration)) {
return Loggers.get(integration);
}
const integrationLogger = logger.forkIntegrationLogger(integration.name);
Loggers.set(integration, integrationLogger);
return integrationLogger;
}
const serverEventPrefix = "astro-dev-toolbar";
function getToolbarServerCommunicationHelpers(server) {
return {
/**
* Send a message to the dev toolbar that an app can listen for. The payload can be any serializable data.
* @param event - The event name
* @param payload - The payload to send
*/
send: (event, payload) => {
server.hot.send(event, payload);
},
/**
* Receive a message from a dev toolbar app.
* @param event
* @param callback
*/
on: (event, callback) => {
server.hot.on(event, callback);
},
/**
* Fired when an app is initialized.
* @param appId - The id of the app that was initialized
* @param callback - The callback to run when the app is initialized
*/
onAppInitialized: (appId, callback) => {
server.hot.on(`${serverEventPrefix}:${appId}:initialized`, callback);
},
/**
* Fired when an app is toggled on or off.
* @param appId - The id of the app that was toggled
* @param callback - The callback to run when the app is toggled
*/
onAppToggled: (appId, callback) => {
server.hot.on(`${serverEventPrefix}:${appId}:toggled`, callback);
}
};
}
const SAFE_CHARS_RE = /[^\w.-]/g;
function normalizeCodegenDir(integrationName) {
return `./integrations/${integrationName.replace(SAFE_CHARS_RE, "_")}/`;
}
function normalizeInjectedTypeFilename(filename, integrationName) {
if (!filename.endsWith(".d.ts")) {
throw new Error(
`Integration ${bold(integrationName)} is injecting a type that does not end with "${bold(".d.ts")}"`
);
}
return `${normalizeCodegenDir(integrationName)}${filename.replace(SAFE_CHARS_RE, "_")}`;
}
async function runHookConfigSetup({
settings,
command,
logger,
isRestart = false,
fs = fsMod
}) {
if (settings.config.adapter) {
settings.config.integrations.unshift(settings.config.adapter);
}
if (await isActionsFilePresent(fs, settings.config.srcDir)) {
settings.config.integrations.push(astroIntegrationActionsRouteHandler({ settings }));
}
let updatedConfig = { ...settings.config };
let updatedSettings = { ...settings, config: updatedConfig };
let addedClientDirectives = /* @__PURE__ */ new Map();
let astroJSXRenderer = null;
for (let i = 0; i < updatedConfig.integrations.length; i++) {
const integration = updatedConfig.integrations[i];
const { integrationLogger } = await runHookInternal({
integration,
hookName: "astro:config:setup",
logger,
params: () => {
const hooks = {
config: updatedConfig,
command,
isRestart,
addRenderer(renderer) {
if (!renderer.name) {
throw new Error(`Integration ${bold(integration.name)} has an unnamed renderer.`);
}
if (!renderer.serverEntrypoint) {
throw new Error(
`Renderer ${bold(renderer.name)} does not provide a serverEntrypoint.`
);
}
if (renderer.name === "astro:jsx") {
astroJSXRenderer = renderer;
} else {
updatedSettings.renderers.push(renderer);
}
},
injectScript: (stage, content) => {
updatedSettings.scripts.push({ stage, content });
},
updateConfig: (newConfig) => {
updatedConfig = mergeConfig(updatedConfig, newConfig);
return { ...updatedConfig };
},
injectRoute: (injectRoute) => {
if (injectRoute.entrypoint == null && "entryPoint" in injectRoute) {
logger.warn(
null,
`The injected route "${injectRoute.pattern}" by ${integration.name} specifies the entry point with the "entryPoint" property. This property is deprecated, please use "entrypoint" instead.`
);
injectRoute.entrypoint = injectRoute.entryPoint;
}
updatedSettings.injectedRoutes.push({ ...injectRoute, origin: "external" });
},
addWatchFile: (path) => {
updatedSettings.watchFiles.push(path instanceof URL ? fileURLToPath(path) : path);
},
addDevToolbarApp: (entrypoint) => {
updatedSettings.devToolbarApps.push(entrypoint);
},
addClientDirective: ({ name, entrypoint }) => {
if (updatedSettings.clientDirectives.has(name) || addedClientDirectives.has(name)) {
throw new Error(
`The "${integration.name}" integration is trying to add the "${name}" client directive, but it already exists.`
);
}
addedClientDirectives.set(
name,
buildClientDirectiveEntrypoint(name, entrypoint, settings.config.root)
);
},
addMiddleware: ({ order, entrypoint }) => {
if (typeof updatedSettings.middlewares[order] === "undefined") {
throw new Error(
`The "${integration.name}" integration is trying to add middleware but did not specify an order.`
);
}
logger.debug(
"middleware",
`The integration ${integration.name} has added middleware that runs ${order === "pre" ? "before" : "after"} any application middleware you define.`
);
updatedSettings.middlewares[order].push(
typeof entrypoint === "string" ? entrypoint : fileURLToPath(entrypoint)
);
},
createCodegenDir: () => {
const codegenDir = new URL(normalizeCodegenDir(integration.name), settings.dotAstroDir);
fs.mkdirSync(codegenDir, { recursive: true });
return codegenDir;
}
};
function addPageExtension(...input) {
const exts = input.flat(Infinity).map(
(ext) => `.${ext.replace(/^\./, "")}`
);
updatedSettings.pageExtensions.push(...exts);
}
function addContentEntryType(contentEntryType) {
updatedSettings.contentEntryTypes.push(contentEntryType);
}
function addDataEntryType(dataEntryType) {
updatedSettings.dataEntryTypes.push(dataEntryType);
}
Object.defineProperty(hooks, "addPageExtension", {
value: addPageExtension,
writable: false,
enumerable: false
});
Object.defineProperty(hooks, "addContentEntryType", {
value: addContentEntryType,
writable: false,
enumerable: false
});
Object.defineProperty(hooks, "addDataEntryType", {
value: addDataEntryType,
writable: false,
enumerable: false
});
return hooks;
}
});
for (const [name, compiled] of addedClientDirectives) {
updatedSettings.clientDirectives.set(name, await compiled);
}
try {
updatedConfig = await validateConfigRefined(updatedConfig);
} catch (error) {
integrationLogger.error("An error occurred while updating the config");
throw error;
}
}
if (astroJSXRenderer) {
updatedSettings.renderers.push(astroJSXRenderer);
}
if (updatedConfig.i18n && typeof updatedConfig.i18n.routing !== "string") {
updatedConfig.i18n.routing.redirectToDefaultLocale ??= updatedConfig.i18n.routing.prefixDefaultLocale || false;
}
updatedSettings.config = updatedConfig;
return updatedSettings;
}
async function runHookConfigDone({
settings,
logger,
command
}) {
for (const integration of settings.config.integrations) {
await runHookInternal({
integration,
hookName: "astro:config:done",
logger,
params: () => ({
config: settings.config,
setAdapter(adapter) {
validateSetAdapter(logger, settings, adapter, integration.name, command);
if (adapter.adapterFeatures?.buildOutput !== "static") {
settings.buildOutput = "server";
}
if (!adapter.supportedAstroFeatures) {
throw new Error(
`The adapter ${adapter.name} doesn't provide a feature map. It is required in Astro 4.0.`
);
} else {
validateSupportedFeatures(
adapter.name,
adapter.supportedAstroFeatures,
settings,
logger
);
}
settings.adapter = adapter;
},
injectTypes(injectedType) {
const normalizedFilename = normalizeInjectedTypeFilename(
injectedType.filename,
integration.name
);
settings.injectedTypes.push({
filename: normalizedFilename,
content: injectedType.content
});
return new URL(normalizedFilename, settings.dotAstroDir);
},
get buildOutput() {
return settings.buildOutput;
}
})
});
}
}
async function runHookServerSetup({
config,
server,
logger
}) {
let refreshContent;
refreshContent = async (options) => {
const contentConfig = globalContentConfigObserver.get();
if (contentConfig.status !== "loaded" || !Object.values(contentConfig.config.collections).some(
(collection) => collection.type === CONTENT_LAYER_TYPE
)) {
return;
}
const contentLayer = await globalContentLayer.get();
await contentLayer?.sync(options);
};
for (const integration of config.integrations) {
await runHookInternal({
integration,
hookName: "astro:server:setup",
logger,
params: () => ({
server,
toolbar: getToolbarServerCommunicationHelpers(server),
refreshContent
})
});
}
}
async function runHookServerStart({
config,
address,
logger
}) {
for (const integration of config.integrations) {
await runHookInternal({
integration,
hookName: "astro:server:start",
logger,
params: () => ({ address })
});
}
}
async function runHookServerDone({
config,
logger
}) {
for (const integration of config.integrations) {
await runHookInternal({
integration,
hookName: "astro:server:done",
logger,
params: () => ({})
});
}
}
async function runHookBuildStart({
config,
logger
}) {
for (const integration of config.integrations) {
await runHookInternal({
integration,
hookName: "astro:build:start",
logger,
params: () => ({})
});
}
}
async function runHookBuildSetup({
config,
vite,
pages,
target,
logger
}) {
let updatedConfig = vite;
for (const integration of config.integrations) {
await runHookInternal({
integration,
hookName: "astro:build:setup",
logger,
params: () => ({
vite,
pages,
target,
updateConfig: (newConfig) => {
updatedConfig = mergeViteConfig(updatedConfig, newConfig);
return { ...updatedConfig };
}
})
});
}
return updatedConfig;
}
async function runHookBuildSsr({
config,
manifest,
logger,
entryPoints,
middlewareEntryPoint
}) {
const entryPointsMap = /* @__PURE__ */ new Map();
for (const [key, value] of entryPoints) {
entryPointsMap.set(toIntegrationRouteData(key), value);
}
for (const integration of config.integrations) {
await runHookInternal({
integration,
hookName: "astro:build:ssr",
logger,
params: () => ({
manifest,
entryPoints: entryPointsMap,
middlewareEntryPoint
})
});
}
}
async function runHookBuildGenerated({
settings,
logger
}) {
const dir = settings.buildOutput === "server" ? settings.config.build.client : settings.config.outDir;
for (const integration of settings.config.integrations) {
await runHookInternal({
integration,
hookName: "astro:build:generated",
logger,
params: () => ({ dir })
});
}
}
async function runHookBuildDone({ settings, pages, routes, logger }) {
const dir = getClientOutputDirectory(settings);
await fsMod.promises.mkdir(dir, { recursive: true });
const integrationRoutes = routes.map(toIntegrationRouteData);
for (const integration of settings.config.integrations) {
await runHookInternal({
integration,
hookName: "astro:build:done",
logger,
params: () => ({
pages: pages.map((p) => ({ pathname: p })),
dir,
routes: integrationRoutes,
assets: new Map(
routes.filter((r) => r.distURL !== void 0).map((r) => [r.route, r.distURL])
)
})
});
}
}
async function runHookRouteSetup({
route,
settings,
logger
}) {
const prerenderChangeLogs = [];
for (const integration of settings.config.integrations) {
const originalRoute = { ...route };
await runHookInternal({
integration,
hookName: "astro:route:setup",
logger,
params: () => ({ route })
});
if (route.prerender !== originalRoute.prerender) {
prerenderChangeLogs.push({ integrationName: integration.name, value: route.prerender });
}
}
if (prerenderChangeLogs.length > 1) {
logger.debug(
"router",
`The ${route.component} route's prerender option has been changed multiple times by integrations:
` + prerenderChangeLogs.map((log) => `- ${log.integrationName}: ${log.value}`).join("\n")
);
}
}
async function runHookRoutesResolved({
routes,
settings,
logger
}) {
for (const integration of settings.config.integrations) {
await runHookInternal({
integration,
hookName: "astro:routes:resolved",
logger,
params: () => ({
routes: routes.map((route) => toIntegrationResolvedRoute(route))
})
});
}
}
function toIntegrationResolvedRoute(route) {
return {
isPrerendered: route.prerender,
entrypoint: route.component,
pattern: route.route,
params: route.params,
origin: route.origin,
generate: route.generate,
patternRegex: route.pattern,
segments: route.segments,
type: route.type,
pathname: route.pathname,
redirect: route.redirect,
redirectRoute: route.redirectRoute ? toIntegrationResolvedRoute(route.redirectRoute) : void 0
};
}
function toIntegrationRouteData(route) {
return {
route: route.route,
component: route.component,
generate: route.generate,
params: route.params,
pathname: route.pathname,
segments: route.segments,
prerender: route.prerender,
redirect: route.redirect,
redirectRoute: route.redirectRoute ? toIntegrationRouteData(route.redirectRoute) : void 0,
type: route.type,
pattern: route.pattern,
distURL: route.distURL
};
}
export {
getToolbarServerCommunicationHelpers,
normalizeCodegenDir,
normalizeInjectedTypeFilename,
runHookBuildDone,
runHookBuildGenerated,
runHookBuildSetup,
runHookBuildSsr,
runHookBuildStart,
runHookConfigDone,
runHookConfigSetup,
runHookRouteSetup,
runHookRoutesResolved,
runHookServerDone,
runHookServerSetup,
runHookServerStart
};