-
Notifications
You must be signed in to change notification settings - Fork 9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(core): Move all base URLs to UrlService (no-changelog) (#8141)
This change kept coming up in #6713, #7773, and #8135. So this PR moves the existing code without actually changing anything, to help get rid of some of the circular dependencies. ## Review / Merge checklist - [x] PR title and summary are descriptive.
- Loading branch information
Showing
16 changed files
with
93 additions
and
85 deletions.
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
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
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
File renamed without changes.
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,40 @@ | ||
import { Service } from 'typedi'; | ||
import config from '@/config'; | ||
|
||
@Service() | ||
export class UrlService { | ||
/** Returns the base URL n8n is reachable from */ | ||
readonly baseUrl: string; | ||
|
||
constructor() { | ||
this.baseUrl = this.generateBaseUrl(); | ||
} | ||
|
||
/** Returns the base URL of the webhooks */ | ||
getWebhookBaseUrl() { | ||
let urlBaseWebhook = process.env.WEBHOOK_URL ?? this.baseUrl; | ||
if (!urlBaseWebhook.endsWith('/')) { | ||
urlBaseWebhook += '/'; | ||
} | ||
return urlBaseWebhook; | ||
} | ||
|
||
/** Return the n8n instance base URL without trailing slash */ | ||
getInstanceBaseUrl(): string { | ||
const n8nBaseUrl = config.getEnv('editorBaseUrl') || this.getWebhookBaseUrl(); | ||
|
||
return n8nBaseUrl.endsWith('/') ? n8nBaseUrl.slice(0, n8nBaseUrl.length - 1) : n8nBaseUrl; | ||
} | ||
|
||
private generateBaseUrl(): string { | ||
const protocol = config.getEnv('protocol'); | ||
const host = config.getEnv('host'); | ||
const port = config.getEnv('port'); | ||
const path = config.getEnv('path'); | ||
|
||
if ((protocol === 'http' && port === 80) || (protocol === 'https' && port === 443)) { | ||
return `${protocol}://${host}${path}`; | ||
} | ||
return `${protocol}://${host}:${port}${path}`; | ||
} | ||
} |
Oops, something went wrong.