2024-01-12 14:43:28 +00:00
|
|
|
import {customDomainUsed, getDomain, getHost} from "~/lib/utils.js";
|
2023-12-16 18:21:03 +00:00
|
|
|
|
2024-01-12 14:43:28 +00:00
|
|
|
/**
|
|
|
|
* Added by Caddy when proxying to the app
|
|
|
|
* @type {string}
|
|
|
|
*/
|
2024-01-16 09:54:12 +00:00
|
|
|
const customDomainHeaderName = 'user-custom-domain'
|
2024-01-12 14:43:28 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* List of routes that can be used with a custom domain
|
|
|
|
* @type {string[]}
|
|
|
|
*/
|
|
|
|
const customDomainAllowedRoutes = ['forms-slug']
|
|
|
|
|
|
|
|
function redirectToMainDomain() {
|
|
|
|
return navigateTo(useRuntimeConfig().public.appUrl + '?utm_source=failed_custom_domain_redirect', { redirectCode: 301, external: true })
|
2023-12-16 18:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default defineNuxtRouteMiddleware((to, from) => {
|
2024-01-12 14:43:28 +00:00
|
|
|
if (process.client) return
|
|
|
|
|
|
|
|
const config = useRuntimeConfig()
|
|
|
|
|
|
|
|
if (!customDomainUsed()) return
|
|
|
|
|
2024-01-16 09:47:09 +00:00
|
|
|
console.info('loadedConfig',useRuntimeConfig())
|
|
|
|
console.log(useRequestHeaders(),customDomainHeaderName)
|
2024-01-12 14:43:28 +00:00
|
|
|
const customDomainHeaderValue = useRequestHeaders()[customDomainHeaderName]
|
|
|
|
if (!customDomainHeaderValue || customDomainHeaderValue !== getDomain(getHost())) {
|
|
|
|
// If custom domain header doesn't match, redirect
|
2024-01-15 15:49:24 +00:00
|
|
|
console.info('Custom domain header does not match, redirecting',{
|
|
|
|
'customDomainHeaderValue': customDomainHeaderValue,
|
|
|
|
'host': getDomain(getHost()),
|
|
|
|
})
|
2024-01-12 14:43:28 +00:00
|
|
|
return redirectToMainDomain()
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!config.public.customDomainsEnabled) {
|
|
|
|
// If custom domain not allowed, redirect
|
|
|
|
return redirectToMainDomain()
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!customDomainAllowedRoutes.includes(to.name)) {
|
|
|
|
// Custom domain only allowed for form url
|
|
|
|
return redirectToMainDomain()
|
2023-12-16 18:21:03 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|