webring/scripts/deploy_bunny.ts
2025-03-31 22:46:55 -07:00

32 lines
1.1 KiB
TypeScript

import { join } from '@std/path';
import { deployScript, purgeCDNCache, uploadFile } from './bunny_api/main.ts';
if (import.meta.main) {
console.log(`Attempting to upload index.html`);
const localFilepath = join(import.meta.dirname ?? '', '../build/index.html');
const indexContents = Deno.readFileSync(localFilepath);
await uploadFile('index.html', indexContents);
console.log(`Done!`);
console.log(`Attempting to purge the CDN cache.`);
await purgeCDNCache();
console.log(`Done!`);
for (const dirEntry of Deno.readDirSync(
join(import.meta.dirname ?? '', '../build/bunny')
)) {
if (dirEntry.isFile && dirEntry.name.endsWith('.js')) {
const scriptName = dirEntry.name.substring(0, dirEntry.name.length - 3);
const decoder = new TextDecoder('utf-8');
const contents = decoder.decode(
Deno.readFileSync(
join(import.meta.dirname ?? '', '../build/bunny', dirEntry.name)
)
);
console.log(`Attempting to deploy script '${scriptName}'`);
await deployScript(scriptName, contents);
console.log(`Done!`);
}
}
}