-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcheck.js
232 lines (205 loc) · 7.9 KB
/
check.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
#!/usr/bin/env node
/**
* This is a standalone script which checks the environment and config,
* tests everything should work, then prints welcome info to the user.
*/
import fs from 'fs';
import path from 'path';
import { execSync } from 'child_process';
import dotenv from 'dotenv';
import https from 'https';
// Load environment variables from .env file if present
dotenv.config();
/**
* Constants
*/
const REQUIRED_ENV_VARS = [];
const PACKAGE_JSON_PATH = path.resolve('./package.json');
const COLORS = {
reset: '\x1b[0m',
red: '\x1b[31m',
green: '\x1b[32m',
yellow: '\x1b[33m',
blue: '\x1b[34m',
magenta: '\x1b[35m',
cyan: '\x1b[36m',
purple: '\x1b[35m',
grey: '\x1b[90m',
bold: '\x1b[1m',
light: '\x1b[2m',
italic: '\x1b[3m',
};
/**
* Colorizes console output using ANSI codes
*/
function colorize(colors, text) {
const colorCodes = colors.split(' ').map(color => COLORS[color] || '').join('');
return `${colorCodes}${text}${COLORS.reset}`;
}
/**
* Loads and returns the version from package.json
*/
function getVersion() {
try {
const packageJson = JSON.parse(fs.readFileSync(PACKAGE_JSON_PATH, 'utf-8'));
return packageJson.version || 'unknown';
} catch (error) {
return 'unknown';
}
}
/**
* Prints the Domain Locker ASCII banner
*/
function printBanner() {
console.log(colorize('purple', `
██████╗ ██████╗ ███╗ ███╗ █████╗ ██╗███╗ ██╗
██╔══██╗██╔═══██╗████╗ ████║██╔══██╗██║████╗ ██║
██║ ██║██║ ██║██╔████╔██║███████║██║██╔██╗ ██║
██║ ██║██║ ██║██║╚██╔╝██║██╔══██║██║██║╚██╗██║
██████╔╝╚██████╔╝██║ ╚═╝ ██║██║ ██║██║██║ ╚████║
╚═════╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚═╝ ╚═══╝
██╗ ██████╗ ██████╗██╗ ██╗███████╗██████╗
██║ ██╔═══██╗██╔════╝██║ ██╔╝██╔════╝██╔══██╗
██║ ██║ ██║██║ █████╔╝ █████╗ ██████╔╝
██║ ██║ ██║██║ ██╔═██╗ ██╔══╝ ██╔══██╗
███████╗╚██████╔╝╚██████╗██║ ██╗███████╗██║ ██║
╚══════╝ ╚═════╝ ╚═════╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
`));
console.log(colorize('purple bold underline', 'Licensed under MIT. Coded with ☕ and ❤️ by Lissy93'));
console.log(colorize('purple bold underline', 'Source at https://github.com/lissy93/domain-locker\n'));
}
/**
* Checks for required environment variables
*/
function checkRequiredEnvVars() {
const missingVars = REQUIRED_ENV_VARS.filter((varName) => !process.env[varName]);
if (missingVars.length > 0) {
console.error(colorize('red', '❌ Missing required environment variables:'), missingVars.join(', '));
process.exit(1);
}
}
/**
* Logs a message indicating the server will start soon
*/
function willSoonStart() {
console.log(colorize('grey', '\n🚀 Getting ready to start...'));
const port = process.env.PORT || 3000;
const base = (process.env.BASE_URL || process.env.DL_BASE_URL || 'http://localhost').replace(/:\d+$/, '');
console.log(colorize('magenta', `🤘 Server will soon start at ${base}:${port}`));
}
/**
* Tests connection to Supabase
* @returns {Promise<boolean>} Whether the connection was successful
*/
async function testSupabaseConnection() {
const { SUPABASE_URL, SUPABASE_ANON_KEY } = process.env;
if (!SUPABASE_URL || !SUPABASE_ANON_KEY) {
console.error(colorize('red', '❌ Missing Supabase credentials.'));
return false;
}
return new Promise((resolve) => {
const url = `${SUPABASE_URL}/rest/v1/`;
const options = {
headers: { apikey: SUPABASE_ANON_KEY },
timeout: 5000,
};
const req = https.get(url, options, (res) => {
if (res.statusCode === 200) {
console.log(colorize('green', '✅ Successfully connected to Supabase.'));
req.destroy();
resolve(true);
return;
} else {
console.error(colorize('red', `❌ Failed to connect to Supabase. HTTP ${res.statusCode}`));
resolve(false);
return;
}
});
req.on('error', (err) => {
console.error(colorize('red', `❌ Error connecting to Supabase: ${err.message}`));
resolve(false);
return;
});
req.on('timeout', () => {
console.error(colorize('red', '❌ Supabase connection timed out.'));
req.destroy();
resolve(false);
});
});
}
/**
* Tests connection to the specified database type
* @param {string} dbType - 'Supabase' or 'Postgres'
*/
async function testDatabaseConnection(dbType) {
console.log(colorize('grey', '\n🔌 Testing database connection...'));
if (dbType === 'Supabase') {
return testSupabaseConnection().finally((success) => {
return;
});
}
if (dbType === 'Postgres') {
const { DL_PG_HOST, DL_PG_PORT, DL_PG_USER, DL_PG_PASSWORD, DL_PG_NAME } = process.env;
if (!DL_PG_HOST || !DL_PG_PORT || !DL_PG_USER || !DL_PG_PASSWORD || !DL_PG_NAME) {
console.error(colorize('red', '❌ Missing PostgreSQL connection details.'));
process.exit(1);
}
try {
execSync(
`PGPASSWORD="${DL_PG_PASSWORD}" psql -h ${DL_PG_HOST} -p ${DL_PG_PORT} -U ${DL_PG_USER} -d ${DL_PG_NAME} -c "SELECT 1;"`,
{ stdio: 'ignore' }
);
console.log(colorize('green', '✅ Successfully connected to PostgreSQL.'));
} catch (error) {
console.error(colorize('red', '❌ Failed to connect to PostgreSQL:'), error.message);
process.exit(1);
}
return;
}
console.error(colorize('yellow', '⚠️ Couldn\'t verify database type.'));
}
/**
* Determines the database type based on environment variables
* @returns {string} 'Supabase', 'Postgres', or 'Unknown'
*/
function getDatabaseType() {
const {
SUPABASE_URL,
SUPABASE_ANON_KEY,
DL_PG_HOST,
DL_PG_PORT,
DL_PG_USER,
DL_PG_PASSWORD,
DL_PG_NAME
} = process.env;
if (SUPABASE_URL && SUPABASE_ANON_KEY) {
return 'Supabase';
}
if (DL_PG_HOST && DL_PG_PORT && DL_PG_USER && DL_PG_PASSWORD && DL_PG_NAME) {
return 'Postgres';
}
return 'Unknown';
}
/**
* Main initialization sequence
*/
async function init() {
console.clear();
printBanner();
const dbType = getDatabaseType();
console.log(colorize('grey', '\n⚙️ Checking config...'));
console.log(colorize('cyan', `🌍 Environment: ${process.env.DL_ENV_TYPE || 'Self-Hosted'}`));
console.log(colorize('cyan', `📦 Version: ${getVersion()}`));
console.log(colorize('cyan', `💾 Database Type: ${dbType}`));
checkRequiredEnvVars();
await testDatabaseConnection(dbType);
willSoonStart();
console.log();
}
/**
* Entry point - catches errors and starts init
*/
init().catch((error) => {
console.error(colorize('red', '❌ Unexpected error during initialization:'), error);
process.exit(1);
});