|
import path from 'node:path'; |
|
import { loadEnv } from 'vite'; |
|
import { posixify } from '../../utils/filesystem.js'; |
|
import { negotiate } from '../../utils/http.js'; |
|
import { filter_private_env, filter_public_env } from '../../utils/env.js'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export function get_config_aliases(config) { |
|
|
|
const alias = [ |
|
|
|
|
|
{ find: '$lib', replacement: config.files.lib } |
|
]; |
|
|
|
for (let [key, value] of Object.entries(config.alias)) { |
|
value = posixify(value); |
|
if (value.endsWith('/*')) { |
|
value = value.slice(0, -2); |
|
} |
|
if (key.endsWith('/*')) { |
|
|
|
alias.push({ |
|
find: new RegExp(`^${escape_for_regexp(key.slice(0, -2))}\\/(.+)$`), |
|
replacement: `${path.resolve(value)}/$1` |
|
}); |
|
} else if (key + '/*' in config.alias) { |
|
|
|
alias.push({ |
|
find: new RegExp(`^${escape_for_regexp(key)}$`), |
|
replacement: path.resolve(value) |
|
}); |
|
} else { |
|
alias.push({ find: key, replacement: path.resolve(value) }); |
|
} |
|
} |
|
|
|
return alias; |
|
} |
|
|
|
|
|
|
|
|
|
function escape_for_regexp(str) { |
|
return str.replace(/[.*+?^${}()|[\]\\]/g, (match) => '\\' + match); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
export function get_env(env_config, mode) { |
|
const { publicPrefix: public_prefix, privatePrefix: private_prefix } = env_config; |
|
const env = loadEnv(mode, env_config.dir, ''); |
|
|
|
return { |
|
public: filter_public_env(env, { public_prefix, private_prefix }), |
|
private: filter_private_env(env, { public_prefix, private_prefix }) |
|
}; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
export function not_found(req, res, base) { |
|
const type = negotiate(req.headers.accept ?? '*', ['text/plain', 'text/html']); |
|
|
|
|
|
if (req.url === '/' && type === 'text/html') { |
|
res.statusCode = 307; |
|
res.setHeader('location', base); |
|
res.end(); |
|
return; |
|
} |
|
|
|
res.statusCode = 404; |
|
|
|
const prefixed = base + req.url; |
|
|
|
if (type === 'text/html') { |
|
res.setHeader('Content-Type', 'text/html'); |
|
res.end( |
|
`The server is configured with a public base URL of ${base} - did you mean to visit <a href="${prefixed}">${prefixed}</a> instead?` |
|
); |
|
} else { |
|
res.end( |
|
`The server is configured with a public base URL of ${base} - did you mean to visit ${prefixed} instead?` |
|
); |
|
} |
|
} |
|
|
|
export const strip_virtual_prefix = (id) => id.replace('\0virtual:', ''); |
|
|