File size: 40,185 Bytes
391c43e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 | import { VirtualFileSystem } from '../vfs';
import { VirtualFile, ProjectRuntime } from '../vfs/types';
import { ProcessedFile, Route, CompiledProject } from './types';
import Handlebars from 'handlebars';
import { logger } from '@/lib/utils';
import { beginCompilation, pushCompileError, commitCompilation } from './compile-errors';
import { isRuntimeBundled } from '@/lib/runtimes/registry';
export class VirtualServer {
private vfs: VirtualFileSystem;
private projectId: string;
private deploymentId?: string;
private baseUrl: string;
private blobUrls: Map<string, string> = new Map();
private fileHashes: Map<string, string> = new Map();
private handlebars: typeof Handlebars;
private templateCache: Map<string, HandlebarsTemplateDelegate> = new Map();
private partialsRegistered: boolean = false;
private entryPoint: string;
private runtime: ProjectRuntime;
constructor(vfs: VirtualFileSystem, projectId: string, opts?: { deploymentId?: string; entryPoint?: string; runtime?: ProjectRuntime }) {
this.vfs = vfs;
this.projectId = projectId;
this.deploymentId = opts?.deploymentId;
this.entryPoint = opts?.entryPoint || '/index.html';
this.runtime = opts?.runtime || 'handlebars';
this.baseUrl = typeof window !== 'undefined' ? window.location.origin : '';
// Initialize Handlebars instance
this.handlebars = Handlebars.create();
this.registerHelpers();
}
private registerHelpers(): void {
// Register common comparison helpers that LLMs expect
this.handlebars.registerHelper('eq', (a: any, b: any) => a === b);
this.handlebars.registerHelper('ne', (a: any, b: any) => a !== b);
this.handlebars.registerHelper('lt', (a: any, b: any) => a < b);
this.handlebars.registerHelper('gt', (a: any, b: any) => a > b);
this.handlebars.registerHelper('lte', (a: any, b: any) => a <= b);
this.handlebars.registerHelper('gte', (a: any, b: any) => a >= b);
// Logical helpers
this.handlebars.registerHelper('and', (...helperArgs: unknown[]) => {
// Last argument is the Handlebars options object
return helperArgs.slice(0, -1).every((arg) => arg);
});
this.handlebars.registerHelper('or', (...helperArgs: unknown[]) => {
return helperArgs.slice(0, -1).some((arg) => arg);
});
this.handlebars.registerHelper('not', (value: any) => !value);
// Math helpers
this.handlebars.registerHelper('add', (a: number, b: number) => a + b);
this.handlebars.registerHelper('subtract', (a: number, b: number) => a - b);
this.handlebars.registerHelper('multiply', (a: number, b: number) => a * b);
this.handlebars.registerHelper('divide', (a: number, b: number) => a / b);
// String helpers
this.handlebars.registerHelper('uppercase', (str: string) => str?.toUpperCase());
this.handlebars.registerHelper('lowercase', (str: string) => str?.toLowerCase());
this.handlebars.registerHelper('concat', (...helperArgs: unknown[]) => {
return helperArgs.slice(0, -1).join('');
});
// Utility helpers
this.handlebars.registerHelper('json', (context: any) => JSON.stringify(context, null, 2));
this.handlebars.registerHelper('formatDate', (date: Date | string) => {
const d = new Date(date);
return d.toLocaleDateString();
});
// Array helpers
this.handlebars.registerHelper('limit', (array: any[], max: number) =>
array?.slice(0, max)
);
// Repeat helpers - repeat content N times (times, repeat, for are all equivalent)
const repeatHelper = function(this: any, n: number, options: Handlebars.HelperOptions) {
let result = '';
for (let i = 0; i < n; i++) {
result += options.fn({ index: i, first: i === 0, last: i === n - 1 });
}
return result;
};
this.handlebars.registerHelper('times', repeatHelper);
this.handlebars.registerHelper('repeat', repeatHelper);
this.handlebars.registerHelper('for', repeatHelper);
}
private async registerPartials(): Promise<void> {
if (this.partialsRegistered) {
return;
}
try {
// Get ALL files in the project
const allItems = await this.vfs.getAllFilesAndDirectories(this.projectId);
// Filter for files only (not directories) and handlebars files in /templates directory
const templateFiles = allItems.filter((item): item is VirtualFile =>
'content' in item &&
item.path.startsWith('/templates/') &&
(item.path.endsWith('.hbs') || item.path.endsWith('.handlebars'))
);
for (const file of templateFiles) {
const content = file.content as string;
// Extract path relative to /templates/
// e.g., /templates/components/header.hbs → components/header
const relativePath = file.path
.replace(/^\/templates\//, '')
.replace(/\.hbs$/, '')
.replace(/\.handlebars$/, '');
// Register with multiple names for maximum compatibility:
// 1. Full relative path: components/header
this.handlebars.registerPartial(relativePath, content);
// 2. Just filename: header (for backwards compatibility)
const filename = relativePath.split('/').pop();
if (filename) {
this.handlebars.registerPartial(filename, content);
}
// 3. Dash-separated variant: components-header (some LLMs prefer this)
if (relativePath.includes('/')) {
const dashName = relativePath.replace(/\//g, '-');
this.handlebars.registerPartial(dashName, content);
}
}
this.partialsRegistered = true;
} catch (error) {
// Templates directory might not exist, which is fine
}
}
private async compileTemplate(templatePath: string, context: any = {}): Promise<string> {
// Check cache first
let compiled = this.templateCache.get(templatePath);
if (!compiled) {
try {
const file = await this.vfs.readFile(this.projectId, templatePath);
const templateContent = file.content as string;
compiled = this.handlebars.compile(templateContent);
this.templateCache.set(templatePath, compiled);
} catch (error) {
logger.error(`Failed to compile template ${templatePath}:`, error);
return '';
}
}
return compiled(context);
}
async compileProject(incrementalUpdate = false): Promise<CompiledProject> {
beginCompilation();
try {
// Clear any stale generated files from previous compiles (e.g. switching from bundled to non-bundled runtime)
this.vfs.clearGeneratedFiles();
// Register partials before processing
await this.registerPartials();
let files = await this.vfs.listDirectory(this.projectId, '/');
files = await this.runBundleStep(files);
const oldBlobUrls = new Map(this.blobUrls);
const newBlobUrls = new Map<string, string>();
const rawProcessedFiles: ProcessedFile[] = [];
// First pass: Create blob URLs for all non-HTML files (images, JS, etc.)
for (const file of files) {
let processedFile: ProcessedFile;
// Skip template files and HTML files in first pass
if (file.type === 'template' || file.type === 'html' || file.type === 'css') {
continue;
}
if (file.type === 'image' || file.type === 'video') {
processedFile = {
path: file.path,
content: file.content,
mimeType: file.mimeType
};
} else {
processedFile = {
path: file.path,
content: file.content as string,
mimeType: file.mimeType
};
}
const contentHash = this.hashContent(processedFile.content);
const previousHash = this.fileHashes.get(processedFile.path);
if (incrementalUpdate && previousHash === contentHash && oldBlobUrls.has(processedFile.path)) {
const existingUrl = oldBlobUrls.get(processedFile.path)!;
newBlobUrls.set(processedFile.path, existingUrl);
processedFile.blobUrl = existingUrl;
oldBlobUrls.delete(processedFile.path);
} else {
const blob = new Blob([processedFile.content], { type: processedFile.mimeType });
const blobUrl = URL.createObjectURL(blob);
newBlobUrls.set(processedFile.path, blobUrl);
processedFile.blobUrl = blobUrl;
this.fileHashes.set(processedFile.path, contentHash);
}
rawProcessedFiles.push(processedFile);
}
// Second pass: Process HTML files with available blob URLs
for (const file of files) {
if (file.type !== 'html') {
continue;
}
const processedFile = await this.processHTML(file, newBlobUrls);
const contentHash = this.hashContent(processedFile.content);
const previousHash = this.fileHashes.get(processedFile.path);
if (incrementalUpdate && previousHash === contentHash && oldBlobUrls.has(processedFile.path)) {
const existingUrl = oldBlobUrls.get(processedFile.path)!;
newBlobUrls.set(processedFile.path, existingUrl);
processedFile.blobUrl = existingUrl;
oldBlobUrls.delete(processedFile.path);
} else {
const blob = new Blob([processedFile.content], { type: processedFile.mimeType });
const blobUrl = URL.createObjectURL(blob);
newBlobUrls.set(processedFile.path, blobUrl);
processedFile.blobUrl = blobUrl;
this.fileHashes.set(processedFile.path, contentHash);
}
rawProcessedFiles.push(processedFile);
}
const processedFiles = [...rawProcessedFiles];
for (const file of files) {
if (file.type === 'css') {
const processedFile = await this.processCSS(file, newBlobUrls);
const contentHash = this.hashContent(processedFile.content);
const previousHash = this.fileHashes.get(processedFile.path);
if (incrementalUpdate && previousHash === contentHash && oldBlobUrls.has(processedFile.path)) {
const existingUrl = oldBlobUrls.get(processedFile.path)!;
newBlobUrls.set(processedFile.path, existingUrl);
processedFile.blobUrl = existingUrl;
oldBlobUrls.delete(processedFile.path);
} else {
const blob = new Blob([processedFile.content], { type: processedFile.mimeType });
const blobUrl = URL.createObjectURL(blob);
newBlobUrls.set(processedFile.path, blobUrl);
processedFile.blobUrl = blobUrl;
this.fileHashes.set(processedFile.path, contentHash);
}
processedFiles.push(processedFile);
}
}
const routes = this.generateRoutes(files);
if (incrementalUpdate) {
for (const [, url] of oldBlobUrls) {
URL.revokeObjectURL(url);
}
} else if (!incrementalUpdate) {
this.cleanupBlobUrls();
}
this.blobUrls = newBlobUrls;
return {
entryPoint: this.entryPoint,
files: processedFiles,
routes,
blobUrls: this.blobUrls
};
} finally {
commitCompilation();
}
}
private async runBundleStep(files: VirtualFile[]): Promise<VirtualFile[]> {
if (!isRuntimeBundled(this.runtime)) return files;
// Pre-compiled bundle from client (synced before publish) — skip server-side bundling.
// Only skip if bundle.js exists AND no source files are present (source files
// mean we should rebundle, even if a stale bundle.js was restored from checkpoint).
const hasBundle = files.some(f => f.path === '/bundle.js');
const hasSourceFiles = files.some(f => /\.(tsx|ts|jsx|svelte|vue)$/.test(f.path) && !f.path.startsWith('/.'));
if (hasBundle && !hasSourceFiles) {
return files.filter(f => !/\.(tsx|ts|jsx|svelte|vue)$/.test(f.path));
}
// Lazy-import to avoid loading esbuild for non-bundleable projects
const { detectBundleEntryPoint, bundleProject, isBundleableSource } =
await import('./esbuild-bundler');
const entryPoint = detectBundleEntryPoint(files);
if (!entryPoint) return files;
const result = await bundleProject({ files, entryPoint, runtime: this.runtime });
// Push errors through the compile-errors system
for (const err of result.errors) {
pushCompileError(entryPoint, err);
}
if (result.errors.length > 0) {
// Bundle failed — clear any previous generated files and return unmodified
this.vfs.clearGeneratedFiles();
return files;
}
// Filter out source files that were compiled into the bundle
const filtered = files.filter(f => !isBundleableSource(f.path));
// Inject synthetic bundle.js
const now = new Date();
filtered.push({
id: '__bundle_js__',
projectId: this.projectId,
path: '/bundle.js',
name: 'bundle.js',
type: 'js',
content: result.js,
mimeType: 'application/javascript',
size: result.js.length,
createdAt: now,
updatedAt: now,
metadata: { isTransient: true },
});
// Inject synthetic bundle.css (empty if esbuild produced no CSS, to avoid 404s
// from templates that reference /bundle.css unconditionally)
const cssContent = result.css || '';
filtered.push({
id: '__bundle_css__',
projectId: this.projectId,
path: '/bundle.css',
name: 'bundle.css',
type: 'css',
content: cssContent,
mimeType: 'text/css',
size: cssContent.length,
createdAt: now,
updatedAt: now,
metadata: { isTransient: true },
});
// Publish bundle files to VFS so they appear in file explorer and are readable
this.vfs.setGeneratedFile('/bundle.js', result.js, 'application/javascript');
this.vfs.setGeneratedFile('/bundle.css', cssContent, 'text/css');
return filtered;
}
private hashContent(content: string | ArrayBuffer): string {
let hash = 0;
if (content instanceof ArrayBuffer) {
const view = new Uint8Array(content);
for (let i = 0; i < Math.min(view.length, 10000); i++) {
hash = ((hash << 5) - hash) + view[i];
hash = hash & hash;
}
} else {
for (let i = 0; i < content.length; i++) {
const char = content.charCodeAt(i);
hash = ((hash << 5) - hash) + char;
hash = hash & hash;
}
}
return hash.toString(36);
}
private async processHTML(file: VirtualFile, blobUrls?: Map<string, string>): Promise<ProcessedFile> {
let content = file.content as string;
// Only run Handlebars for the handlebars runtime; skip /output/ files (script-generated)
if (this.runtime === 'handlebars' && !file.path.startsWith('/output/')) {
content = await this.processHandlebarsTemplates(content, file.path);
}
// Then process internal references with available blob URLs
content = await this.processInternalReferences(content, blobUrls);
// Inject VFS asset interceptor for transparent HTTP requests
// Always inject the interceptor, even if no blob URLs yet (for future dynamic loading)
const blobUrlMap = blobUrls ? Object.fromEntries(blobUrls) : {};
const deploymentIdForScript = this.deploymentId || '';
const vfsScript = `<script>
// VFS Asset Interceptor - Auto-injected by OSW Studio
(function() {
const vfsBlobUrls = ${JSON.stringify(blobUrlMap)};
const deploymentId = ${JSON.stringify(deploymentIdForScript)};
// Helper function to resolve VFS paths to blob URLs
function resolveVfsUrl(url) {
if (!url || typeof url !== 'string') return url;
// Prefer the complete runtime map injected by the preview host. The baked
// vfsBlobUrls map only holds files processed before this page, so it can miss
// component files fetched at runtime (e.g. fetch('/components/nav.html')).
try {
if (window.__oswVfsBlobUrls && window.__oswVfsBlobUrls[url]) {
return window.__oswVfsBlobUrls[url];
}
} catch {}
if (vfsBlobUrls[url]) {
return vfsBlobUrls[url];
}
return url;
}
// Helper function to check if a URL looks like an edge function call
function isEdgeFunctionUrl(url) {
if (!url || typeof url !== 'string' || !deploymentId) return false;
// Skip external URLs, blob URLs, data URLs, and hash-only URLs
if (url.startsWith('http://') || url.startsWith('https://') ||
url.startsWith('blob:') || url.startsWith('data:') ||
url.startsWith('//') || url.startsWith('#')) {
return false;
}
// Skip if already an API path
if (url.startsWith('/api/')) return false;
// Skip if it has a file extension (likely an asset)
const pathWithoutQuery = url.split('?')[0].split('#')[0];
const lastSegment = pathWithoutQuery.split('/').pop() || '';
if (lastSegment.includes('.')) return false;
// This looks like an edge function path
return true;
}
// Helper function to convert an edge function URL to the API endpoint
function toEdgeFunctionApiUrl(url) {
if (!deploymentId) return url;
// Normalize the path
let path = url;
if (!path.startsWith('/')) path = '/' + path;
// Remove leading slash for the function name
const functionPath = path.substring(1);
// Return the API endpoint URL
return '/api/deployments/' + deploymentId + '/functions/' + functionPath;
}
// Intercept Image src setter to handle ALL image loading
const originalSrcDescriptor = Object.getOwnPropertyDescriptor(HTMLImageElement.prototype, 'src');
Object.defineProperty(HTMLImageElement.prototype, 'src', {
get: function() {
return originalSrcDescriptor.get.call(this);
},
set: function(value) {
const resolvedUrl = resolveVfsUrl(value);
return originalSrcDescriptor.set.call(this, resolvedUrl);
},
enumerable: true,
configurable: true
});
// Intercept setAttribute for src attributes
const originalSetAttribute = Element.prototype.setAttribute;
Element.prototype.setAttribute = function(name, value) {
if ((name === 'src' || name === 'href') && this instanceof HTMLImageElement) {
value = resolveVfsUrl(value);
}
return originalSetAttribute.call(this, name, value);
};
// Intercept innerHTML to catch template-generated images
const originalInnerHTMLDescriptor = Object.getOwnPropertyDescriptor(Element.prototype, 'innerHTML');
Object.defineProperty(Element.prototype, 'innerHTML', {
get: function() {
return originalInnerHTMLDescriptor.get.call(this);
},
set: function(value) {
if (typeof value === 'string' && value.includes('/assets/')) {
// Replace asset URLs in the HTML string before setting
const srcRegex = new RegExp('src=["\\']([^"\\']*/assets/[^"\\']*)["\\']', 'g');
value = value.replace(srcRegex, function(match, url) {
const resolvedUrl = resolveVfsUrl(url);
if (resolvedUrl !== url) {
return match.replace(url, resolvedUrl);
}
return match;
});
}
return originalInnerHTMLDescriptor.set.call(this, value);
},
enumerable: true,
configurable: true
});
// Intercept Image constructor
const OriginalImage = window.Image;
window.Image = function(...args) {
const img = new OriginalImage(...args);
// Override src setter for this instance too
const descriptor = Object.getOwnPropertyDescriptor(img, 'src') ||
Object.getOwnPropertyDescriptor(HTMLImageElement.prototype, 'src');
if (descriptor) {
Object.defineProperty(img, 'src', {
get: descriptor.get,
set: function(value) {
const resolvedUrl = resolveVfsUrl(value);
return originalSrcDescriptor.set.call(this, resolvedUrl);
},
enumerable: true,
configurable: true
});
}
return img;
};
// Preserve original Image properties
Object.setPrototypeOf(window.Image, OriginalImage);
window.Image.prototype = OriginalImage.prototype;
// Intercept createElement for img elements
const originalCreateElement = document.createElement;
document.createElement = function(tagName, options) {
const element = originalCreateElement.call(this, tagName, options);
if (tagName.toLowerCase() === 'img') {
const originalSrcDescriptor = Object.getOwnPropertyDescriptor(HTMLImageElement.prototype, 'src');
Object.defineProperty(element, 'src', {
get: function() {
return originalSrcDescriptor.get.call(this);
},
set: function(value) {
const resolvedUrl = resolveVfsUrl(value);
return originalSrcDescriptor.set.call(this, resolvedUrl);
},
enumerable: true,
configurable: true
});
}
return element;
};
// Intercept fetch requests to VFS assets and edge functions
const originalFetch = window.fetch;
window.fetch = function(input, init) {
const url = typeof input === 'string' ? input : input.url;
// First check if this is an edge function call
if (isEdgeFunctionUrl(url)) {
const apiUrl = toEdgeFunctionApiUrl(url);
// Use the parent window's origin for the API call
const fullApiUrl = window.parent ? window.parent.location.origin + apiUrl : apiUrl;
return originalFetch(fullApiUrl, init);
}
// Then check for VFS asset resolution
const resolvedUrl = resolveVfsUrl(url);
if (resolvedUrl !== url) {
return originalFetch(resolvedUrl, init);
}
return originalFetch(input, init);
};
// Intercept XMLHttpRequest for older code and edge functions
const OriginalXHR = window.XMLHttpRequest;
window.XMLHttpRequest = function() {
const xhr = new OriginalXHR();
const originalOpen = xhr.open;
xhr.open = function(method, url, ...args) {
let finalUrl = url;
// Check for edge function first
if (isEdgeFunctionUrl(url)) {
const apiUrl = toEdgeFunctionApiUrl(url);
finalUrl = window.parent ? window.parent.location.origin + apiUrl : apiUrl;
} else {
finalUrl = resolveVfsUrl(url);
}
return originalOpen.call(this, method, finalUrl, ...args);
};
return xhr;
};
// Intercept form submissions for edge functions
if (deploymentId) {
document.addEventListener('submit', function(e) {
const form = e.target;
if (!(form instanceof HTMLFormElement)) return;
const action = form.getAttribute('action') || '';
if (isEdgeFunctionUrl(action)) {
e.preventDefault();
e.stopPropagation();
const apiUrl = toEdgeFunctionApiUrl(action);
const fullApiUrl = window.parent ? window.parent.location.origin + apiUrl : apiUrl;
const method = (form.method || 'GET').toUpperCase();
// Collect form data
const formData = new FormData(form);
// Convert to JSON for edge functions
const data = {};
formData.forEach(function(value, key) {
data[key] = value;
});
// Make the fetch request
fetch(fullApiUrl, {
method: method,
headers: {
'Content-Type': 'application/json'
},
body: method !== 'GET' ? JSON.stringify(data) : undefined
})
.then(function(response) {
return response.json().catch(function() {
return response.text();
});
})
.then(function(result) {
// Dispatch custom event with the result
const event = new CustomEvent('edge-function-response', {
detail: { action: action, result: result }
});
form.dispatchEvent(event);
document.dispatchEvent(event);
})
.catch(function(error) {
console.error('[Edge Function] Error:', error);
const event = new CustomEvent('edge-function-error', {
detail: { action: action, error: error.message }
});
form.dispatchEvent(event);
document.dispatchEvent(event);
});
}
}, true);
}
// Process any existing images in the DOM when ready
function processExistingImages() {
const images = document.querySelectorAll('img[src*="/assets/"]');
images.forEach(img => {
const currentSrc = img.src;
const resolvedSrc = resolveVfsUrl(currentSrc);
if (resolvedSrc !== currentSrc) {
img.src = resolvedSrc;
}
});
}
// Use MutationObserver to catch dynamically added images
function setupMutationObserver() {
if (typeof MutationObserver !== 'undefined') {
const observer = new MutationObserver(function(mutations) {
mutations.forEach(function(mutation) {
mutation.addedNodes.forEach(function(node) {
if (node.nodeType === 1) { // Element node
if (node.tagName === 'IMG' && node.src && node.src.includes('/assets/')) {
const resolvedSrc = resolveVfsUrl(node.src);
if (resolvedSrc !== node.src) {
node.src = resolvedSrc;
}
}
// Also check children
const childImages = node.querySelectorAll && node.querySelectorAll('img[src*="/assets/"]');
if (childImages) {
childImages.forEach(img => {
const resolvedSrc = resolveVfsUrl(img.src);
if (resolvedSrc !== img.src) {
img.src = resolvedSrc;
}
});
}
}
});
});
});
observer.observe(document.body || document.documentElement, {
childList: true,
subtree: true
});
}
}
// Setup everything when DOM is ready
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', function() {
processExistingImages();
setupMutationObserver();
});
} else {
processExistingImages();
setupMutationObserver();
}
})();
</script>`;
const consoleScript = `<script>
// Console Capture - Auto-injected by OSW Studio
(function() {
if (window === window.parent) return;
var levels = ['log', 'warn', 'error', 'info', 'debug'];
var originals = {};
var queue = [];
var timer = null;
function serialize(arg) {
if (typeof arg === 'string') return arg;
if (arg === null) return 'null';
if (arg === undefined) return 'undefined';
if (arg instanceof Error) return arg.stack || arg.message || String(arg);
if (typeof arg === 'function') return 'function ' + (arg.name || 'anonymous') + '()';
if (typeof HTMLElement !== 'undefined' && arg instanceof HTMLElement) return '<' + arg.tagName.toLowerCase() + '>';
try {
var seen = [];
return JSON.stringify(arg, function(key, val) {
if (typeof val === 'object' && val !== null) {
if (seen.indexOf(val) !== -1) return '[Circular]';
seen.push(val);
}
return val;
});
} catch (e) {
return String(arg);
}
}
function flush() {
timer = null;
if (queue.length === 0) return;
var batch = queue.splice(0, 50);
for (var i = 0; i < batch.length; i++) {
try {
window.parent.postMessage(batch[i], '*');
} catch (e) {}
}
if (queue.length > 0) {
timer = setTimeout(flush, 100);
}
}
for (var i = 0; i < levels.length; i++) {
(function(level) {
originals[level] = console[level];
console[level] = function() {
originals[level].apply(console, arguments);
var args = [];
for (var j = 0; j < arguments.length; j++) {
args.push(serialize(arguments[j]));
}
queue.push({ type: 'console', level: level, args: args });
if (!timer) {
timer = setTimeout(flush, 100);
}
};
})(levels[i]);
}
// Capture uncaught errors (SyntaxError, ReferenceError, etc.)
window.onerror = function(message, source, lineno, colno) {
var loc = source ? ' (' + source.replace(/^.*[\\/]/, '') + ':' + lineno + ':' + colno + ')' : '';
queue.push({ type: 'console', level: 'error', args: [String(message) + loc] });
if (!timer) timer = setTimeout(flush, 100);
};
// Capture unhandled promise rejections
window.addEventListener('unhandledrejection', function(e) {
var reason = e.reason;
var msg = reason instanceof Error ? (reason.stack || reason.message) : String(reason);
queue.push({ type: 'console', level: 'error', args: ['Unhandled rejection: ' + msg] });
if (!timer) timer = setTimeout(flush, 100);
});
})();
</script>`;
// Build ES module import map for non-bundled runtimes.
// Maps VFS JS/TS paths to blob URLs so <script type="module"> imports resolve.
let importMapScript = '';
if (!isRuntimeBundled(this.runtime) && blobUrls) {
const imports: Record<string, string> = {};
for (const [path, url] of blobUrls) {
if (/\.(js|mjs|ts)$/i.test(path)) {
imports[path] = url; // /scripts/utils.js
if (path.startsWith('/')) imports['.' + path] = url; // ./scripts/utils.js
}
}
if (Object.keys(imports).length > 0) {
importMapScript = `<script type="importmap">${JSON.stringify({ imports })}</script>\n`;
}
}
// Insert in head for early execution.
// Import map must precede any <script type="module">, so it goes first.
const injectedScripts = importMapScript + vfsScript + '\n' + consoleScript;
if (content.includes('</head>')) {
content = content.replace('</head>', injectedScripts + '\n</head>');
} else if (content.includes('<body>')) {
content = content.replace('<body>', injectedScripts + '\n<body>');
} else {
content = injectedScripts + '\n' + content;
}
return {
path: file.path,
content,
mimeType: file.mimeType
};
}
private extractPartialReferences(content: string): string[] {
// Match {{> partialName}} or {{>partialName}} syntax
const partialRegex = /\{\{>\s*([\w-]+)\s*(?:\s+[^}]*)?\}\}/g;
const partials = new Set<string>();
let match;
while ((match = partialRegex.exec(content)) !== null) {
partials.add(match[1]);
}
return Array.from(partials);
}
private registerErrorStubsForMissingPartials(partialRefs: string[]): void {
for (const partialName of partialRefs) {
// Check if partial is already registered
if (!this.handlebars.partials[partialName]) {
// Register error stub for missing partial
const errorStub = `<div style="border: 2px solid #f99; background: #fee; padding: 1rem; margin: 1rem 0; border-radius: 4px; font-family: monospace;">
<strong style="color: #c33;">⚠️ Missing partial: "${partialName}"</strong>
<p style="margin: 0.5rem 0 0 0; font-size: 0.9em;">Create file in /templates/ directory (e.g., /templates/${partialName}.hbs or /templates/components/${partialName}.hbs)</p>
</div>`;
this.handlebars.registerPartial(partialName, errorStub);
}
}
}
private async processHandlebarsTemplates(content: string, filePath?: string): Promise<string> {
// Ensure partials are registered
await this.registerPartials();
try {
// Check for common invalid LLM-generated patterns before compilation
const invalidPatterns = this.detectInvalidHandlebarsPatterns(content);
if (invalidPatterns.length > 0) {
for (const p of invalidPatterns) {
pushCompileError(filePath || 'unknown', `${p.error} — ${p.suggestion}`);
}
const errorMessages = invalidPatterns.map(pattern => `❌ ${pattern.error}\n💡 ${pattern.suggestion}`).join('\n\n');
return `<!-- Handlebars Syntax Error -->\n<div style="background: #fee; border: 1px solid #f99; padding: 1rem; margin: 1rem; border-radius: 4px; font-family: monospace;">\n<h3 style="color: #c33; margin: 0 0 1rem 0;">⚠️ Handlebars Template Error</h3>\n<pre style="margin: 0; white-space: pre-wrap;">${errorMessages}</pre>\n</div>\n<!-- Original content:\n${content}\n-->`;
}
// Extract partial references and register error stubs for missing ones
const partialRefs = this.extractPartialReferences(content);
this.registerErrorStubsForMissingPartials(partialRefs);
// Look for a data.json file for template context
let context = {};
try {
if (await this.vfs.fileExists(this.projectId, '/data.json')) {
const dataFile = await this.vfs.readFile(this.projectId, '/data.json');
context = JSON.parse(dataFile.content as string);
}
} catch {
// Invalid data file, use empty context
}
// Compile the content as a Handlebars template
const template = this.handlebars.compile(content);
const result = template(context);
return result;
} catch (error) {
logger.error('VirtualServer: Error processing Handlebars templates:', error);
const errorMessage = error instanceof Error ? error.message : String(error);
pushCompileError(filePath || 'unknown', errorMessage);
// Return a helpful error message instead of original content
return `<!-- Handlebars Compilation Error -->\n<div style="background: #fee; border: 1px solid #f99; padding: 1rem; margin: 1rem; border-radius: 4px; font-family: monospace;">\n<h3 style="color: #c33; margin: 0 0 1rem 0;">⚠️ Handlebars Template Error</h3>\n<p><strong>Error:</strong> ${errorMessage}</p>\n<p><strong>Common fixes:</strong></p>\n<ul>\n<li>Check for typos in helper names and partial references</li>\n<li>Ensure all opening tags have matching closing tags</li>\n<li>Verify partial names exist in /templates/ directory</li>\n<li>Use <code>{{> partialName}}</code> syntax, not <code>(> partialName)</code></li>\n</ul>\n</div>\n<!-- Original content:\n${content}\n-->`;
}
}
private detectInvalidHandlebarsPatterns(content: string): Array<{error: string, suggestion: string}> {
const patterns = [];
// Pattern 1: Invalid (> partial) syntax in parameters
const invalidPartialInParam = /\w+\s*=\s*\(\s*>\s*[\w-]+\s*\)/g;
if (invalidPartialInParam.test(content)) {
patterns.push({
error: "Invalid syntax: Using (> partial) as parameter value",
suggestion: "Use string-based dynamic partials: content=\"partial-name\" then {{> (lookup this 'content')}}"
});
}
// Pattern 2: Common typos in partial syntax
const typoPartialSyntax = /\{\{\s*>\s*\(\s*>\s*[\w-]+\s*\)\s*\}\}/g;
if (typoPartialSyntax.test(content)) {
patterns.push({
error: "Invalid syntax: Double partial reference {{> (> partial)}}",
suggestion: "Use {{> partialName}} for static partials or {{> (lookup data 'partialName')}} for dynamic"
});
}
// Pattern 3: Missing quotes in parameter values (literal strings with spaces)
const unquotedParams = /\{\{\s*>\s*[\w-]+\s+\w+\s*=\s*[^"'\s}][^}]*\s[^}]*(?:\s|}})/g;
if (unquotedParams.test(content)) {
patterns.push({
error: "Missing quotes in parameter values",
suggestion: "Wrap parameter values in quotes: title=\"My Title\" not title=My Title"
});
}
return patterns;
}
private async processCSS(file: VirtualFile, blobUrls: Map<string, string>): Promise<ProcessedFile> {
let content = file.content as string;
content = await this.processUrlReferences(content, blobUrls);
return {
path: file.path,
content,
mimeType: file.mimeType
};
}
private isAssetReference(url: string): boolean {
// Asset extensions that should be converted to blob URLs
const assetExtensions = [
'.css', '.js', '.jsx', '.ts', '.tsx',
'.png', '.jpg', '.jpeg', '.gif', '.svg', '.ico', '.webp',
'.woff', '.woff2', '.ttf', '.otf', '.eot',
'.mp4', '.webm', '.ogg', '.mp3', '.wav',
'.pdf', '.zip', '.json', '.xml'
];
// Extract extension from URL (handle query params and fragments)
const cleanUrl = url.split('?')[0].split('#')[0];
const extension = cleanUrl.substring(cleanUrl.lastIndexOf('.')).toLowerCase();
return assetExtensions.includes(extension);
}
private async processInternalReferences(content: string, blobUrls?: Map<string, string>): Promise<string> {
const files = await this.vfs.listDirectory(this.projectId, '/');
// Use provided blob URLs or fall back to instance blob URLs
const urlMap = blobUrls || this.blobUrls;
const patterns = [
/href="([^"]+)"/g,
/src="([^"]+)"/g,
/href='([^']+)'/g,
/src='([^']+)'/g
];
let processed = content;
for (const pattern of patterns) {
processed = processed.replace(pattern, (match, url) => {
if (url.startsWith('http') || url.startsWith('data:') || url.startsWith('//') || url.startsWith('blob:') || url.startsWith('#')) {
return match;
}
// For href attributes, only convert asset references to blob URLs
// Leave navigation links (HTML pages and routes) as-is for proper routing
const isHref = match.includes('href=');
if (isHref && !this.isAssetReference(url)) {
return match; // Keep navigation links unchanged
}
const normalizedPath = this.normalizePath(url);
const fileExists = files.some(f => f.path === normalizedPath);
if (fileExists) {
// Check if we have a blob URL for this file
const blobUrl = urlMap.get(normalizedPath);
if (blobUrl) {
// Replace the URL with the blob URL
return match.replace(url, blobUrl);
}
}
return match;
});
}
return processed;
}
private async processUrlReferences(content: string, blobUrls: Map<string, string>): Promise<string> {
return content.replace(/url\(['"]?([^'")]+)['"]?\)/g, (match, url) => {
if (url.startsWith('http') || url.startsWith('data:') || url.startsWith('//') || url.startsWith('blob:')) {
return match;
}
const normalizedPath = this.normalizePath(url);
const blobUrl = blobUrls.get(normalizedPath);
if (blobUrl) {
return `url('${blobUrl}')`;
}
return match;
});
}
private normalizePath(path: string): string {
if (path.startsWith('./')) {
path = path.slice(2);
}
if (!path.startsWith('/')) {
path = '/' + path;
}
// If path ends with /, it's a directory - look for index.html
if (path.endsWith('/')) {
return path + 'index.html';
}
// If no extension, assume HTML file
if (!path.includes('.')) {
return path + '.html';
}
return path;
}
private generateRoutes(files: VirtualFile[]): Route[] {
const htmlFiles = files.filter(f => f.type === 'html');
return htmlFiles.map(file => {
const content = file.content as string;
const titleMatch = content.match(/<title>([^<]+)<\/title>/i);
const title = titleMatch ? titleMatch[1] : file.name.replace('.html', '');
const routePath = file.path.replace('.html', '') || '/';
return {
path: routePath === '/index' ? '/' : routePath,
file: file.path,
title
};
});
}
cleanupBlobUrls(): void {
for (const url of this.blobUrls.values()) {
URL.revokeObjectURL(url);
}
this.blobUrls.clear();
// Also clear template cache and re-register partials on next compile
this.templateCache.clear();
this.partialsRegistered = false;
}
async getCompiledFile(path: string): Promise<ProcessedFile | null> {
try {
const file = await this.vfs.readFile(this.projectId, path);
if (file.type === 'html') {
return await this.processHTML(file, this.blobUrls);
} else if (file.type === 'css') {
return await this.processCSS(file, new Map());
} else {
return {
path: file.path,
content: file.content as string,
mimeType: file.mimeType
};
}
} catch {
return null;
}
}
}
|