Migrate Maintenance state to supabase and add Redirection #8
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR migrates the maintenance mode configuration from environment variables (
.env) to the database (Supabase).Changes have been tested in local development and deployed instance.
Key Changes
1. Database Schema (
supabase_schema.sql)maintenance_configto store maintenance settings (enabled status, message, duration, contact email).2. Core Logic (
lib/maintenance.ts)os.tmpdir()to cache the maintenance configuration, to reduce the number of api calls toSupabase.3. API & Admin (
app/api/admin/maintenance/route.ts)maintenance_configtable usingupsert.4. Frontend & Build
app/maintenance/page.tsxto display dynamic content from the database (Message, Duration, Email).5. Site-Wide Redirection (
app/layout.tsx&middleware.ts)x-current-pathheader to allow Server Components to know the current URL./maintenance.To prevent overwhelming the database with requests from every site visitor, the redirection logic uses a file-based cache with a Time-To-Live (TTL) of 5 minutes.
CACHE_TTLin@lib/maintenance.ts.