36 lines
1.2 KiB
JavaScript
36 lines
1.2 KiB
JavaScript
|
import path from 'node:path';
|
||
|
import { promises } from 'node:fs';
|
||
|
|
||
|
const defaultCacheDir = "node_modules/.vite";
|
||
|
function viteBasicSslPlugin() {
|
||
|
return {
|
||
|
name: "vite:basic-ssl",
|
||
|
async configResolved(config) {
|
||
|
const certificate = await getCertificate((config.cacheDir ?? defaultCacheDir) + "/basic-ssl");
|
||
|
const https = () => ({ cert: certificate, key: certificate });
|
||
|
config.server.https = Object.assign({}, config.server.https, https());
|
||
|
config.preview.https = Object.assign({}, config.preview.https, https());
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
async function getCertificate(cacheDir) {
|
||
|
const cachePath = path.join(cacheDir, "_cert.pem");
|
||
|
try {
|
||
|
const [stat, content] = await Promise.all([
|
||
|
promises.stat(cachePath),
|
||
|
promises.readFile(cachePath, "utf8")
|
||
|
]);
|
||
|
if (Date.now() - stat.ctime.valueOf() > 30 * 24 * 60 * 60 * 1e3) {
|
||
|
throw new Error("cache is outdated.");
|
||
|
}
|
||
|
return content;
|
||
|
} catch {
|
||
|
const content = (await import('./chunks/certificate.mjs')).createCertificate();
|
||
|
promises.mkdir(cacheDir, { recursive: true }).then(() => promises.writeFile(cachePath, content)).catch(() => {
|
||
|
});
|
||
|
return content;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export { viteBasicSslPlugin as default, getCertificate };
|