31 lines
1.4 KiB
JavaScript
31 lines
1.4 KiB
JavaScript
// @ts-check
|
|
import https from "https";
|
|
import http from "http";
|
|
/**
|
|
* # Grab Names For Query
|
|
*/
|
|
export default function grabHostNames(param) {
|
|
var _a, _b;
|
|
const finalEnv = (param === null || param === void 0 ? void 0 : param.env)
|
|
? Object.assign(Object.assign({}, process.env), param.env) : process.env;
|
|
const scheme = finalEnv["DSQL_HTTP_SCHEME"];
|
|
const localHost = finalEnv["DSQL_LOCAL_HOST"];
|
|
const localHostPort = finalEnv["DSQL_LOCAL_HOST_PORT"];
|
|
const remoteHost = (param === null || param === void 0 ? void 0 : param.useDefault)
|
|
? undefined
|
|
: ((_a = finalEnv["DSQL_API_REMOTE_HOST"]) === null || _a === void 0 ? void 0 : _a.match(/.*\..*/))
|
|
? finalEnv["DSQL_API_REMOTE_HOST"]
|
|
: undefined;
|
|
const remoteHostPort = (param === null || param === void 0 ? void 0 : param.useDefault)
|
|
? undefined
|
|
: ((_b = finalEnv["DSQL_API_REMOTE_HOST_PORT"]) === null || _b === void 0 ? void 0 : _b.match(/./))
|
|
? finalEnv["DSQL_API_REMOTE_HOST_PORT"]
|
|
: undefined;
|
|
return {
|
|
host: remoteHost || localHost || "datasquirel.com",
|
|
port: remoteHostPort || localHostPort || 443,
|
|
scheme: (scheme === null || scheme === void 0 ? void 0 : scheme.match(/^http$/i)) ? http : https,
|
|
user_id: (param === null || param === void 0 ? void 0 : param.userId) || String(finalEnv["DSQL_API_USER_ID"] || 0),
|
|
};
|
|
}
|