@theia/core
Version:
Theia is a cloud & desktop IDE framework implemented in TypeScript.
119 lines • 5.27 kB
JavaScript
// *****************************************************************************
// Copyright (C) 2018-2020 Red Hat, Inc. and others.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License v. 2.0 which is available at
// http://www.eclipse.org/legal/epl-2.0.
//
// This Source Code may also be made available under the following Secondary
// Licenses when the conditions for such availability set forth in the Eclipse
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
// with the GNU Classpath Exception which is available at
// https://www.gnu.org/software/classpath/license.html.
//
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
// *****************************************************************************
Object.defineProperty(exports, "__esModule", { value: true });
exports.EnvVariablesServerImpl = void 0;
const tslib_1 = require("tslib");
const path_1 = require("path");
const os_1 = require("os");
const inversify_1 = require("inversify");
const drivelist = require("drivelist");
const fs_extra_1 = require("fs-extra");
const os_2 = require("../../common/os");
const file_uri_1 = require("../../common/file-uri");
const backend_application_1 = require("../backend-application");
const backend_application_config_provider_1 = require("../backend-application-config-provider");
let EnvVariablesServerImpl = class EnvVariablesServerImpl {
constructor() {
this.envs = {};
this.homeDirUri = file_uri_1.FileUri.create((0, os_1.homedir)()).toString();
this.pathExistenceCache = {};
this.configDirUri = this.createConfigDirUri();
this.configDirUri.then(configDirUri => console.log(`Configuration directory URI: '${configDirUri}'`));
const prEnv = process.env;
Object.keys(prEnv).forEach((key) => {
let keyName = key;
if (os_2.isWindows) {
keyName = key.toLowerCase();
}
this.envs[keyName] = { 'name': keyName, 'value': prEnv[key] };
});
}
async createConfigDirUri() {
var _a, _b;
var _c, _d;
if (process.env.THEIA_CONFIG_DIR) {
// this has been explicitly set by the user, so we do not override its value
return file_uri_1.FileUri.create(process.env.THEIA_CONFIG_DIR).toString();
}
const dataFolderPath = (0, path_1.join)(backend_application_1.BackendApplicationPath, 'data');
const userDataPath = (0, path_1.join)(dataFolderPath, 'user-data');
const dataFolderExists = (_a = (_c = this.pathExistenceCache)[dataFolderPath]) !== null && _a !== void 0 ? _a : (_c[dataFolderPath] = await (0, fs_extra_1.pathExists)(dataFolderPath));
let theiaConfigDir;
if (dataFolderExists) {
const userDataExists = (_b = (_d = this.pathExistenceCache)[userDataPath]) !== null && _b !== void 0 ? _b : (_d[userDataPath] = await (0, fs_extra_1.pathExists)(userDataPath));
if (!userDataExists) {
await (0, fs_extra_1.mkdir)(userDataPath);
this.pathExistenceCache[userDataPath] = true;
}
theiaConfigDir = userDataPath;
}
else {
theiaConfigDir = (0, path_1.join)((0, os_1.homedir)(), backend_application_config_provider_1.BackendApplicationConfigProvider.get().configurationFolder);
}
return file_uri_1.FileUri.create(theiaConfigDir).toString();
}
async getExecPath() {
return process.execPath;
}
async getVariables() {
return Object.keys(this.envs).map(key => this.envs[key]);
}
async getValue(key) {
if (os_2.isWindows) {
key = key.toLowerCase();
}
return this.envs[key];
}
getConfigDirUri() {
return this.configDirUri;
}
async getHomeDirUri() {
return this.homeDirUri;
}
async getDrives() {
const uris = [];
const drives = await drivelist.list();
for (const drive of drives) {
for (const mountpoint of drive.mountpoints) {
if (this.filterHiddenPartitions(mountpoint.path)) {
uris.push(file_uri_1.FileUri.create(mountpoint.path).toString());
}
}
}
return uris;
}
/**
* Filters hidden and system partitions.
*/
filterHiddenPartitions(path) {
// OS X: This is your sleep-image. When your Mac goes to sleep it writes the contents of its memory to the hard disk. (https://bit.ly/2R6cztl)
if (path === '/private/var/vm') {
return false;
}
// Ubuntu: This system partition is simply the boot partition created when the computers mother board runs UEFI rather than BIOS. (https://bit.ly/2N5duHr)
if (path === '/boot/efi') {
return false;
}
return true;
}
};
exports.EnvVariablesServerImpl = EnvVariablesServerImpl;
exports.EnvVariablesServerImpl = EnvVariablesServerImpl = tslib_1.__decorate([
(0, inversify_1.injectable)(),
tslib_1.__metadata("design:paramtypes", [])
], EnvVariablesServerImpl);
//# sourceMappingURL=env-variables-server.js.map
;