111b559865
- Webhook CRUD (GET/POST/DELETE /api/admin-webhooks, POST .../test) with ⚡ Webhooks drawer in EmailPage; fires contact.new and reply.sent events - Contact→Calendar: history panel shows checklist episodes within ±30 days - Checklist automation: saveEdit auto-sets productionStatus (idea→scheduled for future dates, idea→published for past); ⚙ Tasks button generates Record (−14d) and Edit (−7d) calendar task events for scheduled episodes - Audit log captures webhook-added, webhook-removed, webhook-test events - Webhook infrastructure: state, disk persistence, fire-and-forget with AbortSignal.timeout(8000), loaded on startup Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
123 lines
3.7 KiB
JavaScript
123 lines
3.7 KiB
JavaScript
import {
|
|
EMPTY_HIT_STATS,
|
|
EMPTY_VISITOR_STATS,
|
|
DEFAULT_PUBLISH_STATE,
|
|
DEFAULT_REPLY_TEMPLATES,
|
|
buildDefaultPodcastChecklist,
|
|
} from './config.js'
|
|
|
|
export const state = {
|
|
cachedSiteContent: null,
|
|
cachedDraftSiteContent: null,
|
|
publishState: { ...DEFAULT_PUBLISH_STATE },
|
|
|
|
hitStats: { ...EMPTY_HIT_STATS },
|
|
hitStatsWritePromise: Promise.resolve(),
|
|
lastHitStatsWrite: { ok: true, at: null, error: null },
|
|
|
|
visitorStats: { ...EMPTY_VISITOR_STATS },
|
|
visitorStatsWritePromise: Promise.resolve(),
|
|
lastVisitorStatsWrite: { ok: true, at: null, error: null },
|
|
|
|
contactSubmissions: [],
|
|
contactSubmissionsWritePromise: Promise.resolve(),
|
|
|
|
questions: [],
|
|
questionsWritePromise: Promise.resolve(),
|
|
|
|
draftQuestions: null,
|
|
draftQuestionsWritePromise: Promise.resolve(),
|
|
|
|
replyTemplates: [...DEFAULT_REPLY_TEMPLATES],
|
|
replyTemplatesWritePromise: Promise.resolve(),
|
|
|
|
replyHistory: [],
|
|
replyHistoryWritePromise: Promise.resolve(),
|
|
|
|
podcastChecklist: buildDefaultPodcastChecklist(),
|
|
podcastChecklistWritePromise: Promise.resolve(),
|
|
|
|
studyUsers: [],
|
|
studyUsersWritePromise: Promise.resolve(),
|
|
|
|
studyCommunityPosts: [],
|
|
studyCommunityWritePromise: Promise.resolve(),
|
|
|
|
studyReminders: { users: {}, updatedAt: new Date().toISOString() },
|
|
studyRemindersWritePromise: Promise.resolve(),
|
|
|
|
studyComments: [],
|
|
studyCommentsWritePromise: Promise.resolve(),
|
|
|
|
studyCertificates: [],
|
|
studyCertificatesWritePromise: Promise.resolve(),
|
|
|
|
// episodeScripts: { [episodeNumber]: { text, title, filename, uploadedAt } }
|
|
episodeScripts: {},
|
|
episodeScriptsWritePromise: Promise.resolve(),
|
|
|
|
downloadCounts: {},
|
|
downloadCountsWritePromise: Promise.resolve(),
|
|
|
|
// episodePlays: { [title]: { total: number, byDay: { [YYYY-MM-DD]: number } } }
|
|
episodePlays: {},
|
|
episodePlaysWritePromise: Promise.resolve(),
|
|
|
|
// analyticsEvents: aggregated engagement data from frontend events
|
|
// {
|
|
// scrollDepth: { [path]: { 25: n, 50: n, 75: n, 90: n } }
|
|
// timeOnPage: { [path]: { totalSeconds: n, count: n } }
|
|
// outboundClicks: { [url]: n }
|
|
// utmSources: { [utm_source]: n }
|
|
// searchQueries: { [query]: n }
|
|
// notFound: { [path]: n }
|
|
// audioEvents: { [title]: { pauses: n, completions: n, totalListenSeconds: n } }
|
|
// }
|
|
analyticsEvents: {
|
|
scrollDepth: {},
|
|
timeOnPage: {},
|
|
outboundClicks: {},
|
|
utmSources: {},
|
|
searchQueries: {},
|
|
notFound: {},
|
|
audioEvents: {},
|
|
},
|
|
analyticsEventsWritePromise: Promise.resolve(),
|
|
|
|
// qrCodes: Array<{ id, slug, label, destination, createdAt }>
|
|
// qrScans: Array<{ id, qrId, slug, scannedAt, ip, userAgent }>
|
|
qrCodes: [],
|
|
qrScans: [],
|
|
qrCodesWritePromise: Promise.resolve(),
|
|
|
|
emailSettings: { signature: 'Grace and peace,\nVerse by Verse with Nate' },
|
|
emailSettingsWritePromise: Promise.resolve(),
|
|
|
|
calendarEvents: [],
|
|
calendarEventsWritePromise: Promise.resolve(),
|
|
|
|
auditLog: [],
|
|
auditLogWritePromise: Promise.resolve(),
|
|
|
|
webhooks: [],
|
|
webhooksWritePromise: Promise.resolve(),
|
|
|
|
lastBackupStatus: { ok: true, at: null, error: null, file: null },
|
|
lastCachePurgeStatus: { ok: true, at: null, error: null },
|
|
lastDeployHookStatus: { ok: true, at: null, error: null },
|
|
|
|
// In-memory caches (not persisted between restarts)
|
|
studyNotesCache: new Map(), // userId -> { [sectionId]: string }
|
|
studyNotesWriteQueues: new Map(), // userId -> Promise
|
|
studyProgressCache: new Map(), // userId -> { byStudy: ... }
|
|
studyProgressWriteQueues: new Map(), // userId -> Promise
|
|
|
|
studySessions: new Map(),
|
|
studyTotpPendingTokens: new Map(),
|
|
emailOtpStore: new Map(),
|
|
|
|
titusDownloadTokens: new Map(),
|
|
contactSubmitCooldownByEmail: new Map(),
|
|
resendEmailSubmissionIndex: new Map(),
|
|
}
|