545 lines
19 KiB
TypeScript
545 lines
19 KiB
TypeScript
import {
|
|
dirAsync,
|
|
exists,
|
|
existsAsync,
|
|
read,
|
|
removeAsync,
|
|
writeAsync,
|
|
} from "fs-jetpack";
|
|
import { decode } from "msgpackr";
|
|
import { createRouter } from "radix3";
|
|
import { startBrCompress } from "./br-load";
|
|
import { dir } from "./dir";
|
|
import { g } from "./global";
|
|
import { gunzipAsync } from "./gzip";
|
|
|
|
const decoder = new TextDecoder();
|
|
|
|
interface ZipEntry {
|
|
filename: string;
|
|
localHeaderOffset: number;
|
|
compressedSize: number;
|
|
uncompressedSize: number;
|
|
fileNameLength: number;
|
|
extraFieldLength: number;
|
|
}
|
|
|
|
const createDbProxy = () => {
|
|
return new Proxy({}, {
|
|
get(target, prop) {
|
|
if (!g.db) {
|
|
if (typeof prop === 'string') {
|
|
return new Proxy({}, {
|
|
get(target, method) {
|
|
return async () => {
|
|
throw new Error(`Database connection not available. Cannot execute ${prop}.${String(method)}`);
|
|
};
|
|
}
|
|
});
|
|
}
|
|
return undefined;
|
|
}
|
|
return g.db[prop];
|
|
}
|
|
});
|
|
};
|
|
|
|
export const deploy = {
|
|
async init(load_from?: string) {
|
|
await dirAsync(dir(`app/web/deploy`));
|
|
|
|
if (!(await this.has_gz())) {
|
|
await this.run();
|
|
}
|
|
|
|
await this.load(this.config.deploy.ts);
|
|
},
|
|
async load(ts: string) {
|
|
console.log(`[DEBUG] Loading site: ${this.config.site_id} ${ts}`);
|
|
|
|
try {
|
|
// Check if we have a new ZIP format deployment
|
|
if (await Bun.file(`app/web/deploy/${ts}.zip`).exists()) {
|
|
console.log(`[DEBUG] Found ZIP deployment, loading: ${ts}.zip`);
|
|
await this.loadFromZip(ts);
|
|
console.log(`[DEBUG] ZIP load completed, proceeding with content setup`);
|
|
} else if (await Bun.file(`app/web/deploy/${ts}.mpack`).exists()) {
|
|
console.log(`[DEBUG] Loading legacy msgpack deployment: ${ts}.gz`);
|
|
g.deploy.content = decode(
|
|
await gunzipAsync(
|
|
new Uint8Array(
|
|
await Bun.file(dir(`app/web/deploy/${ts}.gz`)).arrayBuffer()
|
|
)
|
|
)
|
|
);
|
|
} else if (await Bun.file(`app/web/deploy/${ts}.gz`).exists()) {
|
|
console.log(`[DEBUG] Loading legacy JSON deployment: ${ts}.gz`);
|
|
g.deploy.content = JSON.parse(
|
|
decoder.decode(
|
|
new Uint8Array(
|
|
await gunzipAsync(
|
|
new Uint8Array(
|
|
await Bun.file(dir(`app/web/deploy/${ts}.gz`)).arrayBuffer()
|
|
)
|
|
)
|
|
)
|
|
)
|
|
);
|
|
} else {
|
|
throw new Error(`No deployment file found for timestamp: ${ts}`);
|
|
}
|
|
|
|
// Initialize cache early to prevent undefined access errors
|
|
console.log(`[DEBUG] Setting up cache and compression...`);
|
|
g.cache = {
|
|
br: {},
|
|
gz: {},
|
|
br_progress: {
|
|
pending: {},
|
|
running: false,
|
|
timeout: null,
|
|
},
|
|
};
|
|
|
|
if (g.deploy.content) {
|
|
startBrCompress();
|
|
console.log(`[DEBUG] Compression started`);
|
|
|
|
if (exists(dir("public"))) {
|
|
await removeAsync(dir("public"));
|
|
}
|
|
if (g.deploy.content.public) {
|
|
console.log(`[DEBUG] Creating public directory and writing ${Object.keys(g.deploy.content.public).length} files`);
|
|
await dirAsync(dir("public"));
|
|
for (const [k, v] of Object.entries(g.deploy.content.public)) {
|
|
await writeAsync(dir(`public/${k}`), v);
|
|
}
|
|
}
|
|
console.log(`[DEBUG] Public files setup completed`);
|
|
|
|
for (const page of g.deploy.content.layouts) {
|
|
if (page.is_default_layout) {
|
|
g.deploy.layout = page.content_tree;
|
|
break;
|
|
}
|
|
}
|
|
if (!g.deploy.layout && g.deploy.content.layouts.length > 0) {
|
|
g.deploy.layout = g.deploy.content.layouts[0].content_tree;
|
|
}
|
|
|
|
g.deploy.router = createRouter();
|
|
g.deploy.pages = {};
|
|
for (const page of g.deploy.content.pages) {
|
|
g.deploy.pages[page.id] = page;
|
|
g.deploy.router.insert(page.url, page);
|
|
}
|
|
console.log(`[DEBUG] Router and pages setup completed`);
|
|
|
|
g.deploy.comps = {};
|
|
for (const comp of g.deploy.content.comps) {
|
|
g.deploy.comps[comp.id] = comp.content_tree;
|
|
}
|
|
console.log(`[DEBUG] Components setup completed`);
|
|
|
|
if (g.deploy.content.code.server) {
|
|
setTimeout(async () => {
|
|
if (g.deploy.content) {
|
|
delete require.cache[dir(`app/web/server/index.js`)];
|
|
await removeAsync(dir(`app/web/server`));
|
|
await dirAsync(dir(`app/web/server`));
|
|
for (const [k, v] of Object.entries(
|
|
g.deploy.content.code.server
|
|
)) {
|
|
await writeAsync(dir(`app/web/server/${k}`), v);
|
|
}
|
|
|
|
if (await existsAsync(dir(`app/web/server/index.js`))) {
|
|
const res = require(dir(`app/web/server/index.js`));
|
|
if (res && typeof res.server === "object") {
|
|
g.deploy.server = res.server;
|
|
}
|
|
}
|
|
|
|
const dbProxy = createDbProxy();
|
|
|
|
if (g.server) {
|
|
await g.deploy.server?.init?.({ port: g.server.port, db: dbProxy });
|
|
} else {
|
|
const inv = setInterval(async () => {
|
|
if (g.server) {
|
|
clearInterval(inv);
|
|
await g.deploy.server?.init?.({ port: g.server.port, db: dbProxy });
|
|
}
|
|
}, 1000);
|
|
}
|
|
}
|
|
}, 300);
|
|
}
|
|
console.log(`[DEBUG] Site load completed successfully!`);
|
|
}
|
|
} catch (e) {
|
|
console.log("[ERROR] Failed to load site", this.config.site_id);
|
|
console.error("[ERROR] Error details:", e.message);
|
|
console.error("[ERROR] Stack trace:", e.stack);
|
|
}
|
|
},
|
|
async run(load_from?: string) {
|
|
if (!this.config.site_id) {
|
|
console.log("site_id is not found on app/web/config.json");
|
|
return;
|
|
}
|
|
let buf: ArrayBuffer | null = null;
|
|
if (!load_from) {
|
|
let base_url = "https://prasi.avolut.com";
|
|
if (g.mode === "dev") {
|
|
base_url = "http://localhost:4550";
|
|
}
|
|
|
|
console.log(
|
|
`Downloading site deploy ZIP: ${this.config.site_id} [ts: ${this.config.deploy.ts}] ${base_url}`
|
|
);
|
|
const res = await fetch(
|
|
`${base_url}/prod-zip/${this.config.site_id}?ts=${Date.now()}`
|
|
);
|
|
buf = await res.arrayBuffer();
|
|
} else {
|
|
const res = await fetch(load_from);
|
|
buf = await res.arrayBuffer();
|
|
}
|
|
|
|
if (!buf) {
|
|
console.log("Failed to download site deploy");
|
|
return;
|
|
}
|
|
const ts = Date.now();
|
|
const file = Bun.file(dir(`app/web/deploy/${ts}.zip`));
|
|
await Bun.write(file, buf);
|
|
await Bun.write(dir(`app/web/deploy/${ts}.info`), JSON.stringify({
|
|
format: "zip",
|
|
timestamp: ts,
|
|
site_id: this.config.site_id
|
|
}, null, 2));
|
|
this.config.deploy.ts = ts + "";
|
|
|
|
await this.saveConfig();
|
|
},
|
|
async loadFromZip(ts: string) {
|
|
try {
|
|
console.log(`[DEBUG] Starting ZIP load for timestamp: ${ts}`);
|
|
const zipFile = Bun.file(dir(`app/web/deploy/${ts}.zip`));
|
|
|
|
if (!await zipFile.exists()) {
|
|
throw new Error(`ZIP file not found: ${zipFile.path}`);
|
|
}
|
|
|
|
console.log(`[DEBUG] ZIP file exists, size: ${await zipFile.size} bytes`);
|
|
|
|
// Read ZIP file as buffer
|
|
const zipBuffer = new Uint8Array(await zipFile.arrayBuffer());
|
|
console.log(`[DEBUG] ZIP buffer loaded, length: ${zipBuffer.length} bytes`);
|
|
|
|
// Parse ZIP file structure
|
|
const zipEntries = await this.parseZipBuffer(zipBuffer);
|
|
console.log(`[DEBUG] ZIP entries parsed: ${zipEntries.length} entries`);
|
|
|
|
// Create deploy content structure
|
|
g.deploy.content = {
|
|
layouts: [],
|
|
pages: [],
|
|
comps: [],
|
|
site: null,
|
|
public: {},
|
|
code: {
|
|
server: {},
|
|
site: {},
|
|
core: {},
|
|
},
|
|
};
|
|
|
|
let foundMetadata = false;
|
|
let loadedFiles = 0;
|
|
|
|
// Process each entry in the ZIP
|
|
console.log(`[DEBUG] Processing ${zipEntries.length} ZIP entries...`);
|
|
for (const entry of zipEntries) {
|
|
if (entry.filename.endsWith('/')) {
|
|
console.log(`[DEBUG] Skipping directory: ${entry.filename}`);
|
|
continue;
|
|
}
|
|
|
|
try {
|
|
console.log(`[DEBUG] Processing file: "${entry.filename}" (${entry.compressedSize} -> ${entry.uncompressedSize} bytes)`);
|
|
|
|
// Extract file data from ZIP buffer
|
|
const fileContent = await this.extractFileFromZip(zipBuffer, entry);
|
|
if(entry.filename.startsWith('server/')) console.log(`[DEBUG] File content preview: ${fileContent.slice(0, 100)}`);
|
|
|
|
if (entry.filename === 'metadata.json') {
|
|
console.log(`[DEBUG] ✓ Found metadata.json entry!`);
|
|
console.log(`[DEBUG] Found metadata.json, parsing content...`);
|
|
console.log(`[DEBUG] metadata.json file size: ${fileContent.length} bytes`);
|
|
|
|
const metadataStr = new TextDecoder().decode(fileContent);
|
|
console.log(`[DEBUG] metadata.json decoded to string, length: ${metadataStr.length}`);
|
|
console.log(`[DEBUG] metadata.json preview:`, metadataStr.substring(0, 100));
|
|
|
|
let metadata;
|
|
|
|
try {
|
|
metadata = JSON.parse(metadataStr);
|
|
console.log(`[DEBUG] Successfully parsed metadata.json`);
|
|
console.log(`[DEBUG] foundMetadata flag before setting: ${foundMetadata}`);
|
|
|
|
// Update deploy content with metadata
|
|
g.deploy.content.layouts = metadata.layouts || [];
|
|
g.deploy.content.pages = metadata.pages || [];
|
|
g.deploy.content.comps = metadata.components || [];
|
|
g.deploy.content.site = metadata.site;
|
|
|
|
foundMetadata = true;
|
|
console.log(`[DEBUG] foundMetadata flag after setting: ${foundMetadata}`);
|
|
|
|
console.log(`[DEBUG] Parsed metadata:`, {
|
|
layouts: metadata.layouts?.length || 0,
|
|
pages: metadata.pages?.length || 0,
|
|
components: metadata.components?.length || 0,
|
|
hasSite: !!metadata.site
|
|
});
|
|
|
|
} catch (jsonError) {
|
|
console.error(`[ERROR] Failed to parse metadata.json: ${jsonError.message}`);
|
|
console.error(`[ERROR] JSON content preview:`, metadataStr.substring(0, 200));
|
|
throw new Error(`Invalid JSON in metadata.json: ${jsonError.message}`);
|
|
}
|
|
} else if (entry.filename.startsWith('public/')) {
|
|
const relativePath = entry.filename.slice(7); // Remove 'public/' prefix
|
|
const binaryExtensions = ['.jpg', '.jpeg', '.png', '.gif', '.ico', '.svg', '.woff', '.woff2', '.ttf', '.eot', '.js', '.css', '.map'];
|
|
const isBinary = binaryExtensions.some(ext => relativePath.toLowerCase().endsWith(ext));
|
|
|
|
if (isBinary) {
|
|
g.deploy.content.public[relativePath] = fileContent;
|
|
} else {
|
|
g.deploy.content.public[relativePath] = new TextDecoder().decode(fileContent);
|
|
}
|
|
} else if (entry.filename.startsWith('server/')) {
|
|
const relativePath = entry.filename.slice(7); // Remove 'server/' prefix
|
|
const binaryExtensions = ['.js', '.map', '.json'];
|
|
const isBinary = binaryExtensions.some(ext => relativePath.toLowerCase().endsWith(ext));
|
|
|
|
g.deploy.content.code.server[relativePath] = new TextDecoder().decode(fileContent);
|
|
|
|
} else if (entry.filename.startsWith('site/')) {
|
|
const relativePath = entry.filename.slice(5); // Remove 'site/' prefix
|
|
const binaryExtensions = ['.js', '.css', '.map', '.json', '.woff', '.woff2', '.ttf'];
|
|
const isBinary = binaryExtensions.some(ext => relativePath.toLowerCase().endsWith(ext));
|
|
|
|
if (isBinary) {
|
|
g.deploy.content.code.site[relativePath] = fileContent;
|
|
} else {
|
|
g.deploy.content.code.site[relativePath] = new TextDecoder().decode(fileContent);
|
|
}
|
|
} else if (entry.filename.startsWith('core/')) {
|
|
const relativePath = entry.filename.slice(5); // Remove 'core/' prefix
|
|
const binaryExtensions = ['.js', '.json'];
|
|
const isBinary = binaryExtensions.some(ext => relativePath.toLowerCase().endsWith(ext));
|
|
|
|
if (isBinary) {
|
|
g.deploy.content.code.core[relativePath] = fileContent;
|
|
} else {
|
|
g.deploy.content.code.core[relativePath] = new TextDecoder().decode(fileContent);
|
|
}
|
|
}
|
|
|
|
loadedFiles++;
|
|
} catch (fileError) {
|
|
console.warn(`[WARN] Failed to process file ${entry.filename}:`, fileError.message);
|
|
}
|
|
}
|
|
|
|
console.log(`[DEBUG] ZIP processing completed: ${loadedFiles} files loaded`);
|
|
console.log(`[DEBUG] Final foundMetadata state: ${foundMetadata}`);
|
|
|
|
if (!foundMetadata) {
|
|
console.log(`[DEBUG] Available files in ZIP (${zipEntries.length} total entries):`);
|
|
for (const entry of zipEntries) {
|
|
console.log(`[DEBUG] - ${entry.filename} (size: ${entry.uncompressedSize} bytes)`);
|
|
}
|
|
// Let's also try to find any JSON files
|
|
const jsonFiles = zipEntries.filter(entry => entry.filename.endsWith('.json'));
|
|
console.log(`[DEBUG] JSON files found: ${jsonFiles.length}`);
|
|
jsonFiles.forEach(entry => console.log(`[DEBUG] - ${entry.filename}`));
|
|
throw new Error("metadata.json not found in ZIP file");
|
|
}
|
|
|
|
console.log(`[DEBUG] Successfully loaded ZIP deployment`);
|
|
console.log(`[DEBUG] Final content summary:`, {
|
|
layouts: g.deploy.content.layouts?.length || 0,
|
|
pages: g.deploy.content.pages?.length || 0,
|
|
comps: g.deploy.content.comps?.length || 0,
|
|
publicFiles: Object.keys(g.deploy.content.public).length,
|
|
serverFiles: Object.keys(g.deploy.content.code.server).length,
|
|
siteFiles: Object.keys(g.deploy.content.code.site).length,
|
|
coreFiles: Object.keys(g.deploy.content.code.core).length,
|
|
});
|
|
|
|
} catch (error) {
|
|
console.error("[ERROR] Failed to load ZIP deployment:", error);
|
|
console.error("[ERROR] Stack trace:", error.stack);
|
|
throw error;
|
|
}
|
|
},
|
|
|
|
// Simple ZIP file parser
|
|
async parseZipBuffer(buffer: Uint8Array): Promise<ZipEntry[]> {
|
|
const entries: ZipEntry[] = [];
|
|
let offset = 0;
|
|
const view = new DataView(buffer.buffer);
|
|
|
|
// Look for ZIP end of central directory record
|
|
let endOfCentralDirOffset = 0;
|
|
for (let i = buffer.length - 22; i >= 0; i--) {
|
|
if (buffer[i] === 0x50 && buffer[i + 1] === 0x4b && buffer[i + 2] === 0x05 && buffer[i + 3] === 0x06) {
|
|
endOfCentralDirOffset = i;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (endOfCentralDirOffset === 0) {
|
|
throw new Error("Invalid ZIP file: no end of central directory found");
|
|
}
|
|
|
|
// Read central directory
|
|
const eocdView = new DataView(buffer.buffer, endOfCentralDirOffset, 22);
|
|
const centralDirOffset = eocdView.getUint32(16, true); // little-endian
|
|
const centralDirSize = eocdView.getUint32(12, true);
|
|
|
|
const centralDirView = new DataView(buffer.buffer, centralDirOffset, centralDirSize);
|
|
let centralDirPos = 0;
|
|
|
|
while (centralDirPos < centralDirSize) {
|
|
// Read central directory file header
|
|
const signature = centralDirView.getUint32(centralDirPos, true);
|
|
if (signature !== 0x02014b50) break;
|
|
|
|
const fileNameLength = centralDirView.getUint16(centralDirPos + 28, true);
|
|
const extraFieldLength = centralDirView.getUint16(centralDirPos + 30, true);
|
|
const commentLength = centralDirView.getUint16(centralDirPos + 32, true);
|
|
const localHeaderOffset = centralDirView.getUint32(centralDirPos + 42, true);
|
|
|
|
// Read filename
|
|
const fileNameBytes = new Uint8Array(buffer.buffer, centralDirOffset + centralDirPos + 46, fileNameLength);
|
|
const filename = new TextDecoder().decode(fileNameBytes);
|
|
|
|
// Get file size info from central directory (more reliable than local header)
|
|
const compressedSize = centralDirView.getUint32(centralDirPos + 20, true);
|
|
const uncompressedSize = centralDirView.getUint32(centralDirPos + 24, true);
|
|
const fileNameLength2 = centralDirView.getUint16(centralDirPos + 28, true);
|
|
const extraFieldLength2 = centralDirView.getUint16(centralDirPos + 30, true);
|
|
|
|
entries.push({
|
|
filename,
|
|
localHeaderOffset,
|
|
compressedSize,
|
|
uncompressedSize,
|
|
fileNameLength,
|
|
extraFieldLength
|
|
});
|
|
|
|
centralDirPos += 46 + fileNameLength + extraFieldLength + commentLength;
|
|
}
|
|
|
|
return entries;
|
|
},
|
|
|
|
// Extract file data from ZIP buffer
|
|
async extractFileFromZip(buffer: Uint8Array, entry: ZipEntry): Promise<Uint8Array> {
|
|
const localHeaderOffset = entry.localHeaderOffset;
|
|
const localHeaderView = new DataView(buffer.buffer, localHeaderOffset, 30);
|
|
|
|
// Verify local header signature
|
|
if (localHeaderView.getUint32(0, true) !== 0x04034b50) {
|
|
throw new Error(`Invalid local header for file: ${entry.filename}`);
|
|
}
|
|
|
|
const dataOffset = localHeaderOffset + 30 + entry.fileNameLength + entry.extraFieldLength;
|
|
|
|
if (entry.compressedSize === 0) {
|
|
// Empty file
|
|
return new Uint8Array(0);
|
|
}
|
|
|
|
// Extract compressed data
|
|
const compressedData = buffer.slice(dataOffset, dataOffset + entry.compressedSize);
|
|
|
|
// Check compression method (0 = no compression, 8 = DEFLATE)
|
|
const compressionMethod = localHeaderView.getUint16(8, true);
|
|
if (compressionMethod === 0) {
|
|
// No compression, return data as-is
|
|
return compressedData;
|
|
} else if (compressionMethod === 8) {
|
|
// DEFLATE compression - decompress using inflateRaw (for ZIP format)
|
|
try {
|
|
const { inflateRaw } = await import('zlib');
|
|
const decompressed = await new Promise<Buffer>((resolve, reject) => {
|
|
inflateRaw(compressedData, (err, result) => {
|
|
if (err) reject(err);
|
|
else resolve(result);
|
|
});
|
|
});
|
|
return new Uint8Array(decompressed);
|
|
} catch (error) {
|
|
console.warn(`[WARN] Failed to decompress ${entry.filename} with method ${compressionMethod}:`, error.message);
|
|
return compressedData;
|
|
}
|
|
} else {
|
|
// Other compression methods not supported
|
|
console.warn(`[WARN] Compressed file ${entry.filename} with unsupported method ${compressionMethod}`);
|
|
return compressedData;
|
|
}
|
|
},
|
|
get config() {
|
|
if (!g.deploy) {
|
|
g.deploy = {
|
|
comps: {},
|
|
layout: null,
|
|
pages: {},
|
|
router: createRouter(),
|
|
config: { deploy: { ts: "" }, site_id: "" },
|
|
init: false,
|
|
raw: null,
|
|
content: null,
|
|
server: null,
|
|
};
|
|
}
|
|
|
|
if (!g.deploy.init) {
|
|
g.deploy.init = true;
|
|
g.deploy.raw = read(dir(`app/web/config.json`), "json");
|
|
|
|
if (g.deploy.raw) {
|
|
for (const [k, v] of Object.entries(g.deploy.raw)) {
|
|
(g.deploy.config as any)[k] = v;
|
|
}
|
|
}
|
|
}
|
|
|
|
return g.deploy.config;
|
|
},
|
|
saveConfig() {
|
|
return Bun.write(
|
|
Bun.file(dir(`app/web/config.json`)),
|
|
JSON.stringify(this.config, null, 2)
|
|
);
|
|
},
|
|
has_gz() {
|
|
if (this.config.deploy.ts) {
|
|
return (
|
|
Bun.file(dir(`app/web/deploy/${this.config.deploy.ts}.zip`)).exists() ||
|
|
Bun.file(dir(`app/web/deploy/${this.config.deploy.ts}.gz`)).exists()
|
|
);
|
|
}
|
|
|
|
return false;
|
|
},
|
|
};
|