新增: - backend/venv/ - Python 虚拟环境 - backend/start.sh - 启动脚本(使用虚拟环境) - backend/requirements.txt - 依赖列表 - .gitignore - 忽略虚拟环境和缓存文件 说明: - 每个项目使用独立虚拟环境 - 避免依赖冲突 - 启动脚本自动创建和激活虚拟环境
36 lines
1014 B
JavaScript
36 lines
1014 B
JavaScript
/**
|
|
* Create a valid URL from parsed URL parts.
|
|
* @param {import('./getSocketUrlParts').SocketUrlParts} urlParts The parsed URL parts.
|
|
* @param {import('./getWDSMetadata').WDSMetaObj} [metadata] The parsed WDS metadata object.
|
|
* @returns {string} The generated URL.
|
|
*/
|
|
function urlFromParts(urlParts, metadata) {
|
|
if (typeof metadata === 'undefined') {
|
|
metadata = {};
|
|
}
|
|
|
|
let fullProtocol = 'http:';
|
|
if (urlParts.protocol) {
|
|
fullProtocol = urlParts.protocol;
|
|
}
|
|
if (metadata.enforceWs) {
|
|
fullProtocol = fullProtocol.replace(/^(?:http|.+-extension|file)/i, 'ws');
|
|
}
|
|
|
|
fullProtocol = fullProtocol + '//';
|
|
|
|
let fullHost = urlParts.hostname;
|
|
if (urlParts.auth) {
|
|
const fullAuth = urlParts.auth.split(':').map(encodeURIComponent).join(':') + '@';
|
|
fullHost = fullAuth + fullHost;
|
|
}
|
|
if (urlParts.port) {
|
|
fullHost = fullHost + ':' + urlParts.port;
|
|
}
|
|
|
|
const url = new URL(urlParts.pathname, fullProtocol + fullHost);
|
|
return url.href;
|
|
}
|
|
|
|
module.exports = urlFromParts;
|