@kyro-cms/core 0.12.18 → 0.12.21
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/dist/api-handler-graphql.cjs +1 -1
- package/dist/api-handler-graphql.js +1 -1
- package/dist/api-handler-trpc.cjs +1 -1
- package/dist/api-handler-trpc.js +1 -1
- package/dist/api-handler.cjs +1 -1
- package/dist/api-handler.js +1 -1
- package/dist/bootstrap-4WXRKXMO.cjs +1 -0
- package/dist/{bootstrap-A3OBR3YI.js → bootstrap-KFGRTJSD.js} +1 -1
- package/dist/{chunk-CPGTIDGM.js → chunk-3NC7GXD5.js} +3 -3
- package/dist/{chunk-7USZ4YRI.js → chunk-4D6FG2J6.js} +1 -1
- package/dist/chunk-5K4YG5DA.cjs +300 -0
- package/dist/chunk-6J27P5D6.js +300 -0
- package/dist/{chunk-QMQXKCCQ.cjs → chunk-KJT6VTTN.cjs} +1 -1
- package/dist/chunk-O3OYZQN7.cjs +21 -0
- package/dist/chunk-OOQGI3T7.js +1 -0
- package/dist/chunk-QJZQOLRN.js +21 -0
- package/dist/{chunk-RNCVLIKD.cjs → chunk-SFAD6WPC.cjs} +3 -3
- package/dist/{chunk-JAJ6ZWAQ.cjs → chunk-XALG5H27.cjs} +1 -1
- package/dist/chunk-XTRY75KC.cjs +210 -0
- package/dist/chunk-YVM5BDRD.js +210 -0
- package/dist/cli/index.cjs +1 -1
- package/dist/cli/index.js +1 -1
- package/dist/index.cjs +3 -3
- package/dist/index.d.cts +105 -1
- package/dist/index.d.ts +105 -1
- package/dist/index.js +1 -1
- package/dist/rest/index.cjs +1 -1
- package/dist/rest/index.js +1 -1
- package/dist/templates/index.cjs +1 -1
- package/dist/templates/index.js +1 -1
- package/package.json +1 -1
- package/dist/bootstrap-YLGVKTQS.cjs +0 -1
- package/dist/chunk-6NGUY76Y.js +0 -259
- package/dist/chunk-EQIAXBR4.cjs +0 -86
- package/dist/chunk-GCQTSPX6.cjs +0 -259
- package/dist/chunk-HRNAHWDS.js +0 -21
- package/dist/chunk-O62KJ2J7.js +0 -1
- package/dist/chunk-ODPUHZUA.js +0 -86
- package/dist/chunk-RDKCMKBE.cjs +0 -21
package/dist/chunk-GCQTSPX6.cjs
DELETED
|
@@ -1,259 +0,0 @@
|
|
|
1
|
-
'use strict';var chunkWIZ6C5QZ_cjs=require('./chunk-WIZ6C5QZ.cjs');var u=false,p=class n{db;cache={};loaded=false;static SENSITIVE_KEYS=["storage.s3.secret_access_key","storage.r2.secret_access_key","storage.gcs.private_key","storage.backblaze.application_key","storage.wasabi.secret_access_key","storage.ftp.password","storage.bunny.api_key","storage.cloudinary.api_secret","storage.imgix.sign_key","email.smtp.pass","auth.jwt_secret","auth.github_secret","auth.google_secret","auth.app_secret","database.url","redis.url","auth.admin_password"];constructor(e){this.db=e;}async load(){if(!this.loaded){await this.ensureSettingsTable();try{if(typeof this.db?.select=="function"){let e=await this.db.select().from(chunkWIZ6C5QZ_cjs.a);this.cache=e.reduce((t,s)=>(t[s.key]=s.value,t),{});}await this.loadFromGlobals();}catch{console.warn("ConfigService: Could not load settings from database, using environment fallbacks.");}this.loaded=true;}}async ensureSettingsTable(){if(!u)try{if(typeof this.db?.execute=="function"){let{sql:e}=await import('drizzle-orm');await this.db.execute(e`
|
|
2
|
-
CREATE TABLE IF NOT EXISTS "settings" (
|
|
3
|
-
"key" VARCHAR(255) PRIMARY KEY,
|
|
4
|
-
"value" TEXT NOT NULL,
|
|
5
|
-
"description" TEXT,
|
|
6
|
-
"updated_at" TIMESTAMP DEFAULT NOW()
|
|
7
|
-
)
|
|
8
|
-
`),u=!0;}else typeof this.db?.exec=="function"&&(this.db.exec(`
|
|
9
|
-
CREATE TABLE IF NOT EXISTS settings (
|
|
10
|
-
key TEXT PRIMARY KEY,
|
|
11
|
-
value TEXT NOT NULL,
|
|
12
|
-
description TEXT,
|
|
13
|
-
updated_at TEXT
|
|
14
|
-
)
|
|
15
|
-
`),u=!0);}catch{}}async loadFromGlobals(){try{let e=null;if(typeof this.db?.findOne=="function")try{let r=await this.db.findOne({collection:"_globals_storage-settings",where:{},draft:!0});r&&(e=r);}catch{}if(!e&&typeof this.db?.execute=="function"){let{sql:r}=await import('drizzle-orm'),i=['"_globals_storage-settings"','"_globals_storage_settings"','"global_storage_settings"'];for(let a of i)try{let o=await this.db.execute(r`SELECT * FROM ${r.raw(a)} LIMIT 1`);if(e=Array.isArray(o)?o[0]:o?.rows?o.rows[0]:null,e)break}catch{}}else if(!e&&typeof this.db?.prepare=="function"){let r=['"_globals_storage-settings"','"_globals_storage_settings"','"global_storage_settings"'];for(let i of r)try{if(e=this.db.prepare(`SELECT * FROM ${i} LIMIT 1`).get(),e)break}catch{}}if(!e)return;let t=r=>{if(!r)return null;if(typeof r=="string")try{return JSON.parse(r)}catch{return null}return r},s=e.provider||"local";if(this.cache["storage.type"]=s,s==="local"){let r=t(e.local);this.cache["storage.local.dir"]=r?.uploadDir||"./public/uploads",this.cache["storage.local.url"]=r?.baseUrl||"/uploads";}if(s==="aws"){let r=t(e.aws);this.cache["storage.s3.bucket"]=r?.bucket||"",this.cache["storage.s3.region"]=r?.region||"us-east-1",this.cache["storage.s3.access_key_id"]=r?.accessKeyId||"",this.cache["storage.s3.secret_access_key"]=r?.secretAccessKey||"",this.cache["storage.s3.endpoint"]=r?.endpoint||"",this.cache["storage.s3.cdn_url"]=r?.cdnUrl||"",this.cache["storage.s3.prefix"]=r?.prefix||"";}if(s==="r2"){let r=t(e.r2);this.cache["storage.r2.account_id"]=r?.accountId||"",this.cache["storage.r2.access_key_id"]=r?.accessKeyId||"",this.cache["storage.r2.secret_access_key"]=r?.secretAccessKey||"",this.cache["storage.r2.bucket"]=r?.bucket||"",this.cache["storage.r2.cdn_url"]=r?.cdnUrl||"",this.cache["storage.r2.prefix"]=r?.prefix||"";}if(s==="cloudinary"){let r=t(e.cloudinary);this.cache["storage.cloudinary.cloud_name"]=r?.cloudName||"",this.cache["storage.cloudinary.api_key"]=r?.apiKey||"",this.cache["storage.cloudinary.api_secret"]=r?.apiSecret||"",this.cache["storage.cloudinary.folder"]=r?.folder||"";}if(s==="ftp"){let r=t(e.ftp);this.cache["storage.ftp.host"]=r?.host||"",this.cache["storage.ftp.port"]=String(r?.port||"21"),this.cache["storage.ftp.user"]=r?.user||"",this.cache["storage.ftp.password"]=r?.password||"",this.cache["storage.ftp.secure"]=r?.secure?"true":"false",this.cache["storage.ftp.base_url"]=r?.baseUrl||"",this.cache["storage.ftp.prefix"]=r?.prefix||"";}}catch(e){console.warn("ConfigService: Could not load storage settings from globals table:",e);}try{let e=null;if(typeof this.db?.findOne=="function")try{let t=await this.db.findOne({collection:"_globals_email-settings",where:{},draft:!0});t&&(e=t);}catch{}if(!e&&typeof this.db?.execute=="function"){let{sql:t}=await import('drizzle-orm'),s=['"_globals_email-settings"','"_globals_email_settings"','"global_email_settings"'];for(let r of s)try{let i=await this.db.execute(t`SELECT * FROM ${t.raw(r)} LIMIT 1`);if(e=Array.isArray(i)?i[0]:i?.rows?i.rows[0]:null,e)break}catch{}}else if(!e&&typeof this.db?.prepare=="function"){let t=['"_globals_email-settings"','"_globals_email_settings"','"global_email_settings"'];for(let s of t)try{if(e=this.db.prepare(`SELECT * FROM ${s} LIMIT 1`).get(),e)break}catch{}}if(e){let t=s=>{if(!s)return null;if(typeof s=="string")try{return JSON.parse(s)}catch{return null}return s};if(this.cache["email.provider"]=e.provider||"smtp",this.cache["email.smtp.from"]=e.fromEmail||"",this.cache["email.smtp.from_name"]=e.fromName||"",this.cache["email.smtp.reply_to"]=e.replyTo||"",e.provider==="smtp"){let s=t(e.smtp);this.cache["email.smtp.host"]=s?.host||"",this.cache["email.smtp.port"]=String(s?.port||"587"),this.cache["email.smtp.user"]=s?.username||"",this.cache["email.smtp.pass"]=s?.password||"",this.cache["email.smtp.secure"]=s?.secure?"true":"false";}else if(e.provider==="resend"){let s=t(e.resend);this.cache["email.smtp.pass"]=s?.apiKey||"";}else if(e.provider==="sendgrid"){let s=t(e.sendgrid);this.cache["email.smtp.pass"]=s?.apiKey||"";}else if(e.provider==="mailgun"){let s=t(e.mailgun);this.cache["email.smtp.pass"]=s?.apiKey||"";}else if(e.provider==="ses"){let s=t(e.ses);this.cache["email.smtp.user"]=s?.accessKeyId||"",this.cache["email.smtp.pass"]=s?.secretAccessKey||"";}}}catch(e){console.warn("ConfigService: Could not load email settings from globals table:",e);}}get(e,t,s){return this.cache[e]?this.cache[e]:t&&process.env[t]?process.env[t]:s}getStorageConfig(){return {type:this.get("storage.type","STORAGE_TYPE","local"),s3:{bucket:this.get("storage.s3.bucket","STORAGE_BUCKET"),region:this.get("storage.s3.region","STORAGE_REGION","us-east-1"),accessKeyId:this.get("storage.s3.access_key_id","STORAGE_ACCESS_KEY_ID"),secretAccessKey:this.get("storage.s3.secret_access_key","STORAGE_SECRET_ACCESS_KEY"),endpoint:this.get("storage.s3.endpoint","STORAGE_ENDPOINT"),cdnUrl:this.get("storage.s3.cdn_url","STORAGE_CDN_URL"),prefix:this.get("storage.s3.prefix","STORAGE_PREFIX")},r2:{accountId:this.get("storage.r2.account_id","R2_ACCOUNT_ID"),accessKeyId:this.get("storage.r2.access_key_id","R2_ACCESS_KEY_ID"),secretAccessKey:this.get("storage.r2.secret_access_key","R2_SECRET_ACCESS_KEY"),bucket:this.get("storage.r2.bucket","R2_BUCKET"),cdnUrl:this.get("storage.r2.cdn_url","R2_CDN_URL"),prefix:this.get("storage.r2.prefix","R2_PREFIX")},gcs:{bucket:this.get("storage.gcs.bucket","GCS_BUCKET"),projectId:this.get("storage.gcs.project_id","GCS_PROJECT_ID"),clientEmail:this.get("storage.gcs.client_email","GCS_CLIENT_EMAIL"),privateKey:this.get("storage.gcs.private_key","GCS_PRIVATE_KEY"),cdnUrl:this.get("storage.gcs.cdn_url","GCS_CDN_URL"),prefix:this.get("storage.gcs.prefix","GCS_PREFIX")},digitalocean:{bucket:this.get("storage.digitalocean.bucket","DO_BUCKET"),region:this.get("storage.digitalocean.region","DO_REGION","nyc3"),accessKeyId:this.get("storage.digitalocean.access_key_id","DO_ACCESS_KEY_ID"),secretAccessKey:this.get("storage.digitalocean.secret_access_key","DO_SECRET_ACCESS_KEY"),cdnUrl:this.get("storage.digitalocean.cdn_url","DO_CDN_URL"),prefix:this.get("storage.digitalocean.prefix","DO_PREFIX")},backblaze:{bucket:this.get("storage.backblaze.bucket","BB_BUCKET"),accountId:this.get("storage.backblaze.account_id","BB_ACCOUNT_ID"),applicationKeyId:this.get("storage.backblaze.application_key_id","BB_APPLICATION_KEY_ID"),applicationKey:this.get("storage.backblaze.application_key","BB_APPLICATION_KEY"),cdnUrl:this.get("storage.backblaze.cdn_url","BB_CDN_URL"),prefix:this.get("storage.backblaze.prefix","BB_PREFIX")},wasabi:{bucket:this.get("storage.wasabi.bucket","WASABI_BUCKET"),region:this.get("storage.wasabi.region","WASABI_REGION","us-east-1"),accessKeyId:this.get("storage.wasabi.access_key_id","WASABI_ACCESS_KEY_ID"),secretAccessKey:this.get("storage.wasabi.secret_access_key","WASABI_SECRET_ACCESS_KEY"),cdnUrl:this.get("storage.wasabi.cdn_url","WASABI_CDN_URL"),prefix:this.get("storage.wasabi.prefix","WASABI_PREFIX")},bunny:{storageZone:this.get("storage.bunny.storage_zone","BUNNY_STORAGE_ZONE"),apiKey:this.get("storage.bunny.api_key","BUNNY_API_KEY"),cdnUrl:this.get("storage.bunny.cdn_url","BUNNY_CDN_URL"),prefix:this.get("storage.bunny.prefix","BUNNY_PREFIX")},ftp:{host:this.get("storage.ftp.host","FTP_HOST"),port:parseInt(this.get("storage.ftp.port","FTP_PORT","21"),10),user:this.get("storage.ftp.user","FTP_USER"),password:this.get("storage.ftp.password","FTP_PASSWORD"),secure:this.get("storage.ftp.secure","FTP_SECURE")==="true",baseUrl:this.get("storage.ftp.base_url","FTP_BASE_URL"),prefix:this.get("storage.ftp.prefix","FTP_PREFIX")},cloudinary:{cloudName:this.get("storage.cloudinary.cloud_name","CLOUDINARY_CLOUD_NAME"),apiKey:this.get("storage.cloudinary.api_key","CLOUDINARY_API_KEY"),apiSecret:this.get("storage.cloudinary.api_secret","CLOUDINARY_API_SECRET"),folder:this.get("storage.cloudinary.folder","CLOUDINARY_FOLDER")},imgix:{domain:this.get("storage.imgix.domain","IMGIX_DOMAIN"),signKey:this.get("storage.imgix.sign_key","IMGIX_SIGN_KEY")},local:{uploadDir:this.get("storage.local.dir","STORAGE_LOCAL_DIR","./public/uploads"),baseUrl:this.get("storage.local.url","STORAGE_LOCAL_URL","/uploads")}}}getEmailConfig(){return {provider:this.get("email.provider","EMAIL_PROVIDER","smtp"),host:this.get("email.smtp.host","SMTP_HOST"),port:parseInt(this.get("email.smtp.port","SMTP_PORT","587"),10),secure:this.get("email.smtp.secure","SMTP_SECURE")==="true",user:this.get("email.smtp.user","SMTP_USER"),pass:this.get("email.smtp.pass","SMTP_PASS"),from:this.get("email.smtp.from","SMTP_FROM","noreply@example.com"),fromName:this.get("email.smtp.from_name","SMTP_FROM_NAME","Kyro CMS"),replyTo:this.get("email.smtp.reply_to","SMTP_REPLY_TO")}}maskSensitive(e,t){return t&&(n.SENSITIVE_KEYS.includes(e)?"********":t)}async set(e,t,s){await this.db.insert(chunkWIZ6C5QZ_cjs.a).values({key:e,value:t,description:s,updatedAt:new Date}).onConflictDoUpdate({target:[chunkWIZ6C5QZ_cjs.a.key],set:{value:t,description:s,updatedAt:new Date}}),this.cache[e]=t;}};var b={verifyEmail:(n,e="User")=>({subject:"Verify your email address",html:`
|
|
16
|
-
<!DOCTYPE html>
|
|
17
|
-
<html>
|
|
18
|
-
<head>
|
|
19
|
-
<meta charset="utf-8">
|
|
20
|
-
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
21
|
-
<title>Verify Email</title>
|
|
22
|
-
<style>
|
|
23
|
-
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: #333; }
|
|
24
|
-
.container { max-width: 600px; margin: 0 auto; padding: 20px; }
|
|
25
|
-
.button { display: inline-block; padding: 12px 24px; background: #0b1222; color: white; text-decoration: none; border-radius: 6px; font-weight: 600; }
|
|
26
|
-
.footer { margin-top: 30px; font-size: 12px; color: #666; }
|
|
27
|
-
</style>
|
|
28
|
-
</head>
|
|
29
|
-
<body>
|
|
30
|
-
<div class="container">
|
|
31
|
-
<h1>Welcome, ${e}!</h1>
|
|
32
|
-
<p>Please verify your email address by clicking the button below:</p>
|
|
33
|
-
<p style="text-align: center; margin: 30px 0;">
|
|
34
|
-
<a href="${n}" class="button">Verify Email</a>
|
|
35
|
-
</p>
|
|
36
|
-
<p>Or copy and paste this link into your browser:</p>
|
|
37
|
-
<p style="word-break: break-all; color: #666;">${n}</p>
|
|
38
|
-
<p>This link will expire in 24 hours.</p>
|
|
39
|
-
<div class="footer">
|
|
40
|
-
<p>If you didn't create an account, you can safely ignore this email.</p>
|
|
41
|
-
</div>
|
|
42
|
-
</div>
|
|
43
|
-
</body>
|
|
44
|
-
</html>
|
|
45
|
-
`,text:`Welcome ${e}!
|
|
46
|
-
|
|
47
|
-
Please verify your email by clicking this link: ${n}
|
|
48
|
-
|
|
49
|
-
This link will expire in 24 hours.
|
|
50
|
-
|
|
51
|
-
If you didn't create an account, you can safely ignore this email.`}),resetPassword:(n,e="User")=>({subject:"Reset your password",html:`
|
|
52
|
-
<!DOCTYPE html>
|
|
53
|
-
<html>
|
|
54
|
-
<head>
|
|
55
|
-
<meta charset="utf-8">
|
|
56
|
-
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
57
|
-
<title>Reset Password</title>
|
|
58
|
-
<style>
|
|
59
|
-
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: #333; }
|
|
60
|
-
.container { max-width: 600px; margin: 0 auto; padding: 20px; }
|
|
61
|
-
.button { display: inline-block; padding: 12px 24px; background: #dc2626; color: white; text-decoration: none; border-radius: 6px; font-weight: 600; }
|
|
62
|
-
.warning { background: #fef3c7; border: 1px solid #f59e0b; padding: 12px; border-radius: 6px; margin: 20px 0; }
|
|
63
|
-
.footer { margin-top: 30px; font-size: 12px; color: #666; }
|
|
64
|
-
</style>
|
|
65
|
-
</head>
|
|
66
|
-
<body>
|
|
67
|
-
<div class="container">
|
|
68
|
-
<h1>Password Reset Request</h1>
|
|
69
|
-
<p>Hello ${e},</p>
|
|
70
|
-
<p>We received a request to reset your password. Click the button below to create a new password:</p>
|
|
71
|
-
<p style="text-align: center; margin: 30px 0;">
|
|
72
|
-
<a href="${n}" class="button">Reset Password</a>
|
|
73
|
-
</p>
|
|
74
|
-
<p>Or copy and paste this link into your browser:</p>
|
|
75
|
-
<p style="word-break: break-all; color: #666;">${n}</p>
|
|
76
|
-
<div class="warning">
|
|
77
|
-
<strong>\u26A0\uFE0F Important:</strong> This link will expire in 1 hour. If you didn't request a password reset, please ignore this email or contact support if you have concerns.
|
|
78
|
-
</div>
|
|
79
|
-
<div class="footer">
|
|
80
|
-
<p>For security reasons, please don't share this email with anyone.</p>
|
|
81
|
-
</div>
|
|
82
|
-
</div>
|
|
83
|
-
</body>
|
|
84
|
-
</html>
|
|
85
|
-
`,text:`Password Reset Request
|
|
86
|
-
|
|
87
|
-
Hello ${e},
|
|
88
|
-
|
|
89
|
-
We received a request to reset your password. Click this link to create a new password: ${n}
|
|
90
|
-
|
|
91
|
-
This link will expire in 1 hour.
|
|
92
|
-
|
|
93
|
-
If you didn't request a password reset, please ignore this email.`}),welcome:(n="User")=>({subject:"Welcome to Kyro CMS",html:`
|
|
94
|
-
<!DOCTYPE html>
|
|
95
|
-
<html>
|
|
96
|
-
<head>
|
|
97
|
-
<meta charset="utf-8">
|
|
98
|
-
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
99
|
-
<title>Welcome</title>
|
|
100
|
-
<style>
|
|
101
|
-
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: #333; }
|
|
102
|
-
.container { max-width: 600px; margin: 0 auto; padding: 20px; }
|
|
103
|
-
.button { display: inline-block; padding: 12px 24px; background: #0b1222; color: white; text-decoration: none; border-radius: 6px; font-weight: 600; }
|
|
104
|
-
</style>
|
|
105
|
-
</head>
|
|
106
|
-
<body>
|
|
107
|
-
<div class="container">
|
|
108
|
-
<h1>Welcome to Kyro CMS, ${n}!</h1>
|
|
109
|
-
<p>Your account has been created successfully.</p>
|
|
110
|
-
<p>You can now:</p>
|
|
111
|
-
<ul>
|
|
112
|
-
<li>Manage your content collections</li>
|
|
113
|
-
<li>Upload and organize media</li>
|
|
114
|
-
<li>Configure settings</li>
|
|
115
|
-
<li>And much more...</li>
|
|
116
|
-
</ul>
|
|
117
|
-
<p style="text-align: center; margin: 30px 0;">
|
|
118
|
-
<a href="#" class="button">Get Started</a>
|
|
119
|
-
</p>
|
|
120
|
-
<p>If you have any questions, feel free to reach out to our support team.</p>
|
|
121
|
-
</div>
|
|
122
|
-
</body>
|
|
123
|
-
</html>
|
|
124
|
-
`,text:`Welcome to Kyro CMS, ${n}!
|
|
125
|
-
|
|
126
|
-
Your account has been created successfully.
|
|
127
|
-
|
|
128
|
-
You can now:
|
|
129
|
-
- Manage your content collections
|
|
130
|
-
- Upload and organize media
|
|
131
|
-
- Configure settings
|
|
132
|
-
- And much more...
|
|
133
|
-
|
|
134
|
-
Get started by logging into your dashboard.`}),accountLocked:(n,e,t="User")=>({subject:"Account Security Alert - Account Locked",html:`
|
|
135
|
-
<!DOCTYPE html>
|
|
136
|
-
<html>
|
|
137
|
-
<head>
|
|
138
|
-
<meta charset="utf-8">
|
|
139
|
-
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
140
|
-
<title>Account Locked</title>
|
|
141
|
-
<style>
|
|
142
|
-
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: #333; }
|
|
143
|
-
.container { max-width: 600px; margin: 0 auto; padding: 20px; }
|
|
144
|
-
.alert { background: #fef2f2; border: 1px solid #ef4444; padding: 16px; border-radius: 8px; margin: 20px 0; }
|
|
145
|
-
.footer { margin-top: 30px; font-size: 12px; color: #666; }
|
|
146
|
-
</style>
|
|
147
|
-
</head>
|
|
148
|
-
<body>
|
|
149
|
-
<div class="container">
|
|
150
|
-
<h1>Account Security Alert</h1>
|
|
151
|
-
<p>Hello ${t},</p>
|
|
152
|
-
<div class="alert">
|
|
153
|
-
<p><strong>\u26A0\uFE0F Your account has been temporarily locked due to multiple failed login attempts.</strong></p>
|
|
154
|
-
<p>Failed attempts: ${n}</p>
|
|
155
|
-
<p>Lockout duration: ${Math.round(e/6e4)} minutes</p>
|
|
156
|
-
</div>
|
|
157
|
-
<p>Your account will automatically unlock after the lockout period expires.</p>
|
|
158
|
-
<p>If this wasn't you, we recommend:</p>
|
|
159
|
-
<ul>
|
|
160
|
-
<li>Using a strong, unique password</li>
|
|
161
|
-
<li>Enabling two-factor authentication (coming soon)</li>
|
|
162
|
-
<li>Reviewing your recent account activity</li>
|
|
163
|
-
</ul>
|
|
164
|
-
<div class="footer">
|
|
165
|
-
<p>If you need immediate assistance, please contact support.</p>
|
|
166
|
-
</div>
|
|
167
|
-
</div>
|
|
168
|
-
</body>
|
|
169
|
-
</html>
|
|
170
|
-
`,text:`Account Security Alert
|
|
171
|
-
|
|
172
|
-
Hello ${t},
|
|
173
|
-
|
|
174
|
-
Your account has been temporarily locked due to multiple failed login attempts (${n}).
|
|
175
|
-
|
|
176
|
-
Lockout duration: ${Math.round(e/6e4)} minutes
|
|
177
|
-
|
|
178
|
-
Your account will automatically unlock after this period.
|
|
179
|
-
|
|
180
|
-
If this wasn't you, we recommend using a strong, unique password.`}),passwordChanged:(n="User")=>({subject:"Your password has been changed",html:`
|
|
181
|
-
<!DOCTYPE html>
|
|
182
|
-
<html>
|
|
183
|
-
<head>
|
|
184
|
-
<meta charset="utf-8">
|
|
185
|
-
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
186
|
-
<title>Password Changed</title>
|
|
187
|
-
<style>
|
|
188
|
-
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: #333; }
|
|
189
|
-
.container { max-width: 600px; margin: 0 auto; padding: 20px; }
|
|
190
|
-
.info { background: #f0fdf4; border: 1px solid #22c55e; padding: 12px; border-radius: 6px; margin: 20px 0; }
|
|
191
|
-
</style>
|
|
192
|
-
</head>
|
|
193
|
-
<body>
|
|
194
|
-
<div class="container">
|
|
195
|
-
<h1>Password Changed</h1>
|
|
196
|
-
<p>Hello ${n},</p>
|
|
197
|
-
<div class="info">
|
|
198
|
-
<p>Your password was recently changed.</p>
|
|
199
|
-
</div>
|
|
200
|
-
<p>If you did this, you can safely ignore this email.</p>
|
|
201
|
-
<p><strong>If you didn't change your password</strong>, please contact our support team immediately as your account may have been compromised.</p>
|
|
202
|
-
</div>
|
|
203
|
-
</body>
|
|
204
|
-
</html>
|
|
205
|
-
`,text:`Password Changed
|
|
206
|
-
|
|
207
|
-
Hello ${n},
|
|
208
|
-
|
|
209
|
-
Your password was recently changed.
|
|
210
|
-
|
|
211
|
-
If you did this, you can safely ignore this email.
|
|
212
|
-
|
|
213
|
-
If you didn't change your password, please contact support immediately.`}),newLogin:(n,e,t="User")=>({subject:"New login to your account",html:`
|
|
214
|
-
<!DOCTYPE html>
|
|
215
|
-
<html>
|
|
216
|
-
<head>
|
|
217
|
-
<meta charset="utf-8">
|
|
218
|
-
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
219
|
-
<title>New Login</title>
|
|
220
|
-
<style>
|
|
221
|
-
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: #333; }
|
|
222
|
-
.container { max-width: 600px; margin: 0 auto; padding: 20px; }
|
|
223
|
-
.info-box { background: #f8fafc; border: 1px solid #e2e8f0; padding: 16px; border-radius: 8px; margin: 20px 0; }
|
|
224
|
-
.footer { margin-top: 30px; font-size: 12px; color: #666; }
|
|
225
|
-
</style>
|
|
226
|
-
</head>
|
|
227
|
-
<body>
|
|
228
|
-
<div class="container">
|
|
229
|
-
<h1>New Login Detected</h1>
|
|
230
|
-
<p>Hello ${t},</p>
|
|
231
|
-
<p>We detected a new login to your account:</p>
|
|
232
|
-
<div class="info-box">
|
|
233
|
-
<p><strong>Location:</strong> ${n}</p>
|
|
234
|
-
<p><strong>Time:</strong> ${e}</p>
|
|
235
|
-
</div>
|
|
236
|
-
<p><strong>If this was you</strong>, no action is needed.</p>
|
|
237
|
-
<p><strong>If this wasn't you</strong>, your account may be compromised. Please:</p>
|
|
238
|
-
<ol>
|
|
239
|
-
<li>Change your password immediately</li>
|
|
240
|
-
<li>Review your recent account activity</li>
|
|
241
|
-
<li>Contact support if needed</li>
|
|
242
|
-
</ol>
|
|
243
|
-
<div class="footer">
|
|
244
|
-
<p>This is an automated security notification.</p>
|
|
245
|
-
</div>
|
|
246
|
-
</div>
|
|
247
|
-
</body>
|
|
248
|
-
</html>
|
|
249
|
-
`,text:`New Login Detected
|
|
250
|
-
|
|
251
|
-
Hello ${t},
|
|
252
|
-
|
|
253
|
-
We detected a new login to your account:
|
|
254
|
-
|
|
255
|
-
Location: ${n}
|
|
256
|
-
Time: ${e}
|
|
257
|
-
|
|
258
|
-
If this wasn't you, please change your password immediately and contact support.`})},h=class n{transporter;config;templates;transporterInitialized=false;constructor(e,t){this.config=e,this.templates={...b,...t};}async ensureTransporter(){if(this.transporterInitialized)return this.transporter;let{default:e}=await import('nodemailer');return this.config.provider==="smtp"&&this.config.smtp?this.transporter=e.createTransport({host:this.config.smtp.host,port:this.config.smtp.port,secure:this.config.smtp.secure,auth:this.config.smtp.auth}):this.config.provider==="ses"&&this.config.ses&&(this.transporter=e.createTransport({host:`email-smtp.${this.config.ses.region}.amazonaws.com`,port:587,secure:false,auth:{user:this.config.ses.accessKeyId,pass:this.config.ses.secretAccessKey}})),this.transporterInitialized=true,this.transporter}async send(e){let{provider:t,from:s,fromName:r,replyTo:i}=this.config,a=`"${r||"Kyro CMS"}" <${s}>`,o=e.replyTo||i;try{let c;switch(t){case "smtp":case "ses":{let l=await this.ensureTransporter();if(!l)throw new Error(`${t} transporter not initialized`);c=await l.sendMail({from:a,to:Array.isArray(e.to)?e.to.join(", "):e.to,subject:e.subject,html:e.html,text:e.text,replyTo:o});}break;case "resend":c=await this.sendViaResend(a,e,o);break;case "sendgrid":c=await this.sendViaSendGrid(a,e,o);break;case "mailgun":c=await this.sendViaMailgun(a,e,o);break;default:throw new Error(`Unsupported email provider: ${t}`)}return c}catch(c){throw console.error("[EmailTransport] FAILED to send email:",c.message),c.response&&console.error("[EmailTransport] Provider Error Detail:",JSON.stringify(c.response,null,2)),c}}async sendViaResend(e,t,s){let r=this.config.resend?.apiKey;if(!r)throw new Error("Resend API Key missing");let i={from:e,to:t.to,subject:t.subject,html:t.html,text:t.text,reply_to:s},a=await fetch("https://api.resend.com/emails",{method:"POST",headers:{Authorization:`Bearer ${r}`,"Content-Type":"application/json"},body:JSON.stringify(i)});if(!a.ok){let o=await a.json();throw new Error(`Resend Error: ${JSON.stringify(o)}`)}return a.json()}async sendViaSendGrid(e,t,s){let r=this.config.sendgrid?.apiKey;if(!r)throw new Error("SendGrid API Key missing");let i={personalizations:[{to:Array.isArray(t.to)?t.to.map(o=>({email:o})):[{email:t.to}]}],from:{email:e.match(/<(.+)>/)?.[1]||e,name:e.match(/"(.+)"/)?.[1]},subject:t.subject,content:[{type:"text/plain",value:t.text||""},{type:"text/html",value:t.html}],reply_to:s?{email:s}:void 0},a=await fetch("https://api.sendgrid.com/v3/mail/send",{method:"POST",headers:{Authorization:`Bearer ${r}`,"Content-Type":"application/json"},body:JSON.stringify(i)});if(!a.ok){let o=await a.json();throw new Error(`SendGrid Error: ${JSON.stringify(o)}`)}return {success:true}}async sendViaMailgun(e,t,s){let{apiKey:r,domain:i,region:a}=this.config.mailgun||{};if(!r||!i)throw new Error("Mailgun config missing");let o=a==="eu"?"api.eu.mailgun.net":"api.mailgun.net",c=btoa(`api:${r}`),l=new URLSearchParams;l.append("from",e);let f=Array.isArray(t.to)?t.to.join(", "):t.to;l.append("to",f),l.append("subject",t.subject),l.append("html",t.html),t.text&&l.append("text",t.text),s&&l.append("h:Reply-To",s);let d=await fetch(`https://${o}/v3/${i}/messages`,{method:"POST",headers:{Authorization:`Basic ${c}`,"Content-Type":"application/x-www-form-urlencoded"},body:l});if(!d.ok){let y=await d.json();throw new Error(`Mailgun Error: ${JSON.stringify(y)}`)}return d.json()}getTemplates(){return this.templates}async verifyConnection(){if(this.config.provider==="smtp"||this.config.provider==="ses")try{let e=await this.ensureTransporter();if(e)return await e.verify(),!0}catch{return false}return !!(this.config.resend?.apiKey||this.config.sendgrid?.apiKey||this.config.mailgun?.apiKey)}static async fromConfig(e){let t=new p(e);await t.load();let s=t.getEmailConfig();if(!s.provider)return this.fromEnv();let r={provider:s.provider||"smtp",from:s.from||"noreply@example.com",fromName:s.fromName,replyTo:s.replyTo,smtp:s.provider==="smtp"?{host:s.host||"",port:s.port||587,secure:s.secure||false,auth:{user:s.user||"",pass:s.pass||""}}:void 0,resend:s.provider==="resend"?{apiKey:s.pass||""}:void 0,sendgrid:s.provider==="sendgrid"?{apiKey:s.pass||""}:void 0,mailgun:s.provider==="mailgun"?{apiKey:s.pass||"",domain:s.host||"",region:s.secure?"eu":"us"}:void 0,ses:s.provider==="ses"?{accessKeyId:s.user||"",secretAccessKey:s.pass||"",region:s.host||"us-east-1"}:void 0};return new n(r)}static fromEnv(){let e=process.env.EMAIL_PROVIDER||"smtp",t=process.env.SMTP_FROM||process.env.DEFAULT_FROM||"noreply@example.com",s=process.env.SMTP_FROM_NAME||"Kyro CMS",r=process.env.SMTP_REPLY_TO;if(e==="smtp"){let i=process.env.SMTP_HOST,a=process.env.SMTP_USER,o=process.env.SMTP_PASS;return !i||!a||!o?null:new n({provider:"smtp",from:t,fromName:s,replyTo:r,smtp:{host:i,port:parseInt(process.env.SMTP_PORT||"587",10),secure:process.env.SMTP_SECURE==="true",auth:{user:a,pass:o}}})}if(e==="resend"){let i=process.env.RESEND_API_KEY||process.env.SMTP_PASS;return i?new n({provider:"resend",from:t,fromName:s,replyTo:r,resend:{apiKey:i}}):null}if(e==="sendgrid"){let i=process.env.SENDGRID_API_KEY||process.env.SMTP_PASS;return i?new n({provider:"sendgrid",from:t,fromName:s,replyTo:r,sendgrid:{apiKey:i}}):null}if(e==="mailgun"){let i=process.env.MAILGUN_API_KEY||process.env.SMTP_PASS,a=process.env.MAILGUN_DOMAIN||process.env.SMTP_HOST;return !i||!a?null:new n({provider:"mailgun",from:t,fromName:s,replyTo:r,mailgun:{apiKey:i,domain:a,region:process.env.MAILGUN_REGION||(process.env.SMTP_SECURE==="true"?"eu":"us")}})}if(e==="ses"){let i=process.env.AWS_ACCESS_KEY_ID||process.env.SMTP_USER,a=process.env.AWS_SECRET_ACCESS_KEY||process.env.SMTP_PASS,o=process.env.AWS_REGION||process.env.SMTP_HOST||"us-east-1";return !i||!a?null:new n({provider:"ses",from:t,fromName:s,replyTo:r,ses:{accessKeyId:i,secretAccessKey:a,region:o}})}return null}};var _={minLength:12,requireUppercase:true,requireLowercase:true,requireNumbers:true,requireSpecialChars:true,preventReuse:5,maxLength:128},m=class{config;constructor(e={}){this.config={..._,...e};}validate(e){let t=[];return this.config.maxLength&&e.length>this.config.maxLength&&t.push(`Password must not exceed ${this.config.maxLength} characters`),e.length<this.config.minLength&&t.push(`Password must be at least ${this.config.minLength} characters`),this.config.requireUppercase&&!/[A-Z]/.test(e)&&t.push("Password must contain at least one uppercase letter"),this.config.requireLowercase&&!/[a-z]/.test(e)&&t.push("Password must contain at least one lowercase letter"),this.config.requireNumbers&&!/[0-9]/.test(e)&&t.push("Password must contain at least one number"),this.config.requireSpecialChars&&!/[!@#$%^&*()_+\-=\[\]{};':"\\|,.<>\/?]/.test(e)&&t.push("Password must contain at least one special character"),["password","123456","12345678","qwerty","abc123","monkey","1234567","letmein","trustno1","dragon","baseball","iloveyou","master","sunshine","ashley","football","password1","shadow","123123","654321"].includes(e.toLowerCase())&&t.push("This password is too common. Please choose a more secure password"),(/^[a-zA-Z]+$/.test(e)||/^[0-9]+$/.test(e))&&t.push("Password must contain a mix of letters, numbers, and/or special characters"),/(.)\1{2,}/.test(e)&&t.push("Password must not contain more than 2 consecutive identical characters"),/^(012|123|234|345|456|567|678|789|890|098|987|876|765|654|543|432|321|210)+$/i.test(e)&&t.push("Password must not contain sequential numbers or letters"),{valid:t.length===0,errors:t}}async checkReuse(e,t,s){return {valid:true,errors:[]}}async isInHistory(e,t,s){for(let r of t)if(await s(e,r))return true;return false}generatePassword(e=16){let t="ABCDEFGHIJKLMNOPQRSTUVWXYZ",s="abcdefghijklmnopqrstuvwxyz",r="0123456789",i="!@#$%^&*()_+-=[]{}|;:,.<>?",a="";a+=t[Math.floor(Math.random()*t.length)],a+=s[Math.floor(Math.random()*s.length)],a+=r[Math.floor(Math.random()*r.length)],a+=i[Math.floor(Math.random()*i.length)];let o=t+s+r+i;for(let c=a.length;c<e;c++)a+=o[Math.floor(Math.random()*o.length)];return a.split("").sort(()=>Math.random()-.5).join("")}getStrength(e){let t=0,s=[];e.length>=8&&(t+=1),e.length>=12&&(t+=1),e.length>=16&&(t+=1),/[a-z]/.test(e)&&(t+=1),/[A-Z]/.test(e)&&(t+=1),/[0-9]/.test(e)&&(t+=1),/[!@#$%^&*()_+\-=\[\]{}|;:,.<>?]/.test(e)&&(t+=1),e.length>8&&(t+=1),e.length>12&&(t+=1);let r=new Set(e).size;r>6&&(t+=1),r>10&&(t+=1);let i;return t<=3?(i="Weak",s.push("Add more characters"),s.push("Include uppercase and lowercase letters")):t<=5?(i="Fair",s.push("Add special characters"),s.push("Consider making it longer")):t<=7?(i="Good",s.push("Consider making it longer for extra security")):i="Strong",{score:t,label:i,feedback:s}}setConfig(e){this.config={...this.config,...e};}getConfig(){return {...this.config}}};
|
|
259
|
-
exports.a=p;exports.b=h;exports.c=m;
|
package/dist/chunk-HRNAHWDS.js
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import {a as a$2}from'./chunk-NZ35PV5R.js';import {a as a$1}from'./chunk-5SEHX7ON.js';import {a as a$4,i}from'./chunk-LHW4R367.js';import {c as c$2,a as a$3}from'./chunk-PP7W5UKL.js';import {a,b,c,f,t}from'./chunk-ODPUHZUA.js';import {o,f as f$1,g as g$1}from'./chunk-FVZ5RFLO.js';import {d,f as f$2,e,g as g$2}from'./chunk-HLSB2MCK.js';import {b as b$1,d as d$1}from'./chunk-GKYEJ2UF.js';import {c as c$1}from'./chunk-DKESD4HI.js';import {g}from'./chunk-OG7CNQGU.js';import {a as a$5,c as c$3,b as b$2,d as d$2}from'./chunk-5KOQYQEE.js';import {a as a$6}from'./chunk-4RMFCTWH.js';import {z as z$1}from'zod';import {createYoga}from'graphql-yoga';import {createRequire}from'module';import {randomBytes}from'crypto';function L(n,e){for(let t of n){if(t.name===e)return true;if("tabs"in t&&t.tabs){for(let s of t.tabs)if(L(s.fields,e))return true}if("fields"in t&&t.fields&&L(t.fields,e))return true}return false}var H=class extends Error{errors;constructor(e){super(`Configuration validation failed:
|
|
2
|
-
${e.join(`
|
|
3
|
-
`)}`),this.name="ConfigValidationError",this.errors=e;}};function W(n){let e=[];if(n.slug?/^[a-z][a-z0-9_-]*$/.test(n.slug)||e.push(`Collection slug "${n.slug}" must be lowercase alphanumeric with dashes`):e.push('Collection is missing a "slug" property'),!n.fields||n.fields.length===0)e.push(`Collection "${n.slug}" has no fields defined`);else {let t=w(n.fields,n.slug);e.push(...t);}if(n.access)for(let[t,s]of Object.entries(n.access))typeof s!="boolean"&&typeof s!="function"&&e.push(`Collection "${n.slug}" has invalid access.${t} (must be boolean or function)`);if(n.admin?.useAsTitle&&(L(n.fields,n.admin.useAsTitle)||e.push(`Collection "${n.slug}" admin.useAsTitle references unknown field "${n.admin.useAsTitle}"`)),n.admin?.defaultColumns)for(let t of n.admin.defaultColumns)L(n.fields,t)||e.push(`Collection "${n.slug}" admin.defaultColumns references unknown field "${t}"`);if(n.upload&&n.upload.fileSize&&n.upload.fileSize<=0&&e.push(`Collection "${n.slug}" upload.fileSize must be positive`),n.versions&&n.versions.maxPerDoc&&n.versions.maxPerDoc<=0&&e.push(`Collection "${n.slug}" versions.maxPerDoc must be positive`),n.auth){let t=n.fields.some(i=>i.name==="email"),s=n.fields.some(i=>i.name==="password");t||e.push(`Collection "${n.slug}" with auth enabled requires an "email" field`),s||e.push(`Collection "${n.slug}" with auth enabled requires a "password" field`);}return e}function z(n){let e=[];if(n.slug?/^[a-z][a-z0-9_-]*$/.test(n.slug)||e.push(`Global slug "${n.slug}" must be lowercase alphanumeric with dashes`):e.push('Global is missing a "slug" property'),!n.fields||n.fields.length===0)e.push(`Global "${n.slug}" has no fields defined`);else {let t=w(n.fields,`global:${n.slug}`);e.push(...t);}return e}function w(n,e){let t=[],s=new Set;for(let i=0;i<n.length;i++){let o=n[i];if(o.type==="row"||o.type==="collapsible"||o.type==="tabs"){if("fields"in o&&o.fields){let r=w(o.fields,e);t.push(...r);}else if("tabs"in o)for(let r of o.tabs){let c=w(r.fields,e);t.push(...c);}continue}let a=o.name;if(!a){t.push(`${e}: Field at index ${i} is missing a "name" property`);continue}if(s.has(a)&&t.push(`${e}: Duplicate field name "${a}"`),s.add(a),/^[a-zA-Z][a-zA-Z0-9_]*$/.test(a)||t.push(`${e}: Field name "${a}" must be alphanumeric with underscores`),!o.type){t.push(`${e}: Field "${a}" is missing a "type" property`);continue}switch(o.type){case "relationship":o.relationTo||t.push(`${e}: Relationship field "${a}" is missing "relationTo"`);break;case "array":if(!o.fields||o.fields.length===0)t.push(`${e}: Array field "${a}" has no fields defined`);else {let r=w(o.fields,`${e}.${a}`);t.push(...r);}break;case "group":if(!o.fields||o.fields.length===0)t.push(`${e}: Group field "${a}" has no fields defined`);else {let r=w(o.fields,`${e}.${a}`);t.push(...r);}break;case "blocks":if(!o.blocks||o.blocks.length===0)t.push(`${e}: Blocks field "${a}" has no blocks defined`);else {let r=Ue(o.blocks,`${e}.${a}`);t.push(...r);}break;case "select":case "radio":if(typeof o.options=="function")break;if((!o.options||o.options.length===0)&&!o.dynamicOptions)t.push(`${e}: ${o.type} field "${a}" has no options defined`);else if(Array.isArray(o.options)){let r=o.options.map(d=>d.value),c=new Set(r);r.length!==c.size&&t.push(`${e}: ${o.type} field "${a}" has duplicate option values`);}break;case "upload":o.relationTo||t.push(`${e}: Upload field "${a}" is missing "relationTo"`);break}"min"in o&&"max"in o&&o.min>o.max&&t.push(`${e}: Field "${a}" has min greater than max`),"minLength"in o&&"maxLength"in o&&o.minLength>o.maxLength&&t.push(`${e}: Field "${a}" has minLength greater than maxLength`),"minRows"in o&&"maxRows"in o&&o.minRows>o.maxRows&&t.push(`${e}: Field "${a}" has minRows greater than maxRows`);}return t}function Ue(n,e){let t=[],s=new Set;for(let i of n){if(!i.slug){t.push(`${e}: Block is missing a "slug" property`);continue}if(s.has(i.slug)&&t.push(`${e}: Duplicate block slug "${i.slug}"`),s.add(i.slug),i.label||t.push(`${e}: Block "${i.slug}" is missing a "label" property`),!i.fields||i.fields.length===0)t.push(`${e}: Block "${i.slug}" has no fields defined`);else {let o=w(i.fields,`${e}.${i.slug}`);t.push(...o);}}return t}function ve(n,e=[]){let t=[],s=new Set;for(let i of n)s.has(i.slug)&&t.push(`Duplicate collection slug "${i.slug}"`),s.add(i.slug);for(let i of e)s.has(i.slug)&&t.push(`Duplicate global slug "${i.slug}"`),s.add(i.slug);for(let i of n){let o=W(i);t.push(...o);}for(let i of e){let o=z(i);t.push(...o);}for(let i of n){let o=$(i.fields,n);t.push(...o);}if(t.length>0)throw new H(t)}function $(n,e){let t=[],s=new Set(e.map(i=>i.slug));for(let i of n){if(i.type==="relationship"){let o=Array.isArray(i.relationTo)?i.relationTo:[i.relationTo];for(let a of o)a!=="*"&&!s.has(a)&&console.warn(`[Kyro Config Warning]: Relationship field "${i.name}" references unknown collection "${a}". Select options will not be available until this collection is registered.`);}if(i.type==="upload"){let o=Array.isArray(i.relationTo)?i.relationTo:[i.relationTo];for(let a of o)s.has(a)||t.push(`Upload field "${i.name}" references unknown collection "${a}"`);}if("fields"in i&&i.fields){let o=$(i.fields,e);t.push(...o);}if("tabs"in i)for(let o of i.tabs){let a=$(o.fields,e);t.push(...a);}if("blocks"in i)for(let o of i.blocks){let a=$(o.fields,e);t.push(...a);}}return t}function A(n){switch(n.type){case "text":return Ke(n);case "number":return Me(n);case "checkbox":return Ve(n);case "date":return Be(n);case "email":return He(n);case "password":return We(n);case "textarea":return ze(n);case "select":return Xe(n);case "radio":return Je(n);case "color":return Ye(n);case "richtext":return Qe(n);case "json":return et(n);case "code":return tt(n);case "upload":return Ee(n);case "image":return Ee(n);case "markdown":return st(n);case "relationship":return Re(n);case "relationship-block":return Re(n);case "array":return nt(n);case "list":return it(n);case "group":return ot(n);case "blocks":return at(n);case "row":return rt(n);case "collapsible":return lt(n);case "tabs":return ct(n);default:return z$1.any()}}function Ke(n){let e=z$1.string();return n.minLength&&(e=e.min(n.minLength)),n.maxLength&&(e=e.max(n.maxLength)),n.pattern&&(e=e.regex(new RegExp(n.pattern))),n.variant==="email"&&(e=e.email()),n.variant==="url"&&(e=e.url()),n.hasMany&&(e=z$1.array(e)),n.required||(e=e.optional().nullable()),n.validate&&(e=T(e,n.validate)),e}function Me(n){let e=n.integer?z$1.coerce.number().int():z$1.coerce.number();return n.min!==void 0&&(e=e.min(n.min)),n.max!==void 0&&(e=e.max(n.max)),n.step&&(e=e.refine(t=>Number.isInteger(t/n.step),`Value must be divisible by ${n.step}`)),n.hasMany&&(e=z$1.array(e)),n.required||(e=e.optional().nullable()),n.validate&&(e=T(e,n.validate)),e}function Ve(n){let e=z$1.boolean();return n.required||(e=e.optional().nullable()),n.validate&&(e=T(e,n.validate)),e}function Be(n){let e=z$1.string().refine(t=>!isNaN(Date.parse(t)),"Invalid date format");return n.minDate&&(e=e.refine(t=>new Date(t)>=new Date(n.minDate),`Date must be after ${n.minDate}`)),n.maxDate&&(e=e.refine(t=>new Date(t)<=new Date(n.maxDate),`Date must be before ${n.maxDate}`)),n.required||(e=e.optional().nullable()),n.validate&&(e=T(e,n.validate)),e}function He(n){let e=z$1.string().email("Invalid email");return n.required||(e=e.optional().nullable()),n.validate&&(e=T(e,n.validate)),e}function We(n){let e=z$1.string().min(6,"Password must be at least 6 characters");return n.required||(e=e.optional().nullable()),n.validate&&(e=T(e,n.validate)),e}function ze(n){let e=z$1.string();return n.minLength&&(e=e.min(n.minLength)),n.maxLength&&(e=e.max(n.maxLength)),n.required||(e=e.optional().nullable()),n.validate&&(e=T(e,n.validate)),e}function Xe(n){let e;if(Array.isArray(n.options)&&n.options.length>0){let t=n.options.map(s=>s.value);n.hasMany?e=z$1.array(z$1.enum(t)):e=z$1.enum(t);}else e=n.hasMany?z$1.array(z$1.string()):z$1.string();return n.required||(e=e.optional().nullable()),n.validate&&(e=T(e,n.validate)),e}function Je(n){let e;if(Array.isArray(n.options)&&n.options.length>0){let t=n.options.map(s=>s.value);e=z$1.enum(t);}else e=z$1.string();return n.required||(e=e.optional().nullable()),n.validate&&(e=T(e,n.validate)),e}function Ye(n){let e=z$1.string();return n.format==="hex"&&(e=e.regex(/^#[0-9A-Fa-f]{6}$/)),n.format==="rgb"&&(e=e.regex(/^rgb\(\s*\d{1,3}\s*,\s*\d{1,3}\s*,\s*\d{1,3}\s*\)$/)),n.format==="hsl"&&(e=e.regex(/^hsl\(\s*\d{1,3}\s*,\s*\d{1,3}%\s*,\s*\d{1,3}%\s*\)$/)),n.required||(e=e.optional().nullable()),n.validate&&(e=T(e,n.validate)),e}function Qe(n){let e=z$1.array(z$1.record(z$1.any()));return n.required||(e=e.optional().nullable()),n.validate&&(e=T(e,n.validate)),e}function et(n){let e=z$1.union([z$1.record(z$1.any()),z$1.array(z$1.any())]);return n.required||(e=e.optional().nullable()),n.validate&&(e=T(e,n.validate)),e}function tt(n){let e=z$1.string();return n.required||(e=e.optional().nullable()),n.validate&&(e=T(e,n.validate)),e}function Ee(n){let e;if(n.relationTo){let t=z$1.object({id:z$1.string(),url:z$1.string().optional(),filename:z$1.string().optional(),mimeType:z$1.string().optional()});e=z$1.union([z$1.string(),t]);}else e=z$1.string();return n.hasMany&&(e=z$1.array(e)),n.required||(e=e.optional().nullable()),n.validate&&(e=T(e,n.validate)),e}function st(n){let e=z$1.string();return n.required||(e=e.optional().nullable()),n.validate&&(e=T(e,n.validate)),e}function Re(n){let e;return Array.isArray(n.relationTo)?e=z$1.object({relationTo:z$1.enum(n.relationTo),value:z$1.string()}):e=z$1.union([z$1.string(),z$1.object({relationTo:z$1.string(),value:z$1.string()})]),n.hasMany&&(e=z$1.array(e)),n.required||(e=e.optional().nullable()),n.validate&&(e=T(e,n.validate)),e}function nt(n){let e=z$1.object(Object.fromEntries(n.fields.filter(s=>s.name).map(s=>[s.name,A(s)]))).passthrough(),t=z$1.array(e);return n.minRows&&(t=t.min(n.minRows)),n.maxRows&&(t=t.max(n.maxRows)),n.required||(t=t.optional().nullable()),n.validate&&(t=T(t,n.validate)),t}function it(n){let e=z$1.array(z$1.string());return n.required||(e=e.optional().nullable()),e}function ot(n){let e=z$1.object(Object.fromEntries(n.fields.filter(t=>t.name).map(t=>[t.name,A(t)])));return n.required?e:e.optional().nullable()}function at(n){let e=n.blocks||[];e.map(o=>z$1.object({blockType:z$1.literal(o.slug),...Object.fromEntries(o.fields.filter(a=>a.name).map(a=>[a.name,A(a)]))}));let s=e.map(o=>o.slug),i;if(s.length>0){let o=z$1.object({blockType:z$1.enum(s)}).catchall(z$1.any()),a=z$1.object({blockType:z$1.string()}).catchall(z$1.any());i=z$1.array(z$1.union([o,a,z$1.record(z$1.any())]));}else i=z$1.array(z$1.union([z$1.object({blockType:z$1.string()}).catchall(z$1.any()),z$1.record(z$1.any())]));return n.minRows&&(i=i.min(n.minRows)),n.maxRows&&(i=i.max(n.maxRows)),n.required||(i=i.optional().nullable()),n.validate&&(i=T(i,n.validate)),i}function rt(n){return z$1.object(Object.fromEntries(n.fields.filter(t=>t.name).map(t=>[t.name,A(t)])))}function lt(n){return z$1.object(Object.fromEntries(n.fields.filter(t=>t.name).map(t=>[t.name,A(t)])))}function ct(n){let e={};for(let t of n.tabs)for(let s of t.fields)s.name&&(e[s.name]=A(s));return z$1.object(e).passthrough().optional()}function T(n,e){return n.refine(async t=>await e(t,{required:false})===true,{message:"Custom validation failed"})}function D(n){let e={};for(let t of n)if(t.type==="tabs"&&"tabs"in t){let s={};for(let i of t.tabs){let o=D(i.fields);Object.assign(s,o);}t.name?e[t.name]=z$1.object(s).passthrough().optional():Object.assign(e,s);}else if(t.type==="row"&&"fields"in t){let s=D(t.fields);t.name?e[t.name]=z$1.object(s).passthrough().optional():Object.assign(e,s);}else if(t.type==="collapsible"&&"fields"in t){let s=D(t.fields);t.name?e[t.name]=z$1.object(s).passthrough().optional():Object.assign(e,s);}else {if(!t.name)continue;e[t.name]=A(t);}return e}function v(n){let e={};for(let t of n)if(t.type==="tabs"&&"tabs"in t){let s={};for(let i of t.tabs){let o=v(i.fields);Object.assign(s,o);}t.name?e[t.name]=z$1.object(s).passthrough().optional().nullable():Object.assign(e,s);}else if(t.type==="row"&&"fields"in t){let s=v(t.fields);t.name?e[t.name]=z$1.object(s).passthrough().optional().nullable():Object.assign(e,s);}else if(t.type==="collapsible"&&"fields"in t){let s=v(t.fields);t.name?e[t.name]=z$1.object(s).passthrough().optional().nullable():Object.assign(e,s);}else if(t.type==="group"&&"fields"in t)t.name?e[t.name]=z$1.object(v(t.fields)).passthrough().optional().nullable():Object.assign(e,v(t.fields));else {if(!t.name)continue;e[t.name]=A(t).optional().nullable();}return e}function we(n){let e=D(n.fields);return n.timestamps&&(e.createdAt=z$1.string().optional(),e.updatedAt=z$1.string().optional()),n.tenantScoped&&(e.tenantId=z$1.string().optional()),e.id=z$1.string().optional(),z$1.object(e).passthrough()}function Ne(n){let e=D(n.fields);return z$1.object(e).passthrough()}function De(n){let e={};for(let t of n.fields)if(t.name)if(t.type==="tabs"&&"tabs"in t){let s={};for(let i of t.tabs)for(let o of i.fields)o.name&&(s[o.name]=A(o).optional().nullable());e[t.name]=z$1.object(s).optional().nullable();}else if(t.type==="row"&&"fields"in t){let s={};for(let i of t.fields)i.name&&(s[i.name]=A(i).optional().nullable());Object.assign(e,s);}else t.type==="collapsible"&&"fields"in t?e[t.name]=z$1.object(v(t.fields)).optional().nullable():t.type==="group"&&"fields"in t?e[t.name]=z$1.object(v(t.fields)).optional().nullable():e[t.name]=A(t).optional().nullable();return z$1.object(e).passthrough()}function Fe(n){let e={};for(let t of n.fields)t.name&&(e[t.name]=z$1.object({equals:z$1.any().optional(),not_equals:z$1.any().optional(),in:z$1.array(z$1.any()).optional(),not_in:z$1.array(z$1.any()).optional(),greater_than:z$1.number().optional(),greater_than_equal:z$1.number().optional(),less_than:z$1.number().optional(),less_than_equal:z$1.number().optional(),like:z$1.string().optional(),not_like:z$1.string().optional(),contains:z$1.string().optional(),exists:z$1.boolean().optional()}).optional());return e.AND=z$1.array(z$1.lazy(()=>z$1.object(e))).optional(),e.OR=z$1.array(z$1.lazy(()=>z$1.object(e))).optional(),z$1.object(e).optional()}function ke(n){let e=D(n.fields);return e.id=z$1.string().optional(),z$1.object(e).passthrough()}function Ie(n){let e={};for(let t of n.fields)if(t.name)if(t.type==="tabs"&&"tabs"in t){let s={};for(let i of t.tabs)for(let o of i.fields)o.name&&(s[o.name]=A(o).optional().nullable());e[t.name]=z$1.object(s).optional().nullable();}else t.type==="collapsible"&&"fields"in t?e[t.name]=z$1.object(v(t.fields)).optional().nullable():t.type==="group"&&"fields"in t?e[t.name]=z$1.object(v(t.fields)).optional().nullable():e[t.name]=A(t).optional().nullable();return z$1.object(e).passthrough()}var k=class{storageProviders=f();collections=new Map;globals=new Map;plugins=[];schemaCache=new Map;initialized=false;addCollection(e){if(this.initialized)throw new Error("Cannot add collections after Registry has been initialized");if(this.collections.has(e.slug)){console.warn(`[Registry] Duplicate collection slug "${e.slug}" \u2014 skipping`);return}let t={...e,fields:[...e.fields]};for(let i of this.plugins){let o=i.extensions?.collections?.find(a=>a.slug===t.slug);o&&(t={...t,...o.config,fields:[...t.fields,...o.config.fields||[]]});}if(t.seo){let i=a$1(),o=t.fields.findIndex(a=>a.type==="tabs");if(o!==-1){let a=t.fields[o];t.fields[o]={...a,tabs:[...a.tabs,{label:"SEO Settings",fields:i.fields}]};}else t.fields.push(i);}t.fields=this.applyFieldDefaults(t);let s=W(t);if(s.length>0)throw new Error(`Invalid collection config: ${s.join(", ")}`);this.collections.set(t.slug,t),this.clearSchemaCache(t.slug);}addCollections(e){for(let t of e)this.addCollection(t);}getCollection(e){return this.collections.get(e)}getCollections(){return Array.from(this.collections.values())}getCollectionSlugs(){return Array.from(this.collections.keys())}hasCollection(e){return this.collections.has(e)}removeCollection(e){if(this.initialized)throw new Error("Cannot remove collections after Registry has been initialized");return this.clearSchemaCache(e),this.collections.delete(e)}addGlobal(e){if(this.initialized)throw new Error("Cannot add globals after Registry has been initialized");this._addGlobalUnsafe(e);}addGlobalPostInit(e){this.globals.has(e.slug)&&this.globals.delete(e.slug),this._addGlobalUnsafe(e);}_addGlobalUnsafe(e){if(this.globals.has(e.slug)){console.warn(`[Registry] Duplicate global slug "${e.slug}" \u2014 skipping`);return}let t=z(e);if(t.length>0)throw new Error(`Invalid global config: ${t.join(", ")}`);let s={...e};for(let i of this.plugins){let o=i.extensions?.globals?.find(a=>a.slug===s.slug);o&&(s={...s,...o.config,fields:[...s.fields||[],...o.config.fields||[]]});}this.globals.set(s.slug,s),this.clearSchemaCache(`global:${s.slug}`);}addGlobals(e){for(let t of e)this.addGlobal(t);}getGlobal(e){return this.globals.get(e)}getGlobals(){return Array.from(this.globals.values())}getGlobalSlugs(){return Array.from(this.globals.keys())}hasGlobal(e){return this.globals.has(e)}removeGlobal(e){if(this.initialized)throw new Error("Cannot remove globals after Registry has been initialized");return this.clearSchemaCache(`global:${e}`),this.globals.delete(e)}addPlugin(e){if(this.initialized)throw new Error("Cannot add plugins after Registry has been initialized");this.plugins.push(e);}getPlugins(){return [...this.plugins]}getZodSchema(e){let t=this.schemaCache.get(e);if(t)return t;let s=this.collections.get(e);if(s){let o=we(s);return this.schemaCache.set(e,o),o}let i=this.globals.get(e);if(i){let o=ke(i);return this.schemaCache.set(`global:${e}`,o),o}throw new Error(`No collection or global found with slug "${e}"`)}getCreateZodSchema(e){let t=`${e}:create`,s=this.schemaCache.get(t);if(s)return s;let i=this.collections.get(e);if(i){let o=Ne(i);return this.schemaCache.set(t,o),o}throw new Error(`No collection found with slug "${e}"`)}getUpdateZodSchema(e){let t=`${e}:update`,s=this.schemaCache.get(t);if(s)return s;let i=this.collections.get(e);if(i){let a=De(i);return this.schemaCache.set(t,a),a}let o=this.globals.get(e);if(o){let a=Ie(o);return this.schemaCache.set(`global:${e}:update`,a),a}throw new Error(`No collection or global found with slug "${e}"`)}getWhereZodSchema(e){let t=`${e}:where`,s=this.schemaCache.get(t);if(s)return s;let i=this.collections.get(e);if(i){let o=Fe(i);return this.schemaCache.set(t,o),o}throw new Error(`No collection found with slug "${e}"`)}getFieldZodSchema(e){return A(e)}clearSchemaCache(e){this.schemaCache.delete(e),this.schemaCache.delete(`${e}:create`),this.schemaCache.delete(`${e}:update`),this.schemaCache.delete(`${e}:where`);}applyFieldDefaults(e){let t=[...e.fields];return t.some(s=>s.name==="id")||t.unshift({name:"id",type:"text",admin:{readOnly:true,hidden:true}}),e.tenantScoped&&!t.some(s=>s.name==="tenantId")&&t.push({name:"tenantId",type:"text",required:true,admin:{readOnly:true,hidden:true}}),e.timestamps&&!t.some(s=>s.name==="createdAt")&&(t.push({name:"createdAt",type:"date",admin:{readOnly:true,hidden:true}}),t.push({name:"updatedAt",type:"date",admin:{readOnly:true,hidden:true}})),e.versions?.drafts&&!t.some(s=>s.name==="status")&&t.push({name:"status",type:"select",options:[{value:"draft",label:"Draft"},{value:"published",label:"Published"}],admin:{readOnly:true,hidden:true}}),e.auth&&!t.some(s=>s.name==="password")&&t.push({name:"password",type:"password",required:true,admin:{hidden:true}}),t}getFields(e){let t=this.collections.get(e);if(t)return t.fields;let s=this.globals.get(e);if(s)return s.fields;throw new Error(`No collection or global found with slug "${e}"`)}getFieldMap(e){let t=this.getFields(e),s=new Map,i=o=>{for(let a of o){if(a.name&&s.set(a.name,a),"fields"in a&&a.fields&&i(a.fields),"tabs"in a)for(let r of a.tabs)i(r.fields);if("blocks"in a)for(let r of a.blocks)i(r.fields);}};return i(t),s}getVisibleFields(e){return this.getFields(e).filter(s=>!s.admin?.hidden)}validate(){let e=this.getCollections(),t=this.getGlobals();ve(e,t);}async init(e){this.validate();for(let t of this.plugins){t.init&&await t.init(e||this);let s=t.collections||[];for(let o of s)o.slug&&!this.hasCollection(o.slug)&&this.addCollection(o);let i=t.globals||[];for(let o of i)o.slug&&!this.hasGlobal(o.slug)&&this.addGlobal(o);}this.initialized=true;}isInitialized(){return this.initialized}getPaginationDefaults(e){let t=this.collections.get(e);return {defaultLimit:t?.admin?.pagination?.defaultLimit||10,limits:t?.admin?.pagination?.limits||[10,25,50,100]}}getDefaultSort(e){let s=this.collections.get(e)?.admin?.useAsTitle;return s||"createdAt"}getDefaultColumns(e){let t=this.collections.get(e);return t?.admin?.defaultColumns?t.admin.defaultColumns:this.getVisibleFields(e).slice(0,4).map(i=>i.name)}getAdminTitle(e){let t=this.collections.get(e);return t?.label||t?.admin?.description||e}getAdminLabel(e){let t=this.collections.get(e);return t?.singularLabel||t?.label||e}getAdminGroup(e){return this.collections.get(e)?.admin?.group}getStats(){let e=0;for(let t of this.collections.values())e+=t.fields.length;for(let t of this.globals.values())e+=t.fields.length;return {collections:this.collections.size,globals:this.globals.size,plugins:this.plugins.length,fields:e}}toJSON(){return {collections:this.getCollections(),globals:this.getGlobals()}}},F=null;function dt(){return F||(F=new k),F}function ut(){F=null;}function X(){return F=new k,F}var x=class{name;displayName;adminEntry;version;description;hooks={};collections=[];globals=[];fields=[];extensions={collections:[],globals:[]};adminComponents={};adminStyles=[];serverMiddleware;clientMiddleware;constructor(e){this.name=e;}async init(e){}async beforeInit(e){}async afterInit(e){}getCollections(){return this.collections}getGlobals(){return this.globals}getHooks(){return this.hooks}},_=class{plugins=new Map;hooks=new Map;register(e){if(this.plugins.has(e.name))throw new Error(`Plugin "${e.name}" is already registered`);this.plugins.set(e.name,e);let t=e.getHooks?.()||{};for(let[s,i]of Object.entries(t))if(Array.isArray(i))for(let o of i)this.registerHook(s,o);}unregister(e){let t=this.plugins.get(e);if(!t)return;let s=t.getHooks?.()||{};for(let[i,o]of Object.entries(s))if(Array.isArray(o))for(let a of o)this.unregisterHook(i,a);this.plugins.delete(e);}get(e){return this.plugins.get(e)}getAll(){return Array.from(this.plugins.values())}has(e){return this.plugins.has(e)}registerHook(e,t){this.hooks.has(e)||this.hooks.set(e,[]),this.hooks.get(e).push(t);}unregisterHook(e,t){let s=this.hooks.get(e);if(s){let i=s.indexOf(t);i>-1&&s.splice(i,1);}}async executeHook(e,t){let s=this.hooks.get(e)||[],i=t;for(let o of s)try{let a=await o({...t,data:i});a!==void 0&&(i=a);}catch(a){console.error(`[PluginManager] Error in hook "${e}":`,a);}return i}getAllCollections(){let e=[];for(let t of this.plugins.values()){let s=t.getCollections?.()||[];e.push(...s);}return e}getAllGlobals(){let e=[];for(let t of this.plugins.values()){let s=t.getGlobals?.()||[];e.push(...s);}return e}getAllFields(){let e=[];for(let t of this.plugins.values())e.push(...t.fields);return e}getAdminComponents(){let e={};for(let t of this.plugins.values())Object.assign(e,t.adminComponents);return e}getAdminStyles(){let e=[];for(let t of this.plugins.values())e.push(...t.adminStyles);return e}},J=class extends x{constructor(){super("seo"),this.displayName="Core SEO",this.description="Advanced SEO features including sitemaps, robots.txt, and structured data",this.adminEntry="@kyro-cms/admin/plugins/seo-admin",this.collections.push({slug:"seo-settings",label:"SEO Settings",fields:[{name:"sitemap",type:"checkbox",label:"Enable Sitemap",defaultValue:true},{name:"robotsTxt",type:"richtext",label:"robots.txt Content"},{name:"canonicalUrl",type:"text",variant:"url",label:"Canonical URL"},{name:"ogImage",type:"text",label:"Default OG Image URL"}]});}},Y=class extends x{constructor(){super("analytics"),this.displayName="Core Analytics",this.description="Built-in privacy-friendly analytics and dashboards",this.collections.push({slug:"analytics-events",label:"Analytics Events",fields:[{name:"name",type:"text",required:true},{name:"properties",type:"json",label:"Event Properties"},{name:"timestamp",type:"date",required:true},{name:"userId",type:"text",label:"User ID"},{name:"sessionId",type:"text",label:"Session ID"}]}),this.adminComponents.AnalyticsDashboard={};}},Q=class extends x{constructor(){super("comments"),this.description="Commenting system for products and posts",this.collections.push({slug:"comments",label:"Comments",fields:[{name:"content",type:"richtext",required:true},{name:"author",type:"text",required:true},{name:"email",type:"email"},{name:"approved",type:"checkbox",defaultValue:false},{name:"parent",type:"text",label:"Parent Comment ID"},{name:"resourceType",type:"text",required:true},{name:"resourceId",type:"text",required:true}]}),this.adminComponents.CommentModeration={};}},ee=class extends x{constructor(){super("reviews"),this.description="Product reviews and ratings",this.collections.push({slug:"reviews",label:"Reviews",fields:[{name:"rating",type:"number",required:true,min:1,max:5},{name:"title",type:"text"},{name:"content",type:"richtext",required:true},{name:"author",type:"relationship",relationTo:"customers"},{name:"product",type:"relationship",relationTo:"products",required:true},{name:"approved",type:"checkbox",defaultValue:false},{name:"verified",type:"checkbox",label:"Verified Purchase"},{name:"helpful",type:"number",label:"Helpful Count",defaultValue:0}]}),this.adminComponents.ReviewModeration={};}},te=class extends x{constructor(){super("wishlist"),this.description="Customer wishlists",this.collections.push({slug:"wishlists",label:"Wishlists",fields:[{name:"customer",type:"relationship",relationTo:"customers",required:true},{name:"name",type:"text",label:"Wishlist Name",defaultValue:"My Wishlist"},{name:"items",type:"blocks",label:"Items",blocks:[{slug:"wishlist-item",label:"Item",fields:[{name:"product",type:"relationship",relationTo:"products"},{name:"quantity",type:"number",defaultValue:1},{name:"addedAt",type:"date"},{name:"priority",type:"select",options:[{label:"Low",value:"low"},{label:"Medium",value:"medium"},{label:"High",value:"high"}]}]}]}]});}},$t={SEO:J,Analytics:Y,Comments:Q,Reviews:ee,Wishlist:te};var pt={aws:{type:"aws",configKey:"s3",displayName:"S3 Compatible (AWS, Backblaze, Wasabi, etc.)",configFields:[{name:"bucket",type:"text",label:"Bucket Name",required:true},{name:"region",type:"text",label:"Region",defaultValue:"us-east-1",admin:{placeholder:"us-east-1"}},{name:"accessKeyId",type:"text",label:"Access Key ID",required:true},{name:"secretAccessKey",type:"password",label:"Secret Access Key",required:true},{name:"endpoint",type:"text",label:"Endpoint URL",admin:{placeholder:"https://s3.custom.com"}},{name:"cdnUrl",type:"text",label:"CDN URL",admin:{placeholder:"https://cdn.example.com"}},{name:"prefix",type:"text",label:"Path Prefix",admin:{placeholder:"uploads"}}]},r2:{type:"r2",configKey:"r2",displayName:"Cloudflare R2",configFields:[{name:"accountId",type:"text",label:"Account ID",required:true,admin:{placeholder:"Your Cloudflare Account ID"}},{name:"accessKeyId",type:"text",label:"Access Key ID",required:true},{name:"secretAccessKey",type:"password",label:"Secret Access Key",required:true},{name:"bucket",type:"text",label:"Bucket Name",required:true},{name:"publicDevUrl",type:"text",label:"Public Dev URL ID",admin:{placeholder:"pub-xxxxxxxxxxxxxxxx",description:"Enter ONLY the ID (e.g., pub-b8d8c4cc8bcf4d868ddd95efc1b305aa). Do NOT include https:// or the full URL. Found in R2 Dashboard \u2192 Public Dev URL."}},{name:"cdnUrl",type:"text",label:"Custom CDN URL",admin:{placeholder:"https://assets.example.com (optional)"}},{name:"prefix",type:"text",label:"Path Prefix",admin:{placeholder:"uploads (optional)",description:"Optional prefix for all object keys. Do not use '/' as prefix."}}]},gcs:{type:"gcs",configKey:"gcs",displayName:"Google Cloud Storage",configFields:[{name:"bucket",type:"text",label:"Bucket Name",required:true},{name:"projectId",type:"text",label:"Project ID"},{name:"clientEmail",type:"text",label:"Client Email"},{name:"privateKey",type:"password",label:"Private Key"},{name:"cdnUrl",type:"text",label:"CDN URL"},{name:"prefix",type:"text",label:"Path Prefix"}]},digitalocean:{type:"digitalocean",configKey:"digitalocean",displayName:"DigitalOcean Spaces",configFields:[{name:"bucket",type:"text",label:"Bucket Name",required:true},{name:"region",type:"text",label:"Region",defaultValue:"nyc3"},{name:"accessKeyId",type:"text",label:"Access Key ID",required:true},{name:"secretAccessKey",type:"password",label:"Secret Access Key",required:true},{name:"cdnUrl",type:"text",label:"CDN URL"},{name:"prefix",type:"text",label:"Path Prefix"}]},backblaze:{type:"backblaze",configKey:"backblaze",displayName:"Backblaze B2",configFields:[{name:"bucket",type:"text",label:"Bucket Name",required:true},{name:"accountId",type:"text",label:"Account ID"},{name:"applicationKeyId",type:"text",label:"Application Key ID",required:true},{name:"applicationKey",type:"password",label:"Application Key",required:true},{name:"cdnUrl",type:"text",label:"CDN URL"},{name:"prefix",type:"text",label:"Path Prefix"}]},wasabi:{type:"wasabi",configKey:"wasabi",displayName:"Wasabi",configFields:[{name:"bucket",type:"text",label:"Bucket Name",required:true},{name:"region",type:"text",label:"Region",defaultValue:"us-east-1"},{name:"accessKeyId",type:"text",label:"Access Key ID",required:true},{name:"secretAccessKey",type:"password",label:"Secret Access Key",required:true},{name:"cdnUrl",type:"text",label:"CDN URL"},{name:"prefix",type:"text",label:"Path Prefix"}]}};function ft(n,e){switch(n){case "r2":return e?.endpoint||`https://${e?.accountId||""}.r2.cloudflarestorage.com`;case "digitalocean":return e?.endpoint||`https://${e?.region||"nyc3"}.digitaloceanspaces.com`;case "backblaze":return e?.endpoint||"https://s3.backblazeb2.com";case "wasabi":return e?.endpoint||`https://s3.${e?.region||"us-east-1"}.wasabisys.com`;default:return e?.endpoint}}function Pe(n,e){return {provider:n,bucket:e?.bucket||"",region:e?.region||"us-east-1",accessKeyId:e?.accessKeyId||e?.clientEmail||e?.applicationKeyId||"",secretAccessKey:e?.secretAccessKey||e?.privateKey||e?.applicationKey||"",endpoint:ft(n,e),cdnUrl:e?.cdnUrl,prefix:e?.prefix,accountId:e?.accountId,publicDevUrl:e?.publicDevUrl}}function yt(n,e,t){let s=t[e.configKey]||{};return Pe(n,s)}function gt(n,e,t){let s=t?.[e.configKey]||t;return Pe(n,s)}var se=class extends x{constructor(){super("@kyro-cms/storage-s3"),this.version="1.0.0",this.description="S3-compatible storage (AWS R2 GCS DigitalOcean Backblaze Wasabi)";}async init(e){let t=e.registry?.storageProviders;if(!t)return;let s=this.name;for(let i of Object.values(pt))t.register({type:i.type,displayName:i.displayName,pluginName:s,configKey:i.configKey,configFields:i.configFields,extractConfig:o=>yt(i.type,i,o),extractRawConfig:o=>gt(i.type,i,o),factory:o=>a(o)});}},Oe=new se;var ne=class extends x{constructor(){super("@kyro-cms/storage-cloudinary"),this.version="1.0.0",this.description="Cloudinary image and video storage";}async init(e){let t=e.registry?.storageProviders;t&&t.register({type:"cloudinary",displayName:"Cloudinary",pluginName:this.name,configKey:"cloudinary",configFields:[{name:"cloudName",type:"text",label:"Cloud Name",required:true},{name:"apiKey",type:"text",label:"API Key",required:true},{name:"apiSecret",type:"password",label:"API Secret",required:true},{name:"folder",type:"text",label:"Folder",admin:{placeholder:"Optional folder path"}},{name:"uploadPreset",type:"text",label:"Upload Preset (optional)",admin:{placeholder:"Leave empty for signed uploads",description:"If not set, uploads will be signed with API Secret"}}],extractConfig:s=>({cloudName:s.cloudinary?.cloudName||"",apiKey:s.cloudinary?.apiKey||"",apiSecret:s.cloudinary?.apiSecret||"",folder:s.cloudinary?.folder,uploadPreset:s.cloudinary?.uploadPreset}),extractRawConfig:s=>{let i=s?.cloudinary||s;return {cloudName:i?.cloudName||"",apiKey:i?.apiKey||"",apiSecret:i?.apiSecret||"",folder:i?.folder,uploadPreset:i?.uploadPreset}},factory:s=>b(s)});}},$e=new ne;var ie=class extends x{constructor(){super("@kyro-cms/storage-ftp"),this.version="1.0.0",this.description="FTP/SFTP storage provider";}async init(e){let t=e.registry?.storageProviders;t&&t.register({type:"ftp",displayName:"FTP",pluginName:this.name,configKey:"ftp",configFields:[{name:"host",type:"text",label:"Host",required:true,admin:{placeholder:"ftp.example.com"}},{name:"port",type:"number",label:"Port",defaultValue:21,admin:{placeholder:"21 for FTP"}},{name:"user",type:"text",label:"Username",required:true},{name:"password",type:"password",label:"Password",required:true},{name:"secure",type:"checkbox",label:"Use TLS/SSL",defaultValue:false,admin:{description:"Enable TLS/SSL for secure connections (FTP only)"}},{name:"baseUrl",type:"text",label:"Base URL",required:true,admin:{placeholder:"https://files.example.com"}},{name:"prefix",type:"text",label:"Path Prefix",admin:{placeholder:"uploads"}}],extractConfig:s=>({host:s.ftp?.host||"",port:s.ftp?.port||21,user:s.ftp?.user||"",password:s.ftp?.password||"",secure:s.ftp?.secure||false,baseUrl:s.ftp?.baseUrl||"",prefix:s.ftp?.prefix,type:"ftp"}),extractRawConfig:s=>{let i=s?.ftp||s;return {host:i?.host||"",port:i?.port||21,user:i?.user||"",password:i?.password||"",secure:i?.secure||false,baseUrl:i?.baseUrl||"",prefix:i?.prefix,type:"ftp"}},factory:s=>c(s)});}},Le=new ie;var mt=[Oe,$e,Le];function N(n,e,t){let s=e.split(".");if(s.length===0)return false;let i=s[0],o=s.slice(1).join(".");for(let a of n)if(a.name===i)if(o){if(a.fields&&Array.isArray(a.fields))return N(a.fields,o,t);if(a.type==="tabs"&&a.tabs&&Array.isArray(a.tabs)){for(let r of a.tabs)if(r.fields&&Array.isArray(r.fields)&&N(r.fields,o,t))return true;return false}if(a.type==="blocks"&&a.blocks&&Array.isArray(a.blocks)){let r=o.split(".")[0],c=o.split(".").slice(1).join(".");if(!c)return false;for(let d of a.blocks)if(d.slug===r&&d.fields&&Array.isArray(d.fields))return N(d.fields,c,t);return false}return a.type==="array"&&a.fields&&Array.isArray(a.fields)?N(a.fields,o,t):false}else return Object.assign(a,t),true;for(let a of n)if(!a.name||a.type==="tabs"||a.type==="row"||a.type==="collapsible"){if(a.fields&&Array.isArray(a.fields)&&N(a.fields,e,t))return true;if(a.type==="tabs"&&a.tabs&&Array.isArray(a.tabs)){for(let c of a.tabs)if(c.fields&&Array.isArray(c.fields)&&N(c.fields,e,t))return true}}return o?false:(n.push({name:i,...t}),true)}function bt(n,e){if(e)for(let t of n){let s=e[t.slug];if(s){let{fields:i,...o}=s;if(t.admin={...t.admin,...o},i&&t.fields&&Array.isArray(t.fields))for(let[a,r]of Object.entries(i))N(t.fields,a,r);}}}var oe=class{registry;db;pubsub;webhookService;settings;pluginManager;wsServer;config;constructor(e){this.config=e,this.registry=X(),this.db=e.adapter,this.pubsub=new b$1(this.registry),this.webhookService=o(this.db),this.pluginManager=new _;for(let t of mt)this.pluginManager.register(t),this.registry.addPlugin(t);if(e.plugins)for(let t of e.plugins)this.pluginManager.register(t),this.registry.addPlugin(t);e.collections&&e.admin?.collectionOverrides&&bt(e.collections,e.admin.collectionOverrides),e.collections&&this.registry.addCollections(e.collections),e.globals&&this.registry.addGlobals(e.globals);}async init(){await this.pluginManager.executeHook("beforeInit",{kyro:this}),await this.registry.init(this),await this.pluginManager.executeHook("afterInit",{kyro:this}),this.registry.addGlobalPostInit(a$2);let e={slug:"plugin-settings",admin:{hidden:true},fields:[{name:"states",type:"json"}]};if(this.registry.addGlobalPostInit(e),!this.db)throw new Error("Database adapter is null \u2014 failed to load at startup. Check the server console for the exact error.");let t={slug:d,fields:[{name:"userId",type:"text",required:true},{name:"name",type:"text",required:true},{name:"key",type:"text",required:true},{name:"keyPrefix",type:"text",required:true},{name:"permissions",type:"json"},{name:"lastUsedAt",type:"date"},{name:"expiresAt",type:"date"}]},s={slug:f$1,fields:[{name:"name",type:"text",required:true},{name:"url",type:"text",required:true},{name:"events",type:"json",required:true},{name:"collections",type:"json"},{name:"status",type:"text",required:true},{name:"secret",type:"text"},{name:"headers",type:"json"},{name:"action",type:"text"},{name:"config",type:"json"},{name:"lastTriggered",type:"date"},{name:"lastError",type:"text"}]},i={slug:g$1,fields:[{name:"webhookId",type:"text",required:true},{name:"event",type:"text",required:true},{name:"payload",type:"json",required:true},{name:"attempt",type:"number",required:true},{name:"status",type:"text",required:true},{name:"responseStatus",type:"number"},{name:"responseBody",type:"text"},{name:"error",type:"text"},{name:"duration",type:"number"},{name:"deliveredAt",type:"date"},{name:"nextRetryAt",type:"date"}]},o=this.registry.getGlobals();if(this.db instanceof c$1&&this.db.dialect==="postgres"){let a=this.db,r=d.replace(/-/g,"_");a.schema[r]||(a.schema[r]=g);}await this.db.init([...this.registry.getCollections(),t,s,i],o),await this.loadPluginState(),this.pubsub.autoRegisterHooks();}async loadSettings(){if(this.settings)return this.settings;try{let e=await this.db.findOne({collection:"_globals_access-settings",where:{},draft:!0});e&&(this.settings={access:e});}catch{}return this.settings||{}}async loadPluginState(){let e=this.registry.storageProviders,t=e.getAllPluginNames(),s={};try{let i=await this.db.findOne({collection:"_globals_plugin-settings",where:{},draft:!0});i&&i.states&&(s=i.states);}catch{}for(let i of t)s[i]!==void 0&&e.setPluginEnabled(i,s[i]);}getREST(e){let t$1=typeof this.config.auth=="object"?this.config.auth:null,s=t$1?.secret,i=t$1?.checkSession!==false;return t({registry:this.registry,db:this.db,authSecret:s,authAdapter:this.config.authAdapter,checkSession:i,...e,cors:this.config.cors,webhookService:this.webhookService,settings:this.settings})}getGraphQL(e$1){let t=c$2({registry:this.registry,db:this.db,settings:this.settings});return {fetch:createYoga({schema:t,context:async({request:i})=>{let o=f$2(i),a,r;if(o&&this.db){let d=await e(o,this.db);d.user&&(a=d.user,r=g$2(d));}let c=e$1?.tenantId;return {db:this.db,registry:this.registry,user:a,req:i,tenantId:c,apiKey:r,relationLoader:new a$3({db:this.db,tenantId:c,user:a})}},graphiql:this.config.graphQL?.disablePlayground!==true,plugins:[]}).fetch,schema:t}}getTRPC(e){return {fetch:async(t,s)=>{let o=new URL(t.url).pathname.replace(/^\/api\/trpc\//,""),[a,...r]=o.split("."),c=r.join(".");if(c=c.replace(/\.(query|mutate|subscribe)$/,""),!a||!c)return new Response(JSON.stringify({error:{message:"Invalid tRPC path",code:-32600,data:{code:"BAD_REQUEST",httpStatus:400}}}),{status:400,headers:{"Content-Type":"application/json"}});let d=await a$4({db:this.db,registry:this.registry,req:t,user:e?.user,tenantId:e?.tenantId,settings:this.settings}),p=i(d)[a];if(!p)return new Response(JSON.stringify({error:{message:`Collection '${a}' not found`,code:-32601,data:{code:"NOT_FOUND",httpStatus:404}}}),{status:404,headers:{"Content-Type":"application/json"}});let b=p[c];if(typeof b!="function")return new Response(JSON.stringify({error:{message:`Procedure '${c}' not found`,code:-32601,data:{code:"NOT_FOUND",httpStatus:404}}}),{status:404,headers:{"Content-Type":"application/json"}});try{let y={};if(t.method==="POST"||t.method==="PATCH")y=await t.json().catch(()=>({}));else {let C=new URL(t.url).searchParams.get("input");if(C)try{y=JSON.parse(decodeURIComponent(C));}catch{}}let g=y?.["0"]??y,f=await b({...g,collection:a});return new Response(JSON.stringify({result:{data:f}}),{status:200,headers:{"Content-Type":"application/json"}})}catch(y){let g=y.message||"Internal error",f=g.includes("not found")?404:g.includes("denied")||g.includes("authentication required")?403:g.includes("conflict")?409:500,C=f===404?-32601:f===403?-32001:f===409?-32002:-32603;return new Response(JSON.stringify({error:{message:g,code:C,data:{code:"INTERNAL_SERVER_ERROR",httpStatus:f}}}),{status:f,headers:{"Content-Type":"application/json"}})}},router:null}}getWS(){return this.wsServer}async startWebSocket(e$1){let t=this.settings?.access?.apiAccess;if(t?.wsEnabled===false)return null;let s=async o=>{let a=await e(o,this.db);if(!a.valid)throw new Error(a.error||"Invalid API key");if(!a.user)throw new Error("API key has no associated user");return a.user},i=e$1?.port||8080;if(globalThis.__KYRO_WS_SERVER__)try{await globalThis.__KYRO_WS_SERVER__.close();}catch{}return this.wsServer=d$1({pubsub:this.pubsub,port:i,requireAuth:e$1?.requireAuth??t?.requireAuth,verifyToken:e$1?.verifyToken||s}),globalThis.__KYRO_WS_SERVER__=this.wsServer,this.wsServer}async shutdown(){await this.pluginManager.executeHook("beforeServerStop",{kyro:this}),this.wsServer&&await this.wsServer.close(),await this.db.disconnect(),await this.pluginManager.executeHook("afterServerStop",{kyro:this});}};function ys(n){return new oe(n)}var Ct=createRequire(import.meta.url),At="node:sqlite",{DatabaseSync:St}=Ct(At);function E(n){let e=[];for(let t of n)if(t.type==="tabs"&&"tabs"in t)for(let s of t.tabs)e.push(...E(s.fields));else t.type==="row"&&"fields"in t?e.push(...E(t.fields)):t.type==="collapsible"&&"fields"in t?e.push(...E(t.fields)):e.push(t);return e}function vt(n,e){let t=e,s=n[t.name];if(t.type==="json"||t.type==="richtext"||t.type==="array"||t.type==="group"||t.type==="blocks"||t.type==="list"||t.type==="relationship-block")try{s=s?JSON.parse(s):null;}catch{s=null;}if(t.type==="checkbox"&&(s=!!s),t.type==="date"&&s)try{let i=new Date(s);isNaN(i.getTime())?s=null:s=i.toISOString();}catch{s=null;}if((t.type==="upload"||t.type==="image")&&s)try{let i=JSON.parse(s);Array.isArray(i)?s=i.map(o=>typeof o=="object"&&o!==null?o:{id:o}):s=typeof i=="object"?i:{id:i};}catch{s={id:s};}if(t.type==="relationship"&&s)try{let i=JSON.parse(s);Array.isArray(i),s=i;}catch{s={relationTo:Array.isArray(t.relationTo)?t.relationTo[0]:t.relationTo,value:s};}if(t.type==="list"&&s)try{let i=JSON.parse(s);s=Array.isArray(i)?i:[];}catch{s=[];}if(t.type==="relationship-block"&&s)try{let i=JSON.parse(s);s=Array.isArray(i)?i:[];}catch{s=[];}return s}function _e(n,e){return Array.isArray(n)?n.map(t=>{if(!t||typeof t!="object")return t;let s=t.data?{...t.data}:void 0;if(!s)return t;let i=e.find(o=>o.slug===t.type||o.slug===t.slug);if(!i||!Array.isArray(i.fields))return t;for(let o of i.fields){if(o.name&&(o.type==="upload"||o.type==="image")&&s[o.name]){let a=s[o.name];Array.isArray(a)?s[o.name]=a.map(r=>typeof r=="string"?{id:r}:r):typeof a=="string"&&(s[o.name]={id:a});}if(o.type==="blocks"&&o.name&&s[o.name]){let a=o.blocks||[];s[o.name]=_e(s[o.name],a);}}return {...t,data:s}}):n}function ae(n,e){try{return n.prepare(`PRAGMA table_info(${e})`).all().map(s=>s.name)}catch{return []}}var re=class extends a$5{db;path;migrations=new Map;versionsTableName="kyro_versions";constructor(e){super(),this.path=e.path,e.db?this.db=e.db:this.db=null;}async connect(){if(this.db||(this.db=new St(this.path||":memory:")),this.db&&typeof this.db.prepare=="function"&&!this.db.prepare.__wrapped){let e=this.db.prepare.bind(this.db),t=s=>{let i=e(s),o=a=>typeof a=="boolean"?a?1:0:a===void 0?null:a;return new Proxy(i,{get(a,r,c){if(r==="all")return (...u)=>a.all(...u.map(o));if(r==="get")return (...u)=>a.get(...u.map(o));if(r==="run")return (...u)=>a.run(...u.map(o));let d=Reflect.get(a,r,c);return typeof d=="function"?d.bind(a):d}})};t.__wrapped=true,this.db.prepare=t;}this.db.exec("PRAGMA journal_mode = WAL"),this.db.exec("PRAGMA foreign_keys = ON"),this.connected=true;}async disconnect(){this.db&&this.db.close(),this.connected=false;}ensureTable(e,t){let s=t||this.getTableNameFor(e.slug),i=["id TEXT PRIMARY KEY"];for(let r of E(e.fields)){if(!r.name||r.name==="id")continue;let c=this.fieldToSQL(r);c&&i.push(c);}let o=E(e.fields);o.some(r=>r.name==="createdAt")||i.push(`${this.col("createdAt")} TEXT DEFAULT (datetime('now'))`),o.some(r=>r.name==="updatedAt")||i.push(`${this.col("updatedAt")} TEXT DEFAULT (datetime('now'))`),o.some(r=>r.name==="status")||i.push("status TEXT DEFAULT 'draft'"),o.some(r=>r.name==="hasDraft")||i.push("hasDraft INTEGER DEFAULT 0"),e.tenantScoped&&i.push("tenant_id TEXT NOT NULL");let a=ae(this.db,s);if(a.length===0){let r=`CREATE TABLE IF NOT EXISTS ${s} (${i.join(", ")})`;this.db.exec(r),this.db.exec(`CREATE INDEX IF NOT EXISTS idx_${s}_status ON ${s}(status)`);for(let c of E(e.fields))c.name&&c.indexed&&this.db.exec(`CREATE INDEX IF NOT EXISTS idx_${s}_${c.name} ON ${s}(${this.col(c.name)})`),c.name&&c.unique&&this.db.exec(`CREATE UNIQUE INDEX IF NOT EXISTS idx_${s}_${c.name}_unique ON ${s}(${this.col(c.name)})`);}else {let r=new Set(a);for(let c of i){let d=c.split(" ")[0].replace(/^"/,"").replace(/"$/,"");if(!r.has(d)&&d!=="id")try{d==="status"?this.db.exec(`ALTER TABLE ${s} ADD COLUMN ${this.col(d)} TEXT DEFAULT 'published'`):d==="hasDraft"?this.db.exec(`ALTER TABLE ${s} ADD COLUMN ${this.col(d)} INTEGER DEFAULT 0`):this.db.exec(`ALTER TABLE ${s} ADD COLUMN ${this.col(d)} TEXT`);}catch{}}}this.migrations.set(s,true);}ensureVersionsTable(){this.db.exec(`
|
|
4
|
-
CREATE TABLE IF NOT EXISTS ${this.versionsTableName} (
|
|
5
|
-
id TEXT PRIMARY KEY,
|
|
6
|
-
collection_slug TEXT NOT NULL,
|
|
7
|
-
document_id TEXT NOT NULL,
|
|
8
|
-
tenant_id TEXT,
|
|
9
|
-
version INTEGER NOT NULL,
|
|
10
|
-
status TEXT NOT NULL DEFAULT 'draft',
|
|
11
|
-
autosave INTEGER NOT NULL DEFAULT 0,
|
|
12
|
-
data TEXT NOT NULL,
|
|
13
|
-
created_by TEXT,
|
|
14
|
-
change_description TEXT,
|
|
15
|
-
published_at TEXT,
|
|
16
|
-
created_at TEXT DEFAULT (datetime('now')),
|
|
17
|
-
updated_at TEXT DEFAULT (datetime('now'))
|
|
18
|
-
)
|
|
19
|
-
`);try{this.db.exec(`ALTER TABLE ${this.versionsTableName} ADD COLUMN autosave INTEGER NOT NULL DEFAULT 0`);}catch{}this.db.exec(`CREATE INDEX IF NOT EXISTS idx_${this.versionsTableName}_doc ON ${this.versionsTableName}(collection_slug, document_id)`),this.db.exec(`CREATE INDEX IF NOT EXISTS idx_${this.versionsTableName}_status ON ${this.versionsTableName}(status)`),this.db.exec(`CREATE INDEX IF NOT EXISTS idx_${this.versionsTableName}_autosave ON ${this.versionsTableName}(autosave)`);}col(e){return `"${e}"`}fieldToSQL(e){switch(e.type){case "text":case "email":case "password":case "textarea":case "color":case "icon":case "code":case "markdown":case "url":return this.col(e.name)+" TEXT";case "number":return this.col(e.name)+" REAL";case "checkbox":return this.col(e.name)+" INTEGER DEFAULT 0";case "date":return this.col(e.name)+" TEXT";case "select":case "radio":return this.col(e.name)+" TEXT";case "relationship":case "upload":return this.col(e.name)+" TEXT";case "json":case "richtext":case "array":case "group":case "blocks":return this.col(e.name)+" TEXT";default:return null}}parseGlobalsSlug(e){if(e.startsWith("_globals_")){let t=e.replace("_globals_","");return {isGlobal:true,globalSlug:t,tableName:`global_${t.replace(/-/g,"_")}`}}return {isGlobal:false,globalSlug:"",tableName:this.getTableNameFor(e)}}async find(e){let{collection:t,where:s={},sort:i,limit:o=10,page:a=1,tenantId:r,draft:c=false}=e,d=this.parseGlobalsSlug(t),u=d.isGlobal?this.globals.get(d.globalSlug):this.getCollection(t);this.ensureTable(u,d.tableName);let b=`SELECT * FROM ${d.tableName}`,y=[],g=[],f={...s};this.tenantContext&&u.tenantScoped&&(f=c$3({where:f},t,this.tenantContext,b$2).where||{});let C=u.fields.find(m=>m.name==="status"),h=C?.type==="select"&&Array.isArray(C.options)&&C.options.some(m=>m.value==="published");!c&&h&&(g.push("status = ?"),y.push("published")),r&&u.tenantScoped&&(g.push("tenant_id = ?"),y.push(r));for(let[m,S]of Object.entries(f))m==="AND"||m==="OR"||(typeof S=="object"&&S!==null?(S.equals!==void 0&&(g.push(`${this.col(m)} = ?`),y.push(S.equals)),S.in!==void 0&&(g.push(`${this.col(m)} IN (${S.in.map(()=>"?").join(", ")})`),y.push(...S.in)),S.not_equals!==void 0&&(g.push(`${this.col(m)} != ?`),y.push(S.not_equals))):(g.push(`${this.col(m)} = ?`),y.push(S)));g.length>0&&(b+=` WHERE ${g.join(" AND ")}`);let je=this.col(i?.replace("-","")||"createdAt"),qe=i?.startsWith("-")?"DESC":"ASC";b+=` ORDER BY ${je} ${qe}`;let Ze=b.replace("SELECT *","SELECT COUNT(*) as count"),I=this.db.prepare(Ze).get(...y)?.count||0;b+=" LIMIT ? OFFSET ?",y.push(o,(a-1)*o);let R=this.db.prepare(b).all(...y).map(m=>this.rowToDoc(m,u));return this.tenantContext&&!this.tenantContext.isSuperAdmin&&(R=R.filter(m=>d$2(m,t,this.tenantContext,b$2))),c&&(R=await Promise.all(R.map(async m=>{let S=this.db.prepare(`SELECT * FROM ${this.versionsTableName} WHERE collection_slug = ? AND document_id = ? AND tenant_id IS NULL ORDER BY version DESC LIMIT 1`).get(t,m.id);if(S){let Ge=S.data?JSON.parse(S.data):{};return a$6({...m,...Ge,status:m.status})}return m}))),R=R.map(m=>a$6(m)),{docs:R,totalDocs:I,limit:o,totalPages:Math.ceil(I/o),page:a,pagingCounter:(a-1)*o+1,hasPrevPage:a>1,hasNextPage:a<Math.ceil(I/o),prevPage:a>1?a-1:null,nextPage:a<Math.ceil(I/o)?a+1:null}}async findByID(e){let{collection:t,id:s,tenantId:i,draft:o=false}=e,a=this.parseGlobalsSlug(t),r=a.isGlobal?this.globals.get(a.globalSlug):this.getCollection(t);this.ensureTable(r,a.tableName);let d=`SELECT * FROM ${a.tableName} WHERE id = ?`,u=[s];if(this.tenantContext&&r.tenantScoped){let f={id:s,tenant_id:this.tenantContext.tenantId};if(!d$2(f,t,this.tenantContext,b$2))return null}let p=r.fields.find(f=>f.name==="status"),b=p?.type==="select"&&Array.isArray(p.options)&&p.options.some(f=>f.value==="published");!o&&b&&(d+=" AND status = ?",u.push("published")),i&&r.tenantScoped&&(d+=" AND tenant_id = ?",u.push(i));let y=this.db.prepare(d).get(...u);if(!y)return null;let g=this.rowToDoc(y,r);if(o){let f=this.db.prepare(`SELECT * FROM ${this.versionsTableName} WHERE collection_slug = ? AND document_id = ? AND tenant_id IS NULL ORDER BY version DESC LIMIT 1`).get(t,g.id);if(f){let C=f.data?JSON.parse(f.data):{};g={...g,...C,status:g.status};}}return a$6(g)}async create(e){let{collection:t,data:s,tenantId:i}=e,o=this.parseGlobalsSlug(t),a=o.isGlobal?this.globals.get(o.globalSlug):this.getCollection(t);this.ensureTable(a,o.tableName);let r=o.tableName,c=o.isGlobal?o.globalSlug:s.id||this.generateId(),d=this.prepareData(s,a);d.id=c,d.created_at=new Date().toISOString(),d.updated_at=new Date().toISOString(),i&&a.tenantScoped&&(d.tenant_id=i);let u=Object.keys(d),p=ae(this.db,r),b={};for(let h of u)p.includes(h)&&(b[h]=d[h]);let y=Object.keys(b),g=y.map(h=>this.col(h)),f=y.map(()=>"?").join(", "),C=Object.values(b).map(h=>h!==null&&typeof h=="object"?JSON.stringify(h):h);return this.db.prepare(`INSERT OR REPLACE INTO ${r} (${g.join(", ")}) VALUES (${f})`).run(...C),this.ensureVersionsTable(),this.findByID({collection:t,id:c,tenantId:i,draft:true})}async update(e){let{collection:t,id:s,data:i,tenantId:o}=e,a=this.parseGlobalsSlug(t),r=a.isGlobal?this.globals.get(a.globalSlug):this.getCollection(t);this.ensureTable(r,a.tableName);let c=a.tableName,d=this.prepareData(i,r);d.updated_at=new Date().toISOString();let u=ae(this.db,c),p={};for(let h of Object.keys(d))u.includes(h)&&(p[h]=d[h]);let y=Object.keys(p).map(h=>`${this.col(h)} = ?`).join(", "),g=Object.values(p).map(h=>h!==null&&typeof h=="object"?JSON.stringify(h):h),f=`UPDATE ${c} SET ${y} WHERE id = ?`,C=[...g,s];return o&&r.tenantScoped&&(f+=" AND tenant_id = ?",C.push(o)),this.db.prepare(f).run(...C),this.ensureVersionsTable(),this.findByID({collection:t,id:s,tenantId:o,draft:true})}async delete(e){let{collection:t,id:s,tenantId:i}=e,o=this.parseGlobalsSlug(t),a=o.isGlobal?this.globals.get(o.globalSlug):this.getCollection(t);this.ensureTable(a,o.tableName),this.ensureVersionsTable();let r=await this.findByID({collection:t,id:s,tenantId:i,draft:true});if(!r)throw new Error(`Document not found: ${t}/${s}`);let d=`DELETE FROM ${o.tableName} WHERE id = ?`,u=[s];return i&&a.tenantScoped&&(d+=" AND tenant_id = ?",u.push(i)),this.db.prepare(d).run(...u),r}async count(e){let{collection:t,tenantId:s}=e,i=this.parseGlobalsSlug(t),o=i.isGlobal?this.globals.get(i.globalSlug):this.getCollection(t);this.ensureTable(o,i.tableName);let r=`SELECT COUNT(*) as count FROM ${i.tableName}`,c=[];return s&&o.tenantScoped&&(r+=" WHERE tenant_id = ?",c.push(s)),this.db.prepare(r).get(...c)?.count||0}async findOne(e){let t=this.parseGlobalsSlug(e.collection);if(t.isGlobal){let i=this.globals.get(t.globalSlug);if(!i)throw new Error(`Global "${t.globalSlug}" not found in adapter`);this.ensureTable(i,t.tableName);let o=`SELECT * FROM ${t.tableName}`,a=[],r=[],c=i.fields.find(p=>p.name==="status"),d=c?.type==="select"&&Array.isArray(c.options)&&c.options.some(p=>p.value==="published");!e.draft&&i.versions&&d&&a.push("status = 'published'"),a.length>0&&(o+=` WHERE ${a.join(" AND ")}`),o+=" LIMIT 1";let u=this.db.prepare(o).get(...r);if(u){let p=this.rowToDoc(u,i);if(e.draft){let b=this.db.prepare(`SELECT * FROM ${this.versionsTableName} WHERE collection_slug = ? AND document_id = ? AND tenant_id IS NULL ORDER BY version DESC LIMIT 1`).get(e.collection,t.globalSlug);if(b){let y=b.data?JSON.parse(b.data):{};p={...p,...y,status:p.status};}}return p}return null}return (await this.find({...e,limit:1})).docs[0]||null}async findVersions(e){this.ensureVersionsTable();let{collection:t,documentId:s,tenantId:i,limit:o=20,page:a=1}=e,r=["collection_slug = ?","document_id = ?","autosave = 0"],c=[t,s];i?(r.push("tenant_id = ?"),c.push(i)):r.push("tenant_id IS NULL");let d=`WHERE ${r.join(" AND ")}`,p=this.db.prepare(`SELECT COUNT(*) as count FROM ${this.versionsTableName} ${d}`).get(...c)?.count||0,b=(a-1)*o;return {docs:this.db.prepare(`SELECT * FROM ${this.versionsTableName} ${d} ORDER BY version DESC LIMIT ? OFFSET ?`).all(...c,o,b).map(f=>this.rowToVersion(f)),totalDocs:p,limit:o,totalPages:Math.ceil(p/o),page:a,pagingCounter:(a-1)*o+1,hasPrevPage:a>1,hasNextPage:a<Math.ceil(p/o),prevPage:a>1?a-1:null,nextPage:a<Math.ceil(p/o)?a+1:null}}async findVersionByID(e){this.ensureVersionsTable();let t=this.db.prepare(`SELECT * FROM ${this.versionsTableName} WHERE id = ? AND collection_slug = ? LIMIT 1`).get(e.versionId,e.collection);return t?this.rowToVersion(t):null}async createVersion(e){this.ensureVersionsTable();let t=new Date().toISOString();if(e.autosave){let r=`SELECT * FROM ${this.versionsTableName} WHERE collection_slug = ? AND document_id = ? AND autosave = 1`,c=[e.collection,e.documentId];e.tenantId?(r+=" AND tenant_id = ?",c.push(e.tenantId)):r+=" AND tenant_id IS NULL",r+=" LIMIT 1";let d=this.db.prepare(r).get(...c);if(d){this.db.prepare(`UPDATE ${this.versionsTableName} SET data = ?, status = ?, updated_at = ? WHERE id = ?`).run(JSON.stringify(e.data),e.status,t,d.id);let u=await this.findVersionByID({collection:e.collection,versionId:d.id});if(u)return u}}let s=this.generateId(),o=(this.db.prepare(`SELECT version FROM ${this.versionsTableName} WHERE collection_slug = ? AND document_id = ? AND autosave = 0 ORDER BY version DESC LIMIT 1`).get(e.collection,e.documentId)?.version??0)+1;if(this.db.prepare(`INSERT INTO ${this.versionsTableName} (
|
|
20
|
-
id, collection_slug, document_id, tenant_id, version, status, autosave, data, created_by, change_description, published_at, created_at, updated_at
|
|
21
|
-
) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)`).run(s,e.collection,e.documentId,e.tenantId??null,o,e.status,e.autosave?1:0,JSON.stringify(e.data),e.createdBy??null,e.changeDescription??null,e.status==="published"?t:null,t,t),!e.autosave){let c=this.collections.get(e.collection)?.versions?.maxPerDoc;c&&c>0&&await this.deleteVersions({collection:e.collection,documentId:e.documentId,keepLatest:c,tenantId:e.tenantId});}return await this.findVersionByID({collection:e.collection,versionId:s})}async updateLatestVersion(e){return this.createVersion({...e,autosave:true})}async deleteVersions(e){this.ensureVersionsTable();let{collection:t,documentId:s,keepLatest:i,tenantId:o}=e;if(i&&i>0){let a=this.db.prepare(`SELECT id, status, autosave FROM ${this.versionsTableName} WHERE collection_slug = ? AND document_id = ? ORDER BY version DESC`).all(t,s),r=0,c=[];for(let d of a)d.status==="published"||d.autosave===1||(r++,r>i&&c.push(d.id));for(let d of c)this.db.prepare(`DELETE FROM ${this.versionsTableName} WHERE id = ?`).run(d);}else {let a=`DELETE FROM ${this.versionsTableName} WHERE collection_slug = ? AND document_id = ?`,r=[t,s];o&&(a+=" AND tenant_id = ?",r.push(o)),this.db.prepare(a).run(...r);}}rowToVersion(e){return {id:String(e.id),collection:e.collection_slug,documentId:e.document_id,version:e.version,status:e.status,data:e.data?JSON.parse(e.data):{},createdBy:e.created_by??void 0,changeDescription:e.change_description??void 0,publishedAt:e.published_at??null,createdAt:e.created_at,updatedAt:e.updated_at}}prepareData(e,t){let s={},i=E(t.fields),o=(a,r)=>{let c=a;if(c.type==="json"||c.type==="richtext"||c.type==="array"||c.type==="group"||c.type==="blocks"||c.type==="list"||c.type==="relationship-block")return r!=null?JSON.stringify(r):null;if(c.type==="checkbox")return r?1:0;if(c.type==="number")return r!==null&&r!==""?Number(r):null;if(c.type==="upload"||c.type==="image"){if(r==null)return null;if(Array.isArray(r)){let d=r.map(u=>typeof u=="string"?u:typeof u=="object"?u.id||u._id||u:String(u));return JSON.stringify(d)}return typeof r=="string"?r:typeof r=="object"?JSON.stringify(r):String(r)}else if(a.type==="relationship"){if(r==null)return null;if(Array.isArray(r)){let d=r.map(u=>typeof u=="string"?u:typeof u=="object"?JSON.stringify({relationTo:a.relationTo,value:u.id||u}):String(u));return JSON.stringify(d)}return typeof r=="string"?r:typeof r=="object"?JSON.stringify({relationTo:a.relationTo,value:r.id||r}):String(r)}return r};for(let a of i){if(!a.name||a.name==="id"||t.fields.some(d=>d.type==="tabs"&&d.name&&"tabs"in d&&d.tabs.some(u=>u.fields.some(p=>p.name===a.name))))continue;let c=e[a.name];c!==void 0&&(s[a.name]=o(a,c));}for(let a of t.fields)if(a.type==="tabs"&&"tabs"in a&&a.name){let r=e[a.name];if(r&&typeof r=="object"){for(let c of a.tabs)for(let d of c.fields)if(d.name&&d.name!=="id"){let u=r[d.name];u!==void 0&&(s[d.name]=o(d,u));}}}return s}rowToDoc(e,t){let s={id:e.id};for(let i of E(t.fields)){if(!i.name||i.name==="id")continue;let o=i,a=e[o.name];if(o.type==="json"||o.type==="richtext"||o.type==="array"||o.type==="group"||o.type==="blocks"||o.type==="list"||o.type==="relationship-block")try{a=a?JSON.parse(a):null;}catch{a=null;}if(o.type==="blocks"&&a&&Array.isArray(a)){let r=o.blocks||[];a=_e(a,r);}if(i.type==="checkbox"&&(a=!!a),i.type==="date"&&a)try{let r=new Date(a);isNaN(r.getTime())?(console.warn(`[LocalAdapter] Invalid date value for field "${i.name}":`,a),a=null):a=r.toISOString();}catch{a=null;}if((i.type==="upload"||i.type==="image")&&a)try{let r=JSON.parse(a);Array.isArray(r)?a=r.map(c=>typeof c=="object"&&c!==null?c:{id:c}):a=typeof r=="object"?r:{id:r};}catch{a={id:a};}if(i.type==="relationship"&&a)try{let r=JSON.parse(a);Array.isArray(r),a=r;}catch{a={relationTo:Array.isArray(i.relationTo)?i.relationTo[0]:i.relationTo,value:a};}s[i.name]=a;}for(let i of t.fields)if(!(!i.name||i.name==="id"||i.name==="row"||i.name==="collapsible")&&i.type==="tabs"&&"tabs"in i){let o={};for(let a of i.tabs)for(let r of a.fields)r.name&&r.name!=="id"&&(o[r.name]=vt(e,r));s[i.name]=o;}if(t.timestamps){let i=e.createdAt||e.created_at,o=e.updatedAt||e.updated_at;if(i)try{let a=new Date(i);isNaN(a.getTime())||(s.createdAt=a.toISOString());}catch{}if(o)try{let a=new Date(o);isNaN(a.getTime())||(s.updatedAt=a.toISOString());}catch{}}t.tenantScoped&&(s.tenantId=e.tenant_id),s.status=e.status??"published",s.hasDraft=e.hasDraft?!!e.hasDraft:false;for(let i of Object.keys(s))/^\d+$/.test(i)&&delete s[i];return s}generateId(){let e=Date.now().toString(16).padStart(12,"0"),t=randomBytes(6).toString("hex");return e+t}getMediaById(e){try{let t=this.getTableNameFor("media"),s=this.db.prepare(`SELECT id, url, thumbnail_url FROM ${t} WHERE id = ?`).get(e);if(s)return {id:s.id,url:s.url,thumbnailUrl:s.thumbnail_url||s.url}}catch{}return null}getTableNameFor(e){return e.replace(/-/g,"_")}async migrate(){for(let e of this.collections.values())this.ensureTable(e);}async rollback(){}async transaction(e){return new Promise((t,s)=>{let i=this.db.transaction(async()=>e({db:this.db}));try{let o=i();t(o);}catch(o){s(o);}})}getDatabase(){return this.db}exec(e){this.db.exec(e);}prepare(e){return this.db.prepare(e)}};function Fs(n){return new re(n||{})}export{re as A,Fs as B,H as a,W as b,z as c,w as d,ve as e,A as f,we as g,Ne as h,De as i,Fe as j,ke as k,k as l,dt as m,ut as n,X as o,x as p,_ as q,J as r,Y as s,Q as t,ee as u,te as v,$t as w,bt as x,oe as y,ys as z};
|
package/dist/chunk-O62KJ2J7.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import {c,b}from'./chunk-6NGUY76Y.js';import {a}from'./chunk-IKOXCJYO.js';async function f(t){let{adminEmail:e,adminPassword:r,adminRole:o="super_admin",tenantId:n,emailConfig:s,sendWelcomeEmail:c$1=false}=t,a$1=t.authAdapter||new a({path:t.authDbPath||"./data/auth.db"});try{await a$1.connect?.();}catch{return {success:false,error:"Failed to connect to auth storage"}}let l=new c().validate(r);if(!l.valid)return await a$1.disconnect?.(),{success:false,error:`Invalid password: ${l.errors.join(", ")}`};if(await a$1.findUserByEmail(e))return await a$1.disconnect?.(),{success:false,error:"Admin user already exists"};try{let i=await a$1.createUser({email:e,password:r,role:o||"admin",tenantId:n});if(c$1&&s){let u=new b(s),A=u.getTemplates().welcome(e.split("@")[0]);await u.send({to:e,...A});}return await a$1.disconnect?.(),{success:!0,user:i}}catch(i){return await a$1.disconnect?.(),{success:false,error:i instanceof Error?i.message:"Failed to create admin user"}}}async function y(t,e){return !await t.findUserByEmail(e)}function w(){let t=process.env.KYRO_ADMIN_EMAIL,e=process.env.KYRO_ADMIN_PASSWORD;return !t||!e?null:{authDbPath:process.env.KYRO_AUTH_DB_PATH||"./data/auth.db",adminEmail:t,adminPassword:e,adminRole:process.env.KYRO_ADMIN_ROLE||"super_admin",tenantId:process.env.KYRO_ADMIN_TENANT_ID,emailConfig:process.env.SMTP_HOST?{provider:"smtp",smtp:{host:process.env.SMTP_HOST,port:parseInt(process.env.SMTP_PORT||"587",10),secure:process.env.SMTP_SECURE==="true",auth:{user:process.env.SMTP_USER||"",pass:process.env.SMTP_PASS||""}},from:process.env.SMTP_FROM||"noreply@example.com",fromName:process.env.SMTP_FROM_NAME}:void 0,sendWelcomeEmail:process.env.KYRO_ADMIN_SEND_WELCOME==="true"}}async function T(t){let e=w();if(!e)return null;t&&(e.authAdapter=t);try{if(await e.authAdapter?.connect?.(),await e.authAdapter?.findUserByEmail(e.adminEmail))return await e.authAdapter?.disconnect?.(),{success:!1,error:"Admin user already exists"}}catch{}let r=await f(e);return r.success||console.error(`Bootstrap failed: ${r.error}`),r}async function v(t,e=3,r=2e3){let o="";for(let n=0;n<e;n++){let s=await f(t);if(s.success||(o=s.error||"Unknown error",o.includes("already exists")))return s;n<e-1&&await new Promise(c=>setTimeout(c,r));}return {success:false,error:`Failed after ${e} retries: ${o}`}}export{f as a,y as b,w as c,T as d,v as e};
|