-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #203 from jamesread/configuration-checking
feat: Configuration checking on backend startup, and via cli.
- Loading branch information
Showing
4 changed files
with
167 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import { Command } from 'nestjs-command'; | ||
import { Injectable } from '@nestjs/common'; | ||
import { ConfigurationChecker } from '@gitroom/helpers/configuration/configuration.checker'; | ||
|
||
@Injectable() | ||
export class ConfigurationTask { | ||
@Command({ | ||
command: 'config:check', | ||
describe: 'Checks your configuration (.env) file for issues.', | ||
}) | ||
create() { | ||
const checker = new ConfigurationChecker(); | ||
checker.readEnvFromProcess() | ||
checker.check() | ||
|
||
if (checker.hasIssues()) { | ||
for (const issue of checker.getIssues()) { | ||
console.warn("Configuration issue:", issue) | ||
} | ||
|
||
console.error("Configuration check complete, issues: ", checker.getIssuesCount()) | ||
} else { | ||
console.log("Configuration check complete, no issues found.") | ||
} | ||
|
||
console.log("Press Ctrl+C to exit."); | ||
return true | ||
} | ||
} | ||
|
116 changes: 116 additions & 0 deletions
116
libraries/helpers/src/configuration/configuration.checker.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
import { readFileSync, existsSync } from 'fs' | ||
import * as dotenv from 'dotenv' | ||
import { resolve } from 'path' | ||
|
||
export class ConfigurationChecker { | ||
cfg: dotenv.DotenvParseOutput | ||
issues: string[] = [] | ||
|
||
readEnvFromFile () { | ||
const envFile = resolve(__dirname, '../../../.env') | ||
|
||
if (!existsSync(envFile)) { | ||
console.error('Env file not found!: ', envFile) | ||
return | ||
} | ||
|
||
const handle = readFileSync(envFile, 'utf-8') | ||
|
||
this.cfg = dotenv.parse(handle) | ||
} | ||
|
||
readEnvFromProcess () { | ||
this.cfg = process.env | ||
} | ||
|
||
check () { | ||
this.checkDatabaseServers() | ||
this.checkNonEmpty('JWT_SECRET') | ||
this.checkIsValidUrl('MAIN_URL') | ||
this.checkIsValidUrl('FRONTEND_URL') | ||
this.checkIsValidUrl('NEXT_PUBLIC_BACKEND_URL') | ||
this.checkIsValidUrl('BACKEND_INTERNAL_URL') | ||
this.checkNonEmpty('RESEND_API_KEY', 'Needed to send user activation emails.') | ||
this.checkNonEmpty('CLOUDFLARE_ACCOUNT_ID', 'Needed to setup providers.') | ||
this.checkNonEmpty('CLOUDFLARE_ACCESS_KEY', 'Needed to setup providers.') | ||
this.checkNonEmpty('CLOUDFLARE_SECRET_ACCESS_KEY', 'Needed to setup providers.') | ||
this.checkNonEmpty('CLOUDFLARE_BUCKETNAME', 'Needed to setup providers.') | ||
this.checkNonEmpty('CLOUDFLARE_BUCKET_URL', 'Needed to setup providers.') | ||
this.checkNonEmpty('CLOUDFLARE_REGION', 'Needed to setup providers.') | ||
} | ||
|
||
checkNonEmpty (key: string, description?: string): boolean { | ||
const v = this.get(key) | ||
|
||
if (!description) { | ||
description = '' | ||
} | ||
|
||
if (!v) { | ||
this.issues.push(key + ' not set. ' + description) | ||
return false | ||
} | ||
|
||
if (v.length === 0) { | ||
this.issues.push(key + ' is empty.' + description) | ||
return false | ||
} | ||
|
||
return true | ||
} | ||
|
||
get(key: string): string | undefined { | ||
return this.cfg[key as keyof typeof this.cfg] | ||
} | ||
|
||
checkDatabaseServers () { | ||
this.checkRedis() | ||
this.checkIsValidUrl('DATABASE_URL') | ||
} | ||
|
||
checkRedis () { | ||
if (!this.cfg.REDIS_URL) { | ||
this.issues.push('REDIS_URL not set') | ||
} | ||
|
||
try { | ||
const redisUrl = new URL(this.cfg.REDIS_URL) | ||
|
||
if (redisUrl.protocol !== 'redis:') { | ||
this.issues.push('REDIS_URL must start with redis://') | ||
} | ||
} catch (error) { | ||
this.issues.push('REDIS_URL is not a valid URL') | ||
} | ||
} | ||
|
||
checkIsValidUrl (key: string) { | ||
if (!this.checkNonEmpty(key)) { | ||
return | ||
} | ||
|
||
const urlString = this.get(key) | ||
|
||
try { | ||
new URL(urlString) | ||
} catch (error) { | ||
this.issues.push(key + ' is not a valid URL') | ||
} | ||
|
||
if (urlString.endsWith('/')) { | ||
this.issues.push(key + ' should not end with /') | ||
} | ||
} | ||
|
||
hasIssues() { | ||
return this.issues.length > 0 | ||
} | ||
|
||
getIssues() { | ||
return this.issues | ||
} | ||
|
||
getIssuesCount() { | ||
return this.issues.length | ||
} | ||
} |