modelence 0.3.0 → 0.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,6 +1,16 @@
1
- # Modelence
1
+ <div align="center">
2
+ <a href="https://modelence.com">
3
+ <picture>
4
+ <source media="(prefers-color-scheme: dark)" srcset="assets/modelence.png">
5
+ <img alt="Modelence logo" src="assets/modelence.png" height="128">
6
+ </picture>
7
+ </a>
8
+ <h1>Modelence</h1>
2
9
 
3
10
  ![Build Status](https://github.com/modelence/modelence/actions/workflows/build.yml/badge.svg)
11
+ <a href="https://www.npmjs.com/package/modelence"><img alt="NPM version" src="https://img.shields.io/npm/v/modelence.svg"></a>
12
+
13
+ </div>
4
14
 
5
15
  Full-stack JavaScript framework for interactive web applications
6
16
 
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- import {Command}from'commander';import {promises,createWriteStream,writeFileSync}from'fs';import {join}from'path';import {parse}from'dotenv';import {createInterface}from'readline';import {execSync}from'child_process';import R from'archiver';import x from'fs/promises';import L from'open';var u=".modelence.env";async function T(e,o){let t=await fetch(`${o}/api/setup`,{method:"GET",headers:{"X-Modelence-Setup-Token":e}});if(!t.ok){let n=await t.text();throw new Error(n||`Request failed with status ${t.status}`)}return t.json()}async function b(){let e=createInterface({input:process.stdin,output:process.stdout});return new Promise(o=>{e.question(`Warning: ${u} already exists. Do you want to overwrite it? (y/N) `,t=>{e.close(),o(t.toLowerCase()==="y");});})}function D(e){return String(e).replace(/"/g,'\\"')}async function O(e){try{let o=e.replace(".env",".backup.env");await promises.copyFile(e,o),console.log(`Backup created at ${o}`);}catch(o){console.warn("Failed to create backup file:",o);}}async function E(e){try{let o=join(process.cwd(),u),t={};try{let s=await promises.readFile(o,"utf8");t=parse(s),await O(o),await b()||(console.log("Setup canceled"),process.exit(0));}catch{}console.log("Fetching service configuration...");let n=await T(e.token,e.host),r={...t,MODELENCE_CRON_ENABLED:"true",MODELENCE_TELEMETRY_ENABLED:"false",MODELENCE_DEPLOYMENT_ID:n.deploymentId,MODELENCE_SERVICE_ENDPOINT:e.host,MODELENCE_SERVICE_TOKEN:n.serviceToken,MODELENCE_CONTAINER_ID:n.containerId},i=Object.entries(r).map(([s,d])=>`${s}="${D(d)}"`).join(`
3
- `);await promises.writeFile(o,i.trim()+`
4
- `),console.log(`Successfully configured ${u} file`);}catch(o){console.error(`Setup failed: ${o instanceof Error?o.message:"Unknown error"}`),process.exit(1);}}var m=null;function I(){if(!m)throw new Error("Environment variables not loaded");return m}function a(e){let o=I().MODELENCE_SERVICE_ENDPOINT;if(!o)throw new Error("MODELENCE_SERVICE_ENDPOINT not found in environment variables");return `${o}${e}`}async function g(){try{let e=await x.readFile(join(process.cwd(),".modelence.env"),"utf-8");m=parse(e);}catch(e){throw e.code==="ENOENT"?new Error(".modelence.env file not found in current directory"):e}}async function h(){let e=await fetch(a("/api/cli/auth"),{method:"POST"});if(!e.ok)throw new Error("Failed to create CLI authentication code");let{code:o,verificationUrl:t}=await e.json();console.log(`Please visit ${t} to authenticate`),console.log(`Code: ${o}`),await L(t);let n=await _(o);return writeFileSync(join(process.cwd(),".modelence","auth.json"),JSON.stringify({token:n})),{token:n}}async function _(e){let n=Date.now()+6e5;for(;Date.now()<n;){try{let r=await j(e);if(r)return r}catch(r){console.error("Error polling for CLI token:",r);}await new Promise(r=>setTimeout(r,5e3));}throw new Error("Unable to authenticate CLI - timed out. Please try again.")}async function j(e){let o=await fetch(a(`/api/cli/token?code=${e}`),{method:"GET"});if(!o.ok)throw new Error(`CLI token polling failed: ${o.statusText}`);let{token:t}=await o.json();return t}async function y(e){let o=process.cwd(),t=join(o,".modelence"),n=join(t,"bundle.zip");await U(),await z(n);let{token:r}=await h(),{bundleName:i}=await A(e.env,n,r);await V(e.env,i,r);}async function U(){console.log("Building project...");try{let e=w();await promises.rm(e,{recursive:!0,force:!0}),execSync("npm run build",{cwd:process.cwd(),stdio:"inherit"}),await promises.copyFile(q("package.json"),w("package.json"));}catch(e){throw console.error(e),new Error("Build failed")}try{await promises.access(v());}catch{throw new Error("Could not find the .modelence directory. Looks like something went wrong during the build.")}}async function z(e){try{await promises.unlink(e),console.log("Removed existing bundle");}catch(i){if(i.code!=="ENOENT")throw i}console.log("Creating deployment bundle...");let o=createWriteStream(e),t=R("zip",{zlib:{level:9}});t.on("warning",i=>{if(i.code==="ENOENT")console.warn("Warning:",i);else throw i}),t.on("error",i=>{throw i});let n=new Promise((i,s)=>{o.on("close",i),o.on("error",s),t.on("error",s);});t.pipe(o),t.directory(w(),"bundle"),await t.finalize(),await n;let r=await promises.stat(e);console.log(`Deployment bundle created at: ${e} (${(r.size/1024/1024).toFixed(2)} MB)`);}async function A(e,o,t){let n=await fetch(a(`/api/deployments/${e}/upload`),{method:"POST",headers:{Authorization:`Bearer ${t}`}});if(!n.ok)throw console.error(await n.text()),new Error(`Failed to create upload URL: ${n.statusText}`);let{uploadUrl:r,bundleName:i}=await n.json(),s=await promises.readFile(o),d=await fetch(r,{method:"PUT",body:s,headers:{"Content-Type":"application/zip"}});if(!d.ok)throw new Error(`Failed to upload bundle: ${d.statusText}`);return console.log("Successfully uploaded bundle to Modelence Cloud"),console.log(`Bundle name: ${i}`),{bundleName:i}}async function V(e,o,t){let n=await fetch(a(`/api/deployments/${e}/deploy`),{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${t}`},body:JSON.stringify({bundleName:o})});if(!n.ok)throw new Error(`Failed to trigger deployment: ${n.statusText}`);let{deploymentUrl:r}=await n.json();console.log("Successfully triggered deployment"),console.log(`Follow your deployment progress at: ${r}`);}function w(e){let o=v("build");return e?join(o,e):o}function q(e){return join(process.cwd(),e)}function v(e){let o=join(process.cwd(),".modelence");return e?join(o,e):o}var f=new Command().name("modelence").description("Modelence CLI tool").version("0.2.1");f.command("setup").description("Setup Modelence environment variables").requiredOption("-t, --token <token>","Modelence setup token").option("-h, --host <host>","Modelence host","https://cloud.modelence.com").action(async e=>{await E(e);});f.command("deploy").description("Deploy to Modelence Cloud").requiredOption("-e, --env <env>","Environment (deployment alias)").action(async e=>{await y(e);});g().then(()=>{f.parse(process.argv);});//# sourceMappingURL=modelence.js.map
2
+ import {Command}from'commander';import {promises,createWriteStream,writeFileSync}from'fs';import G,{join}from'path';import {parse}from'dotenv';import {createInterface}from'readline';import T from'fs/promises';import {createJiti}from'jiti';import {z as z$1}from'zod';import {build}from'tsup';import {loadConfigFromFile,build as build$1,mergeConfig}from'vite';import {execSync}from'child_process';import re from'archiver';import Q from'open';var h=".modelence.env";async function I(e,o){let t=await fetch(`${o}/api/setup`,{method:"GET",headers:{"X-Modelence-Setup-Token":e}});if(!t.ok){let r=await t.text();throw new Error(r||`Request failed with status ${t.status}`)}return t.json()}async function L(){let e=createInterface({input:process.stdin,output:process.stdout});return new Promise(o=>{e.question(`Warning: ${h} already exists. Do you want to overwrite it? (y/N) `,t=>{e.close(),o(t.toLowerCase()==="y");});})}function F(e){return String(e).replace(/"/g,'\\"')}async function _(e){try{let o=e.replace(".env",".backup.env");await promises.copyFile(e,o),console.log(`Backup created at ${o}`);}catch(o){console.warn("Failed to create backup file:",o);}}async function N(e){try{let o=join(process.cwd(),h),t={};try{let c=await promises.readFile(o,"utf8");t=parse(c),await _(o),await L()||(console.log("Setup canceled"),process.exit(0));}catch{}console.log("Fetching service configuration...");let r=await I(e.token,e.host),i={...t,MODELENCE_CRON_ENABLED:"true",MODELENCE_TELEMETRY_ENABLED:"false",MODELENCE_DEPLOYMENT_ID:r.deploymentId,MODELENCE_SERVICE_ENDPOINT:e.host,MODELENCE_SERVICE_TOKEN:r.serviceToken,MODELENCE_CONTAINER_ID:r.containerId},s=Object.entries(i).map(([c,n])=>`${c}="${F(n)}"`).join(`
3
+ `);await promises.writeFile(o,s.trim()+`
4
+ `),console.log(`Successfully configured ${h} file`);}catch(o){console.error(`Setup failed: ${o instanceof Error?o.message:"Unknown error"}`),process.exit(1);}}var y=null,v=null;function z(){if(!y)throw new Error("Environment variables not loaded");return y}function k(){if(!v)throw new Error("Configuration not loaded");return v}function d(e){let o=z().MODELENCE_SERVICE_ENDPOINT;if(!o)throw new Error("MODELENCE_SERVICE_ENDPOINT not found in environment variables");return `${o}${e}`}function g(){let{serverDir:e,serverEntry:o}=k();return join(e,o)}function x(){return k().postBuildCommand}function D(e){let o=C("build");return o}function u(e){return join(process.cwd(),e)}function C(e){let o=u(".modelence");return e?join(o,e):o}async function S(){try{let e=join(process.cwd(),"modelence.config.ts"),t=await createJiti(import.meta.url,{interopDefault:!0,requireCache:!1}).import(e);if(typeof t!="object")throw new Error("modelence.config.ts should export an object");v=z$1.object({serverDir:z$1.string(),serverEntry:z$1.string(),postBuildCommand:z$1.string().optional()}).parse(t);}catch(e){throw console.error(e),new Error("Unable to load modelence.config.ts")}try{let e=await T.readFile(join(process.cwd(),".modelence.env"),"utf-8");y=parse(e);}catch(e){if(e.code!=="ENOENT")throw e}}async function K(){let e=x();if(e){console.log("Running post-build command..."),execSync(e);return}await X();}async function X(){console.log("Building client with Vite...");let e=await loadConfigFromFile({command:"build",mode:process.env.NODE_ENV||"production"}),o={build:{outDir:G.resolve(process.cwd(),".modelence/build/client"),emptyOutDir:true}};await build$1(mergeConfig(e?.config||{},o,true));}async function H(){return console.log("Building server with tsup..."),new Promise((e,o)=>{build({entry:[g()],format:"esm",outDir:".modelence/build",clean:true,watch:false,bundle:true,treeshake:true,skipNodeModulesBundle:false,outExtension:({format:t})=>({js:".mjs"}),onSuccess:async()=>{e(undefined);}});})}async function w(){console.log("Building Modelence project...");try{let e=D();await T.rm(e,{recursive:!0,force:!0}),await H(),await K(),console.log("Build completed successfully!");}catch(e){throw console.error(e),new Error("Build failed")}try{await T.access(C());}catch{throw new Error("Could not find the .modelence directory. Looks like something went wrong during the build.")}}async function O(){let e=await fetch(d("/api/cli/auth"),{method:"POST"});if(!e.ok)throw new Error("Failed to create CLI authentication code");let{code:o,verificationUrl:t}=await e.json();console.log(`Please visit ${t} to authenticate`),console.log(`Code: ${o}`),await Q(t);let r=await oe(o);return writeFileSync(join(process.cwd(),".modelence","auth.json"),JSON.stringify({token:r})),{token:r}}async function oe(e){let r=Date.now()+6e5;for(;Date.now()<r;){try{let i=await te(e);if(i)return i}catch(i){console.error("Error polling for CLI token:",i);}await new Promise(i=>setTimeout(i,5e3));}throw new Error("Unable to authenticate CLI - timed out. Please try again.")}async function te(e){let o=await fetch(d(`/api/cli/token?code=${e}`),{method:"GET"});if(!o.ok)throw new Error(`CLI token polling failed: ${o.statusText}`);let{token:t}=await o.json();return t}async function B(e){let o=process.cwd(),t=join(o,".modelence"),r=join(t,"tmp","bundle.zip");await w(),await ie(r);let{token:i}=await O(),{bundleName:s}=await se(e.env,r,i);await promises.unlink(r),await ce(e.env,s,join(".modelence","build","app.mjs"),i);}async function ie(e){try{await promises.unlink(e),console.log("Removed existing bundle");}catch(n){if(n.code!=="ENOENT")throw n}console.log("Creating deployment bundle..."),await promises.mkdir(join(e,".."),{recursive:true});let o=createWriteStream(e),t=re("zip",{zlib:{level:9}});t.on("warning",n=>{if(n.code==="ENOENT")console.warn("Warning:",n);else throw n}),t.on("error",n=>{throw n});let r=new Promise((n,b)=>{o.on("close",n),o.on("error",b),t.on("error",b);});t.pipe(o);let i=["package.json","next.config.js","next.config.ts","modelence.config.ts"],s=["public","server",join(".modelence","build"),".next"];for(let n of i)await promises.access(u(n)).then(()=>true).catch(()=>false)&&t.file(u(n),{name:n});for(let n of s)await promises.access(u(n)).then(()=>true).catch(()=>false)&&t.directory(u(n),n);await t.finalize(),await r;let c=await promises.stat(e);console.log(`Deployment bundle created at: ${e} (${(c.size/1024/1024).toFixed(2)} MB)`);}async function se(e,o,t){let r=await fetch(d(`/api/deployments/${e}/upload`),{method:"POST",headers:{Authorization:`Bearer ${t}`}});if(!r.ok)throw console.error(await r.text()),new Error(`Failed to create upload URL: ${r.statusText}`);let{uploadUrl:i,bundleName:s}=await r.json(),c=await promises.readFile(o),n=await fetch(i,{method:"PUT",body:c,headers:{"Content-Type":"application/zip"}});if(!n.ok)throw new Error(`Failed to upload bundle: ${n.statusText}`);return console.log("Successfully uploaded bundle to Modelence Cloud"),console.log(`Bundle name: ${s}`),{bundleName:s}}async function ce(e,o,t,r){let i=await fetch(d(`/api/deployments/${e}/deploy`),{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${r}`},body:JSON.stringify({bundleName:o,entryPoint:t})});if(!i.ok)throw new Error(`Failed to trigger deployment: ${i.statusText}`);let{deploymentUrl:s}=await i.json();console.log("Successfully triggered deployment"),console.log(`Follow your deployment progress at: ${s}`);}function j(){build({entry:[g()],format:"esm",outDir:".modelence/dev",clean:true,watch:true,bundle:true,minify:false,sourcemap:true,treeshake:false,skipNodeModulesBundle:true,outExtension:({format:e})=>({js:".mjs"}),onSuccess:async()=>{try{execSync("node .modelence/dev/app.mjs",{stdio:"inherit",env:{...process.env,NODE_ENV:"development"}});}catch(e){console.error("Server crashed:",e);}}});}var m=new Command().name("modelence").description("Modelence CLI tool").version("0.2.1");m.command("setup").description("Setup Modelence environment variables").requiredOption("-t, --token <token>","Modelence setup token").option("-h, --host <host>","Modelence host","https://cloud.modelence.com").action(async e=>{await N(e);});m.command("build").description("Build the application").action(async()=>{await w();});m.command("deploy").description("Deploy to Modelence Cloud").requiredOption("-e, --env <env>","Environment (deployment alias)").action(async e=>{await B(e);});m.command("dev").description("Start development server").action(async()=>{j();});S().then(()=>{m.parse(process.argv);});//# sourceMappingURL=modelence.js.map
5
5
  //# sourceMappingURL=modelence.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../bin/setup.ts","../../bin/config.ts","../../bin/auth.ts","../../bin/deploy.ts","../../bin/modelence.ts"],"names":["MODELENCE_ENV_FILE","fetchServiceConfig","setupToken","host","response","errorText","confirmOverwrite","rl","createInterface","resolve","answer","escapeEnvValue","value","backupEnvFile","envPath","backupPath","fs","error","setup","options","join","existingEnv","envContent","parseEnv","config","newEnv","key","env","getEnv","getStudioUrl","path","studioBaseUrl","loadEnv","parseDotenv","authenticateCli","code","verificationUrl","open","token","waitForAuth","writeFileSync","pollExpireTs","pollForToken","deploy","cwd","modelenceDir","outputFile","buildProject","createBundle","bundleName","uploadBundle","triggerDeployment","buildDir","getBuildPath","execSync","getProjectPath","getModelencePath","output","createWriteStream","archive","archiver","err","archiveComplete","reject","stats","deploymentAlias","uploadUrl","fileBuffer","uploadResponse","deploymentUrl","subPath","program","Command"],"mappings":"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","file":"modelence.js","sourcesContent":["import { promises as fs } from 'fs';\nimport { join } from 'path';\nimport { parse as parseEnv } from 'dotenv';\nimport { createInterface } from 'readline';\n\nconst MODELENCE_ENV_FILE = '.modelence.env';\n\ninterface SetupResponse {\n deploymentId: string;\n serviceEndpoint: string;\n serviceToken: string;\n containerId: string;\n}\n\nasync function fetchServiceConfig(setupToken: string, host: string): Promise<SetupResponse> {\n const response = await fetch(`${host}/api/setup`, {\n method: 'GET',\n headers: {\n 'X-Modelence-Setup-Token': setupToken,\n },\n });\n\n if (!response.ok) {\n const errorText = await response.text();\n throw new Error(errorText || `Request failed with status ${response.status}`);\n }\n\n return response.json();\n}\n\nasync function confirmOverwrite(): Promise<boolean> {\n const rl = createInterface({\n input: process.stdin,\n output: process.stdout\n });\n\n return new Promise((resolve) => {\n rl.question(`Warning: ${MODELENCE_ENV_FILE} already exists. Do you want to overwrite it? (y/N) `, (answer) => {\n rl.close();\n resolve(answer.toLowerCase() === 'y');\n });\n });\n}\n\nfunction escapeEnvValue(value: string | number): string {\n // Convert to string and escape quotes\n return String(value).replace(/\"/g, '\\\\\"');\n}\n\nasync function backupEnvFile(envPath: string): Promise<void> {\n try {\n const backupPath = envPath.replace('.env', '.backup.env');\n await fs.copyFile(envPath, backupPath);\n console.log(`Backup created at ${backupPath}`);\n } catch (error) {\n console.warn('Failed to create backup file:', error);\n }\n}\n\nexport async function setup(options: { token: string, host: string }) {\n try {\n const envPath = join(process.cwd(), MODELENCE_ENV_FILE);\n let existingEnv = {};\n\n try {\n // Check if .modelence.env exists\n const envContent = await fs.readFile(envPath, 'utf8');\n existingEnv = parseEnv(envContent);\n\n // Create backup before overwriting\n await backupEnvFile(envPath);\n\n // Ask for confirmation before overwriting\n const shouldContinue = await confirmOverwrite();\n if (!shouldContinue) {\n console.log('Setup canceled');\n process.exit(0);\n }\n } catch (error) {\n // File doesn't exist, we'll create it\n }\n\n // Fetch service configuration using setup token\n console.log('Fetching service configuration...');\n const config = await fetchServiceConfig(options.token, options.host);\n\n // Update environment variables\n const newEnv = {\n ...existingEnv,\n MODELENCE_CRON_ENABLED: 'true',\n MODELENCE_TELEMETRY_ENABLED: 'false', // TODO: Remove after all usages are gone\n MODELENCE_DEPLOYMENT_ID: config.deploymentId,\n MODELENCE_SERVICE_ENDPOINT: options.host, // TODO: Replace with config.serviceEndpoint in the future\n MODELENCE_SERVICE_TOKEN: config.serviceToken,\n MODELENCE_CONTAINER_ID: config.containerId,\n };\n\n // Convert to .env format with escaped values\n const envContent = Object.entries(newEnv)\n .map(([key, value]) => `${key}=\"${escapeEnvValue(value)}\"`)\n .join('\\n');\n\n // Write the file\n await fs.writeFile(envPath, envContent.trim() + '\\n');\n console.log(`Successfully configured ${MODELENCE_ENV_FILE} file`);\n\n } catch (error: unknown) {\n console.error(`Setup failed: ${error instanceof Error ? error.message : 'Unknown error'}`);\n process.exit(1);\n }\n}\n","import { parse as parseDotenv } from 'dotenv';\nimport { join } from 'path';\nimport fs from 'fs/promises';\n\nlet env: Record<string, string> | null = null;\n\nexport function getEnv() {\n if (!env) {\n throw new Error('Environment variables not loaded');\n }\n\n return env;\n}\n\nexport function getStudioUrl(path: string) {\n const studioBaseUrl = getEnv().MODELENCE_SERVICE_ENDPOINT;\n if (!studioBaseUrl) {\n throw new Error('MODELENCE_SERVICE_ENDPOINT not found in environment variables');\n }\n\n return `${studioBaseUrl}${path}`;\n}\n\nexport async function loadEnv() {\n try {\n const envContent = await fs.readFile(join(process.cwd(), '.modelence.env'), 'utf-8');\n env = parseDotenv(envContent); \n } catch (error) {\n if ((error as NodeJS.ErrnoException).code === 'ENOENT') {\n throw new Error('.modelence.env file not found in current directory');\n }\n throw error;\n }\n}\n","import { getStudioUrl } from './config';\nimport open from 'open';\nimport { writeFileSync } from 'fs';\nimport { join } from 'path';\n\nexport async function authenticateCli() {\n // TODO: check if a token already exists in .modelence/auth.json\n\n const response = await fetch(getStudioUrl('/api/cli/auth'), {\n method: 'POST',\n });\n\n if (!response.ok) {\n throw new Error('Failed to create CLI authentication code');\n }\n\n const { code, verificationUrl } = await response.json();\n\n console.log(`Please visit ${verificationUrl} to authenticate`);\n console.log(`Code: ${code}`);\n \n await open(verificationUrl);\n\n const token = await waitForAuth(code);\n\n writeFileSync(join(process.cwd(), '.modelence', 'auth.json'), JSON.stringify({ token }));\n\n return { token };\n}\n\nasync function waitForAuth(code: string): Promise<string> {\n const pollInterval = 5 * 1000; // 5 seconds\n const pollTimeout = 10 * 60 * 1000; // 10 minutes\n const pollExpireTs = Date.now() + pollTimeout;\n while (Date.now() < pollExpireTs) {\n try {\n const token = await pollForToken(code);\n if (token) {\n return token;\n }\n } catch (error) {\n console.error('Error polling for CLI token:', error);\n }\n await new Promise(resolve => setTimeout(resolve, pollInterval));\n }\n\n throw new Error('Unable to authenticate CLI - timed out. Please try again.');\n}\n\nasync function pollForToken(code: string) {\n const response = await fetch(getStudioUrl(`/api/cli/token?code=${code}`), {\n method: 'GET',\n });\n\n if (!response.ok) {\n throw new Error(`CLI token polling failed: ${response.statusText}`);\n }\n\n const { token } = await response.json();\n return token;\n}\n","import { createWriteStream, promises as fs } from 'fs';\nimport { execSync } from 'child_process';\nimport { join } from 'path';\nimport archiver from 'archiver';\nimport { authenticateCli } from './auth';\nimport { getStudioUrl } from './config';\n\nexport async function deploy(options: { env: string }) {\n const cwd = process.cwd();\n const modelenceDir = join(cwd, '.modelence');\n\n const outputFile = join(modelenceDir, 'bundle.zip');\n\n await buildProject();\n\n await createBundle(outputFile);\n\n const { token } = await authenticateCli();\n\n const { bundleName } = await uploadBundle(options.env, outputFile, token);\n\n await triggerDeployment(options.env, bundleName, token);\n}\n\nasync function buildProject() {\n console.log('Building project...');\n \n try {\n const buildDir = getBuildPath();\n await fs.rm(buildDir, { recursive: true, force: true });\n\n execSync('npm run build', {\n cwd: process.cwd(),\n stdio: 'inherit'\n });\n\n await fs.copyFile(getProjectPath('package.json'), getBuildPath('package.json'));\n } catch (error) {\n console.error(error);\n throw new Error('Build failed');\n }\n\n try {\n await fs.access(getModelencePath());\n } catch (error) {\n throw new Error('Could not find the .modelence directory. Looks like something went wrong during the build.');\n }\n}\n\nasync function createBundle(outputFile: string) {\n try {\n await fs.unlink(outputFile);\n console.log('Removed existing bundle');\n } catch (error) {\n // Ignore error if file doesn't exist\n if ((error as NodeJS.ErrnoException).code !== 'ENOENT') {\n throw error;\n }\n }\n\n console.log('Creating deployment bundle...');\n\n const output = createWriteStream(outputFile);\n const archive = archiver('zip', {\n zlib: { level: 9 } // Maximum compression\n });\n\n archive.on('warning', (err) => {\n if (err.code === 'ENOENT') {\n console.warn('Warning:', err);\n } else {\n throw err;\n }\n });\n\n archive.on('error', (err) => {\n throw err;\n });\n\n const archiveComplete = new Promise<void>((resolve, reject) => {\n output.on('close', resolve);\n output.on('error', reject);\n archive.on('error', reject);\n });\n\n archive.pipe(output);\n\n archive.directory(getBuildPath(), 'bundle');\n\n await archive.finalize();\n await archiveComplete;\n\n const stats = await fs.stat(outputFile);\n console.log(`Deployment bundle created at: ${outputFile} (${(stats.size / 1024 / 1024).toFixed(2)} MB)`);\n}\n\nasync function uploadBundle(deploymentAlias: string, outputFile: string, token: string) {\n const response = await fetch(getStudioUrl(`/api/deployments/${deploymentAlias}/upload`), {\n method: 'POST',\n headers: {\n 'Authorization': `Bearer ${token}`\n }\n });\n\n if (!response.ok) {\n console.error(await response.text());\n throw new Error(`Failed to create upload URL: ${response.statusText}`);\n }\n\n const { uploadUrl, bundleName } = await response.json();\n\n const fileBuffer = await fs.readFile(outputFile);\n const uploadResponse = await fetch(uploadUrl, {\n method: 'PUT',\n body: fileBuffer,\n headers: {\n 'Content-Type': 'application/zip',\n },\n });\n\n if (!uploadResponse.ok) {\n throw new Error(`Failed to upload bundle: ${uploadResponse.statusText}`);\n }\n\n console.log('Successfully uploaded bundle to Modelence Cloud');\n console.log(`Bundle name: ${bundleName}`);\n\n return { bundleName };\n}\n\nasync function triggerDeployment(deploymentAlias: string, bundleName: string, token: string) {\n const response = await fetch(getStudioUrl(`/api/deployments/${deploymentAlias}/deploy`), {\n method: 'POST',\n headers: {\n 'Content-Type': 'application/json',\n 'Authorization': `Bearer ${token}`\n },\n body: JSON.stringify({\n bundleName,\n }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to trigger deployment: ${response.statusText}`);\n }\n\n const { deploymentUrl } = await response.json();\n\n console.log('Successfully triggered deployment');\n console.log(`Follow your deployment progress at: ${deploymentUrl}`);\n}\n\nfunction getBuildPath(subPath?: string) {\n const buildDir = getModelencePath('build');\n return subPath ? join(buildDir, subPath) : buildDir;\n}\n\nfunction getProjectPath(subPath: string) {\n return join(process.cwd(), subPath);\n}\n\nfunction getModelencePath(subPath?: string) {\n const modelenceDir = join(process.cwd(), '.modelence');\n return subPath ? join(modelenceDir, subPath) : modelenceDir;\n}\n","#!/usr/bin/env node\n\nimport { Command } from 'commander';\nimport { setup } from './setup';\nimport { deploy } from './deploy';\nimport { loadEnv } from './config';\n\nconst program = new Command()\n .name('modelence')\n .description('Modelence CLI tool')\n .version('0.2.1');\n\nprogram\n .command('setup')\n .description('Setup Modelence environment variables')\n .requiredOption('-t, --token <token>', 'Modelence setup token')\n .option('-h, --host <host>', 'Modelence host', 'https://cloud.modelence.com')\n .action(async (options) => {\n await setup(options);\n });\n\nprogram\n .command('deploy')\n .description('Deploy to Modelence Cloud')\n .requiredOption('-e, --env <env>', 'Environment (deployment alias)')\n .action(async (options) => {\n await deploy(options);\n });\n\nloadEnv().then(() => {\n program.parse(process.argv);\n});\n"]}
1
+ {"version":3,"sources":["../../bin/setup.ts","../../bin/config.ts","../../bin/build.ts","../../bin/auth.ts","../../bin/deploy.ts","../../bin/dev.ts","../../bin/modelence.ts"],"names":["MODELENCE_ENV_FILE","fetchServiceConfig","setupToken","host","response","errorText","confirmOverwrite","rl","createInterface","resolve","answer","escapeEnvValue","value","backupEnvFile","envPath","backupPath","fs","error","setup","options","join","existingEnv","envContent","parseEnv","config","newEnv","key","env","getEnv","getConfig","getStudioUrl","path","studioBaseUrl","getServerPath","serverDir","serverEntry","getPostBuildCommand","getBuildPath","subPath","buildDir","getModelencePath","getProjectPath","modelenceDir","loadEnv","configPath","configModule","createJiti","z","parseDotenv","buildClient","postBuildCommand","execSync","buildVite","userConfig","loadConfigFromFile","modelenceConfig","viteBuild","mergeConfig","buildServer","reject","tsupBuild","format","build","authenticateCli","code","verificationUrl","open","token","waitForAuth","writeFileSync","pollExpireTs","pollForToken","deploy","cwd","bundlePath","createBundle","bundleName","uploadBundle","triggerDeployment","output","createWriteStream","archive","archiver","err","archiveComplete","bundleFiles","bundleDirs","file","dir","stats","deploymentAlias","uploadUrl","fileBuffer","uploadResponse","entryPoint","deploymentUrl","dev","program","Command"],"mappings":"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","file":"modelence.js","sourcesContent":["import { promises as fs } from 'fs';\nimport { join } from 'path';\nimport { parse as parseEnv } from 'dotenv';\nimport { createInterface } from 'readline';\n\nconst MODELENCE_ENV_FILE = '.modelence.env';\n\ninterface SetupResponse {\n deploymentId: string;\n serviceEndpoint: string;\n serviceToken: string;\n containerId: string;\n}\n\nasync function fetchServiceConfig(setupToken: string, host: string): Promise<SetupResponse> {\n const response = await fetch(`${host}/api/setup`, {\n method: 'GET',\n headers: {\n 'X-Modelence-Setup-Token': setupToken,\n },\n });\n\n if (!response.ok) {\n const errorText = await response.text();\n throw new Error(errorText || `Request failed with status ${response.status}`);\n }\n\n return response.json();\n}\n\nasync function confirmOverwrite(): Promise<boolean> {\n const rl = createInterface({\n input: process.stdin,\n output: process.stdout\n });\n\n return new Promise((resolve) => {\n rl.question(`Warning: ${MODELENCE_ENV_FILE} already exists. Do you want to overwrite it? (y/N) `, (answer) => {\n rl.close();\n resolve(answer.toLowerCase() === 'y');\n });\n });\n}\n\nfunction escapeEnvValue(value: string | number): string {\n // Convert to string and escape quotes\n return String(value).replace(/\"/g, '\\\\\"');\n}\n\nasync function backupEnvFile(envPath: string): Promise<void> {\n try {\n const backupPath = envPath.replace('.env', '.backup.env');\n await fs.copyFile(envPath, backupPath);\n console.log(`Backup created at ${backupPath}`);\n } catch (error) {\n console.warn('Failed to create backup file:', error);\n }\n}\n\nexport async function setup(options: { token: string, host: string }) {\n try {\n const envPath = join(process.cwd(), MODELENCE_ENV_FILE);\n let existingEnv = {};\n\n try {\n // Check if .modelence.env exists\n const envContent = await fs.readFile(envPath, 'utf8');\n existingEnv = parseEnv(envContent);\n\n // Create backup before overwriting\n await backupEnvFile(envPath);\n\n // Ask for confirmation before overwriting\n const shouldContinue = await confirmOverwrite();\n if (!shouldContinue) {\n console.log('Setup canceled');\n process.exit(0);\n }\n } catch (error) {\n // File doesn't exist, we'll create it\n }\n\n // Fetch service configuration using setup token\n console.log('Fetching service configuration...');\n const config = await fetchServiceConfig(options.token, options.host);\n\n // Update environment variables\n const newEnv = {\n ...existingEnv,\n MODELENCE_CRON_ENABLED: 'true',\n MODELENCE_TELEMETRY_ENABLED: 'false', // TODO: Remove after all usages are gone\n MODELENCE_DEPLOYMENT_ID: config.deploymentId,\n MODELENCE_SERVICE_ENDPOINT: options.host, // TODO: Replace with config.serviceEndpoint in the future\n MODELENCE_SERVICE_TOKEN: config.serviceToken,\n MODELENCE_CONTAINER_ID: config.containerId,\n };\n\n // Convert to .env format with escaped values\n const envContent = Object.entries(newEnv)\n .map(([key, value]) => `${key}=\"${escapeEnvValue(value)}\"`)\n .join('\\n');\n\n // Write the file\n await fs.writeFile(envPath, envContent.trim() + '\\n');\n console.log(`Successfully configured ${MODELENCE_ENV_FILE} file`);\n\n } catch (error: unknown) {\n console.error(`Setup failed: ${error instanceof Error ? error.message : 'Unknown error'}`);\n process.exit(1);\n }\n}\n","import { createJiti } from 'jiti';\nimport { parse as parseDotenv } from 'dotenv';\nimport { join } from 'path';\nimport fs from 'fs/promises';\nimport { ModelenceConfig } from '../packages/types';\nimport { z } from 'zod';\n\nlet env: Record<string, string> | null = null;\nlet config: ModelenceConfig | null = null;\n\nexport function getEnv() {\n if (!env) {\n throw new Error('Environment variables not loaded');\n }\n\n return env;\n}\n\nexport function getConfig() {\n if (!config) {\n throw new Error('Configuration not loaded');\n }\n\n return config;\n}\n\nexport function getStudioUrl(path: string) {\n const studioBaseUrl = getEnv().MODELENCE_SERVICE_ENDPOINT;\n if (!studioBaseUrl) {\n throw new Error('MODELENCE_SERVICE_ENDPOINT not found in environment variables');\n }\n\n return `${studioBaseUrl}${path}`;\n}\n\nexport function getServerPath() {\n const { serverDir, serverEntry } = getConfig();\n return join(serverDir, serverEntry);\n}\n\nexport function getPostBuildCommand() {\n return getConfig().postBuildCommand;\n}\n\nexport function getBuildPath(subPath?: string) {\n const buildDir = getModelencePath('build');\n return subPath ? join(buildDir, subPath) : buildDir;\n}\n\nexport function getProjectPath(subPath: string) {\n return join(process.cwd(), subPath);\n}\n\nexport function getModelencePath(subPath?: string) {\n const modelenceDir = getProjectPath('.modelence');\n return subPath ? join(modelenceDir, subPath) : modelenceDir;\n}\n\nexport async function loadEnv() {\n try {\n const configPath = join(process.cwd(), 'modelence.config.ts');\n\n const jiti = createJiti(import.meta.url, {\n interopDefault: true,\n requireCache: false\n });\n \n const configModule = await jiti.import(configPath);\n if (typeof configModule !== 'object') {\n throw new Error('modelence.config.ts should export an object');\n }\n config = z.object({\n serverDir: z.string(),\n serverEntry: z.string(),\n postBuildCommand: z.string().optional()\n }).parse(configModule);\n } catch (error) {\n console.error(error);\n throw new Error('Unable to load modelence.config.ts');\n }\n\n try {\n const envContent = await fs.readFile(join(process.cwd(), '.modelence.env'), 'utf-8');\n env = parseDotenv(envContent); \n } catch (error) {\n if ((error as NodeJS.ErrnoException).code === 'ENOENT') {\n // .modelence.env is optional, may not exist in case of an offline setup\n } else {\n throw error;\n }\n }\n}\n","import fs from 'fs/promises';\nimport { getBuildPath, getModelencePath, getPostBuildCommand, getServerPath } from './config';\nimport { build as tsupBuild } from 'tsup';\nimport { build as viteBuild, mergeConfig, loadConfigFromFile } from 'vite';\nimport path from 'path';\nimport { execSync } from 'child_process';\n\nasync function buildClient() {\n const postBuildCommand = getPostBuildCommand();\n if (postBuildCommand) {\n console.log('Running post-build command...');\n execSync(postBuildCommand);\n return;\n }\n\n await buildVite();\n}\n\nasync function buildVite() {\n console.log('Building client with Vite...');\n\n const userConfig = await loadConfigFromFile({\n command: 'build',\n mode: process.env.NODE_ENV || 'production',\n });\n\n const modelenceConfig = {\n build: {\n outDir: path.resolve(process.cwd(), '.modelence/build/client'),\n emptyOutDir: true\n }\n };\n\n await viteBuild(mergeConfig(\n userConfig?.config || {},\n modelenceConfig,\n true\n ));\n}\n\nasync function buildServer() {\n console.log('Building server with tsup...');\n return new Promise((resolve, reject) => {\n tsupBuild({\n entry: [getServerPath()],\n format: 'esm',\n outDir: '.modelence/build',\n clean: true,\n watch: false,\n bundle: true,\n treeshake: true,\n skipNodeModulesBundle: false,\n outExtension: ({ format }) => ({\n js: '.mjs'\n }),\n onSuccess: async () => { resolve(undefined); }\n });\n });\n}\n\nexport async function build() {\n console.log('Building Modelence project...');\n\n try {\n const buildDir = getBuildPath();\n await fs.rm(buildDir, { recursive: true, force: true });\n \n await buildServer();\n await buildClient();\n\n console.log('Build completed successfully!');\n } catch (error) {\n console.error(error);\n throw new Error('Build failed');\n }\n\n\n try {\n await fs.access(getModelencePath());\n } catch (error) {\n throw new Error('Could not find the .modelence directory. Looks like something went wrong during the build.');\n }\n}\n","import { getStudioUrl } from './config';\nimport open from 'open';\nimport { writeFileSync } from 'fs';\nimport { join } from 'path';\n\nexport async function authenticateCli() {\n // TODO: check if a token already exists in .modelence/auth.json\n\n const response = await fetch(getStudioUrl('/api/cli/auth'), {\n method: 'POST',\n });\n\n if (!response.ok) {\n throw new Error('Failed to create CLI authentication code');\n }\n\n const { code, verificationUrl } = await response.json();\n\n console.log(`Please visit ${verificationUrl} to authenticate`);\n console.log(`Code: ${code}`);\n \n await open(verificationUrl);\n\n const token = await waitForAuth(code);\n\n writeFileSync(join(process.cwd(), '.modelence', 'auth.json'), JSON.stringify({ token }));\n\n return { token };\n}\n\nasync function waitForAuth(code: string): Promise<string> {\n const pollInterval = 5 * 1000; // 5 seconds\n const pollTimeout = 10 * 60 * 1000; // 10 minutes\n const pollExpireTs = Date.now() + pollTimeout;\n while (Date.now() < pollExpireTs) {\n try {\n const token = await pollForToken(code);\n if (token) {\n return token;\n }\n } catch (error) {\n console.error('Error polling for CLI token:', error);\n }\n await new Promise(resolve => setTimeout(resolve, pollInterval));\n }\n\n throw new Error('Unable to authenticate CLI - timed out. Please try again.');\n}\n\nasync function pollForToken(code: string) {\n const response = await fetch(getStudioUrl(`/api/cli/token?code=${code}`), {\n method: 'GET',\n });\n\n if (!response.ok) {\n throw new Error(`CLI token polling failed: ${response.statusText}`);\n }\n\n const { token } = await response.json();\n return token;\n}\n","import { createWriteStream, promises as fs } from 'fs';\nimport { join } from 'path';\nimport archiver from 'archiver';\nimport { authenticateCli } from './auth';\nimport { getStudioUrl, getBuildPath, getProjectPath } from './config';\nimport { build } from './build';\n\nexport async function deploy(options: { env: string }) {\n const cwd = process.cwd();\n const modelenceDir = join(cwd, '.modelence');\n\n const bundlePath = join(modelenceDir, 'tmp', 'bundle.zip');\n\n await build();\n\n await createBundle(bundlePath);\n\n const { token } = await authenticateCli();\n\n const { bundleName } = await uploadBundle(options.env, bundlePath, token);\n\n await fs.unlink(bundlePath);\n\n await triggerDeployment(options.env, bundleName, join('.modelence', 'build', 'app.mjs'), token);\n}\n\nasync function createBundle(bundlePath: string) {\n try {\n await fs.unlink(bundlePath);\n console.log('Removed existing bundle');\n } catch (error) {\n // Ignore error if file doesn't exist\n if ((error as NodeJS.ErrnoException).code !== 'ENOENT') {\n throw error;\n }\n }\n\n console.log('Creating deployment bundle...');\n\n await fs.mkdir(join(bundlePath, '..'), { recursive: true });\n\n const output = createWriteStream(bundlePath);\n const archive = archiver('zip', {\n zlib: { level: 9 } // Maximum compression\n });\n\n archive.on('warning', (err) => {\n if (err.code === 'ENOENT') {\n console.warn('Warning:', err);\n } else {\n throw err;\n }\n });\n\n archive.on('error', (err) => {\n throw err;\n });\n\n const archiveComplete = new Promise<void>((resolve, reject) => {\n output.on('close', resolve);\n output.on('error', reject);\n archive.on('error', reject);\n });\n\n archive.pipe(output);\n\n const bundleFiles = [\n 'package.json',\n 'next.config.js',\n 'next.config.ts',\n 'modelence.config.ts',\n ];\n\n const bundleDirs = [\n 'public',\n 'server',\n join('.modelence', 'build'),\n '.next',\n ];\n\n for (const file of bundleFiles) {\n if (await fs.access(getProjectPath(file)).then(() => true).catch(() => false)) {\n archive.file(getProjectPath(file), { name: file });\n }\n }\n\n for (const dir of bundleDirs) {\n if (await fs.access(getProjectPath(dir)).then(() => true).catch(() => false)) {\n archive.directory(getProjectPath(dir), dir);\n }\n }\n\n await archive.finalize();\n await archiveComplete;\n\n const stats = await fs.stat(bundlePath);\n console.log(`Deployment bundle created at: ${bundlePath} (${(stats.size / 1024 / 1024).toFixed(2)} MB)`);\n}\n\nasync function uploadBundle(deploymentAlias: string, bundlePath: string, token: string) {\n const response = await fetch(getStudioUrl(`/api/deployments/${deploymentAlias}/upload`), {\n method: 'POST',\n headers: {\n 'Authorization': `Bearer ${token}`\n }\n });\n\n if (!response.ok) {\n console.error(await response.text());\n throw new Error(`Failed to create upload URL: ${response.statusText}`);\n }\n\n const { uploadUrl, bundleName } = await response.json();\n\n const fileBuffer = await fs.readFile(bundlePath);\n const uploadResponse = await fetch(uploadUrl, {\n method: 'PUT',\n body: fileBuffer,\n headers: {\n 'Content-Type': 'application/zip',\n },\n });\n\n if (!uploadResponse.ok) {\n throw new Error(`Failed to upload bundle: ${uploadResponse.statusText}`);\n }\n\n console.log('Successfully uploaded bundle to Modelence Cloud');\n console.log(`Bundle name: ${bundleName}`);\n\n return { bundleName };\n}\n\nasync function triggerDeployment(deploymentAlias: string, bundleName: string, entryPoint: string, token: string) {\n const response = await fetch(getStudioUrl(`/api/deployments/${deploymentAlias}/deploy`), {\n method: 'POST',\n headers: {\n 'Content-Type': 'application/json',\n 'Authorization': `Bearer ${token}`\n },\n body: JSON.stringify({\n bundleName,\n entryPoint,\n }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to trigger deployment: ${response.statusText}`);\n }\n\n const { deploymentUrl } = await response.json();\n\n console.log('Successfully triggered deployment');\n console.log(`Follow your deployment progress at: ${deploymentUrl}`);\n}\n","import { execSync } from 'child_process';\nimport { getServerPath } from './config';\nimport { build as tsupBuild } from 'tsup';\n\nexport function dev() {\n tsupBuild({\n entry: [getServerPath()],\n format: 'esm',\n outDir: '.modelence/dev',\n clean: true,\n watch: true,\n bundle: true,\n minify: false,\n sourcemap: true,\n treeshake: false,\n skipNodeModulesBundle: true,\n outExtension: ({ format }) => ({\n js: '.mjs'\n }),\n onSuccess: async () => {\n // Restart the server on successful builds\n try {\n execSync('node .modelence/dev/app.mjs', {\n stdio: 'inherit',\n env: {\n ...process.env,\n NODE_ENV: 'development' \n }\n });\n } catch (error) {\n // Server crashed, waiting for next rebuild\n console.error('Server crashed:', error);\n }\n }\n });\n}\n","#!/usr/bin/env node\n\nimport { Command } from 'commander';\nimport { setup } from './setup';\nimport { build } from './build';\nimport { deploy } from './deploy';\nimport { dev } from './dev';\nimport { loadEnv } from './config';\n\nconst program = new Command()\n .name('modelence')\n .description('Modelence CLI tool')\n .version('0.2.1');\n\nprogram\n .command('setup')\n .description('Setup Modelence environment variables')\n .requiredOption('-t, --token <token>', 'Modelence setup token')\n .option('-h, --host <host>', 'Modelence host', 'https://cloud.modelence.com')\n .action(async (options) => {\n await setup(options);\n });\n\nprogram\n .command('build')\n .description('Build the application')\n .action(async () => {\n await build();\n });\n\nprogram\n .command('deploy')\n .description('Deploy to Modelence Cloud')\n .requiredOption('-e, --env <env>', 'Environment (deployment alias)')\n .action(async (options) => {\n await deploy(options);\n });\n\nprogram\n .command('dev')\n .description('Start development server')\n .action(async () => {\n dev();\n });\n\nloadEnv().then(() => {\n program.parse(process.argv);\n});\n"]}
@@ -0,0 +1,15 @@
1
+ import { Request, Response, NextFunction } from 'express';
2
+
3
+ type ExpressMiddleware = (req: Request, res: Response, next: NextFunction) => void | Promise<void>;
4
+ interface ModelenceConfig {
5
+ serverDir: string;
6
+ serverEntry: string;
7
+ postBuildCommand?: string;
8
+ }
9
+ interface AppServer {
10
+ init: () => Promise<void>;
11
+ handler: (req: Request, res: Response) => void;
12
+ middlewares?: () => ExpressMiddleware[];
13
+ }
14
+
15
+ export type { AppServer as A, ModelenceConfig as M };
package/dist/index.d.ts CHANGED
@@ -1,4 +1,6 @@
1
1
  export { C as ConfigSchema } from './types-RXrmChkk.js';
2
+ export { M as ModelenceConfig } from './index-5e-76duG.js';
3
+ import 'express';
2
4
 
3
5
  declare const time: {
4
6
  seconds: (x: number) => number;
@@ -0,0 +1,5 @@
1
+ export { ClientSession, ObjectId } from 'mongodb';
2
+
3
+ declare const _default: {};
4
+
5
+ export { _default as default };
package/dist/mongo.js ADDED
@@ -0,0 +1,2 @@
1
+ export{ClientSession,ObjectId}from'mongodb';var e={};export{e as default};//# sourceMappingURL=mongo.js.map
2
+ //# sourceMappingURL=mongo.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../mongo.ts"],"names":["mongo_default"],"mappings":"4CAEA,IAAOA,EAAQ","file":"mongo.js","sourcesContent":["export { ClientSession, ObjectId } from 'mongodb';\n\nexport default {};\n"]}
package/dist/server.d.ts CHANGED
@@ -1,9 +1,10 @@
1
1
  import { C as ConfigSchema, a as ConfigKey } from './types-RXrmChkk.js';
2
- import { ObjectId as ObjectId$1, WithId, IndexDescription, MongoClient, Collection, Filter, FindOptions, Document, OptionalUnlessRequiredId, InsertOneResult, InsertManyResult, UpdateFilter, UpdateResult, DeleteResult, AggregateOptions, AggregationCursor, AnyBulkWriteOperation, BulkWriteResult } from 'mongodb';
2
+ import { ObjectId as ObjectId$1, WithId, IndexDescription, MongoClient, Collection, Filter, FindOptions, Document, OptionalUnlessRequiredId, InsertOneResult, InsertManyResult, UpdateFilter, UpdateResult, ClientSession, DeleteResult, AggregateOptions, AggregationCursor, AnyBulkWriteOperation, BulkWriteResult, Db } from 'mongodb';
3
3
  export { ObjectId } from 'mongodb';
4
4
  import * as zod from 'zod';
5
5
  import { z } from 'zod';
6
6
  import { Request } from 'express';
7
+ import { A as AppServer } from './index-5e-76duG.js';
7
8
 
8
9
  type CronJobHandler = () => Promise<void>;
9
10
  type CronJobInputParams = {
@@ -87,11 +88,12 @@ declare class Store<TSchema extends ModelSchema, TMethods extends Record<string,
87
88
  /** @internal */
88
89
  readonly _doc: this['_rawDoc'] & TMethods;
89
90
  readonly Doc: this['_doc'];
90
- private readonly name;
91
+ private name;
91
92
  private readonly schema;
92
93
  private readonly methods?;
93
94
  private readonly indexes;
94
95
  private collection?;
96
+ private client?;
95
97
  /**
96
98
  * Creates a new Store instance
97
99
  *
@@ -110,10 +112,14 @@ declare class Store<TSchema extends ModelSchema, TMethods extends Record<string,
110
112
  /** @internal */
111
113
  getSchema(): TSchema;
112
114
  /** @internal */
113
- provision(client: MongoClient): void;
115
+ init(client: MongoClient): void;
116
+ /** @internal */
117
+ createIndexes(): Promise<void>;
114
118
  private wrapDocument;
115
119
  /** @internal */
116
120
  requireCollection(): Collection<this["_type"]>;
121
+ /** @internal */
122
+ requireClient(): MongoClient;
117
123
  findOne(query: Filter<this['_type']>, options?: FindOptions): Promise<this["_doc"] | null>;
118
124
  requireOne(query: Filter<this['_type']>, options?: FindOptions, errorHandler?: () => Error): Promise<this['_doc']>;
119
125
  private find;
@@ -181,7 +187,9 @@ declare class Store<TSchema extends ModelSchema, TMethods extends Record<string,
181
187
  * @param update - The MongoDB modifier to apply to the documents
182
188
  * @returns The result of the update operation
183
189
  */
184
- updateMany(selector: Filter<this['_type']>, update: UpdateFilter<this['_type']>): Promise<UpdateResult>;
190
+ updateMany(selector: Filter<this['_type']>, update: UpdateFilter<this['_type']>, options?: {
191
+ session?: ClientSession;
192
+ }): Promise<UpdateResult>;
185
193
  /**
186
194
  * Updates multiple documents, or inserts them if they don't exist
187
195
  *
@@ -219,6 +227,26 @@ declare class Store<TSchema extends ModelSchema, TMethods extends Record<string,
219
227
  * @returns The result of the bulk write operation
220
228
  */
221
229
  bulkWrite(operations: AnyBulkWriteOperation<this['_type']>[]): Promise<BulkWriteResult>;
230
+ /**
231
+ * Returns the raw MongoDB database instance for advanced operations
232
+ * @returns The MongoDB database instance
233
+ * @throws Error if the store is not provisioned
234
+ */
235
+ getDatabase(): Db;
236
+ /**
237
+ * Returns the raw MongoDB collection instance for advanced operations
238
+ * @returns The MongoDB collection instance
239
+ * @throws Error if the store is not provisioned
240
+ */
241
+ rawCollection(): Collection<this["_type"]>;
242
+ /**
243
+ * Renames an existing collection to this store's name, used for migrations
244
+ * @param oldName - The previous name of the collection
245
+ * @throws Error if the old collection doesn't exist or if this store's collection already exists
246
+ */
247
+ renameFrom(oldName: string, options?: {
248
+ session?: ClientSession;
249
+ }): Promise<void>;
222
250
  }
223
251
 
224
252
  type UserInfo = {
@@ -309,11 +337,20 @@ declare class Module {
309
337
  });
310
338
  }
311
339
 
312
- declare function startApp({ modules, roles, defaultRoles }?: {
340
+ type MigrationScript = {
341
+ version: number;
342
+ description: string;
343
+ handler: () => Promise<void>;
344
+ };
345
+
346
+ type AppOptions = {
313
347
  modules?: Module[];
348
+ server?: AppServer;
314
349
  roles?: Record<string, RoleDefinition>;
315
350
  defaultRoles?: Record<string, string>;
316
- }): Promise<void>;
351
+ migrations?: Array<MigrationScript>;
352
+ };
353
+ declare function startApp({ modules, roles, defaultRoles, server, migrations }: AppOptions): Promise<void>;
317
354
 
318
355
  declare function createQuery<T extends any[]>(name: string, methodDef: MethodDefinition<T>): void;
319
356
 
package/dist/server.js CHANGED
@@ -1,4 +1,4 @@
1
- import {a as a$2}from'./chunk-O2JTQHZP.js';import {a as a$3,b as b$1}from'./chunk-D5LNOX64.js';import {a as a$1}from'./chunk-GDI7FXAT.js';import tt from'dotenv';import Pt from'http';import V from'express';import w,{z as z$1}from'zod';import ct from'elastic-apm-node';import q from'winston';import {ElasticsearchTransport}from'winston-elasticsearch';import M from'process';import {ObjectId,MongoClient,ServerApiVersion}from'mongodb';export{ObjectId}from'mongodb';import {randomBytes}from'crypto';import xt from'bcrypt';import {createServer,defineConfig}from'vite';import Rt from'@vitejs/plugin-react';import H from'path';import It from'fs';import kt from'os';function rt(){return typeof window!="object"}function b(){if(!rt())throw new Error("This function can only be called on the server")}var L={},z={},oe=false;function C(t){return z[t]?.value}function ne(){if(!oe)throw new Error("Config is not initialized: an attempt was made to access configs before they were loaded");return Object.fromEntries(Object.entries(z).filter(([t])=>L[t]?.isPublic))}function I(t){t.forEach(({key:e,type:o,value:n})=>{!e.toLowerCase().startsWith("_system.")&&!L[e]||(z[e]={key:e,type:o,value:n});}),oe=true;}function re(t){Object.entries(t).forEach(([e,o])=>{let{type:n,isPublic:r}=o;if(e.toLowerCase().startsWith("_system."))throw new Error(`Config key cannot start with a reserved prefix: '_system.' (${e})`);if(n==="secret"&&r)throw new Error(`Config ${e} with type "secret" cannot be public`)}),L=t;}var E=null;function ie(t){E=Object.assign({},E,t);}function ae(){return E?.deploymentId}function ce(){return E?.appAlias}function le(){return E?.deploymentAlias}function ue(){return E?.telemetry?.serviceName}function x(){return !!E?.telemetry?.isEnabled}function _(t,e){x()&&J().info(t,e);}function de(t,e){x()&&J().error(t,e);}var p={stdout:[{log:"",timestamp:null}],stderr:[{log:"",timestamp:null}]},it=1;function pe({elasticCloudId:t,elasticApiKey:e}){let o=M.stdout.write,n=M.stderr.write;M.stdout.write=function(r,...s){return me(r.toString(),p.stdout),o.call(M.stdout,r,...s)},M.stderr.write=function(r,...s){return me(r.toString(),p.stderr),n.call(M.stderr,r,...s)},fe();}function me(t,e){if(t.length===0)return;let o=new Date;for(let n=0;n<t.length;n++){let r=e[e.length-1];r.timestamp||(r.timestamp=o,r.sequenceId=it++),t[n]===`
2
- `?e.push({log:"",timestamp:null}):r.log+=t[n];}}async function at(){let t=p.stdout.slice(0,-1);p.stdout=[p.stdout[p.stdout.length-1]];let e=p.stderr.slice(0,-1);p.stderr=[p.stderr[p.stderr.length-1]],t.forEach(({log:o,timestamp:n,sequenceId:r})=>{_(o,{timestamp:n,source:"console",sequenceId:r});}),e.forEach(({log:o,timestamp:n,sequenceId:r})=>{de(o,{timestamp:n,source:"console",sequenceId:r});});}function fe(){setTimeout(()=>{at(),fe();},1e3);}var he=false,S=null,B=null,ge=async()=>{if(he)throw new Error('Metrics are already initialized, duplicate "initMetrics" call received');he=true,x()&&await ut();};async function ut(){let t=C("_system.elastic.apmEndpoint"),e=C("_system.elastic.cloudId"),o=C("_system.elastic.apiKey"),n=ce()??"unknown",r=le()??"unknown",s=ae()??"unknown",i=ue();S=ct.start({serviceName:i,apiKey:o,serverUrl:t,transactionSampleRate:1,centralConfig:false,globalLabels:{modelenceEnv:"dev",appEnv:"dev",deploymentId:s,appAlias:n,deploymentAlias:r}});let c=new ElasticsearchTransport({apm:S,level:"debug",clientOpts:{cloud:{id:e},auth:{apiKey:o},requestTimeout:1e4,tls:{rejectUnauthorized:false}},bufferLimit:1e3,silent:false});c.on("error",m=>{console.error("Elasticsearch Transport Error:",m);}),B=q.createLogger({level:"debug",defaultMeta:{serviceName:i},format:q.format.combine(q.format.json()),transports:[c]}),pe({elasticCloudId:e,elasticApiKey:o});}function j(t,e,o){if(!x())return {end:()=>{}};if(!S)throw new Error("startTransaction: Elastic APM is not initialized");let n=S.startTransaction(e,t);return o&&S.setCustomContext(o),n}function ye(t){if(!x()){console.error(t);return}if(!S)throw new Error("captureError: Elastic APM is not initialized");S.captureError(t);}function J(){if(!B)throw new Error("Logger is not initialized");return B}var we=new Map,D={authenticated:null,unauthenticated:null};function be(t,e){D.authenticated=e.authenticated,D.unauthenticated=e.unauthenticated;for(let[o,n]of Object.entries(t))we.set(o,n);}function P(){return D.unauthenticated?[D.unauthenticated]:[]}function Ce(){return D.authenticated?[D.authenticated]:[]}function Ee(t,e){let o=e.find(n=>!dt(t,n));if(o)throw new Error(`Access denied - missing permission: '${o}'`)}function dt(t,e){for(let o of t){let n=we.get(o);if(n&&n.permissions.includes(e))return true}return false}var F={};function K(t,e){return b(),Me(t),$("query",t,e)}function xe(t,e){return b(),Me(t),$("mutation",t,e)}function Se(t,e){return b(),De(t),$("query",t,e)}function Te(t,e){return b(),De(t),$("mutation",t,e)}function Me(t){if(t.toLowerCase().startsWith("_system."))throw new Error(`Method name cannot start with a reserved prefix: '_system.' (${t})`)}function De(t){if(!t.toLowerCase().startsWith("_system."))throw new Error(`System method name must start with a prefix: '_system.' (${t})`)}function $(t,e,o){if(b(),F[e])throw new Error(`Method with name '${e}' is already defined.`);let n=typeof o=="function"?o:o.handler,r=typeof o=="function"?[]:o.permissions??[];F[e]={type:t,name:e,handler:n,permissions:r};}async function Re(t,e,o){b();let n=F[t];if(!n)throw new Error(`Method with name '${t}' is not defined.`);let{type:r,handler:s}=n,i=j("method",`method:${t}`,{type:r,args:e}),c;try{Ee(o.roles,n.permissions),c=await s(e,o);}catch(m){throw i.end("error"),m}return i.end(),c}var f=class{constructor(e,{stores:o=[],queries:n={},mutations:r={},routes:s=[],cronJobs:i={},configSchema:c={}}){this.name=e,this.stores=o,this.queries=n,this.mutations=r,this.routes=s,this.cronJobs=i,this.configSchema=c;}};var h=class{constructor(e,o){this.name=e,this.schema=o.schema,this.methods=o.methods,this.indexes=o.indexes;}getName(){return this.name}getSchema(){return this.schema}provision(e){this.collection||(this.collection=e.db().collection(this.name),this.indexes.length>0&&this.collection.createIndexes(this.indexes));}wrapDocument(e){return this.methods?Object.create(null,Object.getOwnPropertyDescriptors({...e,...this.methods})):e}requireCollection(){if(!this.collection)throw new Error(`Collection ${this.name} is not provisioned`);return this.collection}async findOne(e,o){let n=await this.requireCollection().findOne(e,o);return n?this.wrapDocument(n):null}async requireOne(e,o,n){let r=await this.findOne(e,o);if(!r)throw n?n():new Error(`Record not found in ${this.name}`);return r}find(e,o){let n=this.requireCollection().find(e);return o?.sort&&n.sort(o.sort),o?.limit&&n.limit(o.limit),o?.skip&&n.skip(o.skip),n}async findById(e){let o=typeof e=="string"?{_id:new ObjectId(e)}:{_id:e};return await this.findOne(o)}async requireById(e,o){let n=await this.findById(e);if(!n)throw o?o():new Error(`Record with id ${e} not found in ${this.name}`);return n}async fetch(e,o){return (await this.find(e,o).toArray()).map(this.wrapDocument.bind(this))}async insertOne(e){return await this.requireCollection().insertOne(e)}async insertMany(e){return await this.requireCollection().insertMany(e)}async updateOne(e,o){let n=typeof e=="string"?{_id:new ObjectId(e)}:e;return await this.requireCollection().updateOne(n,o)}async upsertOne(e,o){return await this.requireCollection().updateOne(e,o,{upsert:true})}async updateMany(e,o){return await this.requireCollection().updateMany(e,o)}async upsertMany(e,o){return await this.requireCollection().updateMany(e,o,{upsert:true})}async deleteOne(e){return await this.requireCollection().deleteOne(e)}async deleteMany(e){return await this.requireCollection().deleteMany(e)}aggregate(e,o){return this.requireCollection().aggregate(e,o)}bulkWrite(e){return this.requireCollection().bulkWrite(e)}};var mt=z$1.string.bind(z$1),pt=z$1.number.bind(z$1),ft=z$1.date.bind(z$1),ht=z$1.boolean.bind(z$1),gt=z$1.array.bind(z$1),yt=z$1.object.bind(z$1),wt=z$1.enum.bind(z$1),a={string:mt,number:pt,date:ft,boolean:ht,array:gt,object:yt,enum:wt,objectId(){return z$1.instanceof(ObjectId)},userId(){return z$1.instanceof(ObjectId)},ref(t){return z$1.instanceof(ObjectId)},union:z$1.union.bind(z$1),infer(t){return {}}};var R=new h("_modelenceSessions",{schema:{authToken:a.string(),createdAt:a.date(),expiresAt:a.date(),userId:a.userId().nullable()},indexes:[{key:{authToken:1},unique:true},{key:{expiresAt:1}}]});async function Oe(t){let e=t?await R.findOne({authToken:t}):null;return e?{authToken:String(e.authToken),expiresAt:new Date(e.expiresAt),userId:e.userId??null}:await Ct()}async function ve(t,e){await R.updateOne({authToken:t},{$set:{userId:e}});}async function Ae(t){await R.updateOne({authToken:t},{$set:{userId:null}});}async function Ct(){let t=randomBytes(32).toString("base64url"),e=Date.now(),o=new Date(e+a$1.days(7));return await R.insertOne({authToken:t,createdAt:new Date(e),expiresAt:o,userId:null}),{authToken:t,expiresAt:o,userId:null}}async function Et(t){let e=Date.now(),o=new Date(e+a$1.days(7));await R.updateOne({authToken:t.authToken},{$set:{lastActiveDate:new Date(e),expiresAt:o}});}var _e=new f("_system.session",{stores:[R],mutations:{init:async function(t,{session:e,user:o}){return {session:e,user:o,configs:ne()}},heartbeat:async function(t,{session:e}){e&&await Et(e);}}});async function Pe(t,{user:e}){let o=z$1.string().email().parse(t.email),n=z$1.string().min(8,{message:"Password must contain at least 8 characters"}).parse(t.password),r=await g.findOne({"emails.address":o},{collation:{locale:"en",strength:2}});if(r){let c=r.emails?.find(m=>m.address===o);throw new Error(`User with email already exists: ${c?.address}`)}let s=await xt.hash(n,10);return (await g.insertOne({handle:o,emails:[{address:o,verified:false}],createdAt:new Date,authMethods:{password:{hash:s}}})).insertedId}async function ke(t,{user:e,session:o}){if(!o)throw new Error("Session is not initialized");let n=z$1.string().email().parse(t.email),r=z$1.string().parse(t.password),s=await g.findOne({"emails.address":n},{collation:{locale:"en",strength:2}}),i=s?.authMethods?.password?.hash;if(!s||!i||!await xt.compare(r,i))throw Ue();return await ve(o.authToken,s._id),{user:{id:s._id,handle:s.handle}}}async function Ne(t,{user:e,session:o}){if(!o)throw new Error("Session is not initialized");await Ae(o.authToken);}function Ue(){return new Error("Incorrect email/password combination")}var g=new h("_modelenceUsers",{schema:{handle:a.string(),emails:a.array(a.object({address:a.string(),verified:a.boolean()})).optional(),createdAt:a.date(),authMethods:a.object({password:a.object({hash:a.string()}).optional(),google:a.object({id:a.string()}).optional()})},indexes:[{key:{handle:1},unique:true,collation:{locale:"en",strength:2}}]});var Le=new f("_system.user",{stores:[g],mutations:{signupWithPassword:Pe,loginWithPassword:ke,logout:Ne}});async function ze(t){let e=await Oe(t),o=e.userId?await g.findOne({_id:new ObjectId(e.userId)}):null,n=o?{id:o._id.toString(),handle:o.handle}:null,r=n?Ce():P();return {user:n,session:e,roles:r}}async function Je(t,e){if(e){console.log("Starting Vite dev server...");let o=await createServer({...defineConfig(await vt()),server:{middlewareMode:true},root:"./src/client"});t.use(o.middlewares),t.use("*",async(n,r)=>{try{r.sendFile("index.html",{root:"./src/client"});}catch(s){console.error("Error serving index.html:",s),r.status(500).send("Internal Server Error");}});}else t.use(V.static(".modelence/build/client")),t.get("*",(o,n)=>{n.sendFile("index.html",{root:".modelence/build/client"});});}async function vt(){let t=process.cwd(),e=[".eslintrc.js",".eslintrc.json",".eslintrc","eslint.config.js",".eslintrc.yml",".eslintrc.yaml"].find(n=>It.existsSync(H.join(t,n))),o=[Rt(),At()];if(e){let n=(await import('vite-plugin-eslint')).default;o.push(n({failOnError:false,include:["src/**/*.js","src/**/*.jsx","src/**/*.ts","src/**/*.tsx"],cwd:t,overrideConfigFile:H.resolve(t,e)}));}return {plugins:o,root:t,build:{outDir:".modelence/build/client",emptyOutDir:true},server:{proxy:{"/api":"http://localhost:4000"},headers:{"Cache-Control":"no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0",Pragma:"no-cache",Expires:"0"},hmr:{port:0}},resolve:{alias:{"@":H.resolve(t,"src")}}}}function At(){return {name:"modelence-asset-handler",async transform(t,e){if(/\.(png|jpe?g|gif|svg|mpwebm|ogg|mp3|wav|flac|aac)$/.test(e))return process.env.NODE_ENV==="development",t},async generateBundle(t,e){}}}function qe(t){return async(e,o)=>{try{let n=await t({query:e.query,body:e.body,params:e.params,headers:e.headers,cookies:e.cookies,req:e});o.status(n.status||200),n.headers&&Object.entries(n.headers).forEach(([r,s])=>{o.setHeader(r,s);}),o.send(n.data);}catch(n){n instanceof a$3||n instanceof b$1?o.status(n.status).send(n.message):(console.error(`Error in route handler: ${e.path}`),console.error(n),o.status(500).send(String(n)));}}}var y=null;async function Be(){if(y)return y;let t=O();if(!t)throw new Error("MongoDB URI is not set");y=new MongoClient(t,{serverApi:{version:ServerApiVersion.v1,strict:true,deprecationErrors:true},maxPoolSize:20});try{return await y.connect(),await y.db("admin").command({ping:1}),console.log("Pinged your deployment. You successfully connected to MongoDB!"),y}catch(e){throw console.error(e),y=null,e}}function O(){let t=C("_system.mongodbUri");return t?String(t):undefined}function Fe(){return y}function $t(t,e){for(let o of e)for(let n of o.routes){let{path:r,handlers:s}=n;Object.entries(s).forEach(([i,c])=>{t[i](r,qe(c));});}}async function Ke({combinedModules:t}){let e=V(),o=process.env.NODE_ENV!=="production";e.use(V.json()),e.use(V.urlencoded({extended:true})),e.post("/api/_internal/method/:methodName(*)",async(s,i)=>{let{methodName:c}=s.params,m=await Ut(s);try{let u=await Re(c,s.body.args,m);i.json({data:u,typeMap:a$2(u)});}catch(u){if(console.error(`Error in method ${c}:`,u),u instanceof Error&&u?.constructor?.name==="ZodError"&&"errors"in u){let A=u.flatten(),U=Object.entries(A.fieldErrors).map(([ot,nt])=>`${ot}: ${(nt??[]).join(", ")}`).join("; "),k=A.formErrors.join("; "),N=[U,k].filter(Boolean).join("; ");i.status(400).send(N);}else i.status(500).send(u instanceof Error?u.message:String(u));}}),$t(e,t),await Je(e,o),process.on("unhandledRejection",(s,i)=>{console.error("Unhandled Promise Rejection:"),console.error(s instanceof Error?s.stack:s),console.error("Promise:",i);}),process.on("uncaughtException",s=>{console.error("Uncaught Exception:"),console.error(s.stack),console.trace("Full application stack:");});let n=Pt.createServer(e),r=process.env.PORT||3e3;n.listen(r,()=>{_("Application started",{source:"app"}),console.log(`Application started on port ${r}`);});}async function Ut(t){let e=w.string().nullish().transform(s=>s??null).parse(t.body.authToken),o=w.object({screenWidth:w.number(),screenHeight:w.number(),windowWidth:w.number(),windowHeight:w.number(),pixelRatio:w.number(),orientation:w.string().nullable()}).parse(t.body.clientInfo),n={ip:t.ip||t.socket.remoteAddress,userAgent:t.get("user-agent"),acceptLanguage:t.get("accept-language"),referrer:t.get("referrer")};if(!!O()){let{session:s,user:i,roles:c}=await ze(e);return {clientInfo:o,connectionInfo:n,session:s,user:i,roles:c}}return {clientInfo:o,connectionInfo:n,session:null,user:null,roles:P()}}async function We({configSchema:t,cronJobsMetadata:e,stores:o}){let n=process.env.MODELENCE_CONTAINER_ID;if(!n)throw new Error("Unable to connect to Modelence Cloud: MODELENCE_CONTAINER_ID is not set");try{let r=Object.values(o).map(i=>({name:i.getName(),schema:i.getSchema(),collections:[i.getName()]})),s=await Z("/api/connect","POST",{hostname:kt.hostname(),containerId:n,dataModels:r,configSchema:t,cronJobsMetadata:e});return console.log("Successfully connected to Modelence Cloud"),s}catch(r){throw console.error("Unable to connect to Modelence Cloud:",r),r}}async function He(){return await Z("/api/configs","GET")}async function Ve(){return await Z("/api/sync","POST",{containerId:process.env.MODELENCE_CONTAINER_ID})}async function Z(t,e,o){let{MODELENCE_SERVICE_ENDPOINT:n,MODELENCE_SERVICE_TOKEN:r}=process.env;if(!n)throw new Error("Unable to connect to Modelence Cloud: MODELENCE_SERVICE_ENDPOINT is not set");let s=await fetch(`${n}${t}`,{method:e,headers:{Authorization:`Bearer ${r}`,...o?{"Content-Type":"application/json"}:{}},body:o?JSON.stringify(o):undefined});if(!s.ok){let i=await s.text();try{let c=JSON.parse(i);throw new Error(`Unable to connect to Modelence Cloud: HTTP status: ${s.status}, ${c?.error}`)}catch{throw new Error(`Unable to connect to Modelence Cloud: HTTP status: ${s.status}, ${i}`)}}return await s.json()}var Q=false,Nt=a$1.seconds(10);function Ze(){setInterval(async()=>{if(!Q){Q=true;try{await Ve();}catch(t){console.error("Error syncing status",t);}try{await Lt();}catch(t){console.error("Error syncing config",t);}Q=false;}},Nt);}async function Lt(){let{configs:t}=await He();I(t);}var zt=a$1.minutes(1),Jt=a$1.seconds(10),T={},G,v=new h("_modelenceCronJobs",{schema:{alias:a.string(),lastStartDate:a.date().optional(),lock:a.object({containerId:a.string(),acquireDate:a.date()}).optional()},indexes:[{key:{alias:1},unique:true,background:true}]});function Ge(t,{description:e="",interval:o,timeout:n=zt,handler:r}){if(T[t])throw new Error(`Duplicate cron job declaration: '${t}' already exists`);if(G)throw new Error(`Unable to add a cron job - cron jobs have already been initialized: [${t}]`);if(o<a$1.seconds(5))throw new Error(`Cron job interval should not be less than 5 second [${t}]`);if(n>a$1.days(1))throw new Error(`Cron job timeout should not be longer than 1 day [${t}]`);T[t]={alias:t,params:{description:e,interval:o,timeout:n},handler:r,state:{isRunning:false}};}async function Ye(){if(G)throw new Error("Cron jobs already started");let t=Object.keys(T);if(t.length>0){let e={alias:{$in:t}},o=await v.findOne({...e,"lock.containerId":{$exists:true}});await v.upsertMany(e,{$set:{lock:{containerId:process.env.MODELENCE_CONTAINER_ID||"unknown",acquireDate:new Date}}}),o&&await qt(Jt);let n=await v.fetch(e),r=Date.now();n.forEach(s=>{let i=T[s.alias];i&&(i.state.scheduledRunTs=s.lastStartDate?s.lastStartDate.getTime()+i.params.interval:r);}),Object.values(T).forEach(s=>{s.state.scheduledRunTs||(s.state.scheduledRunTs=r);}),G=setInterval(Bt,a$1.seconds(1));}}function qt(t){return new Promise(e=>setTimeout(e,t))}async function Bt(){let t=Date.now();Object.values(T).forEach(async e=>{let{params:o,state:n}=e;if(n.isRunning){n.startTs&&n.startTs+o.timeout<t&&(n.isRunning=false);return}n.scheduledRunTs&&n.scheduledRunTs<=t&&await Ft(e);});}async function Ft(t){let{alias:e,params:o,handler:n,state:r}=t;r.isRunning=true,r.startTs=Date.now();let s=j("cron",`cron:${e}`);n().then(()=>{Qe(r,o),s.end("success");}).catch(i=>{Qe(r,o),ye(i),s.end("error"),console.error(`Error in cron job '${e}':`,i);}),await v.updateOne({alias:e},{$set:{lastStartDate:new Date(r.startTs)}});}function Qe(t,e){t.scheduledRunTs=t.startTs?t.startTs+e.interval:Date.now(),t.startTs=undefined,t.isRunning=false;}function Xe(){return Object.values(T).map(({alias:t,params:e})=>({alias:t,description:e.description,interval:e.interval,timeout:e.timeout}))}var et=new f("_system.cron",{stores:[v]});async function Kt({modules:t=[],roles:e={},defaultRoles:o={}}={}){tt.config(),tt.config({path:".modelence.env"});let n=!!process.env.MODELENCE_SERVICE_ENDPOINT,r=process.env.MODELENCE_CRON_ENABLED==="true",s=[Le,_e,et],i=[...s,...t];Ht(s),Wt(t),be(e,o);let c=Zt(i);re(c??{});let m=Vt(i);if(r&&Qt(i),n){let{configs:Y,deploymentId:A,appAlias:U,deploymentAlias:k,telemetry:N}=await We({configSchema:c,cronJobsMetadata:r?Xe():undefined,stores:m});I(Y),ie({deploymentId:A,appAlias:U,deploymentAlias:k,telemetry:N});}else I(Yt());O()&&(await Be(),Gt(m)),n&&(await ge(),Ze()),r&&Ye().catch(console.error),await Ke({combinedModules:i});}function Wt(t){for(let e of t){for(let[o,n]of Object.entries(e.queries))K(`${e.name}.${o}`,n);for(let[o,n]of Object.entries(e.mutations))xe(`${e.name}.${o}`,n);}}function Ht(t){for(let e of t){for(let[o,n]of Object.entries(e.queries))Se(`${e.name}.${o}`,n);for(let[o,n]of Object.entries(e.mutations))Te(`${e.name}.${o}`,n);}}function Vt(t){return t.flatMap(e=>e.stores)}function Zt(t){let e={};for(let o of t)for(let[n,r]of Object.entries(o.configSchema)){let s=`${o.name}.${n}`;if(s in e)throw new Error(`Duplicate config schema key: ${s} (${o.name})`);e[s]=r;}return e}function Qt(t){for(let e of t)for(let[o,n]of Object.entries(e.cronJobs))Ge(`${e.name}.${o}`,n);}async function Gt(t){let e=Fe();if(!e)throw new Error("Failed to provision stores: MongoDB client not initialized");for(let o of t)o.provision(e);}function Yt(){let t=[];return process.env.MONGODB_URI&&t.push({key:"_system.mongodbUri",type:"string",value:process.env.MONGODB_URI}),t}
3
- export{f as Module,h as Store,K as createQuery,g as dbUsers,C as getConfig,a as schema,Kt as startApp};//# sourceMappingURL=server.js.map
1
+ import {a as a$2}from'./chunk-O2JTQHZP.js';import {a as a$3,b as b$1}from'./chunk-D5LNOX64.js';import {a as a$1}from'./chunk-GDI7FXAT.js';import at from'dotenv';import Ot from'http';import G from'express';import w,{z}from'zod';import mt from'elastic-apm-node';import W from'winston';import {ElasticsearchTransport}from'winston-elasticsearch';import T from'process';import {ObjectId,MongoClient}from'mongodb';export{ObjectId}from'mongodb';import {randomBytes}from'crypto';import Dt from'bcrypt';import jt from'os';import {createServer,defineConfig}from'vite';import Bt from'@vitejs/plugin-react';import te from'path';import Ft from'fs';function ct(){return typeof window!="object"}function b(){if(!ct())throw new Error("This function can only be called on the server")}var B={},F={},se=false;function C(t){return F[t]?.value}function ae(){if(!se)throw new Error("Config is not initialized: an attempt was made to access configs before they were loaded");return Object.fromEntries(Object.entries(F).filter(([t])=>B[t]?.isPublic))}function O(t){t.forEach(({key:e,type:o,value:n})=>{!e.toLowerCase().startsWith("_system.")&&!B[e]||(F[e]={key:e,type:o,value:n});}),se=true;}function ce(t){Object.entries(t).forEach(([e,o])=>{let{type:n,isPublic:i}=o;if(e.toLowerCase().startsWith("_system."))throw new Error(`Config key cannot start with a reserved prefix: '_system.' (${e})`);if(n==="secret"&&i)throw new Error(`Config ${e} with type "secret" cannot be public`)}),B=t;}var x=null;function ue(t){x=Object.assign({},x,t);}function de(){return x?.deploymentId}function me(){return x?.appAlias}function pe(){return x?.deploymentAlias}function fe(){return x?.telemetry?.serviceName}function S(){return !!x?.telemetry?.isEnabled}function P(t,e){S()&&K().info(t,e);}function he(t,e){S()&&K().error(t,e);}var h={stdout:[{log:"",timestamp:null}],stderr:[{log:"",timestamp:null}]},ut=1;function ye({elasticCloudId:t,elasticApiKey:e}){let o=T.stdout.write,n=T.stderr.write;T.stdout.write=function(i,...r){return ge(i.toString(),h.stdout),o.call(T.stdout,i,...r)},T.stderr.write=function(i,...r){return ge(i.toString(),h.stderr),n.call(T.stderr,i,...r)},we();}function ge(t,e){if(t.length===0)return;let o=new Date;for(let n=0;n<t.length;n++){let i=e[e.length-1];i.timestamp||(i.timestamp=o,i.sequenceId=ut++),t[n]===`
2
+ `?e.push({log:"",timestamp:null}):i.log+=t[n];}}async function dt(){let t=h.stdout.slice(0,-1);h.stdout=[h.stdout[h.stdout.length-1]];let e=h.stderr.slice(0,-1);h.stderr=[h.stderr[h.stderr.length-1]],t.forEach(({log:o,timestamp:n,sequenceId:i})=>{P(o,{timestamp:n,source:"console",sequenceId:i});}),e.forEach(({log:o,timestamp:n,sequenceId:i})=>{he(o,{timestamp:n,source:"console",sequenceId:i});});}function we(){setTimeout(()=>{dt(),we();},1e3);}var be=false,E=null,H=null,Ce=async()=>{if(be)throw new Error('Metrics are already initialized, duplicate "initMetrics" call received');be=true,S()&&await ft();};async function ft(){let t=C("_system.elastic.apmEndpoint"),e=C("_system.elastic.cloudId"),o=C("_system.elastic.apiKey"),n=me()??"unknown",i=pe()??"unknown",r=de()??"unknown",s=fe();E=mt.start({serviceName:s,apiKey:o,serverUrl:t,transactionSampleRate:1,centralConfig:false,globalLabels:{modelenceEnv:"dev",appEnv:"dev",deploymentId:r,appAlias:n,deploymentAlias:i}});let c=new ElasticsearchTransport({apm:E,level:"debug",clientOpts:{cloud:{id:e},auth:{apiKey:o},requestTimeout:1e4,tls:{rejectUnauthorized:false}},bufferLimit:1e3,silent:false});c.on("error",d=>{console.error("Elasticsearch Transport Error:",d);}),H=W.createLogger({level:"debug",defaultMeta:{serviceName:s},format:W.format.combine(W.format.json()),transports:[c]}),ye({elasticCloudId:e,elasticApiKey:o});}function $(t,e,o){if(!S())return {end:()=>{}};if(!E)throw new Error("startTransaction: Elastic APM is not initialized");let n=E.startTransaction(e,t);return o&&E.setCustomContext(o),n}function xe(t){if(!S()){console.error(t);return}if(!E)throw new Error("captureError: Elastic APM is not initialized");E.captureError(t);}function K(){if(!H)throw new Error("Logger is not initialized");return H}var Se=new Map,D={authenticated:null,unauthenticated:null};function Ee(t,e){D.authenticated=e.authenticated,D.unauthenticated=e.unauthenticated;for(let[o,n]of Object.entries(t))Se.set(o,n);}function k(){return D.unauthenticated?[D.unauthenticated]:[]}function Me(){return D.authenticated?[D.authenticated]:[]}function Te(t,e){let o=e.find(n=>!ht(t,n));if(o)throw new Error(`Access denied - missing permission: '${o}'`)}function ht(t,e){for(let o of t){let n=Se.get(o);if(n&&n.permissions.includes(e))return true}return false}var V={};function Z(t,e){return b(),Ie(t),U("query",t,e)}function De(t,e){return b(),Ie(t),U("mutation",t,e)}function Re(t,e){return b(),Oe(t),U("query",t,e)}function ve(t,e){return b(),Oe(t),U("mutation",t,e)}function Ie(t){if(t.toLowerCase().startsWith("_system."))throw new Error(`Method name cannot start with a reserved prefix: '_system.' (${t})`)}function Oe(t){if(!t.toLowerCase().startsWith("_system."))throw new Error(`System method name must start with a prefix: '_system.' (${t})`)}function U(t,e,o){if(b(),V[e])throw new Error(`Method with name '${e}' is already defined.`);let n=typeof o=="function"?o:o.handler,i=typeof o=="function"?[]:o.permissions??[];V[e]={type:t,name:e,handler:n,permissions:i};}async function Ae(t,e,o){b();let n=V[t];if(!n)throw new Error(`Method with name '${t}' is not defined.`);let{type:i,handler:r}=n,s=$("method",`method:${t}`,{type:i,args:e}),c;try{Te(o.roles,n.permissions),c=await r(e,o);}catch(d){throw s.end("error"),d}return s.end(),c}var p=class{constructor(e,{stores:o=[],queries:n={},mutations:i={},routes:r=[],cronJobs:s={},configSchema:c={}}){this.name=e,this.stores=o,this.queries=n,this.mutations=i,this.routes=r,this.cronJobs=s,this.configSchema=c;}};var f=class{constructor(e,o){this.name=e,this.schema=o.schema,this.methods=o.methods,this.indexes=o.indexes;}getName(){return this.name}getSchema(){return this.schema}init(e){if(this.collection)throw new Error(`Collection ${this.name} is already initialized`);this.client=e,this.collection=this.client.db().collection(this.name);}async createIndexes(){this.indexes.length>0&&await this.requireCollection().createIndexes(this.indexes);}wrapDocument(e){return this.methods?Object.create(null,Object.getOwnPropertyDescriptors({...e,...this.methods})):e}requireCollection(){if(!this.collection)throw new Error(`Collection ${this.name} is not provisioned`);return this.collection}requireClient(){if(!this.client)throw new Error("Database is not connected");return this.client}async findOne(e,o){let n=await this.requireCollection().findOne(e,o);return n?this.wrapDocument(n):null}async requireOne(e,o,n){let i=await this.findOne(e,o);if(!i)throw n?n():new Error(`Record not found in ${this.name}`);return i}find(e,o){let n=this.requireCollection().find(e);return o?.sort&&n.sort(o.sort),o?.limit&&n.limit(o.limit),o?.skip&&n.skip(o.skip),n}async findById(e){let o=typeof e=="string"?{_id:new ObjectId(e)}:{_id:e};return await this.findOne(o)}async requireById(e,o){let n=await this.findById(e);if(!n)throw o?o():new Error(`Record with id ${e} not found in ${this.name}`);return n}async fetch(e,o){return (await this.find(e,o).toArray()).map(this.wrapDocument.bind(this))}async insertOne(e){return await this.requireCollection().insertOne(e)}async insertMany(e){return await this.requireCollection().insertMany(e)}async updateOne(e,o){let n=typeof e=="string"?{_id:new ObjectId(e)}:e;return await this.requireCollection().updateOne(n,o)}async upsertOne(e,o){return await this.requireCollection().updateOne(e,o,{upsert:true})}async updateMany(e,o,n){return await this.requireCollection().updateMany(e,o,n)}async upsertMany(e,o){return await this.requireCollection().updateMany(e,o,{upsert:true})}async deleteOne(e){return await this.requireCollection().deleteOne(e)}async deleteMany(e){return await this.requireCollection().deleteMany(e)}aggregate(e,o){return this.requireCollection().aggregate(e,o)}bulkWrite(e){return this.requireCollection().bulkWrite(e)}getDatabase(){return this.requireClient().db()}rawCollection(){return this.requireCollection()}async renameFrom(e,o){let n=this.getDatabase();if(!this.collection||!n)throw new Error(`Store ${this.name} is not provisioned`);if((await n.listCollections({name:e}).toArray()).length===0)throw new Error(`Collection ${e} not found`);if((await n.listCollections({name:this.name}).toArray()).length>0)throw new Error(`Collection ${this.name} already exists`);await n.collection(e).rename(this.name,o);}};var gt=z.string.bind(z),yt=z.number.bind(z),wt=z.date.bind(z),bt=z.boolean.bind(z),Ct=z.array.bind(z),xt=z.object.bind(z),St=z.enum.bind(z),a={string:gt,number:yt,date:wt,boolean:bt,array:Ct,object:xt,enum:St,objectId(){return z.instanceof(ObjectId)},userId(){return z.instanceof(ObjectId)},ref(t){return z.instanceof(ObjectId)},union:z.union.bind(z),infer(t){return {}}};var R=new f("_modelenceSessions",{schema:{authToken:a.string(),createdAt:a.date(),expiresAt:a.date(),userId:a.userId().nullable()},indexes:[{key:{authToken:1},unique:true},{key:{expiresAt:1}}]});async function je(t){let e=t?await R.findOne({authToken:t}):null;return e?{authToken:String(e.authToken),expiresAt:new Date(e.expiresAt),userId:e.userId??null}:await Mt()}async function Pe(t,e){await R.updateOne({authToken:t},{$set:{userId:e}});}async function $e(t){await R.updateOne({authToken:t},{$set:{userId:null}});}async function Mt(){let t=randomBytes(32).toString("base64url"),e=Date.now(),o=new Date(e+a$1.days(7));return await R.insertOne({authToken:t,createdAt:new Date(e),expiresAt:o,userId:null}),{authToken:t,expiresAt:o,userId:null}}async function Tt(t){let e=Date.now(),o=new Date(e+a$1.days(7));await R.updateOne({authToken:t.authToken},{$set:{lastActiveDate:new Date(e),expiresAt:o}});}var ke=new p("_system.session",{stores:[R],mutations:{init:async function(t,{session:e,user:o}){return {session:e,user:o,configs:ae()}},heartbeat:async function(t,{session:e}){e&&await Tt(e);}}});async function Ne(t,{user:e}){let o=z.string().email().parse(t.email),n=z.string().min(8,{message:"Password must contain at least 8 characters"}).parse(t.password),i=await g.findOne({"emails.address":o},{collation:{locale:"en",strength:2}});if(i){let c=i.emails?.find(d=>d.address===o);throw new Error(`User with email already exists: ${c?.address}`)}let r=await Dt.hash(n,10);return (await g.insertOne({handle:o,emails:[{address:o,verified:false}],createdAt:new Date,authMethods:{password:{hash:r}}})).insertedId}async function qe(t,{user:e,session:o}){if(!o)throw new Error("Session is not initialized");let n=z.string().email().parse(t.email),i=z.string().parse(t.password),r=await g.findOne({"emails.address":n},{collation:{locale:"en",strength:2}}),s=r?.authMethods?.password?.hash;if(!r||!s||!await Dt.compare(i,s))throw ze();return await Pe(o.authToken,r._id),{user:{id:r._id,handle:r.handle}}}async function Je(t,{user:e,session:o}){if(!o)throw new Error("Session is not initialized");await $e(o.authToken);}function ze(){return new Error("Incorrect email/password combination")}var g=new f("_modelenceUsers",{schema:{handle:a.string(),emails:a.array(a.object({address:a.string(),verified:a.boolean()})).optional(),createdAt:a.date(),authMethods:a.object({password:a.object({hash:a.string()}).optional(),google:a.object({id:a.string()}).optional()})},indexes:[{key:{handle:1},unique:true,collation:{locale:"en",strength:2}}]});var Be=new p("_system.user",{stores:[g],mutations:{signupWithPassword:Ne,loginWithPassword:qe,logout:Je}});async function Fe(t){let e=await je(t),o=e.userId?await g.findOne({_id:new ObjectId(e.userId)}):null,n=o?{id:o._id.toString(),handle:o.handle}:null,i=n?Me():k();return {user:n,session:e,roles:i}}function Ke(t){return async(e,o)=>{try{let n=await t({query:e.query,body:e.body,params:e.params,headers:e.headers,cookies:e.cookies,req:e});o.status(n.status||200),n.headers&&Object.entries(n.headers).forEach(([i,r])=>{o.setHeader(i,r);}),o.send(n.data);}catch(n){n instanceof a$3||n instanceof b$1?o.status(n.status).send(n.message):(console.error(`Error in route handler: ${e.path}`),console.error(n),o.status(500).send(String(n)));}}}var y=null;async function We(){if(y)return y;let t=A();if(!t)throw new Error("MongoDB URI is not set");y=new MongoClient(t,{maxPoolSize:20});try{return await y.connect(),await y.db("admin").command({ping:1}),console.log("Pinged your deployment. You successfully connected to MongoDB!"),y}catch(e){throw console.error(e),y=null,e}}function A(){let t=C("_system.mongodbUri");return t?String(t):undefined}function He(){return y}function At(t,e){for(let o of e)for(let n of o.routes){let{path:i,handlers:r}=n;Object.entries(r).forEach(([s,c])=>{t[s](i,Ke(c));});}}async function Ve(t,{combinedModules:e}){let o=G();o.use(G.json()),o.use(G.urlencoded({extended:true})),o.post("/api/_internal/method/:methodName(*)",async(r,s)=>{let{methodName:c}=r.params,d=await _t(r);try{let u=await Ae(c,r.body.args,d);s.json({data:u,typeMap:a$2(u)});}catch(u){if(console.error(`Error in method ${c}:`,u),u instanceof Error&&u?.constructor?.name==="ZodError"&&"errors"in u){let v=u.flatten(),I=Object.entries(v.fieldErrors).map(([q,J])=>`${q}: ${(J??[]).join(", ")}`).join("; "),L=v.formErrors.join("; "),z=[I,L].filter(Boolean).join("; ");s.status(400).send(z);}else s.status(500).send(u instanceof Error?u.message:String(u));}}),At(o,e),await t.init(),t.middlewares&&o.use(t.middlewares()),o.all("*",(r,s)=>t.handler(r,s)),process.on("unhandledRejection",(r,s)=>{console.error("Unhandled Promise Rejection:"),console.error(r instanceof Error?r.stack:r),console.error("Promise:",s);}),process.on("uncaughtException",r=>{console.error("Uncaught Exception:"),console.error(r.stack),console.trace("Full application stack:");});let n=Ot.createServer(o),i=process.env.PORT||3e3;n.listen(i,()=>{P("Application started",{source:"app"}),console.log(`Application started on port ${i}`);});}async function _t(t){let e=w.string().nullish().transform(r=>r??null).parse(t.body.authToken),o=w.object({screenWidth:w.number(),screenHeight:w.number(),windowWidth:w.number(),windowHeight:w.number(),pixelRatio:w.number(),orientation:w.string().nullable()}).parse(t.body.clientInfo),n={ip:t.ip||t.socket.remoteAddress,userAgent:t.get("user-agent"),acceptLanguage:t.get("accept-language"),referrer:t.get("referrer")};if(!!A()){let{session:r,user:s,roles:c}=await Fe(e);return {clientInfo:o,connectionInfo:n,session:r,user:s,roles:c}}return {clientInfo:o,connectionInfo:n,session:null,user:null,roles:k()}}async function Ze({configSchema:t,cronJobsMetadata:e,stores:o}){let n=process.env.MODELENCE_CONTAINER_ID;if(!n)throw new Error("Unable to connect to Modelence Cloud: MODELENCE_CONTAINER_ID is not set");try{let i=Object.values(o).map(s=>({name:s.getName(),schema:s.getSchema(),collections:[s.getName()]})),r=await Y("/api/connect","POST",{hostname:jt.hostname(),containerId:n,dataModels:i,configSchema:t,cronJobsMetadata:e});return console.log("Successfully connected to Modelence Cloud"),r}catch(i){throw console.error("Unable to connect to Modelence Cloud:",i),i}}async function Qe(){return await Y("/api/configs","GET")}async function Ge(){return await Y("/api/sync","POST",{containerId:process.env.MODELENCE_CONTAINER_ID})}async function Y(t,e,o){let{MODELENCE_SERVICE_ENDPOINT:n,MODELENCE_SERVICE_TOKEN:i}=process.env;if(!n)throw new Error("Unable to connect to Modelence Cloud: MODELENCE_SERVICE_ENDPOINT is not set");let r=await fetch(`${n}${t}`,{method:e,headers:{Authorization:`Bearer ${i}`,...o?{"Content-Type":"application/json"}:{}},body:o?JSON.stringify(o):undefined});if(!r.ok){let s=await r.text();try{let c=JSON.parse(s);throw new Error(`Unable to connect to Modelence Cloud: HTTP status: ${r.status}, ${c?.error}`)}catch{throw new Error(`Unable to connect to Modelence Cloud: HTTP status: ${r.status}, ${s}`)}}return await r.json()}var X=false,Pt=a$1.seconds(10);function Ye(){setInterval(async()=>{if(!X){X=true;try{await Ge();}catch(t){console.error("Error syncing status",t);}try{await $t();}catch(t){console.error("Error syncing config",t);}X=false;}},Pt);}async function $t(){let{configs:t}=await Qe();O(t);}var N=new f("_modelenceMigrations",{schema:{version:a.number(),appliedAt:a.date()},indexes:[{key:{version:1},unique:true}]});async function Xe(t){if(t.length===0)return;let e=t.map(({version:r})=>r),o=await N.fetch({version:{$in:e}}),n=new Set(o.map(({version:r})=>r)),i=t.filter(({version:r})=>!n.has(r));if(i.length!==0){console.log(`Running migrations (${i.length})...`);for(let{version:r,description:s,handler:c}of i)console.log(`Running migration v${r}: ${s}`),await N.insertOne({version:r,appliedAt:new Date}),await c(),console.log(`Migration v${r} complete`);}}var et=new p("_system.migration",{stores:[N]});var kt=a$1.minutes(1),Ut=a$1.seconds(10),M={},ee,_=new f("_modelenceCronJobs",{schema:{alias:a.string(),lastStartDate:a.date().optional(),lock:a.object({containerId:a.string(),acquireDate:a.date()}).optional()},indexes:[{key:{alias:1},unique:true,background:true}]});function ot(t,{description:e="",interval:o,timeout:n=kt,handler:i}){if(M[t])throw new Error(`Duplicate cron job declaration: '${t}' already exists`);if(ee)throw new Error(`Unable to add a cron job - cron jobs have already been initialized: [${t}]`);if(o<a$1.seconds(5))throw new Error(`Cron job interval should not be less than 5 second [${t}]`);if(n>a$1.days(1))throw new Error(`Cron job timeout should not be longer than 1 day [${t}]`);M[t]={alias:t,params:{description:e,interval:o,timeout:n},handler:i,state:{isRunning:false}};}async function nt(){if(ee)throw new Error("Cron jobs already started");let t=Object.keys(M);if(t.length>0){let e={alias:{$in:t}},o=await _.findOne({...e,"lock.containerId":{$exists:true}});await _.upsertMany(e,{$set:{lock:{containerId:process.env.MODELENCE_CONTAINER_ID||"unknown",acquireDate:new Date}}}),o&&await Nt(Ut);let n=await _.fetch(e),i=Date.now();n.forEach(r=>{let s=M[r.alias];s&&(s.state.scheduledRunTs=r.lastStartDate?r.lastStartDate.getTime()+s.params.interval:i);}),Object.values(M).forEach(r=>{r.state.scheduledRunTs||(r.state.scheduledRunTs=i);}),ee=setInterval(Lt,a$1.seconds(1));}}function Nt(t){return new Promise(e=>setTimeout(e,t))}async function Lt(){let t=Date.now();Object.values(M).forEach(async e=>{let{params:o,state:n}=e;if(n.isRunning){n.startTs&&n.startTs+o.timeout<t&&(n.isRunning=false);return}n.scheduledRunTs&&n.scheduledRunTs<=t&&await zt(e);});}async function zt(t){let{alias:e,params:o,handler:n,state:i}=t;i.isRunning=true,i.startTs=Date.now();let r=$("cron",`cron:${e}`);n().then(()=>{tt(i,o),r.end("success");}).catch(s=>{tt(i,o),xe(s),r.end("error"),console.error(`Error in cron job '${e}':`,s);}),await _.updateOne({alias:e},{$set:{lastStartDate:new Date(i.startTs)}});}function tt(t,e){t.scheduledRunTs=t.startTs?t.startTs+e.interval:Date.now(),t.startTs=undefined,t.isRunning=false;}function rt(){return Object.values(M).map(({alias:t,params:e})=>({alias:t,description:e.description,interval:e.interval,timeout:e.timeout}))}var it=new p("_system.cron",{stores:[_]});var oe=class{async init(){this.isDev()&&(console.log("Starting Vite dev server..."),this.viteServer=await createServer({...defineConfig(await Wt()),server:{middlewareMode:true},root:"./src/client"}));}middlewares(){return this.isDev()?this.viteServer?.middlewares??[]:[G.static("./client")]}handler(e,o){if(this.isDev())try{o.sendFile("index.html",{root:"./src/client"});}catch(n){console.error("Error serving index.html:",n),o.status(500).send("Internal Server Error");}else o.sendFile("index.html",{root:"./client"});}isDev(){return process.env.NODE_ENV!=="production"}};async function Wt(){let t=process.cwd(),e=[".eslintrc.js",".eslintrc.json",".eslintrc","eslint.config.js",".eslintrc.yml",".eslintrc.yaml"].find(n=>Ft.existsSync(te.join(t,n))),o=[Bt(),Ht()];if(e){let n=(await import('vite-plugin-eslint')).default;o.push(n({failOnError:false,include:["src/**/*.js","src/**/*.jsx","src/**/*.ts","src/**/*.tsx"],cwd:t,overrideConfigFile:te.resolve(t,e)}));}return {plugins:o,root:t,build:{outDir:".modelence/build/client",emptyOutDir:true},server:{proxy:{"/api":"http://localhost:4000"},headers:{"Cache-Control":"no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0",Pragma:"no-cache",Expires:"0"},hmr:{port:0}},resolve:{alias:{"@":te.resolve(t,"src")}}}}function Ht(){return {name:"modelence-asset-handler",async transform(t,e){if(/\.(png|jpe?g|gif|svg|mpwebm|ogg|mp3|wav|flac|aac)$/.test(e))return process.env.NODE_ENV==="development",t},async generateBundle(t,e){}}}var st=new oe;async function Vt({modules:t=[],roles:e={},defaultRoles:o={},server:n=st,migrations:i=[]}){at.config(),at.config({path:".modelence.env"});let r=!!process.env.MODELENCE_SERVICE_ENDPOINT,s=process.env.MODELENCE_CRON_ENABLED==="true",c=[Be,ke,it,et],d=[...c,...t];Qt(c),Zt(t),Ee(e,o);let u=Yt(d);ce(u??{});let j=Gt(d);if(s&&Xt(d),r){let{configs:I,deploymentId:L,appAlias:z,deploymentAlias:q,telemetry:J}=await Ze({configSchema:u,cronJobsMetadata:s?rt():undefined,stores:j});O(I),ue({deploymentId:L,appAlias:z,deploymentAlias:q,telemetry:J});}else O(to());let v=A();if(v&&(await We(),eo(j)),s&&await Xe(i),v)for(let I of j)I.createIndexes();r&&(await Ce(),Ye()),s&&nt().catch(console.error),await Ve(n,{combinedModules:d});}function Zt(t){for(let e of t){for(let[o,n]of Object.entries(e.queries))Z(`${e.name}.${o}`,n);for(let[o,n]of Object.entries(e.mutations))De(`${e.name}.${o}`,n);}}function Qt(t){for(let e of t){for(let[o,n]of Object.entries(e.queries))Re(`${e.name}.${o}`,n);for(let[o,n]of Object.entries(e.mutations))ve(`${e.name}.${o}`,n);}}function Gt(t){return t.flatMap(e=>e.stores)}function Yt(t){let e={};for(let o of t)for(let[n,i]of Object.entries(o.configSchema)){let r=`${o.name}.${n}`;if(r in e)throw new Error(`Duplicate config schema key: ${r} (${o.name})`);e[r]=i;}return e}function Xt(t){for(let e of t)for(let[o,n]of Object.entries(e.cronJobs))ot(`${e.name}.${o}`,n);}function eo(t){let e=He();if(!e)throw new Error("Failed to initialize stores: MongoDB client not initialized");for(let o of t)o.init(e);}function to(){let t=[];return process.env.MONGODB_URI&&t.push({key:"_system.mongodbUri",type:"string",value:process.env.MONGODB_URI}),t}
3
+ export{p as Module,f as Store,Z as createQuery,g as dbUsers,C as getConfig,a as schema,Vt as startApp};//# sourceMappingURL=server.js.map
4
4
  //# sourceMappingURL=server.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../utils/index.ts","../config/server.ts","../app/state.ts","../app/logs.ts","../app/loggerProcess.ts","../app/metrics.ts","../auth/role.ts","../methods/index.ts","../app/module.ts","../data/store.ts","../data/types.ts","../auth/session.ts","../auth/signup.ts","../auth/login.ts","../auth/user.ts","../auth/index.ts","../viteServer.ts","../routes/handler.ts","../db/client.ts","../app/server.ts","../app/backendApi.ts","../config/sync.ts","../cron/jobs.ts","../app/index.ts"],"names":["isServer","requireServer","configSchema","config","isInitialized","getConfig","key","getPublicConfigs","loadConfigs","configs","type","value","setSchema","schema","isPublic","appStarted","metadata","setMetadata","_metadata","getDeploymentId","getAppAlias","getDeploymentAlias","getTelemetryServiceName","isTelemetryEnabled","logInfo","message","args","getLogger","logError","buffer","sequenceId","startLoggerProcess","elasticCloudId","elasticApiKey","originalStdoutWrite","process","originalStderrWrite","chunk","addToBuffer","loopSendLogs","timestamp","i","current","sendLogs","stdoutLogs","stderrLogs","log","apm","logger","initMetrics","initElasticApm","elasticApmEndpoint","appAlias","deploymentAlias","deploymentId","serviceName","elasticApm","esTransport","ElasticsearchTransport","error","winston","startTransaction","name","context","transaction","captureError","roleMap","defaultRoles","initRoles","roles","_defaultRoles","definition","getUnauthenticatedRoles","getDefaultAuthenticatedRoles","requireAccess","requiredPermissions","missingPermission","permission","hasPermission","role","methods","createQuery","methodDef","validateMethodName","_createMethodInternal","createMutation","_createSystemQuery","validateSystemMethodName","_createSystemMutation","handler","permissions","runMethod","method","response","Module","stores","queries","mutations","routes","cronJobs","Store","options","client","document","query","errorHandler","result","cursor","id","idSelector","ObjectId","documents","selector","update","modifiedSelector","pipeline","operations","schemaString","z","schemaNumber","schemaDate","schemaBoolean","schemaArray","schemaObject","schemaEnum","collection","sessionsCollection","obtainSession","authToken","existingSession","createSession","setSessionUser","userId","clearSessionUser","randomBytes","now","expiresAt","time","processSessionHeartbeat","session","newExpiresAt","session_default","user","handleSignupWithPassword","email","password","existingUser","usersCollection","existingEmail","e","hash","bcrypt","handleLoginWithPassword","userDoc","passwordHash","incorrectCredentialsError","handleLogout","user_default","authenticate","initViteServer","app","isDev","vite","createServer","defineConfig","req","res","express","appDir","eslintConfigFile","file","fs","path","plugins","reactPlugin","modelenceAssetPlugin","eslintPlugin","code","bundle","createRouteHandler","AuthError","ValidationError","connect","mongodbUri","getMongodbUri","MongoClient","ServerApiVersion","err","getClient","registerModuleRoutes","modules","module","route","handlers","startServer","combinedModules","methodName","getCallContext","getResponseTypeMap","flattened","fieldMessages","errors","formMessages","allMessages","reason","promise","server","http","port","val","clientInfo","connectionInfo","connectCloudBackend","cronJobsMetadata","containerId","dataModels","store","data","callApi","os","fetchConfigs","syncStatus","endpoint","payload","MODELENCE_SERVICE_ENDPOINT","MODELENCE_SERVICE_TOKEN","json","isSyncing","SYNC_INTERVAL","startConfigSync","syncConfig","DEFAULT_TIMEOUT","LOCK_TRANSFER_DELAY","cronJobsInterval","cronJobsCollection","defineCronJob","alias","description","interval","timeout","startCronJobs","aliasList","aliasSelector","existingLockedRecord","sleep","cronJobRecords","record","job","tickCronJobs","ms","resolve","params","state","startCronJob","handleCronJobCompletion","getCronJobsMetadata","jobs_default","startApp","dotenv","hasRemoteBackend","isCronEnabled","systemModules","markAppStarted","initSystemMethods","initCustomMethods","getConfigSchema","getStores","defineCronJobs","telemetry","getLocalConfigs","provisionStores","merged","absoluteKey","cronAlias","cronJobParams"],"mappings":"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","file":"server.js","sourcesContent":["export function isServer() {\n return typeof window !== 'object';\n}\n\nexport function requireServer() {\n if (!isServer()) {\n throw new Error('This function can only be called on the server');\n }\n}\n","import { ConfigKey, AppConfig, ConfigSchema } from './types';\n\nlet configSchema: ConfigSchema = {};\nlet config: Record<ConfigKey, AppConfig> = {};\nlet isInitialized = false;\n\nexport function getConfig(key: ConfigKey) {\n return config[key]?.value;\n}\n\nexport function getPublicConfigs() {\n if (!isInitialized) {\n throw new Error('Config is not initialized: an attempt was made to access configs before they were loaded');\n }\n\n return Object.fromEntries(\n Object.entries(config).filter(([key]) => configSchema[key]?.isPublic)\n );\n}\n\nexport function loadConfigs(configs: AppConfig[]) {\n configs.forEach(({ key, type, value }) => {\n const isSystemConfig = key.toLowerCase().startsWith('_system.');\n\n if (!isSystemConfig && !configSchema[key]) {\n // Ignore unknown configs\n return;\n }\n\n config[key] = {\n key,\n type,\n value\n };\n });\n\n isInitialized = true;\n}\n\nexport function setSchema(schema: ConfigSchema) {\n // TODO: more validation on the schema structure\n Object.entries(schema).forEach(([key, value]) => {\n const { type, isPublic } = value;\n\n if (key.toLowerCase().startsWith('_system.')) {\n throw new Error(`Config key cannot start with a reserved prefix: '_system.' (${key})`);\n }\n\n if (type === 'secret' && isPublic) {\n throw new Error(`Config ${key} with type \"secret\" cannot be public`);\n }\n });\n\n configSchema = schema;\n}\n","type AppMetadata = {\n deploymentId: string;\n appAlias: string;\n deploymentAlias: string;\n telemetry: {\n isEnabled: boolean;\n serviceName: string;\n };\n};\n\nlet appStarted = false;\nlet metadata: AppMetadata | null = null;\n\nexport function markAppStarted() {\n appStarted = true;\n}\n\nexport function isAppStarted() {\n return appStarted;\n}\n\nexport function setMetadata(_metadata: AppMetadata) {\n metadata = Object.assign({}, metadata, _metadata);\n}\n\nexport function getDeploymentId() {\n return metadata?.deploymentId;\n}\n\nexport function getAppAlias() {\n return metadata?.appAlias;\n}\n\nexport function getDeploymentAlias() {\n return metadata?.deploymentAlias;\n}\n\nexport function getTelemetryServiceName() {\n return metadata?.telemetry?.serviceName;\n}\n\nexport function isTelemetryEnabled() {\n return Boolean(metadata?.telemetry?.isEnabled);\n}\n","import { getLogger } from './metrics';\nimport { isTelemetryEnabled } from './state';\n\nexport function logInfo(message: string, args: object) {\n if (isTelemetryEnabled()) {\n getLogger().info(message, args);\n }\n}\n\nexport function logError(message: string, args: object) {\n if (isTelemetryEnabled()) {\n getLogger().error(message, args);\n }\n}\n","// import { spawn } from 'child_process';\n// import { fileURLToPath } from 'url';\n// import { dirname, join } from 'path';\nimport { logInfo, logError } from './logs';\nimport process from 'process';\n\ntype LogEntry = { log: string, timestamp: Date | null, sequenceId?: number };\ntype LogBuffer = LogEntry[];\n\nconst buffer: { stdout: LogBuffer, stderr: LogBuffer } = {\n stdout: [{ log: '', timestamp: null }],\n stderr: [{ log: '', timestamp: null }]\n}\n\nlet sequenceId = 1;\n\nexport function startLoggerProcess({ elasticCloudId, elasticApiKey }: { elasticCloudId: string, elasticApiKey: string }) {\n const originalStdoutWrite = process.stdout.write;\n const originalStderrWrite = process.stderr.write;\n\n process.stdout.write = function(chunk: string | Uint8Array, ...args: any[]) {\n addToBuffer(chunk.toString(), buffer.stdout);\n return originalStdoutWrite.call(process.stdout, chunk, ...args);\n };\n\n process.stderr.write = function(chunk: string | Uint8Array, ...args: any[]) {\n addToBuffer(chunk.toString(), buffer.stderr);\n return originalStderrWrite.call(process.stderr, chunk, ...args);\n };\n\n loopSendLogs();\n\n // const currentFilePath = fileURLToPath(import.meta.url);\n // const projectRoot = dirname(dirname(currentFilePath));\n // const loggerPath = join(projectRoot, 'bin', 'modelence-logger', 'index.js');\n // const logger = spawn(process.execPath, [loggerPath], {\n // env: {\n // NODE_ENV: process.env.NODE_ENV,\n // ELASTIC_CLOUD_ID: elasticCloudId,\n // ELASTIC_API_KEY: elasticApiKey\n // },\n // stdio: ['pipe', 'inherit', 'inherit'],\n // detached: true\n // });\n\n // const originalStdoutWrite = process.stdout.write;\n // const originalStderrWrite = process.stderr.write;\n\n // process.stdout.write = function(chunk: any, ...args: any[]) {\n // logger.stdin.write(chunk);\n // return originalStdoutWrite.apply(process.stdout, [chunk, ...args]);\n // };\n\n // process.stderr.write = function(chunk: any, ...args: any[]) {\n // logger.stdin.write(chunk);\n // return originalStderrWrite.apply(process.stderr, [chunk, ...args]);\n // };\n\n // process.on('exit', () => {\n // process.stdout.write = originalStdoutWrite;\n // process.stderr.write = originalStderrWrite;\n // });\n\n // logger.unref();\n}\n\nfunction addToBuffer(chunk: string, buffer: LogBuffer) {\n if (chunk.length === 0) {\n return;\n }\n\n const timestamp = new Date();\n\n for (let i = 0; i < chunk.length; i++) {\n const current = buffer[buffer.length - 1];\n if (!current.timestamp) {\n current.timestamp = timestamp;\n current.sequenceId = sequenceId++;\n }\n\n if (chunk[i] === '\\n') {\n buffer.push({ log: '', timestamp: null });\n } else {\n current.log += chunk[i];\n }\n }\n}\n\n\nasync function sendLogs() {\n const stdoutLogs = buffer.stdout.slice(0, -1);\n buffer.stdout = [buffer.stdout[buffer.stdout.length - 1]];\n\n const stderrLogs = buffer.stderr.slice(0, -1);\n buffer.stderr = [buffer.stderr[buffer.stderr.length - 1]];\n\n stdoutLogs.forEach(({ log, timestamp, sequenceId }: LogEntry) => {\n logInfo(log, { timestamp, source: 'console', sequenceId });\n });\n stderrLogs.forEach(({ log, timestamp, sequenceId }: LogEntry) => {\n logError(log, { timestamp, source: 'console', sequenceId });\n });\n}\n\nfunction loopSendLogs() {\n setTimeout(() => {\n sendLogs();\n loopSendLogs();\n }, 1000);\n}","import elasticApm from 'elastic-apm-node';\nimport winston from 'winston';\nimport { ElasticsearchTransport } from 'winston-elasticsearch';\n\nimport { getConfig } from '../config/server';\nimport { startLoggerProcess } from './loggerProcess';\nimport { getAppAlias, getDeploymentAlias, getDeploymentId, getTelemetryServiceName, isTelemetryEnabled } from './state';\n\nlet isInitialized = false;\nlet apm: typeof elasticApm | null = null;\nlet logger: winston.Logger | null = null;\n\nexport const initMetrics = async () => {\n if (isInitialized) {\n throw new Error('Metrics are already initialized, duplicate \"initMetrics\" call received');\n }\n\n isInitialized = true;\n\n if (isTelemetryEnabled()) {\n await initElasticApm();\n }\n};\n\nasync function initElasticApm() {\n const elasticApmEndpoint = getConfig('_system.elastic.apmEndpoint') as string;\n const elasticCloudId = getConfig('_system.elastic.cloudId') as string;\n const elasticApiKey = getConfig('_system.elastic.apiKey') as string;\n\n const appAlias = getAppAlias() ?? 'unknown';\n const deploymentAlias = getDeploymentAlias() ?? 'unknown';\n const deploymentId = getDeploymentId() ?? 'unknown';\n const serviceName = getTelemetryServiceName();\n\n apm = elasticApm.start({\n serviceName,\n apiKey: elasticApiKey,\n serverUrl: elasticApmEndpoint,\n // environment: 'dev',\n transactionSampleRate: 1.0,\n centralConfig: false,\n globalLabels: {\n modelenceEnv: 'dev',\n appEnv: 'dev',\n deploymentId,\n appAlias,\n deploymentAlias,\n },\n // logLevel: 'debug'\n });\n\n const esTransport = new ElasticsearchTransport({\n apm,\n level: 'debug',\n clientOpts: {\n cloud: {\n id: elasticCloudId,\n },\n auth: {\n apiKey: elasticApiKey\n },\n requestTimeout: 10000,\n tls: {\n rejectUnauthorized: false\n }\n },\n bufferLimit: 1000,\n silent: false,\n });\n\n esTransport.on('error', (error) => {\n console.error('Elasticsearch Transport Error:', error);\n });\n\n logger = winston.createLogger({\n level: 'debug',\n defaultMeta: {\n serviceName,\n },\n format: winston.format.combine(\n winston.format.json(),\n ),\n transports: [\n // new winston.transports.Console(), // TODO: remove, just for debugging\n esTransport\n ]\n });\n\n startLoggerProcess({\n elasticCloudId,\n elasticApiKey\n });\n}\n\nexport function startTransaction(type: 'method' | 'cron', name: string, context?: Record<string, any>) {\n if (!isTelemetryEnabled()) {\n return {\n end: () => {\n // do nothing\n }\n };\n }\n\n if (!apm) {\n throw new Error('startTransaction: Elastic APM is not initialized');\n }\n\n const transaction = apm.startTransaction(name, type);\n if (context) {\n apm.setCustomContext(context);\n }\n return transaction;\n}\n\nexport function captureError(error: Error) {\n if (!isTelemetryEnabled()) {\n console.error(error);\n return;\n }\n\n if (!apm) {\n throw new Error('captureError: Elastic APM is not initialized');\n }\n\n apm.captureError(error);\n}\n\nexport function getLogger() {\n if (!logger) {\n throw new Error('Logger is not initialized');\n }\n return logger;\n}\n","import { RoleDefinition, Role, DefaultRoles, Permission } from './types';\n\nconst roleMap = new Map<Role, RoleDefinition>();\nconst defaultRoles: DefaultRoles = {\n authenticated: null,\n unauthenticated: null,\n};\n\nexport function initRoles(roles: Record<Role, RoleDefinition>, _defaultRoles: Record<string, Role>) {\n defaultRoles.authenticated = _defaultRoles.authenticated;\n defaultRoles.unauthenticated = _defaultRoles.unauthenticated;\n\n for (const [name, definition] of Object.entries(roles)) {\n roleMap.set(name, definition);\n }\n}\n\nexport function getUnauthenticatedRoles() {\n return defaultRoles.unauthenticated ? [defaultRoles.unauthenticated] : [];\n}\n\nexport function getDefaultAuthenticatedRoles() {\n return defaultRoles.authenticated ? [defaultRoles.authenticated] : [];\n}\n\nexport function hasAccess(roles: Role[], requiredPermissions: Permission[]) {\n return requiredPermissions.every(permission => hasPermission(roles, permission));\n}\n\nexport function requireAccess(roles: Role[], requiredPermissions: Permission[]) {\n const missingPermission = requiredPermissions.find(permission => !hasPermission(roles, permission));\n\n if (missingPermission) {\n throw new Error(`Access denied - missing permission: '${missingPermission}'`);\n }\n}\n\nexport function hasPermission(roles: Role[], permission: Permission) {\n for (const role of roles) {\n const definition = roleMap.get(role);\n\n if (definition && definition.permissions.includes(permission)) {\n return true;\n }\n }\n\n return false;\n}\n","import { requireServer } from '../utils';\nimport { startTransaction } from '../app/metrics';\nimport { requireAccess } from '../auth/role';\nimport { Method, MethodDefinition, MethodType, Args, Context } from './types';\n\nconst methods: Record<string, Method<any>> = {};\n\nexport function createQuery<T extends any[]>(name: string, methodDef: MethodDefinition<T>) {\n requireServer();\n validateMethodName(name);\n return _createMethodInternal('query', name, methodDef);\n}\n\nexport function createMutation<T extends any[]>(name: string, methodDef: MethodDefinition<T>) {\n requireServer();\n validateMethodName(name);\n return _createMethodInternal('mutation', name, methodDef);\n}\n\nexport function _createSystemQuery<T extends any[]>(name: string, methodDef: MethodDefinition<T>) {\n requireServer();\n validateSystemMethodName(name);\n return _createMethodInternal('query', name, methodDef);\n}\n\nexport function _createSystemMutation<T extends any[]>(name: string, methodDef: MethodDefinition<T>) {\n requireServer();\n validateSystemMethodName(name);\n return _createMethodInternal('mutation', name, methodDef);\n}\n\nfunction validateMethodName(name: string) {\n if (name.toLowerCase().startsWith('_system.')) {\n throw new Error(`Method name cannot start with a reserved prefix: '_system.' (${name})`);\n }\n}\n\nfunction validateSystemMethodName(name: string) {\n if (!name.toLowerCase().startsWith('_system.')) {\n throw new Error(`System method name must start with a prefix: '_system.' (${name})`);\n }\n}\n\nfunction _createMethodInternal<T extends any>(type: MethodType, name: string, methodDef: MethodDefinition<T>) {\n requireServer();\n\n if (methods[name]) {\n throw new Error(`Method with name '${name}' is already defined.`);\n }\n\n const handler = typeof methodDef === 'function' ? methodDef : methodDef.handler;\n const permissions = typeof methodDef === 'function' ? [] : methodDef.permissions ?? [];\n methods[name] = { type, name, handler, permissions };\n}\n\nexport async function runMethod(name: string, args: Args, context: Context) {\n requireServer();\n\n const method = methods[name];\n if (!method) {\n throw new Error(`Method with name '${name}' is not defined.`);\n }\n const { type, handler } = method;\n\n const transaction = startTransaction('method', `method:${name}`, { type, args });\n\n let response;\n try {\n requireAccess(context.roles, method.permissions);\n response = await handler(args, context);\n } catch (error) {\n // TODO: log error and associate it with the transaction\n transaction.end('error');\n throw error;\n }\n\n transaction.end();\n\n return response;\n}\n","import { ConfigSchema } from '../config/types';\nimport { CronJobInputParams } from '../cron/types';\nimport { Store } from '../data/store';\nimport { MethodDefinition } from '../methods/types';\nimport { RouteDefinition } from '../routes/types';\n\ntype Stores = Store<any, any>[];\ntype Queries = Record<string, MethodDefinition<any>>;\ntype Mutations = Record<string, MethodDefinition<any>>;\n\nexport class Module {\n public readonly name: string;\n public readonly stores: Stores;\n public readonly queries: Queries;\n public readonly mutations: Mutations;\n public readonly routes: RouteDefinition[];\n public readonly cronJobs: Record<string, CronJobInputParams>;\n public readonly configSchema: ConfigSchema;\n\n constructor(\n name: string,\n { \n stores = [], \n queries = {}, \n mutations = {},\n routes = [],\n cronJobs = {},\n configSchema = {}\n }: { \n stores?: Stores, \n queries?: Queries, \n mutations?: Mutations,\n routes?: RouteDefinition[],\n cronJobs?: Record<string, CronJobInputParams>,\n configSchema?: ConfigSchema\n }\n ) {\n this.name = name;\n this.stores = stores;\n this.queries = queries;\n this.mutations = mutations;\n this.routes = routes;\n this.cronJobs = cronJobs;\n this.configSchema = configSchema;\n }\n}\n","import {\n AggregateOptions,\n AggregationCursor,\n Collection,\n DeleteResult,\n Document,\n IndexDescription,\n InsertOneResult,\n MongoClient,\n UpdateResult,\n Filter,\n WithId,\n OptionalUnlessRequiredId,\n FindOptions,\n UpdateFilter,\n ObjectId,\n BulkWriteResult,\n AnyBulkWriteOperation,\n InsertManyResult,\n} from 'mongodb';\n\nimport { ModelSchema, InferDocumentType } from './types';\n\n/**\n * The Store class provides a type-safe interface for MongoDB collections with built-in schema validation and helper methods.\n * \n * @category Store\n * @typeParam TSchema - The document schema type\n * @typeParam TMethods - Custom methods that will be added to documents\n * \n * @example\n * ```ts\n * const dbTodos = new Store('todos', {\n * schema: {\n * title: schema.string(),\n * completed: schema.boolean(),\n * dueDate: schema.date().optional(),\n * userId: schema.userId(),\n * },\n * methods: {\n * isOverdue() {\n * return this.dueDate < new Date();\n * }\n * }\n * });\n * ```\n */\nexport class Store<\n TSchema extends ModelSchema,\n TMethods extends Record<string, (this: WithId<InferDocumentType<TSchema>> & TMethods, ...args: Parameters<any>) => any>\n> {\n /** @internal */\n readonly _type!: InferDocumentType<TSchema>;\n /** @internal */\n readonly _rawDoc!: WithId<this['_type']>;\n /** @internal */\n readonly _doc!: this['_rawDoc'] & TMethods;\n \n readonly Doc!: this['_doc'];\n\n private readonly name: string;\n private readonly schema: TSchema;\n private readonly methods?: TMethods;\n private readonly indexes: IndexDescription[];\n private collection?: Collection<this['_type']>;\n\n /**\n * Creates a new Store instance\n * \n * @param name - The collection name in MongoDB\n * @param options - Store configuration\n */\n constructor(\n name: string,\n options: {\n /** Document schema using Modelence schema types */\n schema: TSchema;\n /** Custom methods to add to documents */\n methods?: TMethods;\n /** MongoDB indexes to create */\n indexes: IndexDescription[];\n }\n ) {\n this.name = name;\n this.schema = options.schema;\n this.methods = options.methods;\n this.indexes = options.indexes;\n }\n\n getName() {\n return this.name;\n }\n\n /** @internal */\n getSchema() {\n return this.schema;\n }\n\n /** @internal */\n provision(client: MongoClient) {\n if (this.collection) {\n return;\n }\n\n this.collection = client.db().collection<this['_type']>(this.name);\n if (this.indexes.length > 0) {\n this.collection.createIndexes(this.indexes);\n }\n }\n\n private wrapDocument(document: this['_rawDoc']): this['_doc'] {\n if (!this.methods) {\n return document as unknown as this['_doc'];\n }\n\n const result = Object.create(\n null,\n Object.getOwnPropertyDescriptors({\n ...document,\n ...this.methods\n })\n );\n\n return result as this['_doc'];\n }\n\n /** @internal */\n requireCollection() {\n if (!this.collection) {\n throw new Error(`Collection ${this.name} is not provisioned`);\n }\n\n return this.collection;\n }\n\n async findOne(\n query: Filter<this['_type']>, \n options?: FindOptions\n ) {\n const document = await this.requireCollection().findOne<this['_rawDoc']>(query, options);\n return document ? this.wrapDocument(document) : null;\n }\n\n async requireOne(\n query: Filter<this['_type']>, \n options?: FindOptions,\n errorHandler?: () => Error\n ): Promise<this['_doc']> {\n \n const result = await this.findOne(query, options);\n if (!result) {\n throw errorHandler ? errorHandler() : new Error(`Record not found in ${this.name}`);\n }\n return result;\n }\n\n private find(query: Filter<this['_type']>, options?: { sort?: Document, limit?: number, skip?: number }) {\n const cursor = this.requireCollection().find(query);\n if (options?.sort) {\n cursor.sort(options.sort);\n }\n if (options?.limit) {\n cursor.limit(options.limit);\n }\n if (options?.skip) {\n cursor.skip(options.skip);\n }\n return cursor;\n }\n\n /**\n * Fetches a single document by its ID\n * \n * @param id - The ID of the document to find\n * @returns The document, or null if not found\n */\n async findById(id: string | ObjectId): Promise<this['_doc'] | null> {\n const idSelector = typeof id === 'string' ? { _id: new ObjectId(id) } : { _id: id };\n return await this.findOne(idSelector as Filter<this['_type']>);\n }\n\n /**\n * Fetches a single document by its ID, or throws an error if not found\n * \n * @param id - The ID of the document to find\n * @param errorHandler - Optional error handler to return a custom error if the document is not found\n * @returns The document\n */\n async requireById(id: string | ObjectId, errorHandler?: () => Error): Promise<this['_doc']> {\n const result = await this.findById(id);\n if (!result) {\n throw errorHandler ? errorHandler() : new Error(`Record with id ${id} not found in ${this.name}`);\n }\n return result;\n }\n\n /**\n * Fetches multiple documents, equivalent to Node.js MongoDB driver's `find` and `toArray` methods combined.\n * \n * @param query - The query to filter documents\n * @param options - Optional options\n * @returns The documents\n */\n async fetch(query: Filter<this['_type']>, options?: { sort?: Document, limit?: number, skip?: number }): Promise<this['_doc'][]> {\n const cursor = this.find(query, options)\n return (await cursor.toArray()).map(this.wrapDocument.bind(this));\n }\n\n /**\n * Inserts a single document\n * \n * @param document - The document to insert\n * @returns The result of the insert operation\n */\n async insertOne(document: OptionalUnlessRequiredId<this['_type']>): Promise<InsertOneResult> {\n return await this.requireCollection().insertOne(document);\n }\n\n /**\n * Inserts multiple documents\n * \n * @param documents - The documents to insert\n * @returns The result of the insert operation\n */\n async insertMany(documents: OptionalUnlessRequiredId<this['_type']>[]): Promise<InsertManyResult> {\n return await this.requireCollection().insertMany(documents);\n }\n\n /**\n * Updates a single document\n * \n * @param selector - The selector to find the document to update\n * @param update - The update to apply to the document\n * @returns The result of the update operation\n */\n async updateOne(selector: Filter<this['_type']> | string, update: UpdateFilter<this['_type']>): Promise<UpdateResult> {\n const modifiedSelector = typeof selector === 'string' \n ? { _id: new ObjectId(selector) } as Filter<this['_type']>\n : selector;\n return await this.requireCollection().updateOne(modifiedSelector, update);\n }\n\n /**\n * Updates a single document, or inserts it if it doesn't exist\n * \n * @param selector - The selector to find the document to update\n * @param update - The MongoDB modifier to apply to the document\n * @returns The result of the update operation\n */\n async upsertOne(selector: Filter<this['_type']>, update: UpdateFilter<this['_type']>): Promise<UpdateResult> {\n return await this.requireCollection().updateOne(selector, update, { upsert: true });\n }\n\n /**\n * Updates multiple documents\n * \n * @param selector - The selector to find the documents to update\n * @param update - The MongoDB modifier to apply to the documents\n * @returns The result of the update operation\n */\n async updateMany(selector: Filter<this['_type']>, update: UpdateFilter<this['_type']>): Promise<UpdateResult> {\n return await this.requireCollection().updateMany(selector, update);\n }\n\n /**\n * Updates multiple documents, or inserts them if they don't exist\n * \n * @param selector - The selector to find the documents to update\n * @param update - The MongoDB modifier to apply to the documents\n * @returns The result of the update operation\n */\n async upsertMany(selector: Filter<this['_type']>, update: UpdateFilter<this['_type']>): Promise<UpdateResult> {\n return await this.requireCollection().updateMany(selector, update, { upsert: true });\n }\n\n /**\n * Deletes a single document\n * \n * @param selector - The selector to find the document to delete\n * @returns The result of the delete operation\n */\n async deleteOne(selector: Filter<this['_type']>): Promise<DeleteResult> {\n return await this.requireCollection().deleteOne(selector);\n }\n\n /**\n * Deletes multiple documents\n * \n * @param selector - The selector to find the documents to delete\n * @returns The result of the delete operation\n */\n async deleteMany(selector: Filter<this['_type']>): Promise<DeleteResult> {\n return await this.requireCollection().deleteMany(selector);\n }\n\n /**\n * Aggregates documents using MongoDB's aggregation framework\n * \n * @param pipeline - The aggregation pipeline\n * @param options - Optional options\n * @returns The aggregation cursor\n */\n aggregate(pipeline: Document[], options?: AggregateOptions): AggregationCursor<Document> {\n return this.requireCollection().aggregate(pipeline, options);\n }\n\n /**\n * Performs a bulk write operation on the collection\n * \n * @param operations - The operations to perform\n * @returns The result of the bulk write operation\n */\n bulkWrite(operations: AnyBulkWriteOperation<this['_type']>[]): Promise<BulkWriteResult> {\n return this.requireCollection().bulkWrite(operations);\n }\n}\n","import { ObjectId } from 'mongodb';\nimport { z } from 'zod';\nimport { Store } from './store';\n\ntype ObjectTypeDefinition = {\n [key: string]: SchemaTypeDefinition;\n};\n\ntype SingularSchemaTypeDefinition = z.ZodType | ObjectTypeDefinition; // ReturnType<typeof schema[keyof typeof schema]>;\n\ntype SchemaTypeDefinition = SingularSchemaTypeDefinition | Array<SingularSchemaTypeDefinition>;\n\nexport type ModelSchema = {\n [key: string]: SchemaTypeDefinition;\n};\n\nconst schemaString: typeof z.string = z.string.bind(z);\n\nconst schemaNumber: typeof z.number = z.number.bind(z);\n\nconst schemaDate: typeof z.date = z.date.bind(z);\n\nconst schemaBoolean: typeof z.boolean = z.boolean.bind(z);\n\nconst schemaArray: typeof z.array = z.array.bind(z);\n\nconst schemaObject: typeof z.object = z.object.bind(z);\n\nconst schemaEnum: typeof z.enum = z.enum.bind(z);\n\nexport const schema = {\n string: schemaString,\n number: schemaNumber,\n date: schemaDate,\n boolean: schemaBoolean,\n array: schemaArray,\n object: schemaObject,\n enum: schemaEnum,\n objectId(): z.ZodType<ObjectId> {\n return z.instanceof(ObjectId);\n },\n userId(): z.ZodType<ObjectId> {\n return z.instanceof(ObjectId);\n },\n ref(collection: string | Store<any, any>): z.ZodType<ObjectId> {\n return z.instanceof(ObjectId);\n },\n union: z.union.bind(z),\n infer<T extends SchemaTypeDefinition>(schema: T): InferDocumentType<T> {\n return {} as InferDocumentType<T>;\n }\n} as const;\n\nexport type InferDocumentType<T extends SchemaTypeDefinition> = {\n [K in keyof T as T[K] extends z.ZodOptional<any> ? K : never]?: (T[K] extends z.ZodType ? z.infer<T[K]> : never);\n} & {\n [K in keyof T as T[K] extends z.ZodOptional<any> ? never : K]:\n T[K] extends z.ZodType ? z.infer<T[K]> :\n T[K] extends Array<infer ElementType extends SchemaTypeDefinition> ? Array<InferDocumentType<ElementType>> :\n T[K] extends ObjectTypeDefinition ? InferDocumentType<T[K]> :\n never;\n};\n\nexport namespace schema {\n export type infer<T extends SchemaTypeDefinition> = InferDocumentType<T>;\n}\n","import { randomBytes } from 'crypto';\nimport { time } from '../time';\nimport { Session } from './types';\nimport { getPublicConfigs } from '../config/server';\nimport { Module } from '../app/module';\nimport { Store } from '../data/store';\nimport { schema } from '../data/types';\nimport { ObjectId } from 'mongodb';\n\nexport const sessionsCollection = new Store('_modelenceSessions', {\n schema: {\n authToken: schema.string(),\n createdAt: schema.date(),\n expiresAt: schema.date(),\n userId: schema.userId().nullable(),\n },\n indexes: [\n { key: { authToken: 1 }, unique: true },\n { key: { expiresAt: 1 }},\n ]\n // TODO: add TTL index on expiresAt\n});\n\nexport async function obtainSession(authToken: string | null): Promise<Session> {\n const existingSession = authToken ? await sessionsCollection.findOne({ authToken }) : null;\n\n if (existingSession) {\n return {\n authToken: String(existingSession.authToken),\n expiresAt: new Date(existingSession.expiresAt),\n userId: existingSession.userId ?? null,\n }\n }\n\n return await createSession();\n}\n\nexport async function setSessionUser(authToken: string, userId: ObjectId) {\n await sessionsCollection.updateOne({ authToken }, {\n $set: { userId }\n });\n}\n\nexport async function clearSessionUser(authToken: string) {\n await sessionsCollection.updateOne({ authToken }, {\n $set: { userId: null }\n });\n}\n\nasync function createSession(): Promise<Session> {\n // TODO: add rate-limiting and captcha handling\n\n const authToken = randomBytes(32).toString('base64url');\n const now = Date.now();\n const expiresAt = new Date(now + time.days(7));\n\n await sessionsCollection.insertOne({\n authToken,\n createdAt: new Date(now),\n expiresAt,\n userId: null,\n });\n\n return {\n authToken,\n expiresAt,\n userId: null,\n };\n}\n\nasync function processSessionHeartbeat(session: Session) {\n const now = Date.now();\n const newExpiresAt = new Date(now + time.days(7));\n\n await sessionsCollection.updateOne({ authToken: session.authToken }, {\n $set: {\n lastActiveDate: new Date(now),\n expiresAt: newExpiresAt\n }\n });\n}\n\nexport default new Module('_system.session', {\n stores: [sessionsCollection],\n mutations: {\n init: async function(args, { session, user }) {\n // TODO: mark or track app load somewhere\n \n return {\n session,\n user,\n configs: getPublicConfigs(),\n };\n },\n heartbeat: async function(args, { session }) {\n // Session might not exist if there is no database/authentication setup\n if (session) {\n await processSessionHeartbeat(session);\n }\n }\n },\n});\n","import { z } from 'zod';\nimport bcrypt from 'bcrypt';\n\nimport { Args, Context } from '../methods/types';\nimport { usersCollection } from './user';\n\nexport async function handleSignupWithPassword(args: Args, { user }: Context) {\n const email = z.string().email().parse(args.email);\n const password = z.string()\n .min(8, { message: 'Password must contain at least 8 characters' })\n .parse(args.password);\n\n // TODO: block disposable email providers\n // TODO: captcha check\n // TODO: rate limiting\n\n if (user) {\n // TODO: handle cases where a user is already logged in\n }\n\n const existingUser = await usersCollection.findOne(\n { 'emails.address': email },\n { collation: { locale: 'en', strength: 2 } }\n );\n\n if (existingUser) {\n const existingEmail = existingUser.emails?.find(e => e.address === email);\n throw new Error(`User with email already exists: ${existingEmail?.address}`);\n }\n\n // Hash password with bcrypt (salt is automatically generated)\n const hash = await bcrypt.hash(password, 10);\n\n const result = await usersCollection.insertOne({\n handle: email,\n emails: [{\n address: email,\n verified: false,\n }],\n createdAt: new Date(),\n authMethods: {\n password: {\n hash,\n }\n }\n });\n\n // TODO: send verification email\n\n return result.insertedId;\n}\n\n","import { z } from 'zod';\nimport bcrypt from 'bcrypt';\n\nimport { Args, Context } from '../methods/types';\nimport { usersCollection } from './user';\nimport { clearSessionUser, setSessionUser } from './session';\n\nexport async function handleLoginWithPassword(args: Args, { user, session }: Context) {\n if (!session) {\n throw new Error('Session is not initialized');\n }\n\n const email = z.string().email().parse(args.email);\n const password = z.string().parse(args.password);\n\n // TODO: add rate limiting by email (and perhaps IP address overall)\n\n if (user) {\n // TODO: handle cases where a user is already logged in\n }\n\n const userDoc = await usersCollection.findOne(\n { 'emails.address': email },\n { collation: { locale: 'en', strength: 2 } }\n );\n\n const passwordHash = userDoc?.authMethods?.password?.hash;\n if (!userDoc || !passwordHash) {\n throw incorrectCredentialsError();\n }\n\n const isValidPassword = await bcrypt.compare(password, passwordHash);\n if (!isValidPassword) {\n throw incorrectCredentialsError();\n }\n\n await setSessionUser(session.authToken, userDoc._id);\n\n return {\n user: {\n id: userDoc._id,\n handle: userDoc.handle,\n }\n }\n}\n\nexport async function handleLogout(args: Args, { user, session }: Context) {\n if (!session) {\n throw new Error('Session is not initialized');\n }\n\n await clearSessionUser(session.authToken);\n}\n\n/*\n It is important to return the same exact error both in case the email\n or password is incorrect so that the client cannot tell the difference,\n otherwise it would allow for an enumeration attack.\n*/\nfunction incorrectCredentialsError() {\n return new Error('Incorrect email/password combination');\n}\n","import { randomBytes } from 'crypto';\n\nimport { Module } from '../app/module';\nimport { Store } from '../data/store';\nimport { schema } from '../data/types';\nimport { handleSignupWithPassword } from './signup';\nimport { handleLoginWithPassword, handleLogout } from './login';\n\nexport const usersCollection = new Store('_modelenceUsers', {\n schema: {\n handle: schema.string(),\n emails: schema.array(schema.object({\n address: schema.string(),\n verified: schema.boolean(),\n })).optional(),\n createdAt: schema.date(),\n authMethods: schema.object({\n password: schema.object({\n hash: schema.string(),\n }).optional(),\n google: schema.object({\n id: schema.string(),\n }).optional(),\n }),\n },\n indexes: [\n {\n key: { handle: 1 },\n unique: true,\n collation: { locale: 'en', strength: 2 } // Case-insensitive\n },\n ]\n});\n\nasync function createGuestUser() {\n // TODO: add rate-limiting and captcha handling\n\n const guestId = randomBytes(9)\n .toString('base64')\n .replace(/[+/]/g, c => c === '+' ? 'a' : 'b');\n\n const handle = `guest_${guestId}`;\n // TODO: re-try on handle collision\n\n const result = await usersCollection.insertOne({\n handle,\n createdAt: new Date(),\n authMethods: {},\n });\n\n return result.insertedId;\n}\n\nexport default new Module('_system.user', {\n stores: [usersCollection],\n mutations: {\n signupWithPassword: handleSignupWithPassword,\n loginWithPassword: handleLoginWithPassword,\n logout: handleLogout,\n }\n});\n\n","import { ObjectId } from 'mongodb';\n\nimport { obtainSession } from './session';\nimport { usersCollection } from './user';\nimport { getDefaultAuthenticatedRoles, getUnauthenticatedRoles } from './role';\nimport { Role, Session, UserInfo } from './types';\n\nexport async function authenticate(authToken: string | null): Promise<{ session: Session, user: UserInfo | null, roles: Role[] }> {\n const session = await obtainSession(authToken);\n\n const userDoc = session.userId ? await usersCollection.findOne({ _id: new ObjectId(session.userId) }) : null;\n const user = userDoc ? {\n id: userDoc._id.toString(),\n handle: userDoc.handle,\n } : null;\n\n const roles = user ? getDefaultAuthenticatedRoles() : getUnauthenticatedRoles();\n\n return {\n user,\n session,\n roles,\n };\n}\n","import { createServer, defineConfig } from 'vite';\nimport reactPlugin from '@vitejs/plugin-react';\nimport path from 'path';\nimport fs from 'fs';\nimport express from 'express';\n\nexport async function initViteServer(app: express.Application, isDev: boolean) {\n if (isDev) {\n console.log('Starting Vite dev server...');\n const vite = await createServer({\n ...defineConfig(await getConfig()),\n server: {\n middlewareMode: true,\n },\n root: './src/client'\n });\n \n app.use(vite.middlewares);\n \n app.use('*', async (req: express.Request, res: express.Response) => {\n try {\n res.sendFile('index.html', { root: './src/client' });\n } catch (e) {\n console.error('Error serving index.html:', e);\n res.status(500).send('Internal Server Error');\n }\n });\n } else {\n app.use(express.static('.modelence/build/client'));\n app.get('*', (req, res) => {\n res.sendFile('index.html', { root: '.modelence/build/client' });\n });\n }\n}\n\nasync function getConfig() {\n const appDir = process.cwd();\n\n const eslintConfigFile = [\n '.eslintrc.js',\n '.eslintrc.json',\n '.eslintrc',\n 'eslint.config.js',\n '.eslintrc.yml',\n '.eslintrc.yaml'\n ].find(file => fs.existsSync(path.join(appDir, file)));\n\n const plugins = [reactPlugin(), modelenceAssetPlugin()];\n\n if (eslintConfigFile) {\n const eslintPlugin = (await import('vite-plugin-eslint')).default;\n plugins.push(\n eslintPlugin({\n failOnError: false,\n include: ['src/**/*.js', 'src/**/*.jsx', 'src/**/*.ts', 'src/**/*.tsx'],\n cwd: appDir,\n overrideConfigFile: path.resolve(appDir, eslintConfigFile)\n })\n );\n }\n\n return {\n plugins,\n root: appDir,\n build: {\n outDir: '.modelence/build/client',\n emptyOutDir: true\n },\n server: {\n proxy: {\n '/api': 'http://localhost:4000'\n },\n headers: {\n 'Cache-Control': 'no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0',\n 'Pragma': 'no-cache',\n 'Expires': '0'\n },\n hmr: {\n port: 0,\n },\n },\n resolve: {\n alias: {\n '@': path.resolve(appDir, 'src')\n }\n\n }\n };\n}\n\nfunction modelenceAssetPlugin() {\n return {\n name: 'modelence-asset-handler',\n async transform(code: string, id: string) {\n const assetRegex = /\\.(png|jpe?g|gif|svg|mpwebm|ogg|mp3|wav|flac|aac)$/;\n if (assetRegex.test(id)) {\n if (process.env.NODE_ENV === 'development') {\n return code;\n }\n // TODO: Upload to CDN\n // return `export default \"${cdnUrl}\"`;\n return code;\n }\n },\n async generateBundle(options: any, bundle: any) {\n // Handle asset URLs in the final bundle\n }\n };\n}\n","import { Request, Response } from 'express';\nimport { RouteHandler, ExpressHandler } from './types';\nimport { AuthError, ValidationError } from '../error';\n\n// TODO: Use cookies for authentication and automatically add session/user to context if accessing from browser\n\nexport function createRouteHandler(handler: RouteHandler): ExpressHandler {\n return async (req: Request, res: Response) => {\n try {\n const response = await handler({\n query: req.query as Record<string, string>,\n body: req.body,\n params: req.params,\n headers: req.headers as Record<string, string>,\n cookies: req.cookies,\n req,\n });\n\n res.status(response.status || 200);\n\n if (response.headers) {\n Object.entries(response.headers).forEach(([key, value]) => {\n res.setHeader(key, value);\n });\n }\n\n res.send(response.data);\n } catch (error) {\n if (error instanceof AuthError || error instanceof ValidationError) {\n res.status(error.status).send(error.message);\n } else {\n console.error(`Error in route handler: ${req.path}`);\n console.error(error);\n res.status(500).send(String(error));\n }\n }\n };\n}\n","import { MongoClient, ServerApiVersion } from 'mongodb';\nimport { getConfig } from '../config/server';\n\nlet client: MongoClient | null = null;\n\nexport async function connect() {\n if (client) return client;\n\n const mongodbUri = getMongodbUri();\n if (!mongodbUri) {\n throw new Error('MongoDB URI is not set');\n }\n\n client = new MongoClient(mongodbUri, {\n serverApi: {\n version: ServerApiVersion.v1,\n strict: true,\n deprecationErrors: true,\n },\n maxPoolSize: 20\n });\n\n try {\n // Connect the client to the server\n await client.connect();\n // Send a ping to confirm a successful connection\n await client.db(\"admin\").command({ ping: 1 });\n console.log(\"Pinged your deployment. You successfully connected to MongoDB!\");\n return client;\n } catch (err) {\n console.error(err);\n client = null;\n throw err;\n }\n}\n\nexport function getMongodbUri() {\n const value = getConfig('_system.mongodbUri');\n return value ? String(value) : undefined;\n}\n\nexport function getClient() {\n return client;\n}\n\n// export async function closeConnection() {\n// if (client) {\n// await client.close();\n// client = null;\n// }\n// }\n","import http from 'http';\nimport express, { Request, Response } from 'express';\nimport z from 'zod';\nimport { runMethod } from '../methods';\nimport { getResponseTypeMap } from '../methods/serialize';\nimport { authenticate } from '../auth';\nimport { logInfo } from './logs';\nimport { initViteServer } from '../viteServer';\nimport { Module } from './module';\nimport { HttpMethod } from '../routes/types';\nimport { createRouteHandler } from '../routes/handler';\nimport { getUnauthenticatedRoles } from '../auth/role';\nimport { getMongodbUri } from 'db/client';\n\nfunction registerModuleRoutes(app: express.Application, modules: Module[]) {\n for (const module of modules) {\n for (const route of module.routes) {\n const { path, handlers } = route;\n\n Object.entries(handlers).forEach(([method, handler]) => {\n app[method as HttpMethod](path, createRouteHandler(handler));\n });\n }\n }\n}\n\nexport async function startServer({ combinedModules }: { combinedModules: Module[] }) {\n const app = express();\n const isDev = process.env.NODE_ENV !== 'production';\n\n app.use(express.json());\n app.use(express.urlencoded({ extended: true }));\n\n app.post('/api/_internal/method/:methodName(*)', async (req: Request, res: Response) => {\n const { methodName } = req.params;\n const context = await getCallContext(req);\n\n try {\n const result = await runMethod(methodName, req.body.args, context);\n res.json({\n data: result,\n typeMap: getResponseTypeMap(result),\n });\n } catch (error) {\n // TODO: introduce error codes and handle them differently\n // TODO: support multiple errors\n\n // TODO: add an option to silence these error console logs, especially when Elastic logs are configured\n console.error(`Error in method ${methodName}:`, error);\n\n // res.status(500).json({ error: 'Internal server error' });\n\n if (error instanceof Error && error?.constructor?.name === 'ZodError' && 'errors' in error) {\n const zodError = error as z.ZodError;\n const flattened = zodError.flatten();\n const fieldMessages = Object.entries(flattened.fieldErrors)\n .map(([key, errors]) => `${key}: ${(errors ?? []).join(', ')}`)\n .join('; ');\n const formMessages = flattened.formErrors.join('; ');\n const allMessages = [fieldMessages, formMessages].filter(Boolean).join('; ');\n res.status(400).send(allMessages);\n } else {\n res.status(500).send(error instanceof Error ? error.message : String(error));\n }\n }\n });\n\n registerModuleRoutes(app, combinedModules);\n\n await initViteServer(app, isDev);\n\n process.on('unhandledRejection', (reason, promise) => {\n console.error('Unhandled Promise Rejection:');\n console.error(reason instanceof Error ? reason.stack : reason);\n console.error('Promise:', promise);\n });\n \n // Global uncaught exceptions\n process.on('uncaughtException', (error) => {\n console.error('Uncaught Exception:');\n console.error(error.stack); // This gives you the full stack trace\n console.trace('Full application stack:'); // Additional context\n });\n\n const server = http.createServer(app);\n const port = process.env.PORT || 3000;\n server.listen(port, () => {\n logInfo(`Application started`, { source: 'app' });\n console.log(`Application started on port ${port}`);\n });\n}\n\nasync function getCallContext(req: Request) {\n const authToken = z.string().nullish().transform(val => val ?? null).parse(req.body.authToken);\n\n const clientInfo = z.object({\n screenWidth: z.number(),\n screenHeight: z.number(),\n windowWidth: z.number(),\n windowHeight: z.number(),\n pixelRatio: z.number(),\n orientation: z.string().nullable(),\n }).parse(req.body.clientInfo);\n\n const connectionInfo = {\n ip: req.ip || req.socket.remoteAddress, // TODO: handle cases with Proxy\n userAgent: req.get('user-agent'),\n acceptLanguage: req.get('accept-language'),\n referrer: req.get('referrer'),\n };\n\n const hasDatabase = Boolean(getMongodbUri());\n if (hasDatabase) {\n const { session, user, roles } = await authenticate(authToken);\n return {\n clientInfo,\n connectionInfo,\n session,\n user,\n roles,\n };\n }\n\n return {\n clientInfo,\n connectionInfo,\n session: null,\n user: null,\n roles: getUnauthenticatedRoles(),\n };\n}\n\n// import passport from 'passport';\n// import session from 'express-session';\n// import { Strategy as GoogleStrategy } from 'passport-google-oauth20';\n\n// Session middleware\n// app.use(session({\n// secret: process.env.SESSION_SECRET || 'default_secret',\n// resave: false,\n// saveUninitialized: false\n// }));\n\n// Passport middleware\n// app.use(passport.initialize());\n// app.use(passport.session());\n\n// // Passport Google strategy setup\n// passport.use(new GoogleStrategy({\n// clientID: process.env.GOOGLE_CLIENT_ID || '',\n// clientSecret: process.env.GOOGLE_CLIENT_SECRET || '',\n// callbackURL: \"/auth/google/callback\"\n// },\n// function(accessToken: string, refreshToken: string, profile: any, cb: (error: any, user?: any) => void) {\n// // Here you would typically find or create a user in your database\n// // For now, we'll just pass the profile info\n// return cb(null, profile);\n// }));\n\n// passport.serializeUser((user: Express.User, done: (err: any, id?: unknown) => void) => {\n// done(null, user);\n// });\n\n// passport.deserializeUser((user: Express.User, done: (err: any, user?: Express.User | false | null) => void) => {\n// done(null, user);\n// });\n\n// // Google Auth routes\n// app.get('/auth/google', passport.authenticate('google', { scope: ['profile', 'email'] }));\n\n// app.get('/auth/google/callback', passport.authenticate('google', { failureRedirect: '/login' }),\n// function(req: Request, res: Response) {\n// // Successful authentication, redirect home.\n// res.redirect('/');\n// }\n// );\n\n// // Logout route\n// app.get('/logout', (req: Request, res: Response, next: NextFunction) => {\n// req.logout(function(err) {\n// if (err) { return next(err); }\n// res.redirect('/');\n// });\n// });\n\n// // Middleware to check if user is authenticated\n// function ensureAuthenticated(req: Request, res: Response, next: NextFunction) {\n// if (req.isAuthenticated()) {\n// return next();\n// }\n// res.redirect('/login');\n// }\n\n\n// app.get('/bundle.js', function (req: Request, res: Response) {\n// res.sendFile('.modelence/client/bundle.js', { root: '.' });\n// });\n\n\n// // Update your catch-all route\n// app.get('/', function (req: Request, res: Response) {\n// res.sendFile(path.join('client', 'index.html'), { root: path.join(__dirname, '..') });\n// });\n\n\n","import os from 'os';\nimport { ConfigSchema } from '../config/types';\nimport { CronJobMetadata } from '../cron/types';\nimport { Store } from '../data/store';\n\nexport async function connectCloudBackend(\n { configSchema, cronJobsMetadata, stores }: { \n configSchema?: ConfigSchema, \n cronJobsMetadata?: CronJobMetadata[], \n stores: Store<any, any>[] \n }\n) {\n const containerId = process.env.MODELENCE_CONTAINER_ID;\n if (!containerId) {\n throw new Error('Unable to connect to Modelence Cloud: MODELENCE_CONTAINER_ID is not set');\n }\n\n try {\n const dataModels = Object.values(stores).map(store => {\n return {\n name: store.getName(),\n schema: store.getSchema(),\n collections: [store.getName()]\n };\n });\n\n const data = await callApi('/api/connect', 'POST', {\n hostname: os.hostname(),\n containerId,\n dataModels,\n configSchema,\n cronJobsMetadata,\n });\n\n console.log('Successfully connected to Modelence Cloud');\n\n return data;\n } catch (error) {\n console.error('Unable to connect to Modelence Cloud:', error);\n throw error;\n }\n}\n\nexport async function fetchConfigs() {\n const data = await callApi('/api/configs', 'GET');\n return data;\n}\n\nexport async function syncStatus() {\n const data = await callApi('/api/sync', 'POST', {\n containerId: process.env.MODELENCE_CONTAINER_ID\n });\n return data;\n}\n\nasync function callApi(endpoint: string, method: string, payload?: object) {\n const { MODELENCE_SERVICE_ENDPOINT, MODELENCE_SERVICE_TOKEN } = process.env;\n\n if (!MODELENCE_SERVICE_ENDPOINT) {\n throw new Error('Unable to connect to Modelence Cloud: MODELENCE_SERVICE_ENDPOINT is not set');\n }\n\n const response = await fetch(`${MODELENCE_SERVICE_ENDPOINT}${endpoint}`, {\n method,\n headers: {\n 'Authorization': `Bearer ${MODELENCE_SERVICE_TOKEN}`,\n ...(payload ? { 'Content-Type': 'application/json' } : {})\n },\n body: payload ? JSON.stringify(payload) : undefined\n });\n\n if (!response.ok) {\n const data = await response.text();\n try {\n const json = JSON.parse(data);\n throw new Error(`Unable to connect to Modelence Cloud: HTTP status: ${response.status}, ${json?.error}`);\n } catch (error) {\n throw new Error(`Unable to connect to Modelence Cloud: HTTP status: ${response.status}, ${data}`);\n }\n }\n\n return await response.json();\n}\n","import { time } from '../time';\nimport { fetchConfigs, syncStatus } from '../app/backendApi';\nimport { loadConfigs } from './server';\n\nlet isSyncing = false;\n\nconst SYNC_INTERVAL = time.seconds(10);\n\nexport function startConfigSync() {\n setInterval(async() => {\n if (isSyncing) {\n return;\n }\n \n isSyncing = true;\n\n // TODO: move this sync outside of config\n try {\n await syncStatus();\n } catch (error) {\n console.error('Error syncing status', error);\n }\n \n try {\n await syncConfig();\n } catch (error) {\n console.error('Error syncing config', error);\n }\n \n isSyncing = false; \n }, SYNC_INTERVAL);\n}\n\nasync function syncConfig() {\n const { configs } = await fetchConfigs();\n loadConfigs(configs);\n}\n","// import { Worker, isMainThread, parentPort, workerData } from 'worker_threads';\n\nimport { time } from '../time';\nimport { CronJob, CronJobInputParams } from './types';\nimport { startTransaction, captureError } from '../app/metrics';\nimport { Module } from '../app/module';\nimport { schema } from '../data/types';\nimport { Store } from '../data/store';\n\nconst DEFAULT_TIMEOUT = time.minutes(1);\n\n/**\n * Each cron instance acquires locks for the jobs it runs. If there was a pre-existing lock,\n * the lock is transferred to the new instance, but there is a delay to give the previous instance\n * a chance to see the new lock and gracefully finish remaining jobs.\n */\nconst LOCK_TRANSFER_DELAY = time.seconds(10);\n\nconst cronJobs: Record<string, CronJob> = {};\nlet cronJobsInterval: NodeJS.Timeout;\n\nconst cronJobsCollection = new Store('_modelenceCronJobs', {\n schema: {\n alias: schema.string(),\n lastStartDate: schema.date().optional(),\n lock: schema.object({\n containerId: schema.string(),\n acquireDate: schema.date(),\n }).optional(),\n },\n indexes: [\n { key: { alias: 1 }, unique: true, background: true },\n ]\n});\n\n// TODO: allow changing interval and timeout with cron jobconfigs\nexport function defineCronJob(\n alias: CronJob['alias'],\n { description = '', interval, timeout = DEFAULT_TIMEOUT, handler }: CronJobInputParams,\n) {\n if (cronJobs[alias]) {\n throw new Error(`Duplicate cron job declaration: '${alias}' already exists`);\n }\n\n if (cronJobsInterval) {\n throw new Error(`Unable to add a cron job - cron jobs have already been initialized: [${alias}]`);\n }\n\n if (interval < time.seconds(5)) {\n throw new Error(`Cron job interval should not be less than 5 second [${alias}]`);\n }\n\n if (timeout > time.days(1)) {\n throw new Error(`Cron job timeout should not be longer than 1 day [${alias}]`);\n }\n\n cronJobs[alias] = {\n alias,\n params: { description, interval, timeout },\n handler,\n state: {\n isRunning: false,\n }\n };\n}\n\nexport async function startCronJobs() {\n if (cronJobsInterval) {\n throw new Error('Cron jobs already started');\n }\n\n const aliasList = Object.keys(cronJobs);\n if (aliasList.length > 0) {\n const aliasSelector = { alias: { $in: aliasList } };\n\n const existingLockedRecord = await cronJobsCollection.findOne({\n ...aliasSelector,\n 'lock.containerId': { $exists: true }\n });\n\n // TODO: handle different application versions with different parameters for the same job alias\n\n await cronJobsCollection.upsertMany(\n aliasSelector,\n {\n $set: {\n lock: {\n containerId: process.env.MODELENCE_CONTAINER_ID || 'unknown',\n acquireDate: new Date(),\n }\n }\n }\n );\n\n if (existingLockedRecord) {\n await sleep(LOCK_TRANSFER_DELAY);\n }\n\n const cronJobRecords = await cronJobsCollection.fetch(aliasSelector);\n const now = Date.now();\n cronJobRecords.forEach((record) => {\n const job = cronJobs[record.alias];\n if (!job) {\n return;\n }\n job.state.scheduledRunTs = record.lastStartDate ? record.lastStartDate.getTime() + job.params.interval : now;\n });\n Object.values(cronJobs).forEach((job) => {\n if (!job.state.scheduledRunTs) {\n job.state.scheduledRunTs = now;\n }\n });\n\n cronJobsInterval = setInterval(tickCronJobs, time.seconds(1));\n }\n}\n\nfunction sleep(ms: number) {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n\nasync function tickCronJobs() {\n // TODO: periodically check if the locks are still there\n\n const now = Date.now();\n Object.values(cronJobs).forEach(async (job) => {\n const { params, state } = job;\n if (state.isRunning) {\n if (state.startTs && state.startTs + params.timeout < now) {\n // TODO: log cron trace timeout error\n state.isRunning = false;\n }\n return;\n }\n\n // TODO: limit the number of jobs running concurrently\n\n if (state.scheduledRunTs && state.scheduledRunTs <= now) {\n await startCronJob(job);\n }\n });\n}\n\nasync function startCronJob(job: CronJob) {\n const { alias, params, handler, state } = job;\n state.isRunning = true;\n state.startTs = Date.now();\n const transaction = startTransaction('cron', `cron:${alias}`);\n // TODO: enforce job timeout\n handler().then(() => {\n handleCronJobCompletion(state, params);\n transaction.end('success');\n }).catch((err) => {\n handleCronJobCompletion(state, params);\n captureError(err);\n transaction.end('error');\n console.error(`Error in cron job '${alias}':`, err);\n });\n await cronJobsCollection.updateOne({ alias }, {\n $set: {\n lastStartDate: new Date(state.startTs),\n }\n });\n}\n\nfunction handleCronJobCompletion(state: CronJob['state'], params: CronJob['params']) {\n state.scheduledRunTs = state.startTs ? state.startTs + params.interval : Date.now();\n state.startTs = undefined;\n state.isRunning = false;\n}\n\nexport function getCronJobsMetadata() {\n return Object.values(cronJobs).map(({ alias, params }) => ({\n alias,\n description: params.description,\n interval: params.interval,\n timeout: params.timeout,\n }));\n}\n\nexport default new Module('_system.cron', {\n stores: [cronJobsCollection],\n});\n\n// const runCronJob = () => {\n// const worker = new Worker(filePath, {\n// workerData: {},\n// execArgv: ['--loader', 'tsx'],\n// });\n\n// const timeoutId = setTimeout(() => {\n// worker.terminate();\n// console.error(`Cron job '${alias}' timed out after ${timeout}ms`);\n// }, timeout);\n\n// worker.on('message', (message) => {\n// if (message === 'done') {\n// clearTimeout(timeoutId);\n// worker.terminate();\n// }\n// });\n\n// worker.on('error', (err) => {\n// clearTimeout(timeoutId);\n// console.error(`Error in cron job '${alias}':`, err);\n// });\n\n// worker.on('exit', (code) => {\n// console.error(`Cron job '${alias}' exited with code ${code}`);\n// setTimeout(runCronJob, interval);\n// });\n// };\n","import dotenv from 'dotenv';\n\nimport { startServer } from './server';\nimport { connect, getClient, getMongodbUri } from '../db/client';\nimport { loadConfigs, setSchema } from '../config/server';\nimport { startConfigSync } from '../config/sync';\nimport { connectCloudBackend } from './backendApi';\nimport { initMetrics } from './metrics';\nimport { markAppStarted, setMetadata } from './state';\nimport userModule from '../auth/user';\nimport sessionModule from '../auth/session';\nimport { initRoles } from '../auth/role';\nimport { startCronJobs, getCronJobsMetadata, defineCronJob } from '../cron/jobs';\nimport cronModule from '../cron/jobs';\nimport { Module } from './module';\nimport { createQuery, createMutation, _createSystemQuery, _createSystemMutation } from '../methods';\nimport { Store } from '../data/store';\nimport { AppConfig, ConfigSchema } from '../config/types';\nimport { RoleDefinition } from '../auth/types';\n\nexport async function startApp(\n { modules = [], roles = {}, defaultRoles = {} }: {\n modules?: Module[]\n roles?: Record<string, RoleDefinition>\n defaultRoles?: Record<string, string>\n } = {}\n) {\n dotenv.config();\n \n dotenv.config({ path: '.modelence.env' });\n\n const hasRemoteBackend = Boolean(process.env.MODELENCE_SERVICE_ENDPOINT);\n const isCronEnabled = process.env.MODELENCE_CRON_ENABLED === 'true';\n\n // TODO: verify that user modules don't start with `_system.` prefix\n const systemModules = [userModule, sessionModule, cronModule];\n const combinedModules = [...systemModules, ...modules];\n\n markAppStarted();\n\n initSystemMethods(systemModules);\n initCustomMethods(modules);\n\n initRoles(roles, defaultRoles);\n\n const configSchema = getConfigSchema(combinedModules);\n setSchema(configSchema ?? {});\n const stores = getStores(combinedModules);\n\n if (isCronEnabled) {\n defineCronJobs(combinedModules);\n }\n\n if (hasRemoteBackend) {\n const { configs, deploymentId, appAlias, deploymentAlias, telemetry } = await connectCloudBackend({\n configSchema,\n cronJobsMetadata: isCronEnabled ? getCronJobsMetadata() : undefined,\n stores\n });\n loadConfigs(configs);\n setMetadata({ deploymentId, appAlias, deploymentAlias, telemetry });\n } else {\n loadConfigs(getLocalConfigs());\n }\n\n const mongodbUri = getMongodbUri();\n if (mongodbUri) {\n await connect();\n provisionStores(stores);\n }\n\n if (hasRemoteBackend) {\n await initMetrics();\n startConfigSync();\n }\n\n if (isCronEnabled) {\n startCronJobs().catch(console.error);\n }\n\n await startServer({ combinedModules });\n}\n\nfunction initCustomMethods(modules: Module[]) {\n for (const module of modules) {\n for (const [key, handler] of Object.entries(module.queries)) {\n createQuery(`${module.name}.${key}`, handler);\n }\n for (const [key, handler] of Object.entries(module.mutations)) {\n createMutation(`${module.name}.${key}`, handler);\n }\n }\n}\n\nfunction initSystemMethods(modules: Module[]) {\n for (const module of modules) {\n for (const [key, handler] of Object.entries(module.queries)) {\n _createSystemQuery(`${module.name}.${key}`, handler);\n }\n for (const [key, handler] of Object.entries(module.mutations)) {\n _createSystemMutation(`${module.name}.${key}`, handler);\n }\n }\n}\n\nfunction getStores(modules: Module[]) {\n return modules.flatMap(module => module.stores);\n}\n\nfunction getConfigSchema(modules: Module[]): ConfigSchema {\n const merged: ConfigSchema = {};\n\n for (const module of modules) {\n for (const [key, value] of Object.entries(module.configSchema)) {\n const absoluteKey = `${module.name}.${key}`;\n if (absoluteKey in merged) {\n throw new Error(\n `Duplicate config schema key: ${absoluteKey} (${module.name})`\n );\n }\n\n merged[absoluteKey] = value;\n }\n }\n\n return merged;\n}\n\nfunction defineCronJobs(modules: Module[]) {\n for (const module of modules) {\n for (const [cronAlias, cronJobParams] of Object.entries(module.cronJobs)) {\n defineCronJob(`${module.name}.${cronAlias}`, cronJobParams);\n }\n }\n}\n\nasync function provisionStores(stores: Store<any, any>[]) {\n const client = getClient();\n if (!client) {\n throw new Error('Failed to provision stores: MongoDB client not initialized');\n }\n\n for (const store of stores) {\n store.provision(client);\n }\n}\n\nfunction getLocalConfigs(): AppConfig[] {\n const configs: AppConfig[] = [];\n\n if (process.env.MONGODB_URI) {\n configs.push({\n key: '_system.mongodbUri',\n type: 'string',\n value: process.env.MONGODB_URI\n });\n }\n\n return configs;\n}\n"]}
1
+ {"version":3,"sources":["../utils/index.ts","../config/server.ts","../app/state.ts","../app/logs.ts","../app/loggerProcess.ts","../app/metrics.ts","../auth/role.ts","../methods/index.ts","../app/module.ts","../data/store.ts","../data/types.ts","../auth/session.ts","../auth/signup.ts","../auth/login.ts","../auth/user.ts","../auth/index.ts","../routes/handler.ts","../db/client.ts","../app/server.ts","../app/backendApi.ts","../config/sync.ts","../migration/db.ts","../migration/index.ts","../cron/jobs.ts","../viteServer.ts","../app/index.ts"],"names":["isServer","requireServer","configSchema","config","isInitialized","getConfig","key","getPublicConfigs","loadConfigs","configs","type","value","setSchema","schema","isPublic","appStarted","metadata","setMetadata","_metadata","getDeploymentId","getAppAlias","getDeploymentAlias","getTelemetryServiceName","isTelemetryEnabled","logInfo","message","args","getLogger","logError","buffer","sequenceId","startLoggerProcess","elasticCloudId","elasticApiKey","originalStdoutWrite","process","originalStderrWrite","chunk","addToBuffer","loopSendLogs","timestamp","i","current","sendLogs","stdoutLogs","stderrLogs","log","apm","logger","initMetrics","initElasticApm","elasticApmEndpoint","appAlias","deploymentAlias","deploymentId","serviceName","elasticApm","esTransport","ElasticsearchTransport","error","winston","startTransaction","name","context","transaction","captureError","roleMap","defaultRoles","initRoles","roles","_defaultRoles","definition","getUnauthenticatedRoles","getDefaultAuthenticatedRoles","requireAccess","requiredPermissions","missingPermission","permission","hasPermission","role","methods","createQuery","methodDef","validateMethodName","_createMethodInternal","createMutation","_createSystemQuery","validateSystemMethodName","_createSystemMutation","handler","permissions","runMethod","method","response","Module","stores","queries","mutations","routes","cronJobs","Store","options","client","document","query","errorHandler","result","cursor","id","idSelector","ObjectId","documents","selector","update","modifiedSelector","pipeline","operations","oldName","db","schemaString","z","schemaNumber","schemaDate","schemaBoolean","schemaArray","schemaObject","schemaEnum","collection","sessionsCollection","obtainSession","authToken","existingSession","createSession","setSessionUser","userId","clearSessionUser","randomBytes","now","expiresAt","time","processSessionHeartbeat","session","newExpiresAt","session_default","user","handleSignupWithPassword","email","password","existingUser","usersCollection","existingEmail","e","hash","bcrypt","handleLoginWithPassword","userDoc","passwordHash","incorrectCredentialsError","handleLogout","user_default","authenticate","createRouteHandler","req","res","AuthError","ValidationError","connect","mongodbUri","getMongodbUri","MongoClient","err","getClient","registerModuleRoutes","app","modules","module","route","path","handlers","startServer","server","combinedModules","express","methodName","getCallContext","getResponseTypeMap","flattened","fieldMessages","errors","formMessages","allMessages","reason","promise","httpServer","http","port","val","clientInfo","connectionInfo","connectCloudBackend","cronJobsMetadata","containerId","dataModels","store","data","callApi","os","fetchConfigs","syncStatus","endpoint","payload","MODELENCE_SERVICE_ENDPOINT","MODELENCE_SERVICE_TOKEN","json","isSyncing","SYNC_INTERVAL","startConfigSync","syncConfig","dbMigrations","runMigrations","migrations","versions","version","existingVersions","existingVersionSet","pendingMigrations","description","migration_default","DEFAULT_TIMEOUT","LOCK_TRANSFER_DELAY","cronJobsInterval","cronJobsCollection","defineCronJob","alias","interval","timeout","startCronJobs","aliasList","aliasSelector","existingLockedRecord","sleep","cronJobRecords","record","job","tickCronJobs","ms","resolve","params","state","startCronJob","handleCronJobCompletion","getCronJobsMetadata","jobs_default","ViteServer","createServer","defineConfig","appDir","eslintConfigFile","file","fs","plugins","reactPlugin","modelenceAssetPlugin","eslintPlugin","code","bundle","viteServer","startApp","dotenv","hasRemoteBackend","isCronEnabled","systemModules","markAppStarted","initSystemMethods","initCustomMethods","getConfigSchema","getStores","defineCronJobs","telemetry","getLocalConfigs","initStores","merged","absoluteKey","cronAlias","cronJobParams"],"mappings":"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","file":"server.js","sourcesContent":["export function isServer() {\n return typeof window !== 'object';\n}\n\nexport function requireServer() {\n if (!isServer()) {\n throw new Error('This function can only be called on the server');\n }\n}\n","import { ConfigKey, AppConfig, ConfigSchema } from './types';\n\nlet configSchema: ConfigSchema = {};\nlet config: Record<ConfigKey, AppConfig> = {};\nlet isInitialized = false;\n\nexport function getConfig(key: ConfigKey) {\n return config[key]?.value;\n}\n\nexport function getPublicConfigs() {\n if (!isInitialized) {\n throw new Error('Config is not initialized: an attempt was made to access configs before they were loaded');\n }\n\n return Object.fromEntries(\n Object.entries(config).filter(([key]) => configSchema[key]?.isPublic)\n );\n}\n\nexport function loadConfigs(configs: AppConfig[]) {\n configs.forEach(({ key, type, value }) => {\n const isSystemConfig = key.toLowerCase().startsWith('_system.');\n\n if (!isSystemConfig && !configSchema[key]) {\n // Ignore unknown configs\n return;\n }\n\n config[key] = {\n key,\n type,\n value\n };\n });\n\n isInitialized = true;\n}\n\nexport function setSchema(schema: ConfigSchema) {\n // TODO: more validation on the schema structure\n Object.entries(schema).forEach(([key, value]) => {\n const { type, isPublic } = value;\n\n if (key.toLowerCase().startsWith('_system.')) {\n throw new Error(`Config key cannot start with a reserved prefix: '_system.' (${key})`);\n }\n\n if (type === 'secret' && isPublic) {\n throw new Error(`Config ${key} with type \"secret\" cannot be public`);\n }\n });\n\n configSchema = schema;\n}\n","type AppMetadata = {\n deploymentId: string;\n appAlias: string;\n deploymentAlias: string;\n telemetry: {\n isEnabled: boolean;\n serviceName: string;\n };\n};\n\nlet appStarted = false;\nlet metadata: AppMetadata | null = null;\n\nexport function markAppStarted() {\n appStarted = true;\n}\n\nexport function isAppStarted() {\n return appStarted;\n}\n\nexport function setMetadata(_metadata: AppMetadata) {\n metadata = Object.assign({}, metadata, _metadata);\n}\n\nexport function getDeploymentId() {\n return metadata?.deploymentId;\n}\n\nexport function getAppAlias() {\n return metadata?.appAlias;\n}\n\nexport function getDeploymentAlias() {\n return metadata?.deploymentAlias;\n}\n\nexport function getTelemetryServiceName() {\n return metadata?.telemetry?.serviceName;\n}\n\nexport function isTelemetryEnabled() {\n return Boolean(metadata?.telemetry?.isEnabled);\n}\n","import { getLogger } from './metrics';\nimport { isTelemetryEnabled } from './state';\n\nexport function logInfo(message: string, args: object) {\n if (isTelemetryEnabled()) {\n getLogger().info(message, args);\n }\n}\n\nexport function logError(message: string, args: object) {\n if (isTelemetryEnabled()) {\n getLogger().error(message, args);\n }\n}\n","// import { spawn } from 'child_process';\n// import { fileURLToPath } from 'url';\n// import { dirname, join } from 'path';\nimport { logInfo, logError } from './logs';\nimport process from 'process';\n\ntype LogEntry = { log: string, timestamp: Date | null, sequenceId?: number };\ntype LogBuffer = LogEntry[];\n\nconst buffer: { stdout: LogBuffer, stderr: LogBuffer } = {\n stdout: [{ log: '', timestamp: null }],\n stderr: [{ log: '', timestamp: null }]\n}\n\nlet sequenceId = 1;\n\nexport function startLoggerProcess({ elasticCloudId, elasticApiKey }: { elasticCloudId: string, elasticApiKey: string }) {\n const originalStdoutWrite = process.stdout.write;\n const originalStderrWrite = process.stderr.write;\n\n process.stdout.write = function(chunk: string | Uint8Array, ...args: any[]) {\n addToBuffer(chunk.toString(), buffer.stdout);\n return originalStdoutWrite.call(process.stdout, chunk, ...args);\n };\n\n process.stderr.write = function(chunk: string | Uint8Array, ...args: any[]) {\n addToBuffer(chunk.toString(), buffer.stderr);\n return originalStderrWrite.call(process.stderr, chunk, ...args);\n };\n\n loopSendLogs();\n\n // const currentFilePath = fileURLToPath(import.meta.url);\n // const projectRoot = dirname(dirname(currentFilePath));\n // const loggerPath = join(projectRoot, 'bin', 'modelence-logger', 'index.js');\n // const logger = spawn(process.execPath, [loggerPath], {\n // env: {\n // NODE_ENV: process.env.NODE_ENV,\n // ELASTIC_CLOUD_ID: elasticCloudId,\n // ELASTIC_API_KEY: elasticApiKey\n // },\n // stdio: ['pipe', 'inherit', 'inherit'],\n // detached: true\n // });\n\n // const originalStdoutWrite = process.stdout.write;\n // const originalStderrWrite = process.stderr.write;\n\n // process.stdout.write = function(chunk: any, ...args: any[]) {\n // logger.stdin.write(chunk);\n // return originalStdoutWrite.apply(process.stdout, [chunk, ...args]);\n // };\n\n // process.stderr.write = function(chunk: any, ...args: any[]) {\n // logger.stdin.write(chunk);\n // return originalStderrWrite.apply(process.stderr, [chunk, ...args]);\n // };\n\n // process.on('exit', () => {\n // process.stdout.write = originalStdoutWrite;\n // process.stderr.write = originalStderrWrite;\n // });\n\n // logger.unref();\n}\n\nfunction addToBuffer(chunk: string, buffer: LogBuffer) {\n if (chunk.length === 0) {\n return;\n }\n\n const timestamp = new Date();\n\n for (let i = 0; i < chunk.length; i++) {\n const current = buffer[buffer.length - 1];\n if (!current.timestamp) {\n current.timestamp = timestamp;\n current.sequenceId = sequenceId++;\n }\n\n if (chunk[i] === '\\n') {\n buffer.push({ log: '', timestamp: null });\n } else {\n current.log += chunk[i];\n }\n }\n}\n\n\nasync function sendLogs() {\n const stdoutLogs = buffer.stdout.slice(0, -1);\n buffer.stdout = [buffer.stdout[buffer.stdout.length - 1]];\n\n const stderrLogs = buffer.stderr.slice(0, -1);\n buffer.stderr = [buffer.stderr[buffer.stderr.length - 1]];\n\n stdoutLogs.forEach(({ log, timestamp, sequenceId }: LogEntry) => {\n logInfo(log, { timestamp, source: 'console', sequenceId });\n });\n stderrLogs.forEach(({ log, timestamp, sequenceId }: LogEntry) => {\n logError(log, { timestamp, source: 'console', sequenceId });\n });\n}\n\nfunction loopSendLogs() {\n setTimeout(() => {\n sendLogs();\n loopSendLogs();\n }, 1000);\n}","import elasticApm from 'elastic-apm-node';\nimport winston from 'winston';\nimport { ElasticsearchTransport } from 'winston-elasticsearch';\n\nimport { getConfig } from '../config/server';\nimport { startLoggerProcess } from './loggerProcess';\nimport { getAppAlias, getDeploymentAlias, getDeploymentId, getTelemetryServiceName, isTelemetryEnabled } from './state';\n\nlet isInitialized = false;\nlet apm: typeof elasticApm | null = null;\nlet logger: winston.Logger | null = null;\n\nexport const initMetrics = async () => {\n if (isInitialized) {\n throw new Error('Metrics are already initialized, duplicate \"initMetrics\" call received');\n }\n\n isInitialized = true;\n\n if (isTelemetryEnabled()) {\n await initElasticApm();\n }\n};\n\nasync function initElasticApm() {\n const elasticApmEndpoint = getConfig('_system.elastic.apmEndpoint') as string;\n const elasticCloudId = getConfig('_system.elastic.cloudId') as string;\n const elasticApiKey = getConfig('_system.elastic.apiKey') as string;\n\n const appAlias = getAppAlias() ?? 'unknown';\n const deploymentAlias = getDeploymentAlias() ?? 'unknown';\n const deploymentId = getDeploymentId() ?? 'unknown';\n const serviceName = getTelemetryServiceName();\n\n apm = elasticApm.start({\n serviceName,\n apiKey: elasticApiKey,\n serverUrl: elasticApmEndpoint,\n // environment: 'dev',\n transactionSampleRate: 1.0,\n centralConfig: false,\n globalLabels: {\n modelenceEnv: 'dev',\n appEnv: 'dev',\n deploymentId,\n appAlias,\n deploymentAlias,\n },\n // logLevel: 'debug'\n });\n\n const esTransport = new ElasticsearchTransport({\n apm,\n level: 'debug',\n clientOpts: {\n cloud: {\n id: elasticCloudId,\n },\n auth: {\n apiKey: elasticApiKey\n },\n requestTimeout: 10000,\n tls: {\n rejectUnauthorized: false\n }\n },\n bufferLimit: 1000,\n silent: false,\n });\n\n esTransport.on('error', (error) => {\n console.error('Elasticsearch Transport Error:', error);\n });\n\n logger = winston.createLogger({\n level: 'debug',\n defaultMeta: {\n serviceName,\n },\n format: winston.format.combine(\n winston.format.json(),\n ),\n transports: [\n // new winston.transports.Console(), // TODO: remove, just for debugging\n esTransport\n ]\n });\n\n startLoggerProcess({\n elasticCloudId,\n elasticApiKey\n });\n}\n\nexport function startTransaction(type: 'method' | 'cron', name: string, context?: Record<string, any>) {\n if (!isTelemetryEnabled()) {\n return {\n end: () => {\n // do nothing\n }\n };\n }\n\n if (!apm) {\n throw new Error('startTransaction: Elastic APM is not initialized');\n }\n\n const transaction = apm.startTransaction(name, type);\n if (context) {\n apm.setCustomContext(context);\n }\n return transaction;\n}\n\nexport function captureError(error: Error) {\n if (!isTelemetryEnabled()) {\n console.error(error);\n return;\n }\n\n if (!apm) {\n throw new Error('captureError: Elastic APM is not initialized');\n }\n\n apm.captureError(error);\n}\n\nexport function getLogger() {\n if (!logger) {\n throw new Error('Logger is not initialized');\n }\n return logger;\n}\n","import { RoleDefinition, Role, DefaultRoles, Permission } from './types';\n\nconst roleMap = new Map<Role, RoleDefinition>();\nconst defaultRoles: DefaultRoles = {\n authenticated: null,\n unauthenticated: null,\n};\n\nexport function initRoles(roles: Record<Role, RoleDefinition>, _defaultRoles: Record<string, Role>) {\n defaultRoles.authenticated = _defaultRoles.authenticated;\n defaultRoles.unauthenticated = _defaultRoles.unauthenticated;\n\n for (const [name, definition] of Object.entries(roles)) {\n roleMap.set(name, definition);\n }\n}\n\nexport function getUnauthenticatedRoles() {\n return defaultRoles.unauthenticated ? [defaultRoles.unauthenticated] : [];\n}\n\nexport function getDefaultAuthenticatedRoles() {\n return defaultRoles.authenticated ? [defaultRoles.authenticated] : [];\n}\n\nexport function hasAccess(roles: Role[], requiredPermissions: Permission[]) {\n return requiredPermissions.every(permission => hasPermission(roles, permission));\n}\n\nexport function requireAccess(roles: Role[], requiredPermissions: Permission[]) {\n const missingPermission = requiredPermissions.find(permission => !hasPermission(roles, permission));\n\n if (missingPermission) {\n throw new Error(`Access denied - missing permission: '${missingPermission}'`);\n }\n}\n\nexport function hasPermission(roles: Role[], permission: Permission) {\n for (const role of roles) {\n const definition = roleMap.get(role);\n\n if (definition && definition.permissions.includes(permission)) {\n return true;\n }\n }\n\n return false;\n}\n","import { requireServer } from '../utils';\nimport { startTransaction } from '../app/metrics';\nimport { requireAccess } from '../auth/role';\nimport { Method, MethodDefinition, MethodType, Args, Context } from './types';\n\nconst methods: Record<string, Method<any>> = {};\n\nexport function createQuery<T extends any[]>(name: string, methodDef: MethodDefinition<T>) {\n requireServer();\n validateMethodName(name);\n return _createMethodInternal('query', name, methodDef);\n}\n\nexport function createMutation<T extends any[]>(name: string, methodDef: MethodDefinition<T>) {\n requireServer();\n validateMethodName(name);\n return _createMethodInternal('mutation', name, methodDef);\n}\n\nexport function _createSystemQuery<T extends any[]>(name: string, methodDef: MethodDefinition<T>) {\n requireServer();\n validateSystemMethodName(name);\n return _createMethodInternal('query', name, methodDef);\n}\n\nexport function _createSystemMutation<T extends any[]>(name: string, methodDef: MethodDefinition<T>) {\n requireServer();\n validateSystemMethodName(name);\n return _createMethodInternal('mutation', name, methodDef);\n}\n\nfunction validateMethodName(name: string) {\n if (name.toLowerCase().startsWith('_system.')) {\n throw new Error(`Method name cannot start with a reserved prefix: '_system.' (${name})`);\n }\n}\n\nfunction validateSystemMethodName(name: string) {\n if (!name.toLowerCase().startsWith('_system.')) {\n throw new Error(`System method name must start with a prefix: '_system.' (${name})`);\n }\n}\n\nfunction _createMethodInternal<T extends any>(type: MethodType, name: string, methodDef: MethodDefinition<T>) {\n requireServer();\n\n if (methods[name]) {\n throw new Error(`Method with name '${name}' is already defined.`);\n }\n\n const handler = typeof methodDef === 'function' ? methodDef : methodDef.handler;\n const permissions = typeof methodDef === 'function' ? [] : methodDef.permissions ?? [];\n methods[name] = { type, name, handler, permissions };\n}\n\nexport async function runMethod(name: string, args: Args, context: Context) {\n requireServer();\n\n const method = methods[name];\n if (!method) {\n throw new Error(`Method with name '${name}' is not defined.`);\n }\n const { type, handler } = method;\n\n const transaction = startTransaction('method', `method:${name}`, { type, args });\n\n let response;\n try {\n requireAccess(context.roles, method.permissions);\n response = await handler(args, context);\n } catch (error) {\n // TODO: log error and associate it with the transaction\n transaction.end('error');\n throw error;\n }\n\n transaction.end();\n\n return response;\n}\n","import { ConfigSchema } from '../config/types';\nimport { CronJobInputParams } from '../cron/types';\nimport { Store } from '../data/store';\nimport { MethodDefinition } from '../methods/types';\nimport { RouteDefinition } from '../routes/types';\n\ntype Stores = Store<any, any>[];\ntype Queries = Record<string, MethodDefinition<any>>;\ntype Mutations = Record<string, MethodDefinition<any>>;\n\nexport class Module {\n public readonly name: string;\n public readonly stores: Stores;\n public readonly queries: Queries;\n public readonly mutations: Mutations;\n public readonly routes: RouteDefinition[];\n public readonly cronJobs: Record<string, CronJobInputParams>;\n public readonly configSchema: ConfigSchema;\n\n constructor(\n name: string,\n { \n stores = [], \n queries = {}, \n mutations = {},\n routes = [],\n cronJobs = {},\n configSchema = {}\n }: { \n stores?: Stores, \n queries?: Queries, \n mutations?: Mutations,\n routes?: RouteDefinition[],\n cronJobs?: Record<string, CronJobInputParams>,\n configSchema?: ConfigSchema\n }\n ) {\n this.name = name;\n this.stores = stores;\n this.queries = queries;\n this.mutations = mutations;\n this.routes = routes;\n this.cronJobs = cronJobs;\n this.configSchema = configSchema;\n }\n}\n","import {\n AggregateOptions,\n AggregationCursor,\n Collection,\n DeleteResult,\n Document,\n IndexDescription,\n InsertOneResult,\n MongoClient,\n UpdateResult,\n Filter,\n WithId,\n OptionalUnlessRequiredId,\n FindOptions,\n UpdateFilter,\n ObjectId,\n BulkWriteResult,\n AnyBulkWriteOperation,\n InsertManyResult,\n Db,\n ClientSession,\n} from 'mongodb';\n\nimport { ModelSchema, InferDocumentType } from './types';\n\n/**\n * The Store class provides a type-safe interface for MongoDB collections with built-in schema validation and helper methods.\n * \n * @category Store\n * @typeParam TSchema - The document schema type\n * @typeParam TMethods - Custom methods that will be added to documents\n * \n * @example\n * ```ts\n * const dbTodos = new Store('todos', {\n * schema: {\n * title: schema.string(),\n * completed: schema.boolean(),\n * dueDate: schema.date().optional(),\n * userId: schema.userId(),\n * },\n * methods: {\n * isOverdue() {\n * return this.dueDate < new Date();\n * }\n * }\n * });\n * ```\n */\nexport class Store<\n TSchema extends ModelSchema,\n TMethods extends Record<string, (this: WithId<InferDocumentType<TSchema>> & TMethods, ...args: Parameters<any>) => any>\n> {\n /** @internal */\n readonly _type!: InferDocumentType<TSchema>;\n /** @internal */\n readonly _rawDoc!: WithId<this['_type']>;\n /** @internal */\n readonly _doc!: this['_rawDoc'] & TMethods;\n \n readonly Doc!: this['_doc'];\n\n private name: string;\n private readonly schema: TSchema;\n private readonly methods?: TMethods;\n private readonly indexes: IndexDescription[];\n private collection?: Collection<this['_type']>;\n private client?: MongoClient;\n\n /**\n * Creates a new Store instance\n * \n * @param name - The collection name in MongoDB\n * @param options - Store configuration\n */\n constructor(\n name: string,\n options: {\n /** Document schema using Modelence schema types */\n schema: TSchema;\n /** Custom methods to add to documents */\n methods?: TMethods;\n /** MongoDB indexes to create */\n indexes: IndexDescription[];\n }\n ) {\n this.name = name;\n this.schema = options.schema;\n this.methods = options.methods;\n this.indexes = options.indexes;\n }\n\n getName() {\n return this.name;\n }\n\n /** @internal */\n getSchema() {\n return this.schema;\n }\n\n /** @internal */\n init(client: MongoClient) {\n if (this.collection) {\n throw new Error(`Collection ${this.name} is already initialized`);\n }\n\n this.client = client;\n this.collection = this.client.db().collection<this['_type']>(this.name);\n }\n\n /** @internal */\n async createIndexes() {\n if (this.indexes.length > 0) {\n await this.requireCollection().createIndexes(this.indexes);\n }\n }\n\n private wrapDocument(document: this['_rawDoc']): this['_doc'] {\n if (!this.methods) {\n return document as unknown as this['_doc'];\n }\n\n const result = Object.create(\n null,\n Object.getOwnPropertyDescriptors({\n ...document,\n ...this.methods\n })\n );\n\n return result as this['_doc'];\n }\n\n /** @internal */\n requireCollection() {\n if (!this.collection) {\n throw new Error(`Collection ${this.name} is not provisioned`);\n }\n\n return this.collection;\n }\n\n /** @internal */\n requireClient() {\n if (!this.client) {\n throw new Error(`Database is not connected`);\n }\n\n return this.client;\n }\n\n async findOne(\n query: Filter<this['_type']>, \n options?: FindOptions\n ) {\n const document = await this.requireCollection().findOne<this['_rawDoc']>(query, options);\n return document ? this.wrapDocument(document) : null;\n }\n\n async requireOne(\n query: Filter<this['_type']>, \n options?: FindOptions,\n errorHandler?: () => Error\n ): Promise<this['_doc']> {\n \n const result = await this.findOne(query, options);\n if (!result) {\n throw errorHandler ? errorHandler() : new Error(`Record not found in ${this.name}`);\n }\n return result;\n }\n\n private find(query: Filter<this['_type']>, options?: { sort?: Document, limit?: number, skip?: number }) {\n const cursor = this.requireCollection().find(query);\n if (options?.sort) {\n cursor.sort(options.sort);\n }\n if (options?.limit) {\n cursor.limit(options.limit);\n }\n if (options?.skip) {\n cursor.skip(options.skip);\n }\n return cursor;\n }\n\n /**\n * Fetches a single document by its ID\n * \n * @param id - The ID of the document to find\n * @returns The document, or null if not found\n */\n async findById(id: string | ObjectId): Promise<this['_doc'] | null> {\n const idSelector = typeof id === 'string' ? { _id: new ObjectId(id) } : { _id: id };\n return await this.findOne(idSelector as Filter<this['_type']>);\n }\n\n /**\n * Fetches a single document by its ID, or throws an error if not found\n * \n * @param id - The ID of the document to find\n * @param errorHandler - Optional error handler to return a custom error if the document is not found\n * @returns The document\n */\n async requireById(id: string | ObjectId, errorHandler?: () => Error): Promise<this['_doc']> {\n const result = await this.findById(id);\n if (!result) {\n throw errorHandler ? errorHandler() : new Error(`Record with id ${id} not found in ${this.name}`);\n }\n return result;\n }\n\n /**\n * Fetches multiple documents, equivalent to Node.js MongoDB driver's `find` and `toArray` methods combined.\n * \n * @param query - The query to filter documents\n * @param options - Optional options\n * @returns The documents\n */\n async fetch(query: Filter<this['_type']>, options?: { sort?: Document, limit?: number, skip?: number }): Promise<this['_doc'][]> {\n const cursor = this.find(query, options)\n return (await cursor.toArray()).map(this.wrapDocument.bind(this));\n }\n\n /**\n * Inserts a single document\n * \n * @param document - The document to insert\n * @returns The result of the insert operation\n */\n async insertOne(document: OptionalUnlessRequiredId<this['_type']>): Promise<InsertOneResult> {\n return await this.requireCollection().insertOne(document);\n }\n\n /**\n * Inserts multiple documents\n * \n * @param documents - The documents to insert\n * @returns The result of the insert operation\n */\n async insertMany(documents: OptionalUnlessRequiredId<this['_type']>[]): Promise<InsertManyResult> {\n return await this.requireCollection().insertMany(documents);\n }\n\n /**\n * Updates a single document\n * \n * @param selector - The selector to find the document to update\n * @param update - The update to apply to the document\n * @returns The result of the update operation\n */\n async updateOne(selector: Filter<this['_type']> | string, update: UpdateFilter<this['_type']>): Promise<UpdateResult> {\n const modifiedSelector = typeof selector === 'string' \n ? { _id: new ObjectId(selector) } as Filter<this['_type']>\n : selector;\n return await this.requireCollection().updateOne(modifiedSelector, update);\n }\n\n /**\n * Updates a single document, or inserts it if it doesn't exist\n * \n * @param selector - The selector to find the document to update\n * @param update - The MongoDB modifier to apply to the document\n * @returns The result of the update operation\n */\n async upsertOne(selector: Filter<this['_type']>, update: UpdateFilter<this['_type']>): Promise<UpdateResult> {\n return await this.requireCollection().updateOne(selector, update, { upsert: true });\n }\n\n /**\n * Updates multiple documents\n * \n * @param selector - The selector to find the documents to update\n * @param update - The MongoDB modifier to apply to the documents\n * @returns The result of the update operation\n */\n async updateMany(\n selector: Filter<this['_type']>, \n update: UpdateFilter<this['_type']>, \n options?: { session?: ClientSession }\n ): Promise<UpdateResult> {\n return await this.requireCollection().updateMany(selector, update, options);\n }\n\n /**\n * Updates multiple documents, or inserts them if they don't exist\n * \n * @param selector - The selector to find the documents to update\n * @param update - The MongoDB modifier to apply to the documents\n * @returns The result of the update operation\n */\n async upsertMany(selector: Filter<this['_type']>, update: UpdateFilter<this['_type']>): Promise<UpdateResult> {\n return await this.requireCollection().updateMany(selector, update, { upsert: true });\n }\n\n /**\n * Deletes a single document\n * \n * @param selector - The selector to find the document to delete\n * @returns The result of the delete operation\n */\n async deleteOne(selector: Filter<this['_type']>): Promise<DeleteResult> {\n return await this.requireCollection().deleteOne(selector);\n }\n\n /**\n * Deletes multiple documents\n * \n * @param selector - The selector to find the documents to delete\n * @returns The result of the delete operation\n */\n async deleteMany(selector: Filter<this['_type']>): Promise<DeleteResult> {\n return await this.requireCollection().deleteMany(selector);\n }\n\n /**\n * Aggregates documents using MongoDB's aggregation framework\n * \n * @param pipeline - The aggregation pipeline\n * @param options - Optional options\n * @returns The aggregation cursor\n */\n aggregate(pipeline: Document[], options?: AggregateOptions): AggregationCursor<Document> {\n return this.requireCollection().aggregate(pipeline, options);\n }\n\n /**\n * Performs a bulk write operation on the collection\n * \n * @param operations - The operations to perform\n * @returns The result of the bulk write operation\n */\n bulkWrite(operations: AnyBulkWriteOperation<this['_type']>[]): Promise<BulkWriteResult> {\n return this.requireCollection().bulkWrite(operations);\n }\n\n /**\n * Returns the raw MongoDB database instance for advanced operations\n * @returns The MongoDB database instance\n * @throws Error if the store is not provisioned\n */\n getDatabase() {\n return this.requireClient().db();\n }\n\n /**\n * Returns the raw MongoDB collection instance for advanced operations\n * @returns The MongoDB collection instance\n * @throws Error if the store is not provisioned\n */\n rawCollection() {\n return this.requireCollection();\n }\n\n /**\n * Renames an existing collection to this store's name, used for migrations\n * @param oldName - The previous name of the collection\n * @throws Error if the old collection doesn't exist or if this store's collection already exists\n */\n async renameFrom(oldName: string, options?: { session?: ClientSession }) {\n const db = this.getDatabase();\n\n if (!this.collection || !db) {\n throw new Error(`Store ${this.name} is not provisioned`);\n }\n\n const oldCollections = await db.listCollections({ name: oldName }).toArray();\n if (oldCollections.length === 0) {\n throw new Error(`Collection ${oldName} not found`);\n }\n\n const newCollections = await db.listCollections({ name: this.name }).toArray();\n if (newCollections.length > 0) {\n throw new Error(`Collection ${this.name} already exists`);\n }\n\n const existingCollection = db.collection<this['_type']>(oldName);\n\n await existingCollection.rename(this.name, options);\n }\n}\n","import { ObjectId } from 'mongodb';\nimport { z } from 'zod';\nimport { Store } from './store';\n\ntype ObjectTypeDefinition = {\n [key: string]: SchemaTypeDefinition;\n};\n\ntype SingularSchemaTypeDefinition = z.ZodType | ObjectTypeDefinition; // ReturnType<typeof schema[keyof typeof schema]>;\n\ntype SchemaTypeDefinition = SingularSchemaTypeDefinition | Array<SingularSchemaTypeDefinition>;\n\nexport type ModelSchema = {\n [key: string]: SchemaTypeDefinition;\n};\n\nconst schemaString: typeof z.string = z.string.bind(z);\n\nconst schemaNumber: typeof z.number = z.number.bind(z);\n\nconst schemaDate: typeof z.date = z.date.bind(z);\n\nconst schemaBoolean: typeof z.boolean = z.boolean.bind(z);\n\nconst schemaArray: typeof z.array = z.array.bind(z);\n\nconst schemaObject: typeof z.object = z.object.bind(z);\n\nconst schemaEnum: typeof z.enum = z.enum.bind(z);\n\nexport const schema = {\n string: schemaString,\n number: schemaNumber,\n date: schemaDate,\n boolean: schemaBoolean,\n array: schemaArray,\n object: schemaObject,\n enum: schemaEnum,\n objectId(): z.ZodType<ObjectId> {\n return z.instanceof(ObjectId);\n },\n userId(): z.ZodType<ObjectId> {\n return z.instanceof(ObjectId);\n },\n ref(collection: string | Store<any, any>): z.ZodType<ObjectId> {\n return z.instanceof(ObjectId);\n },\n union: z.union.bind(z),\n infer<T extends SchemaTypeDefinition>(schema: T): InferDocumentType<T> {\n return {} as InferDocumentType<T>;\n }\n} as const;\n\nexport type InferDocumentType<T extends SchemaTypeDefinition> = {\n [K in keyof T as T[K] extends z.ZodOptional<any> ? K : never]?: (T[K] extends z.ZodType ? z.infer<T[K]> : never);\n} & {\n [K in keyof T as T[K] extends z.ZodOptional<any> ? never : K]:\n T[K] extends z.ZodType ? z.infer<T[K]> :\n T[K] extends Array<infer ElementType extends SchemaTypeDefinition> ? Array<InferDocumentType<ElementType>> :\n T[K] extends ObjectTypeDefinition ? InferDocumentType<T[K]> :\n never;\n};\n\nexport namespace schema {\n export type infer<T extends SchemaTypeDefinition> = InferDocumentType<T>;\n}\n","import { randomBytes } from 'crypto';\nimport { time } from '../time';\nimport { Session } from './types';\nimport { getPublicConfigs } from '../config/server';\nimport { Module } from '../app/module';\nimport { Store } from '../data/store';\nimport { schema } from '../data/types';\nimport { ObjectId } from 'mongodb';\n\nexport const sessionsCollection = new Store('_modelenceSessions', {\n schema: {\n authToken: schema.string(),\n createdAt: schema.date(),\n expiresAt: schema.date(),\n userId: schema.userId().nullable(),\n },\n indexes: [\n { key: { authToken: 1 }, unique: true },\n { key: { expiresAt: 1 }},\n ]\n // TODO: add TTL index on expiresAt\n});\n\nexport async function obtainSession(authToken: string | null): Promise<Session> {\n const existingSession = authToken ? await sessionsCollection.findOne({ authToken }) : null;\n\n if (existingSession) {\n return {\n authToken: String(existingSession.authToken),\n expiresAt: new Date(existingSession.expiresAt),\n userId: existingSession.userId ?? null,\n }\n }\n\n return await createSession();\n}\n\nexport async function setSessionUser(authToken: string, userId: ObjectId) {\n await sessionsCollection.updateOne({ authToken }, {\n $set: { userId }\n });\n}\n\nexport async function clearSessionUser(authToken: string) {\n await sessionsCollection.updateOne({ authToken }, {\n $set: { userId: null }\n });\n}\n\nasync function createSession(): Promise<Session> {\n // TODO: add rate-limiting and captcha handling\n\n const authToken = randomBytes(32).toString('base64url');\n const now = Date.now();\n const expiresAt = new Date(now + time.days(7));\n\n await sessionsCollection.insertOne({\n authToken,\n createdAt: new Date(now),\n expiresAt,\n userId: null,\n });\n\n return {\n authToken,\n expiresAt,\n userId: null,\n };\n}\n\nasync function processSessionHeartbeat(session: Session) {\n const now = Date.now();\n const newExpiresAt = new Date(now + time.days(7));\n\n await sessionsCollection.updateOne({ authToken: session.authToken }, {\n $set: {\n lastActiveDate: new Date(now),\n expiresAt: newExpiresAt\n }\n });\n}\n\nexport default new Module('_system.session', {\n stores: [sessionsCollection],\n mutations: {\n init: async function(args, { session, user }) {\n // TODO: mark or track app load somewhere\n \n return {\n session,\n user,\n configs: getPublicConfigs(),\n };\n },\n heartbeat: async function(args, { session }) {\n // Session might not exist if there is no database/authentication setup\n if (session) {\n await processSessionHeartbeat(session);\n }\n }\n },\n});\n","import { z } from 'zod';\nimport bcrypt from 'bcrypt';\n\nimport { Args, Context } from '../methods/types';\nimport { usersCollection } from './user';\n\nexport async function handleSignupWithPassword(args: Args, { user }: Context) {\n const email = z.string().email().parse(args.email);\n const password = z.string()\n .min(8, { message: 'Password must contain at least 8 characters' })\n .parse(args.password);\n\n // TODO: block disposable email providers\n // TODO: captcha check\n // TODO: rate limiting\n\n if (user) {\n // TODO: handle cases where a user is already logged in\n }\n\n const existingUser = await usersCollection.findOne(\n { 'emails.address': email },\n { collation: { locale: 'en', strength: 2 } }\n );\n\n if (existingUser) {\n const existingEmail = existingUser.emails?.find(e => e.address === email);\n throw new Error(`User with email already exists: ${existingEmail?.address}`);\n }\n\n // Hash password with bcrypt (salt is automatically generated)\n const hash = await bcrypt.hash(password, 10);\n\n const result = await usersCollection.insertOne({\n handle: email,\n emails: [{\n address: email,\n verified: false,\n }],\n createdAt: new Date(),\n authMethods: {\n password: {\n hash,\n }\n }\n });\n\n // TODO: send verification email\n\n return result.insertedId;\n}\n\n","import { z } from 'zod';\nimport bcrypt from 'bcrypt';\n\nimport { Args, Context } from '../methods/types';\nimport { usersCollection } from './user';\nimport { clearSessionUser, setSessionUser } from './session';\n\nexport async function handleLoginWithPassword(args: Args, { user, session }: Context) {\n if (!session) {\n throw new Error('Session is not initialized');\n }\n\n const email = z.string().email().parse(args.email);\n const password = z.string().parse(args.password);\n\n // TODO: add rate limiting by email (and perhaps IP address overall)\n\n if (user) {\n // TODO: handle cases where a user is already logged in\n }\n\n const userDoc = await usersCollection.findOne(\n { 'emails.address': email },\n { collation: { locale: 'en', strength: 2 } }\n );\n\n const passwordHash = userDoc?.authMethods?.password?.hash;\n if (!userDoc || !passwordHash) {\n throw incorrectCredentialsError();\n }\n\n const isValidPassword = await bcrypt.compare(password, passwordHash);\n if (!isValidPassword) {\n throw incorrectCredentialsError();\n }\n\n await setSessionUser(session.authToken, userDoc._id);\n\n return {\n user: {\n id: userDoc._id,\n handle: userDoc.handle,\n }\n }\n}\n\nexport async function handleLogout(args: Args, { user, session }: Context) {\n if (!session) {\n throw new Error('Session is not initialized');\n }\n\n await clearSessionUser(session.authToken);\n}\n\n/*\n It is important to return the same exact error both in case the email\n or password is incorrect so that the client cannot tell the difference,\n otherwise it would allow for an enumeration attack.\n*/\nfunction incorrectCredentialsError() {\n return new Error('Incorrect email/password combination');\n}\n","import { randomBytes } from 'crypto';\n\nimport { Module } from '../app/module';\nimport { Store } from '../data/store';\nimport { schema } from '../data/types';\nimport { handleSignupWithPassword } from './signup';\nimport { handleLoginWithPassword, handleLogout } from './login';\n\nexport const usersCollection = new Store('_modelenceUsers', {\n schema: {\n handle: schema.string(),\n emails: schema.array(schema.object({\n address: schema.string(),\n verified: schema.boolean(),\n })).optional(),\n createdAt: schema.date(),\n authMethods: schema.object({\n password: schema.object({\n hash: schema.string(),\n }).optional(),\n google: schema.object({\n id: schema.string(),\n }).optional(),\n }),\n },\n indexes: [\n {\n key: { handle: 1 },\n unique: true,\n collation: { locale: 'en', strength: 2 } // Case-insensitive\n },\n ]\n});\n\nasync function createGuestUser() {\n // TODO: add rate-limiting and captcha handling\n\n const guestId = randomBytes(9)\n .toString('base64')\n .replace(/[+/]/g, c => c === '+' ? 'a' : 'b');\n\n const handle = `guest_${guestId}`;\n // TODO: re-try on handle collision\n\n const result = await usersCollection.insertOne({\n handle,\n createdAt: new Date(),\n authMethods: {},\n });\n\n return result.insertedId;\n}\n\nexport default new Module('_system.user', {\n stores: [usersCollection],\n mutations: {\n signupWithPassword: handleSignupWithPassword,\n loginWithPassword: handleLoginWithPassword,\n logout: handleLogout,\n }\n});\n\n","import { ObjectId } from 'mongodb';\n\nimport { obtainSession } from './session';\nimport { usersCollection } from './user';\nimport { getDefaultAuthenticatedRoles, getUnauthenticatedRoles } from './role';\nimport { Role, Session, UserInfo } from './types';\n\nexport async function authenticate(authToken: string | null): Promise<{ session: Session, user: UserInfo | null, roles: Role[] }> {\n const session = await obtainSession(authToken);\n\n const userDoc = session.userId ? await usersCollection.findOne({ _id: new ObjectId(session.userId) }) : null;\n const user = userDoc ? {\n id: userDoc._id.toString(),\n handle: userDoc.handle,\n } : null;\n\n const roles = user ? getDefaultAuthenticatedRoles() : getUnauthenticatedRoles();\n\n return {\n user,\n session,\n roles,\n };\n}\n","import { Request, Response } from 'express';\nimport { RouteHandler, ExpressHandler } from './types';\nimport { AuthError, ValidationError } from '../error';\n\n// TODO: Use cookies for authentication and automatically add session/user to context if accessing from browser\n\nexport function createRouteHandler(handler: RouteHandler): ExpressHandler {\n return async (req: Request, res: Response) => {\n try {\n const response = await handler({\n query: req.query as Record<string, string>,\n body: req.body,\n params: req.params,\n headers: req.headers as Record<string, string>,\n cookies: req.cookies,\n req,\n });\n\n res.status(response.status || 200);\n\n if (response.headers) {\n Object.entries(response.headers).forEach(([key, value]) => {\n res.setHeader(key, value);\n });\n }\n\n res.send(response.data);\n } catch (error) {\n if (error instanceof AuthError || error instanceof ValidationError) {\n res.status(error.status).send(error.message);\n } else {\n console.error(`Error in route handler: ${req.path}`);\n console.error(error);\n res.status(500).send(String(error));\n }\n }\n };\n}\n","import { MongoClient, ServerApiVersion } from 'mongodb';\nimport { getConfig } from '../config/server';\n\nlet client: MongoClient | null = null;\n\nexport async function connect() {\n if (client) return client;\n\n const mongodbUri = getMongodbUri();\n if (!mongodbUri) {\n throw new Error('MongoDB URI is not set');\n }\n\n client = new MongoClient(mongodbUri, {\n maxPoolSize: 20\n });\n\n try {\n // Connect the client to the server\n await client.connect();\n // Send a ping to confirm a successful connection\n await client.db(\"admin\").command({ ping: 1 });\n console.log(\"Pinged your deployment. You successfully connected to MongoDB!\");\n return client;\n } catch (err) {\n console.error(err);\n client = null;\n throw err;\n }\n}\n\nexport function getMongodbUri() {\n const value = getConfig('_system.mongodbUri');\n return value ? String(value) : undefined;\n}\n\nexport function getClient() {\n return client;\n}\n\n// export async function closeConnection() {\n// if (client) {\n// await client.close();\n// client = null;\n// }\n// }\n","import http from 'http';\nimport express, { Request, Response } from 'express';\nimport z from 'zod';\nimport { runMethod } from '../methods';\nimport { getResponseTypeMap } from '../methods/serialize';\nimport { authenticate } from '../auth';\nimport { logInfo } from './logs';\nimport { Module } from './module';\nimport { HttpMethod } from '../routes/types';\nimport { createRouteHandler } from '../routes/handler';\nimport { getUnauthenticatedRoles } from '../auth/role';\nimport { getMongodbUri } from 'db/client';\nimport { AppServer } from '../packages/types';\n\nfunction registerModuleRoutes(app: express.Application, modules: Module[]) {\n for (const module of modules) {\n for (const route of module.routes) {\n const { path, handlers } = route;\n\n Object.entries(handlers).forEach(([method, handler]) => {\n app[method as HttpMethod](path, createRouteHandler(handler));\n });\n }\n }\n}\n\nexport async function startServer(server: AppServer, { combinedModules }: { combinedModules: Module[] }) {\n const app = express();\n\n app.use(express.json());\n app.use(express.urlencoded({ extended: true }));\n\n app.post('/api/_internal/method/:methodName(*)', async (req: Request, res: Response) => {\n const { methodName } = req.params;\n const context = await getCallContext(req);\n\n try {\n const result = await runMethod(methodName, req.body.args, context);\n res.json({\n data: result,\n typeMap: getResponseTypeMap(result),\n });\n } catch (error) {\n // TODO: introduce error codes and handle them differently\n // TODO: support multiple errors\n\n // TODO: add an option to silence these error console logs, especially when Elastic logs are configured\n console.error(`Error in method ${methodName}:`, error);\n\n // res.status(500).json({ error: 'Internal server error' });\n\n if (error instanceof Error && error?.constructor?.name === 'ZodError' && 'errors' in error) {\n const zodError = error as z.ZodError;\n const flattened = zodError.flatten();\n const fieldMessages = Object.entries(flattened.fieldErrors)\n .map(([key, errors]) => `${key}: ${(errors ?? []).join(', ')}`)\n .join('; ');\n const formMessages = flattened.formErrors.join('; ');\n const allMessages = [fieldMessages, formMessages].filter(Boolean).join('; ');\n res.status(400).send(allMessages);\n } else {\n res.status(500).send(error instanceof Error ? error.message : String(error));\n }\n }\n });\n\n registerModuleRoutes(app, combinedModules);\n\n await server.init();\n\n if (server.middlewares) {\n app.use(server.middlewares());\n }\n\n app.all('*', (req: Request, res: Response) => {\n return server.handler(req, res);\n });\n\n process.on('unhandledRejection', (reason, promise) => {\n console.error('Unhandled Promise Rejection:');\n console.error(reason instanceof Error ? reason.stack : reason);\n console.error('Promise:', promise);\n });\n \n // Global uncaught exceptions\n process.on('uncaughtException', (error) => {\n console.error('Uncaught Exception:');\n console.error(error.stack); // This gives you the full stack trace\n console.trace('Full application stack:'); // Additional context\n });\n\n const httpServer = http.createServer(app);\n const port = process.env.PORT || 3000;\n httpServer.listen(port, () => {\n logInfo(`Application started`, { source: 'app' });\n console.log(`Application started on port ${port}`);\n });\n}\n\nasync function getCallContext(req: Request) {\n const authToken = z.string().nullish().transform(val => val ?? null).parse(req.body.authToken);\n\n const clientInfo = z.object({\n screenWidth: z.number(),\n screenHeight: z.number(),\n windowWidth: z.number(),\n windowHeight: z.number(),\n pixelRatio: z.number(),\n orientation: z.string().nullable(),\n }).parse(req.body.clientInfo);\n\n const connectionInfo = {\n ip: req.ip || req.socket.remoteAddress, // TODO: handle cases with Proxy\n userAgent: req.get('user-agent'),\n acceptLanguage: req.get('accept-language'),\n referrer: req.get('referrer'),\n };\n\n const hasDatabase = Boolean(getMongodbUri());\n if (hasDatabase) {\n const { session, user, roles } = await authenticate(authToken);\n return {\n clientInfo,\n connectionInfo,\n session,\n user,\n roles,\n };\n }\n\n return {\n clientInfo,\n connectionInfo,\n session: null,\n user: null,\n roles: getUnauthenticatedRoles(),\n };\n}\n\n// import passport from 'passport';\n// import session from 'express-session';\n// import { Strategy as GoogleStrategy } from 'passport-google-oauth20';\n\n// Session middleware\n// app.use(session({\n// secret: process.env.SESSION_SECRET || 'default_secret',\n// resave: false,\n// saveUninitialized: false\n// }));\n\n// Passport middleware\n// app.use(passport.initialize());\n// app.use(passport.session());\n\n// // Passport Google strategy setup\n// passport.use(new GoogleStrategy({\n// clientID: process.env.GOOGLE_CLIENT_ID || '',\n// clientSecret: process.env.GOOGLE_CLIENT_SECRET || '',\n// callbackURL: \"/auth/google/callback\"\n// },\n// function(accessToken: string, refreshToken: string, profile: any, cb: (error: any, user?: any) => void) {\n// // Here you would typically find or create a user in your database\n// // For now, we'll just pass the profile info\n// return cb(null, profile);\n// }));\n\n// passport.serializeUser((user: Express.User, done: (err: any, id?: unknown) => void) => {\n// done(null, user);\n// });\n\n// passport.deserializeUser((user: Express.User, done: (err: any, user?: Express.User | false | null) => void) => {\n// done(null, user);\n// });\n\n// // Google Auth routes\n// app.get('/auth/google', passport.authenticate('google', { scope: ['profile', 'email'] }));\n\n// app.get('/auth/google/callback', passport.authenticate('google', { failureRedirect: '/login' }),\n// function(req: Request, res: Response) {\n// // Successful authentication, redirect home.\n// res.redirect('/');\n// }\n// );\n\n// // Logout route\n// app.get('/logout', (req: Request, res: Response, next: NextFunction) => {\n// req.logout(function(err) {\n// if (err) { return next(err); }\n// res.redirect('/');\n// });\n// });\n\n// // Middleware to check if user is authenticated\n// function ensureAuthenticated(req: Request, res: Response, next: NextFunction) {\n// if (req.isAuthenticated()) {\n// return next();\n// }\n// res.redirect('/login');\n// }\n\n\n// app.get('/bundle.js', function (req: Request, res: Response) {\n// res.sendFile('.modelence/client/bundle.js', { root: '.' });\n// });\n\n\n// // Update your catch-all route\n// app.get('/', function (req: Request, res: Response) {\n// res.sendFile(path.join('client', 'index.html'), { root: path.join(__dirname, '..') });\n// });\n\n\n","import os from 'os';\nimport { ConfigSchema } from '../config/types';\nimport { CronJobMetadata } from '../cron/types';\nimport { Store } from '../data/store';\n\nexport async function connectCloudBackend(\n { configSchema, cronJobsMetadata, stores }: { \n configSchema?: ConfigSchema, \n cronJobsMetadata?: CronJobMetadata[], \n stores: Store<any, any>[] \n }\n) {\n const containerId = process.env.MODELENCE_CONTAINER_ID;\n if (!containerId) {\n throw new Error('Unable to connect to Modelence Cloud: MODELENCE_CONTAINER_ID is not set');\n }\n\n try {\n const dataModels = Object.values(stores).map(store => {\n return {\n name: store.getName(),\n schema: store.getSchema(),\n collections: [store.getName()]\n };\n });\n\n const data = await callApi('/api/connect', 'POST', {\n hostname: os.hostname(),\n containerId,\n dataModels,\n configSchema,\n cronJobsMetadata,\n });\n\n console.log('Successfully connected to Modelence Cloud');\n\n return data;\n } catch (error) {\n console.error('Unable to connect to Modelence Cloud:', error);\n throw error;\n }\n}\n\nexport async function fetchConfigs() {\n const data = await callApi('/api/configs', 'GET');\n return data;\n}\n\nexport async function syncStatus() {\n const data = await callApi('/api/sync', 'POST', {\n containerId: process.env.MODELENCE_CONTAINER_ID\n });\n return data;\n}\n\nasync function callApi(endpoint: string, method: string, payload?: object) {\n const { MODELENCE_SERVICE_ENDPOINT, MODELENCE_SERVICE_TOKEN } = process.env;\n\n if (!MODELENCE_SERVICE_ENDPOINT) {\n throw new Error('Unable to connect to Modelence Cloud: MODELENCE_SERVICE_ENDPOINT is not set');\n }\n\n const response = await fetch(`${MODELENCE_SERVICE_ENDPOINT}${endpoint}`, {\n method,\n headers: {\n 'Authorization': `Bearer ${MODELENCE_SERVICE_TOKEN}`,\n ...(payload ? { 'Content-Type': 'application/json' } : {})\n },\n body: payload ? JSON.stringify(payload) : undefined\n });\n\n if (!response.ok) {\n const data = await response.text();\n try {\n const json = JSON.parse(data);\n throw new Error(`Unable to connect to Modelence Cloud: HTTP status: ${response.status}, ${json?.error}`);\n } catch (error) {\n throw new Error(`Unable to connect to Modelence Cloud: HTTP status: ${response.status}, ${data}`);\n }\n }\n\n return await response.json();\n}\n","import { time } from '../time';\nimport { fetchConfigs, syncStatus } from '../app/backendApi';\nimport { loadConfigs } from './server';\n\nlet isSyncing = false;\n\nconst SYNC_INTERVAL = time.seconds(10);\n\nexport function startConfigSync() {\n setInterval(async() => {\n if (isSyncing) {\n return;\n }\n \n isSyncing = true;\n\n // TODO: move this sync outside of config\n try {\n await syncStatus();\n } catch (error) {\n console.error('Error syncing status', error);\n }\n \n try {\n await syncConfig();\n } catch (error) {\n console.error('Error syncing config', error);\n }\n \n isSyncing = false; \n }, SYNC_INTERVAL);\n}\n\nasync function syncConfig() {\n const { configs } = await fetchConfigs();\n loadConfigs(configs);\n}\n","import { Store } from '../data/store';\nimport { schema } from '../data/types';\n\nexport const dbMigrations = new Store('_modelenceMigrations', {\n schema: {\n version: schema.number(),\n appliedAt: schema.date(),\n },\n indexes: [\n { key: { version: 1 }, unique: true },\n ],\n});\n","import { Module } from '../app/module';\nimport { dbMigrations } from './db';\n\nexport type MigrationScript = {\n version: number,\n description: string,\n handler: () => Promise<void>,\n}\n\nexport async function runMigrations(migrations: MigrationScript[]) {\n if (migrations.length === 0) {\n return;\n }\n\n const versions = migrations.map(({ version }) => version);\n\n const existingVersions = await dbMigrations.fetch({ version: { $in: versions } });\n const existingVersionSet = new Set(existingVersions.map(({ version }) => version));\n const pendingMigrations = migrations.filter(({ version }) => !existingVersionSet.has(version));\n\n if (pendingMigrations.length === 0) {\n return;\n }\n\n console.log(`Running migrations (${pendingMigrations.length})...`);\n for (const { version, description, handler } of pendingMigrations) {\n console.log(`Running migration v${version}: ${description}`);\n // TODO: adjust to handle multiple containers and race conditions\n await dbMigrations.insertOne({ version, appliedAt: new Date() });\n await handler();\n console.log(`Migration v${version} complete`);\n }\n}\n\nexport default new Module('_system.migration', {\n stores: [dbMigrations]\n});\n","// import { Worker, isMainThread, parentPort, workerData } from 'worker_threads';\n\nimport { time } from '../time';\nimport { CronJob, CronJobInputParams } from './types';\nimport { startTransaction, captureError } from '../app/metrics';\nimport { Module } from '../app/module';\nimport { schema } from '../data/types';\nimport { Store } from '../data/store';\n\nconst DEFAULT_TIMEOUT = time.minutes(1);\n\n/**\n * Each cron instance acquires locks for the jobs it runs. If there was a pre-existing lock,\n * the lock is transferred to the new instance, but there is a delay to give the previous instance\n * a chance to see the new lock and gracefully finish remaining jobs.\n */\nconst LOCK_TRANSFER_DELAY = time.seconds(10);\n\nconst cronJobs: Record<string, CronJob> = {};\nlet cronJobsInterval: NodeJS.Timeout;\n\nconst cronJobsCollection = new Store('_modelenceCronJobs', {\n schema: {\n alias: schema.string(),\n lastStartDate: schema.date().optional(),\n lock: schema.object({\n containerId: schema.string(),\n acquireDate: schema.date(),\n }).optional(),\n },\n indexes: [\n { key: { alias: 1 }, unique: true, background: true },\n ]\n});\n\n// TODO: allow changing interval and timeout with cron jobconfigs\nexport function defineCronJob(\n alias: CronJob['alias'],\n { description = '', interval, timeout = DEFAULT_TIMEOUT, handler }: CronJobInputParams,\n) {\n if (cronJobs[alias]) {\n throw new Error(`Duplicate cron job declaration: '${alias}' already exists`);\n }\n\n if (cronJobsInterval) {\n throw new Error(`Unable to add a cron job - cron jobs have already been initialized: [${alias}]`);\n }\n\n if (interval < time.seconds(5)) {\n throw new Error(`Cron job interval should not be less than 5 second [${alias}]`);\n }\n\n if (timeout > time.days(1)) {\n throw new Error(`Cron job timeout should not be longer than 1 day [${alias}]`);\n }\n\n cronJobs[alias] = {\n alias,\n params: { description, interval, timeout },\n handler,\n state: {\n isRunning: false,\n }\n };\n}\n\nexport async function startCronJobs() {\n if (cronJobsInterval) {\n throw new Error('Cron jobs already started');\n }\n\n const aliasList = Object.keys(cronJobs);\n if (aliasList.length > 0) {\n const aliasSelector = { alias: { $in: aliasList } };\n\n const existingLockedRecord = await cronJobsCollection.findOne({\n ...aliasSelector,\n 'lock.containerId': { $exists: true }\n });\n\n // TODO: handle different application versions with different parameters for the same job alias\n\n await cronJobsCollection.upsertMany(\n aliasSelector,\n {\n $set: {\n lock: {\n containerId: process.env.MODELENCE_CONTAINER_ID || 'unknown',\n acquireDate: new Date(),\n }\n }\n }\n );\n\n if (existingLockedRecord) {\n await sleep(LOCK_TRANSFER_DELAY);\n }\n\n const cronJobRecords = await cronJobsCollection.fetch(aliasSelector);\n const now = Date.now();\n cronJobRecords.forEach((record) => {\n const job = cronJobs[record.alias];\n if (!job) {\n return;\n }\n job.state.scheduledRunTs = record.lastStartDate ? record.lastStartDate.getTime() + job.params.interval : now;\n });\n Object.values(cronJobs).forEach((job) => {\n if (!job.state.scheduledRunTs) {\n job.state.scheduledRunTs = now;\n }\n });\n\n cronJobsInterval = setInterval(tickCronJobs, time.seconds(1));\n }\n}\n\nfunction sleep(ms: number) {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n\nasync function tickCronJobs() {\n // TODO: periodically check if the locks are still there\n\n const now = Date.now();\n Object.values(cronJobs).forEach(async (job) => {\n const { params, state } = job;\n if (state.isRunning) {\n if (state.startTs && state.startTs + params.timeout < now) {\n // TODO: log cron trace timeout error\n state.isRunning = false;\n }\n return;\n }\n\n // TODO: limit the number of jobs running concurrently\n\n if (state.scheduledRunTs && state.scheduledRunTs <= now) {\n await startCronJob(job);\n }\n });\n}\n\nasync function startCronJob(job: CronJob) {\n const { alias, params, handler, state } = job;\n state.isRunning = true;\n state.startTs = Date.now();\n const transaction = startTransaction('cron', `cron:${alias}`);\n // TODO: enforce job timeout\n handler().then(() => {\n handleCronJobCompletion(state, params);\n transaction.end('success');\n }).catch((err) => {\n handleCronJobCompletion(state, params);\n captureError(err);\n transaction.end('error');\n console.error(`Error in cron job '${alias}':`, err);\n });\n await cronJobsCollection.updateOne({ alias }, {\n $set: {\n lastStartDate: new Date(state.startTs),\n }\n });\n}\n\nfunction handleCronJobCompletion(state: CronJob['state'], params: CronJob['params']) {\n state.scheduledRunTs = state.startTs ? state.startTs + params.interval : Date.now();\n state.startTs = undefined;\n state.isRunning = false;\n}\n\nexport function getCronJobsMetadata() {\n return Object.values(cronJobs).map(({ alias, params }) => ({\n alias,\n description: params.description,\n interval: params.interval,\n timeout: params.timeout,\n }));\n}\n\nexport default new Module('_system.cron', {\n stores: [cronJobsCollection],\n});\n\n// const runCronJob = () => {\n// const worker = new Worker(filePath, {\n// workerData: {},\n// execArgv: ['--loader', 'tsx'],\n// });\n\n// const timeoutId = setTimeout(() => {\n// worker.terminate();\n// console.error(`Cron job '${alias}' timed out after ${timeout}ms`);\n// }, timeout);\n\n// worker.on('message', (message) => {\n// if (message === 'done') {\n// clearTimeout(timeoutId);\n// worker.terminate();\n// }\n// });\n\n// worker.on('error', (err) => {\n// clearTimeout(timeoutId);\n// console.error(`Error in cron job '${alias}':`, err);\n// });\n\n// worker.on('exit', (code) => {\n// console.error(`Cron job '${alias}' exited with code ${code}`);\n// setTimeout(runCronJob, interval);\n// });\n// };\n","import { createServer, defineConfig, ViteDevServer } from 'vite';\nimport reactPlugin from '@vitejs/plugin-react';\nimport path from 'path';\nimport fs from 'fs';\nimport express from 'express';\nimport { AppServer, ExpressMiddleware } from './packages/types';\n\nclass ViteServer implements AppServer {\n private viteServer?: ViteDevServer;\n\n async init() {\n if (this.isDev()) {\n console.log('Starting Vite dev server...');\n this.viteServer = await createServer({\n ...defineConfig(await getConfig()),\n server: {\n middlewareMode: true,\n },\n root: './src/client'\n }); \n }\n }\n\n middlewares(): ExpressMiddleware[] {\n if (this.isDev()) {\n return (this.viteServer?.middlewares ?? []) as ExpressMiddleware[];\n }\n \n return [express.static('./client')];\n }\n\n handler(req: express.Request, res: express.Response) {\n if (this.isDev()) {\n try {\n res.sendFile('index.html', { root: './src/client' });\n } catch (e) {\n console.error('Error serving index.html:', e);\n res.status(500).send('Internal Server Error');\n }\n } else {\n res.sendFile('index.html', { root: './client' });\n }\n }\n\n private isDev() {\n return process.env.NODE_ENV !== 'production';\n }\n}\n\nasync function getConfig() {\n const appDir = process.cwd();\n\n const eslintConfigFile = [\n '.eslintrc.js',\n '.eslintrc.json',\n '.eslintrc',\n 'eslint.config.js',\n '.eslintrc.yml',\n '.eslintrc.yaml'\n ].find(file => fs.existsSync(path.join(appDir, file)));\n\n const plugins = [reactPlugin(), modelenceAssetPlugin()];\n\n if (eslintConfigFile) {\n const eslintPlugin = (await import('vite-plugin-eslint')).default;\n plugins.push(\n eslintPlugin({\n failOnError: false,\n include: ['src/**/*.js', 'src/**/*.jsx', 'src/**/*.ts', 'src/**/*.tsx'],\n cwd: appDir,\n overrideConfigFile: path.resolve(appDir, eslintConfigFile)\n })\n );\n }\n\n return {\n plugins,\n root: appDir,\n build: {\n outDir: '.modelence/build/client',\n emptyOutDir: true\n },\n server: {\n proxy: {\n '/api': 'http://localhost:4000'\n },\n headers: {\n 'Cache-Control': 'no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0',\n 'Pragma': 'no-cache',\n 'Expires': '0'\n },\n hmr: {\n port: 0,\n },\n },\n resolve: {\n alias: {\n '@': path.resolve(appDir, 'src')\n }\n\n }\n };\n}\n\nfunction modelenceAssetPlugin() {\n return {\n name: 'modelence-asset-handler',\n async transform(code: string, id: string) {\n const assetRegex = /\\.(png|jpe?g|gif|svg|mpwebm|ogg|mp3|wav|flac|aac)$/;\n if (assetRegex.test(id)) {\n if (process.env.NODE_ENV === 'development') {\n return code;\n }\n // TODO: Upload to CDN\n // return `export default \"${cdnUrl}\"`;\n return code;\n }\n },\n async generateBundle(options: any, bundle: any) {\n // Handle asset URLs in the final bundle\n }\n };\n}\n\nexport const viteServer = new ViteServer();\n","import dotenv from 'dotenv';\n\nimport { startServer } from './server';\nimport { connect, getClient, getMongodbUri } from '../db/client';\nimport { loadConfigs, setSchema } from '../config/server';\nimport { startConfigSync } from '../config/sync';\nimport { connectCloudBackend } from './backendApi';\nimport { initMetrics } from './metrics';\nimport { markAppStarted, setMetadata } from './state';\nimport userModule from '../auth/user';\nimport sessionModule from '../auth/session';\nimport { runMigrations, MigrationScript, default as migrationModule } from '../migration';\nimport { initRoles } from '../auth/role';\nimport { startCronJobs, getCronJobsMetadata, defineCronJob } from '../cron/jobs';\nimport cronModule from '../cron/jobs';\nimport { Module } from './module';\nimport { createQuery, createMutation, _createSystemQuery, _createSystemMutation } from '../methods';\nimport { Store } from '../data/store';\nimport { AppConfig, ConfigSchema } from '../config/types';\nimport { RoleDefinition } from '../auth/types';\nimport { AppServer } from '../packages/types';\nimport { viteServer } from '../viteServer';\n\ntype AppOptions = {\n modules?: Module[],\n server?: AppServer,\n roles?: Record<string, RoleDefinition>,\n defaultRoles?: Record<string, string>,\n migrations?: Array<MigrationScript>\n}\n\nexport async function startApp(\n { modules = [], roles = {}, defaultRoles = {}, server = viteServer, migrations = [] }: AppOptions\n) {\n dotenv.config();\n \n dotenv.config({ path: '.modelence.env' });\n\n const hasRemoteBackend = Boolean(process.env.MODELENCE_SERVICE_ENDPOINT);\n const isCronEnabled = process.env.MODELENCE_CRON_ENABLED === 'true';\n\n // TODO: verify that user modules don't start with `_system.` prefix\n const systemModules = [userModule, sessionModule, cronModule, migrationModule];\n const combinedModules = [...systemModules, ...modules];\n\n markAppStarted();\n\n initSystemMethods(systemModules);\n initCustomMethods(modules);\n\n initRoles(roles, defaultRoles);\n\n const configSchema = getConfigSchema(combinedModules);\n setSchema(configSchema ?? {});\n const stores = getStores(combinedModules);\n\n if (isCronEnabled) {\n defineCronJobs(combinedModules);\n }\n\n if (hasRemoteBackend) {\n const { configs, deploymentId, appAlias, deploymentAlias, telemetry } = await connectCloudBackend({\n configSchema,\n cronJobsMetadata: isCronEnabled ? getCronJobsMetadata() : undefined,\n stores\n });\n loadConfigs(configs);\n setMetadata({ deploymentId, appAlias, deploymentAlias, telemetry });\n } else {\n loadConfigs(getLocalConfigs());\n }\n\n const mongodbUri = getMongodbUri();\n if (mongodbUri) {\n await connect();\n initStores(stores);\n }\n\n if (isCronEnabled) {\n await runMigrations(migrations);\n }\n\n if (mongodbUri) {\n for (const store of stores) {\n store.createIndexes();\n }\n }\n\n if (hasRemoteBackend) {\n await initMetrics();\n startConfigSync();\n }\n\n if (isCronEnabled) {\n startCronJobs().catch(console.error);\n }\n\n await startServer(server, { combinedModules });\n}\n\nfunction initCustomMethods(modules: Module[]) {\n for (const module of modules) {\n for (const [key, handler] of Object.entries(module.queries)) {\n createQuery(`${module.name}.${key}`, handler);\n }\n for (const [key, handler] of Object.entries(module.mutations)) {\n createMutation(`${module.name}.${key}`, handler);\n }\n }\n}\n\nfunction initSystemMethods(modules: Module[]) {\n for (const module of modules) {\n for (const [key, handler] of Object.entries(module.queries)) {\n _createSystemQuery(`${module.name}.${key}`, handler);\n }\n for (const [key, handler] of Object.entries(module.mutations)) {\n _createSystemMutation(`${module.name}.${key}`, handler);\n }\n }\n}\n\nfunction getStores(modules: Module[]) {\n return modules.flatMap(module => module.stores);\n}\n\nfunction getConfigSchema(modules: Module[]): ConfigSchema {\n const merged: ConfigSchema = {};\n\n for (const module of modules) {\n for (const [key, value] of Object.entries(module.configSchema)) {\n const absoluteKey = `${module.name}.${key}`;\n if (absoluteKey in merged) {\n throw new Error(\n `Duplicate config schema key: ${absoluteKey} (${module.name})`\n );\n }\n\n merged[absoluteKey] = value;\n }\n }\n\n return merged;\n}\n\nfunction defineCronJobs(modules: Module[]) {\n for (const module of modules) {\n for (const [cronAlias, cronJobParams] of Object.entries(module.cronJobs)) {\n defineCronJob(`${module.name}.${cronAlias}`, cronJobParams);\n }\n }\n}\n\nfunction initStores(stores: Store<any, any>[]) {\n const client = getClient();\n if (!client) {\n throw new Error('Failed to initialize stores: MongoDB client not initialized');\n }\n\n for (const store of stores) {\n store.init(client);\n }\n}\n\nfunction getLocalConfigs(): AppConfig[] {\n const configs: AppConfig[] = [];\n\n if (process.env.MONGODB_URI) {\n configs.push({\n key: '_system.mongodbUri',\n type: 'string',\n value: process.env.MONGODB_URI\n });\n }\n\n return configs;\n}\n"]}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "modelence",
4
- "version": "0.3.0",
4
+ "version": "0.4.2",
5
5
  "description": "Full-stack JavaScript framework for startups",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/global.d.ts",
@@ -9,7 +9,7 @@
9
9
  ".": "./dist/index.js",
10
10
  "./client": "./dist/client.js",
11
11
  "./server": "./dist/server.js",
12
- "./bin": "./dist/bin/modelence.js"
12
+ "./mongodb": "./dist/mongo.js"
13
13
  },
14
14
  "files": [
15
15
  "dist",
@@ -47,7 +47,6 @@
47
47
  "@typescript-eslint/parser": "^8.17.0",
48
48
  "react": "^19.0.0",
49
49
  "react-dom": "^19.0.0",
50
- "tsup": "^8.3.5",
51
50
  "typedoc": "^0.27.6",
52
51
  "typedoc-plugin-markdown": "^4.4.1",
53
52
  "typescript": "^5.7.2"
@@ -62,8 +61,10 @@
62
61
  "elastic-apm-node": "^4.8.0",
63
62
  "express": "^4.21.0",
64
63
  "fs-extra": "^11.2.0",
64
+ "jiti": "^2.4.2",
65
65
  "mongodb": "^6.8.1",
66
66
  "open": "^10.1.0",
67
+ "tsup": "^8.3.6",
67
68
  "vite": "^6.0.3",
68
69
  "vite-plugin-eslint": "^1.8.1",
69
70
  "winston": "^3.15.0",