File size: 10,559 Bytes
94193b5 | 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 | /**
* Server Context Content Generators
*
* Generate content for transient files in /.server/ directory.
* Structure:
* - /.server/secrets/{NAME}.json - individual secret files (SCREAMING_SNAKE_CASE)
* - /.server/db/schema.sql - database schema
* - /.server/edge-functions/{name}.json - individual edge functions
* - /.server/server-functions/{name}.json - individual server functions
*/
import { EdgeFunction, ServerFunction, Secret, ScheduledFunction } from '../types';
import cronParser from 'cron-parser';
// ============================================
// Type Definitions
// ============================================
export interface EdgeFunctionFileData {
name: string;
method: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'ANY';
description?: string;
enabled: boolean;
timeoutMs: number;
code: string;
}
export interface ServerFunctionFileData {
name: string;
description?: string;
enabled: boolean;
code: string;
}
export interface SecretFileData {
name: string;
description?: string;
hasValue?: boolean;
}
export interface ScheduledFunctionFileData {
name: string;
description?: string;
functionName: string; // Resolved name of the linked edge function
cronExpression: string;
timezone: string;
enabled: boolean;
config: Record<string, unknown>;
lastRunAt?: string;
nextRunAt?: string;
lastStatus?: string;
}
export interface ServerContextMetadata {
projectId: string;
runtimeDeploymentId?: string; // Set when a deployment is connected for runtime (sqlite3, logs)
hasDatabase: boolean; // True when runtimeDeploymentId is set
edgeFunctionCount: number;
serverFunctionCount: number;
secretCount: number;
scheduledFunctionCount: number;
}
export interface ValidationResult {
valid: boolean;
errors: string[];
}
// ============================================
// File Generators
// ============================================
/**
* Generate edge function file in JSON format
*/
export function generateEdgeFunctionFile(fn: EdgeFunction): string {
const data: EdgeFunctionFileData = {
name: fn.name,
method: fn.method,
description: fn.description,
enabled: fn.enabled,
timeoutMs: fn.timeoutMs || 5000,
code: fn.code,
};
return JSON.stringify(data, null, 2);
}
/**
* Generate server function file in JSON format
*/
export function generateServerFunctionFile(fn: ServerFunction): string {
const data: ServerFunctionFileData = {
name: fn.name,
description: fn.description,
enabled: fn.enabled,
code: fn.code,
};
return JSON.stringify(data, null, 2);
}
/**
* Generate individual secret file in JSON format
*/
export function generateSecretFile(secret: Secret): string {
const data: SecretFileData = {
name: secret.name,
description: secret.description || undefined,
hasValue: secret.hasValue,
};
return JSON.stringify(data, null, 2);
}
/**
* Generate scheduled function file in JSON format
*/
export function generateScheduledFunctionFile(
fn: ScheduledFunction,
edgeFunctionName: string
): string {
const data: ScheduledFunctionFileData = {
name: fn.name,
description: fn.description,
functionName: edgeFunctionName,
cronExpression: fn.cronExpression,
timezone: fn.timezone,
enabled: fn.enabled,
config: fn.config,
lastRunAt: fn.lastRunAt?.toISOString(),
nextRunAt: fn.nextRunAt?.toISOString(),
lastStatus: fn.lastStatus,
};
return JSON.stringify(data, null, 2);
}
/**
* Generate metadata for system prompt
*/
export function generateServerContextMetadata(
projectId: string,
edgeFunctions: EdgeFunction[],
serverFunctions: ServerFunction[],
secrets: Secret[],
scheduledFunctions?: ScheduledFunction[],
runtimeDeploymentId?: string
): ServerContextMetadata {
return {
projectId,
runtimeDeploymentId,
hasDatabase: !!runtimeDeploymentId,
edgeFunctionCount: edgeFunctions.filter(f => f.enabled).length,
serverFunctionCount: serverFunctions.filter(f => f.enabled).length,
secretCount: secrets.length,
scheduledFunctionCount: scheduledFunctions ? scheduledFunctions.filter(f => f.enabled).length : 0,
};
}
// ============================================
// Validators
// ============================================
/**
* Reserved names that cannot be used for server functions
*/
const RESERVED_SERVER_FUNCTION_NAMES = [
'db', 'fetch', 'console', 'args', 'request', 'Response', 'server', 'secrets', 'atob', 'btoa'
];
/**
* Validate edge function data before saving
*/
export function validateEdgeFunctionData(data: unknown): ValidationResult {
const errors: string[] = [];
if (!data || typeof data !== 'object') {
return { valid: false, errors: ['Invalid JSON: expected an object'] };
}
const fn = data as Record<string, unknown>;
// Name validation (URL-safe)
if (!fn.name || typeof fn.name !== 'string') {
errors.push('Missing or invalid "name" field');
} else if (!/^[a-z0-9][a-z0-9-]*[a-z0-9]$|^[a-z0-9]$/.test(fn.name)) {
errors.push('Name must be lowercase letters, numbers, and hyphens only (e.g., "get-users")');
}
// Method validation
const validMethods = ['GET', 'POST', 'PUT', 'DELETE', 'ANY'];
if (!fn.method || typeof fn.method !== 'string') {
errors.push('Missing or invalid "method" field');
} else if (!validMethods.includes(fn.method)) {
errors.push(`Method must be one of: ${validMethods.join(', ')}`);
}
// Code validation
if (!fn.code || typeof fn.code !== 'string') {
errors.push('Missing or invalid "code" field');
} else {
try {
new Function(fn.code);
} catch (e: unknown) {
const message = e instanceof Error ? e.message : String(e);
errors.push(`JavaScript syntax error: ${message}`);
}
}
// Enabled validation (optional, defaults to true)
if (fn.enabled !== undefined && typeof fn.enabled !== 'boolean') {
errors.push('"enabled" must be a boolean');
}
// Timeout validation (optional)
if (fn.timeoutMs !== undefined) {
if (typeof fn.timeoutMs !== 'number') {
errors.push('"timeoutMs" must be a number');
} else if (fn.timeoutMs < 1000 || fn.timeoutMs > 30000) {
errors.push('Timeout must be between 1000 and 30000 ms');
}
}
return { valid: errors.length === 0, errors };
}
/**
* Validate server function data before saving
*/
export function validateServerFunctionData(data: unknown): ValidationResult {
const errors: string[] = [];
if (!data || typeof data !== 'object') {
return { valid: false, errors: ['Invalid JSON: expected an object'] };
}
const fn = data as Record<string, unknown>;
// Name validation (JavaScript identifier)
if (!fn.name || typeof fn.name !== 'string') {
errors.push('Missing or invalid "name" field');
} else if (!/^[a-zA-Z_][a-zA-Z0-9_]*$/.test(fn.name)) {
errors.push('Name must be a valid JavaScript identifier (e.g., "validateAuth", "formatPrice")');
} else if (RESERVED_SERVER_FUNCTION_NAMES.includes(fn.name)) {
errors.push(`Cannot use reserved name: ${fn.name}`);
}
// Code validation
if (!fn.code || typeof fn.code !== 'string') {
errors.push('Missing or invalid "code" field');
} else {
try {
new Function('args', 'db', 'fetch', 'console', fn.code);
} catch (e: unknown) {
const message = e instanceof Error ? e.message : String(e);
errors.push(`JavaScript syntax error: ${message}`);
}
}
// Enabled validation (optional, defaults to true)
if (fn.enabled !== undefined && typeof fn.enabled !== 'boolean') {
errors.push('"enabled" must be a boolean');
}
return { valid: errors.length === 0, errors };
}
/**
* Validate individual secret file data
*/
export function validateSecretData(data: unknown): ValidationResult {
const errors: string[] = [];
if (!data || typeof data !== 'object') {
return { valid: false, errors: ['Invalid JSON: expected an object'] };
}
const secret = data as Record<string, unknown>;
// Name validation (SCREAMING_SNAKE_CASE)
if (!secret.name || typeof secret.name !== 'string') {
errors.push('Missing or invalid "name" field');
} else if (!/^[A-Z][A-Z0-9_]*$/.test(secret.name)) {
errors.push('Name must be SCREAMING_SNAKE_CASE (e.g., MY_API_KEY, SMTP_PASSWORD)');
} else if (secret.name.length > 64) {
errors.push('Name must be 64 characters or less');
}
// Description validation (optional)
if (secret.description !== undefined && typeof secret.description !== 'string') {
errors.push('"description" must be a string');
}
return { valid: errors.length === 0, errors };
}
/**
* Validate scheduled function data before saving via server context
*/
export function validateScheduledFunctionData(data: unknown): ValidationResult {
const errors: string[] = [];
if (!data || typeof data !== 'object') {
return { valid: false, errors: ['Invalid JSON: expected an object'] };
}
const fn = data as Record<string, unknown>;
// Name validation (URL-safe)
if (!fn.name || typeof fn.name !== 'string') {
errors.push('Missing or invalid "name" field');
} else if (!/^[a-z0-9][a-z0-9-]*[a-z0-9]$|^[a-z0-9]$/.test(fn.name)) {
errors.push('Name must be lowercase letters, numbers, and hyphens only');
}
// functionName validation
if (!fn.functionName || typeof fn.functionName !== 'string') {
errors.push('Missing or invalid "functionName" field');
}
// cronExpression validation
if (!fn.cronExpression || typeof fn.cronExpression !== 'string') {
errors.push('Missing or invalid "cronExpression" field');
} else {
try {
cronParser.parseExpression(fn.cronExpression);
} catch {
errors.push('Invalid cron expression');
}
}
// timezone validation (optional, defaults to UTC)
if (fn.timezone !== undefined) {
if (typeof fn.timezone !== 'string') {
errors.push('"timezone" must be a string');
} else {
try {
Intl.DateTimeFormat(undefined, { timeZone: fn.timezone });
} catch {
errors.push(`Invalid timezone: ${fn.timezone}`);
}
}
}
// enabled validation (optional)
if (fn.enabled !== undefined && typeof fn.enabled !== 'boolean') {
errors.push('"enabled" must be a boolean');
}
// config validation (optional, must be object)
if (fn.config !== undefined) {
if (typeof fn.config !== 'object' || fn.config === null || Array.isArray(fn.config)) {
errors.push('"config" must be a plain object');
}
}
return { valid: errors.length === 0, errors };
}
|