// ***************************************************************************** // Copyright (C) 2018 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 // ***************************************************************************** import { inject, injectable, postConstruct } from '@theia/core/shared/inversify'; import * as theia from '@theia/plugin'; import { RPCProtocol } from '../common/rpc-protocol'; import { EnvMain, PLUGIN_RPC_CONTEXT } from '../common/plugin-api-rpc'; import { QueryParameters } from '../common/env'; import { generateUuid } from '@theia/core/lib/common/uuid'; @injectable() export abstract class EnvExtImpl { @inject(RPCProtocol) protected readonly rpc: RPCProtocol; private proxy: EnvMain; private queryParameters: QueryParameters; private lang: string; private applicationName: string; private ui: theia.UIKind; private envMachineId: string; private envSessionId: string; private host: string; private applicationRoot: string; private appUriScheme: string; private _remoteName: string | undefined; constructor() { this.envSessionId = generateUuid(); this.envMachineId = generateUuid(); this._remoteName = undefined; } @postConstruct() initialize(): void { this.proxy = this.rpc.getProxy(PLUGIN_RPC_CONTEXT.ENV_MAIN); } getEnvVariable(envVarName: string): Promise { return this.proxy.$getEnvVariable(envVarName).then(x => { if (x === null) { return undefined; } return x; }); } getQueryParameter(queryParamName: string): string | string[] | undefined { return this.queryParameters[queryParamName]; } getQueryParameters(): QueryParameters { return this.queryParameters; } setQueryParameters(queryParams: QueryParameters): void { this.queryParameters = queryParams; } setApplicationName(applicationName: string): void { this.applicationName = applicationName; } setLanguage(lang: string): void { this.lang = lang; } setUIKind(uiKind: theia.UIKind): void { this.ui = uiKind; } setAppHost(appHost: string): void { this.host = appHost; } setAppRoot(appRoot: string): void { this.applicationRoot = appRoot; } setAppUriScheme(uriScheme: string): void { this.appUriScheme = uriScheme; } getClientOperatingSystem(): Promise { return this.proxy.$getClientOperatingSystem(); } get appName(): string { return this.applicationName; } get appRoot(): string { return this.applicationRoot; } abstract get isNewAppInstall(): boolean; /** * @stubbed * Portable mode detection is not yet communicated to the plugin host. */ get isAppPortable(): boolean { return false; } get appHost(): string { return this.host; } get remoteName(): string | undefined { return this._remoteName; } get language(): string { return this.lang; } get machineId(): string { return this.envMachineId; } get sessionId(): string { return this.envSessionId; } get uriScheme(): string { return this.appUriScheme; } get uiKind(): theia.UIKind { return this.ui; } }