
Major architecture cleanup following CLAUDE.md rules: ## Admin Panel Conversion (1843 lines → TypeScript routes) - Remove public/admin/scripts/main.js (direct API calls violation) - Add proper Astro admin routes with TypeScript API endpoints - Add missing admin functions in church-core Rust crate - Update bindings.js to expose new admin functions ## Thumbnail Field Removal - Remove thumbnail upload section from event submission form - Clean up thumbnail-related JavaScript code ## Architecture Compliance Achieved ✅ Frontend → bindings.js → Rust FFI → church-core → API ❌ Frontend → fetch() → External API (eliminated) Files: +13 admin routes, -1843 line JS file, enhanced Rust core
344 lines
12 KiB
JavaScript
344 lines
12 KiB
JavaScript
/* tslint:disable */
|
|
/* eslint-disable */
|
|
/* prettier-ignore */
|
|
|
|
/* auto-generated by NAPI-RS */
|
|
|
|
const { existsSync, readFileSync } = require('fs')
|
|
const { join } = require('path')
|
|
|
|
const { platform, arch } = process
|
|
|
|
let nativeBinding = null
|
|
let localFileExisted = false
|
|
let loadError = null
|
|
|
|
function isMusl() {
|
|
// For Node 10
|
|
if (!process.report || typeof process.report.getReport !== 'function') {
|
|
try {
|
|
const lddPath = require('child_process').execSync('which ldd').toString().trim()
|
|
return readFileSync(lddPath, 'utf8').includes('musl')
|
|
} catch (e) {
|
|
return true
|
|
}
|
|
} else {
|
|
const { glibcVersionRuntime } = process.report.getReport().header
|
|
return !glibcVersionRuntime
|
|
}
|
|
}
|
|
|
|
switch (platform) {
|
|
case 'android':
|
|
switch (arch) {
|
|
case 'arm64':
|
|
localFileExisted = existsSync(join(__dirname, 'church-core-bindings.android-arm64.node'))
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require('./church-core-bindings.android-arm64.node')
|
|
} else {
|
|
nativeBinding = require('astro-church-website-android-arm64')
|
|
}
|
|
} catch (e) {
|
|
loadError = e
|
|
}
|
|
break
|
|
case 'arm':
|
|
localFileExisted = existsSync(join(__dirname, 'church-core-bindings.android-arm-eabi.node'))
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require('./church-core-bindings.android-arm-eabi.node')
|
|
} else {
|
|
nativeBinding = require('astro-church-website-android-arm-eabi')
|
|
}
|
|
} catch (e) {
|
|
loadError = e
|
|
}
|
|
break
|
|
default:
|
|
throw new Error(`Unsupported architecture on Android ${arch}`)
|
|
}
|
|
break
|
|
case 'win32':
|
|
switch (arch) {
|
|
case 'x64':
|
|
localFileExisted = existsSync(
|
|
join(__dirname, 'church-core-bindings.win32-x64-msvc.node')
|
|
)
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require('./church-core-bindings.win32-x64-msvc.node')
|
|
} else {
|
|
nativeBinding = require('astro-church-website-win32-x64-msvc')
|
|
}
|
|
} catch (e) {
|
|
loadError = e
|
|
}
|
|
break
|
|
case 'ia32':
|
|
localFileExisted = existsSync(
|
|
join(__dirname, 'church-core-bindings.win32-ia32-msvc.node')
|
|
)
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require('./church-core-bindings.win32-ia32-msvc.node')
|
|
} else {
|
|
nativeBinding = require('astro-church-website-win32-ia32-msvc')
|
|
}
|
|
} catch (e) {
|
|
loadError = e
|
|
}
|
|
break
|
|
case 'arm64':
|
|
localFileExisted = existsSync(
|
|
join(__dirname, 'church-core-bindings.win32-arm64-msvc.node')
|
|
)
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require('./church-core-bindings.win32-arm64-msvc.node')
|
|
} else {
|
|
nativeBinding = require('astro-church-website-win32-arm64-msvc')
|
|
}
|
|
} catch (e) {
|
|
loadError = e
|
|
}
|
|
break
|
|
default:
|
|
throw new Error(`Unsupported architecture on Windows: ${arch}`)
|
|
}
|
|
break
|
|
case 'darwin':
|
|
localFileExisted = existsSync(join(__dirname, 'church-core-bindings.darwin-universal.node'))
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require('./church-core-bindings.darwin-universal.node')
|
|
} else {
|
|
nativeBinding = require('astro-church-website-darwin-universal')
|
|
}
|
|
break
|
|
} catch {}
|
|
switch (arch) {
|
|
case 'x64':
|
|
localFileExisted = existsSync(join(__dirname, 'church-core-bindings.darwin-x64.node'))
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require('./church-core-bindings.darwin-x64.node')
|
|
} else {
|
|
nativeBinding = require('astro-church-website-darwin-x64')
|
|
}
|
|
} catch (e) {
|
|
loadError = e
|
|
}
|
|
break
|
|
case 'arm64':
|
|
localFileExisted = existsSync(
|
|
join(__dirname, 'church-core-bindings.darwin-arm64.node')
|
|
)
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require('./church-core-bindings.darwin-arm64.node')
|
|
} else {
|
|
nativeBinding = require('astro-church-website-darwin-arm64')
|
|
}
|
|
} catch (e) {
|
|
loadError = e
|
|
}
|
|
break
|
|
default:
|
|
throw new Error(`Unsupported architecture on macOS: ${arch}`)
|
|
}
|
|
break
|
|
case 'freebsd':
|
|
if (arch !== 'x64') {
|
|
throw new Error(`Unsupported architecture on FreeBSD: ${arch}`)
|
|
}
|
|
localFileExisted = existsSync(join(__dirname, 'church-core-bindings.freebsd-x64.node'))
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require('./church-core-bindings.freebsd-x64.node')
|
|
} else {
|
|
nativeBinding = require('astro-church-website-freebsd-x64')
|
|
}
|
|
} catch (e) {
|
|
loadError = e
|
|
}
|
|
break
|
|
case 'linux':
|
|
switch (arch) {
|
|
case 'x64':
|
|
if (isMusl()) {
|
|
localFileExisted = existsSync(
|
|
join(__dirname, 'church-core-bindings.linux-x64-musl.node')
|
|
)
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require('./church-core-bindings.linux-x64-musl.node')
|
|
} else {
|
|
nativeBinding = require('astro-church-website-linux-x64-musl')
|
|
}
|
|
} catch (e) {
|
|
loadError = e
|
|
}
|
|
} else {
|
|
localFileExisted = existsSync(
|
|
join(__dirname, 'church-core-bindings.linux-x64-gnu.node')
|
|
)
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require('./church-core-bindings.linux-x64-gnu.node')
|
|
} else {
|
|
nativeBinding = require('astro-church-website-linux-x64-gnu')
|
|
}
|
|
} catch (e) {
|
|
loadError = e
|
|
}
|
|
}
|
|
break
|
|
case 'arm64':
|
|
if (isMusl()) {
|
|
localFileExisted = existsSync(
|
|
join(__dirname, 'church-core-bindings.linux-arm64-musl.node')
|
|
)
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require('./church-core-bindings.linux-arm64-musl.node')
|
|
} else {
|
|
nativeBinding = require('astro-church-website-linux-arm64-musl')
|
|
}
|
|
} catch (e) {
|
|
loadError = e
|
|
}
|
|
} else {
|
|
localFileExisted = existsSync(
|
|
join(__dirname, 'church-core-bindings.linux-arm64-gnu.node')
|
|
)
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require('./church-core-bindings.linux-arm64-gnu.node')
|
|
} else {
|
|
nativeBinding = require('astro-church-website-linux-arm64-gnu')
|
|
}
|
|
} catch (e) {
|
|
loadError = e
|
|
}
|
|
}
|
|
break
|
|
case 'arm':
|
|
if (isMusl()) {
|
|
localFileExisted = existsSync(
|
|
join(__dirname, 'church-core-bindings.linux-arm-musleabihf.node')
|
|
)
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require('./church-core-bindings.linux-arm-musleabihf.node')
|
|
} else {
|
|
nativeBinding = require('astro-church-website-linux-arm-musleabihf')
|
|
}
|
|
} catch (e) {
|
|
loadError = e
|
|
}
|
|
} else {
|
|
localFileExisted = existsSync(
|
|
join(__dirname, 'church-core-bindings.linux-arm-gnueabihf.node')
|
|
)
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require('./church-core-bindings.linux-arm-gnueabihf.node')
|
|
} else {
|
|
nativeBinding = require('astro-church-website-linux-arm-gnueabihf')
|
|
}
|
|
} catch (e) {
|
|
loadError = e
|
|
}
|
|
}
|
|
break
|
|
case 'riscv64':
|
|
if (isMusl()) {
|
|
localFileExisted = existsSync(
|
|
join(__dirname, 'church-core-bindings.linux-riscv64-musl.node')
|
|
)
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require('./church-core-bindings.linux-riscv64-musl.node')
|
|
} else {
|
|
nativeBinding = require('astro-church-website-linux-riscv64-musl')
|
|
}
|
|
} catch (e) {
|
|
loadError = e
|
|
}
|
|
} else {
|
|
localFileExisted = existsSync(
|
|
join(__dirname, 'church-core-bindings.linux-riscv64-gnu.node')
|
|
)
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require('./church-core-bindings.linux-riscv64-gnu.node')
|
|
} else {
|
|
nativeBinding = require('astro-church-website-linux-riscv64-gnu')
|
|
}
|
|
} catch (e) {
|
|
loadError = e
|
|
}
|
|
}
|
|
break
|
|
case 's390x':
|
|
localFileExisted = existsSync(
|
|
join(__dirname, 'church-core-bindings.linux-s390x-gnu.node')
|
|
)
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require('./church-core-bindings.linux-s390x-gnu.node')
|
|
} else {
|
|
nativeBinding = require('astro-church-website-linux-s390x-gnu')
|
|
}
|
|
} catch (e) {
|
|
loadError = e
|
|
}
|
|
break
|
|
default:
|
|
throw new Error(`Unsupported architecture on Linux: ${arch}`)
|
|
}
|
|
break
|
|
default:
|
|
throw new Error(`Unsupported OS: ${platform}, architecture: ${arch}`)
|
|
}
|
|
|
|
if (!nativeBinding) {
|
|
if (loadError) {
|
|
throw loadError
|
|
}
|
|
throw new Error(`Failed to load native binding`)
|
|
}
|
|
|
|
const { getChurchName, fetchEventsJson, fetchFeaturedEventsJson, fetchSermonsJson, fetchConfigJson, getMissionStatement, fetchRandomBibleVerseJson, getStreamLiveStatus, getLivestreamUrl, getChurchAddress, getChurchPhysicalAddress, getChurchPoBox, getContactPhone, getContactEmail, getFacebookUrl, getYoutubeUrl, getInstagramUrl, submitContactV2Json, validateContactFormJson, fetchLivestreamArchiveJson, fetchBulletinsJson, fetchCurrentBulletinJson, fetchBibleVerseJson, submitEventJson, testAdminFunction, fetchAllSchedulesJson, createScheduleJson, updateScheduleJson, deleteScheduleJson } = nativeBinding
|
|
|
|
module.exports.getChurchName = getChurchName
|
|
module.exports.fetchEventsJson = fetchEventsJson
|
|
module.exports.fetchFeaturedEventsJson = fetchFeaturedEventsJson
|
|
module.exports.fetchSermonsJson = fetchSermonsJson
|
|
module.exports.fetchConfigJson = fetchConfigJson
|
|
module.exports.getMissionStatement = getMissionStatement
|
|
module.exports.fetchRandomBibleVerseJson = fetchRandomBibleVerseJson
|
|
module.exports.getStreamLiveStatus = getStreamLiveStatus
|
|
module.exports.getLivestreamUrl = getLivestreamUrl
|
|
module.exports.getChurchAddress = getChurchAddress
|
|
module.exports.getChurchPhysicalAddress = getChurchPhysicalAddress
|
|
module.exports.getChurchPoBox = getChurchPoBox
|
|
module.exports.getContactPhone = getContactPhone
|
|
module.exports.getContactEmail = getContactEmail
|
|
module.exports.getFacebookUrl = getFacebookUrl
|
|
module.exports.getYoutubeUrl = getYoutubeUrl
|
|
module.exports.getInstagramUrl = getInstagramUrl
|
|
module.exports.submitContactV2Json = submitContactV2Json
|
|
module.exports.validateContactFormJson = validateContactFormJson
|
|
module.exports.fetchLivestreamArchiveJson = fetchLivestreamArchiveJson
|
|
module.exports.fetchBulletinsJson = fetchBulletinsJson
|
|
module.exports.fetchCurrentBulletinJson = fetchCurrentBulletinJson
|
|
module.exports.fetchBibleVerseJson = fetchBibleVerseJson
|
|
module.exports.submitEventJson = submitEventJson
|
|
module.exports.testAdminFunction = testAdminFunction
|
|
module.exports.fetchAllSchedulesJson = fetchAllSchedulesJson
|
|
module.exports.createScheduleJson = createScheduleJson
|
|
module.exports.updateScheduleJson = updateScheduleJson
|
|
module.exports.deleteScheduleJson = deleteScheduleJson
|