2020-03-09 17:06:38 +01:00
|
|
|
import * as fs from "fs";
|
2018-05-31 15:08:54 +02:00
|
|
|
import * as path from "path";
|
2021-12-20 18:04:00 +01:00
|
|
|
|
2022-03-03 18:24:41 +01:00
|
|
|
import * as program from "commander";
|
|
|
|
import * as jsdom from "jsdom";
|
|
|
|
|
2022-07-08 15:40:31 +02:00
|
|
|
import { InternalFolderService } from "@bitwarden/common/abstractions/folder/folder.service.abstraction";
|
2022-08-24 18:33:05 +02:00
|
|
|
import { OrganizationApiServiceAbstraction } from "@bitwarden/common/abstractions/organization/organization-api.service.abstraction";
|
2022-06-14 17:10:53 +02:00
|
|
|
import { ClientType } from "@bitwarden/common/enums/clientType";
|
|
|
|
import { KeySuffixOptions } from "@bitwarden/common/enums/keySuffixOptions";
|
|
|
|
import { LogLevelType } from "@bitwarden/common/enums/logLevelType";
|
|
|
|
import { StateFactory } from "@bitwarden/common/factories/stateFactory";
|
|
|
|
import { Account } from "@bitwarden/common/models/domain/account";
|
|
|
|
import { GlobalState } from "@bitwarden/common/models/domain/globalState";
|
|
|
|
import { AppIdService } from "@bitwarden/common/services/appId.service";
|
|
|
|
import { AuditService } from "@bitwarden/common/services/audit.service";
|
|
|
|
import { AuthService } from "@bitwarden/common/services/auth.service";
|
2022-07-12 20:25:18 +02:00
|
|
|
import { BroadcasterService } from "@bitwarden/common/services/broadcaster.service";
|
2022-06-14 17:10:53 +02:00
|
|
|
import { CipherService } from "@bitwarden/common/services/cipher.service";
|
|
|
|
import { CollectionService } from "@bitwarden/common/services/collection.service";
|
|
|
|
import { ContainerService } from "@bitwarden/common/services/container.service";
|
|
|
|
import { CryptoService } from "@bitwarden/common/services/crypto.service";
|
2022-06-27 19:38:12 +02:00
|
|
|
import { EncryptService } from "@bitwarden/common/services/encrypt.service";
|
2022-06-14 17:10:53 +02:00
|
|
|
import { EnvironmentService } from "@bitwarden/common/services/environment.service";
|
|
|
|
import { ExportService } from "@bitwarden/common/services/export.service";
|
|
|
|
import { FileUploadService } from "@bitwarden/common/services/fileUpload.service";
|
2022-07-08 15:40:31 +02:00
|
|
|
import { FolderApiService } from "@bitwarden/common/services/folder/folder-api.service";
|
|
|
|
import { FolderService } from "@bitwarden/common/services/folder/folder.service";
|
2022-06-14 17:10:53 +02:00
|
|
|
import { ImportService } from "@bitwarden/common/services/import.service";
|
|
|
|
import { KeyConnectorService } from "@bitwarden/common/services/keyConnector.service";
|
2022-06-27 19:38:12 +02:00
|
|
|
import { MemoryStorageService } from "@bitwarden/common/services/memoryStorage.service";
|
2022-06-14 17:10:53 +02:00
|
|
|
import { NoopMessagingService } from "@bitwarden/common/services/noopMessaging.service";
|
|
|
|
import { OrganizationService } from "@bitwarden/common/services/organization.service";
|
2022-08-24 18:33:05 +02:00
|
|
|
import { OrganizationApiService } from "@bitwarden/common/services/organization/organization-api.service";
|
2022-06-14 17:10:53 +02:00
|
|
|
import { PasswordGenerationService } from "@bitwarden/common/services/passwordGeneration.service";
|
2022-08-08 11:04:36 +02:00
|
|
|
import { PolicyService } from "@bitwarden/common/services/policy/policy.service";
|
2022-06-14 17:10:53 +02:00
|
|
|
import { ProviderService } from "@bitwarden/common/services/provider.service";
|
|
|
|
import { SearchService } from "@bitwarden/common/services/search.service";
|
|
|
|
import { SendService } from "@bitwarden/common/services/send.service";
|
|
|
|
import { SettingsService } from "@bitwarden/common/services/settings.service";
|
|
|
|
import { StateService } from "@bitwarden/common/services/state.service";
|
|
|
|
import { StateMigrationService } from "@bitwarden/common/services/stateMigration.service";
|
2022-08-29 20:14:59 +02:00
|
|
|
import { SyncService } from "@bitwarden/common/services/sync/sync.service";
|
2022-06-14 17:10:53 +02:00
|
|
|
import { TokenService } from "@bitwarden/common/services/token.service";
|
|
|
|
import { TotpService } from "@bitwarden/common/services/totp.service";
|
|
|
|
import { TwoFactorService } from "@bitwarden/common/services/twoFactor.service";
|
2022-08-10 03:31:02 +02:00
|
|
|
import { UserVerificationApiService } from "@bitwarden/common/services/userVerification/userVerification-api.service";
|
|
|
|
import { UserVerificationService } from "@bitwarden/common/services/userVerification/userVerification.service";
|
2022-08-30 16:11:19 +02:00
|
|
|
import { VaultTimeoutService } from "@bitwarden/common/services/vaultTimeout/vaultTimeout.service";
|
2022-08-30 22:30:43 +02:00
|
|
|
import { VaultTimeoutSettingsService } from "@bitwarden/common/services/vaultTimeout/vaultTimeoutSettings.service";
|
2022-06-14 17:10:53 +02:00
|
|
|
import { CliPlatformUtilsService } from "@bitwarden/node/cli/services/cliPlatformUtils.service";
|
|
|
|
import { ConsoleLogService } from "@bitwarden/node/cli/services/consoleLog.service";
|
|
|
|
import { NodeApiService } from "@bitwarden/node/services/nodeApi.service";
|
|
|
|
import { NodeCryptoFunctionService } from "@bitwarden/node/services/nodeCryptoFunction.service";
|
2021-12-20 18:04:00 +01:00
|
|
|
|
2018-05-14 17:15:54 +02:00
|
|
|
import { Program } from "./program";
|
2021-02-03 18:44:33 +01:00
|
|
|
import { SendProgram } from "./send.program";
|
2022-03-03 18:24:41 +01:00
|
|
|
import { I18nService } from "./services/i18n.service";
|
|
|
|
import { LowdbStorageService } from "./services/lowdbStorage.service";
|
|
|
|
import { NodeEnvSecureStorageService } from "./services/nodeEnvSecureStorage.service";
|
2021-02-03 18:44:33 +01:00
|
|
|
import { VaultProgram } from "./vault.program";
|
2018-05-13 06:19:14 +02:00
|
|
|
|
2019-02-07 21:46:22 +01:00
|
|
|
// Polyfills
|
2022-08-24 18:33:05 +02:00
|
|
|
global.DOMParser = new jsdom.JSDOM().window.DOMParser;
|
2019-02-07 21:46:22 +01:00
|
|
|
|
2022-03-03 18:24:41 +01:00
|
|
|
// eslint-disable-next-line
|
2019-03-16 03:34:59 +01:00
|
|
|
const packageJson = require("../package.json");
|
|
|
|
|
2018-05-14 17:15:54 +02:00
|
|
|
export class Main {
|
2018-05-16 05:26:36 +02:00
|
|
|
messagingService: NoopMessagingService;
|
2018-05-16 21:22:32 +02:00
|
|
|
storageService: LowdbStorageService;
|
|
|
|
secureStorageService: NodeEnvSecureStorageService;
|
2022-06-27 19:38:12 +02:00
|
|
|
memoryStorageService: MemoryStorageService;
|
2018-05-14 17:15:54 +02:00
|
|
|
i18nService: I18nService;
|
2019-03-16 03:34:59 +01:00
|
|
|
platformUtilsService: CliPlatformUtilsService;
|
2018-05-14 17:15:54 +02:00
|
|
|
cryptoService: CryptoService;
|
|
|
|
tokenService: TokenService;
|
|
|
|
appIdService: AppIdService;
|
|
|
|
apiService: NodeApiService;
|
2020-04-03 16:47:45 +02:00
|
|
|
environmentService: EnvironmentService;
|
2018-05-14 17:15:54 +02:00
|
|
|
settingsService: SettingsService;
|
|
|
|
cipherService: CipherService;
|
2022-07-08 15:40:31 +02:00
|
|
|
folderService: InternalFolderService;
|
2018-05-14 17:15:54 +02:00
|
|
|
collectionService: CollectionService;
|
|
|
|
vaultTimeoutService: VaultTimeoutService;
|
2022-08-30 22:30:43 +02:00
|
|
|
vaultTimeoutSettingsService: VaultTimeoutSettingsService;
|
2020-11-23 21:56:40 +01:00
|
|
|
syncService: SyncService;
|
2021-11-16 10:42:30 +01:00
|
|
|
passwordGenerationService: PasswordGenerationService;
|
|
|
|
totpService: TotpService;
|
2019-03-16 03:34:59 +01:00
|
|
|
containerService: ContainerService;
|
2020-10-20 16:07:36 +02:00
|
|
|
auditService: AuditService;
|
2018-08-06 15:38:17 +02:00
|
|
|
importService: ImportService;
|
2020-10-20 16:07:36 +02:00
|
|
|
exportService: ExportService;
|
2021-02-04 05:51:59 +01:00
|
|
|
searchService: SearchService;
|
2018-05-14 17:15:54 +02:00
|
|
|
cryptoFunctionService: NodeCryptoFunctionService;
|
2022-06-27 19:38:12 +02:00
|
|
|
encryptService: EncryptService;
|
2020-10-20 16:07:36 +02:00
|
|
|
authService: AuthService;
|
2020-12-14 18:29:17 +01:00
|
|
|
policyService: PolicyService;
|
|
|
|
program: Program;
|
2021-02-03 18:44:33 +01:00
|
|
|
vaultProgram: VaultProgram;
|
2020-12-14 18:29:17 +01:00
|
|
|
sendProgram: SendProgram;
|
|
|
|
logService: ConsoleLogService;
|
2018-05-14 17:15:54 +02:00
|
|
|
sendService: SendService;
|
2021-03-29 16:47:39 +02:00
|
|
|
fileUploadService: FileUploadService;
|
2018-05-14 17:15:54 +02:00
|
|
|
keyConnectorService: KeyConnectorService;
|
|
|
|
userVerificationService: UserVerificationService;
|
2021-12-28 21:38:51 +01:00
|
|
|
stateService: StateService;
|
|
|
|
stateMigrationService: StateMigrationService;
|
|
|
|
organizationService: OrganizationService;
|
|
|
|
providerService: ProviderService;
|
2022-02-08 00:31:36 +01:00
|
|
|
twoFactorService: TwoFactorService;
|
2022-07-12 20:25:18 +02:00
|
|
|
broadcasterService: BroadcasterService;
|
2022-07-08 15:40:31 +02:00
|
|
|
folderApiService: FolderApiService;
|
2022-08-10 03:31:02 +02:00
|
|
|
userVerificationApiService: UserVerificationApiService;
|
2022-08-24 18:33:05 +02:00
|
|
|
organizationApiService: OrganizationApiServiceAbstraction;
|
2021-12-20 18:04:00 +01:00
|
|
|
|
2021-03-29 16:47:39 +02:00
|
|
|
constructor() {
|
|
|
|
let p = null;
|
2021-11-09 19:00:16 +01:00
|
|
|
const relativeDataDir = path.join(path.dirname(process.execPath), "bw-data");
|
2020-04-14 19:04:19 +02:00
|
|
|
if (fs.existsSync(relativeDataDir)) {
|
|
|
|
p = relativeDataDir;
|
|
|
|
} else if (process.env.BITWARDENCLI_APPDATA_DIR) {
|
|
|
|
p = path.resolve(process.env.BITWARDENCLI_APPDATA_DIR);
|
|
|
|
} else if (process.platform === "darwin") {
|
2020-03-03 22:29:10 +01:00
|
|
|
p = path.join(process.env.HOME, "Library/Application Support/Bitwarden CLI");
|
2020-08-03 18:30:32 +02:00
|
|
|
} else if (process.platform === "win32") {
|
|
|
|
p = path.join(process.env.APPDATA, "Bitwarden CLI");
|
|
|
|
} else if (process.env.XDG_CONFIG_HOME) {
|
2021-11-09 19:00:16 +01:00
|
|
|
p = path.join(process.env.XDG_CONFIG_HOME, "Bitwarden CLI");
|
|
|
|
} else {
|
|
|
|
p = path.join(process.env.HOME, ".config/Bitwarden CLI");
|
2018-05-14 17:15:54 +02:00
|
|
|
}
|
2018-05-11 19:47:18 +02:00
|
|
|
|
2018-05-15 05:16:59 +02:00
|
|
|
this.i18nService = new I18nService("en", "./locales");
|
2022-02-08 15:29:22 +01:00
|
|
|
this.platformUtilsService = new CliPlatformUtilsService(ClientType.Cli, packageJson);
|
2021-10-20 22:41:33 +02:00
|
|
|
this.logService = new ConsoleLogService(
|
2021-08-13 16:18:49 +02:00
|
|
|
this.platformUtilsService.isDev(),
|
2018-05-15 05:16:59 +02:00
|
|
|
(level) => process.env.BITWARDENCLI_DEBUG !== "true" && level <= LogLevelType.Info
|
2021-12-20 18:04:00 +01:00
|
|
|
);
|
2018-05-15 05:16:59 +02:00
|
|
|
this.cryptoFunctionService = new NodeCryptoFunctionService();
|
2022-06-27 19:38:12 +02:00
|
|
|
this.encryptService = new EncryptService(this.cryptoFunctionService, this.logService, true);
|
2022-02-10 17:24:41 +01:00
|
|
|
this.storageService = new LowdbStorageService(this.logService, null, p, false, true);
|
2020-12-14 18:29:17 +01:00
|
|
|
this.secureStorageService = new NodeEnvSecureStorageService(
|
2018-05-16 03:11:58 +02:00
|
|
|
this.storageService,
|
2021-03-29 16:47:39 +02:00
|
|
|
this.logService,
|
2020-12-14 18:29:17 +01:00
|
|
|
() => this.cryptoService
|
2021-12-20 18:04:00 +01:00
|
|
|
);
|
2021-12-28 21:38:51 +01:00
|
|
|
|
2022-06-27 19:38:12 +02:00
|
|
|
this.memoryStorageService = new MemoryStorageService();
|
|
|
|
|
2021-12-28 21:38:51 +01:00
|
|
|
this.stateMigrationService = new StateMigrationService(
|
|
|
|
this.storageService,
|
2022-02-01 00:00:19 +01:00
|
|
|
this.secureStorageService,
|
2022-02-03 20:08:45 +01:00
|
|
|
new StateFactory(GlobalState, Account)
|
2021-12-28 21:38:51 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
this.stateService = new StateService(
|
2018-05-14 17:15:54 +02:00
|
|
|
this.storageService,
|
2018-05-16 03:11:58 +02:00
|
|
|
this.secureStorageService,
|
2022-06-27 19:38:12 +02:00
|
|
|
this.memoryStorageService,
|
2021-12-28 21:38:51 +01:00
|
|
|
this.logService,
|
2022-01-20 21:03:37 +01:00
|
|
|
this.stateMigrationService,
|
2022-02-01 00:00:19 +01:00
|
|
|
new StateFactory(GlobalState, Account)
|
2021-12-28 21:38:51 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
this.cryptoService = new CryptoService(
|
2021-10-20 22:41:33 +02:00
|
|
|
this.cryptoFunctionService,
|
2022-06-27 19:38:12 +02:00
|
|
|
this.encryptService,
|
2021-07-23 22:46:32 +02:00
|
|
|
this.platformUtilsService,
|
2021-12-28 21:38:51 +01:00
|
|
|
this.logService,
|
|
|
|
this.stateService
|
2021-12-20 18:04:00 +01:00
|
|
|
);
|
2021-12-28 21:38:51 +01:00
|
|
|
|
2018-05-14 17:15:54 +02:00
|
|
|
this.appIdService = new AppIdService(this.storageService);
|
2021-12-28 21:38:51 +01:00
|
|
|
this.tokenService = new TokenService(this.stateService);
|
2018-05-16 05:26:36 +02:00
|
|
|
this.messagingService = new NoopMessagingService();
|
2021-12-28 21:38:51 +01:00
|
|
|
this.environmentService = new EnvironmentService(this.stateService);
|
2022-04-01 03:50:48 +02:00
|
|
|
|
|
|
|
const customUserAgent =
|
|
|
|
"Bitwarden_CLI/" +
|
|
|
|
this.platformUtilsService.getApplicationVersionSync() +
|
|
|
|
" (" +
|
|
|
|
this.platformUtilsService.getDeviceString().toUpperCase() +
|
|
|
|
")";
|
2021-07-23 22:46:32 +02:00
|
|
|
this.apiService = new NodeApiService(
|
2021-11-16 10:42:30 +01:00
|
|
|
this.tokenService,
|
2021-07-23 22:46:32 +02:00
|
|
|
this.platformUtilsService,
|
|
|
|
this.environmentService,
|
2022-04-01 03:50:48 +02:00
|
|
|
this.appIdService,
|
2018-05-15 05:16:59 +02:00
|
|
|
async (expired: boolean) => await this.logout(),
|
2022-04-01 03:50:48 +02:00
|
|
|
customUserAgent
|
2021-12-20 18:04:00 +01:00
|
|
|
);
|
2022-08-24 18:33:05 +02:00
|
|
|
|
|
|
|
this.organizationApiService = new OrganizationApiService(this.apiService);
|
|
|
|
|
2022-09-02 03:15:19 +02:00
|
|
|
this.containerService = new ContainerService(this.cryptoService, this.encryptService);
|
2021-12-28 21:38:51 +01:00
|
|
|
|
|
|
|
this.settingsService = new SettingsService(this.stateService);
|
|
|
|
|
2021-03-29 16:47:39 +02:00
|
|
|
this.fileUploadService = new FileUploadService(this.logService, this.apiService);
|
2021-12-28 21:38:51 +01:00
|
|
|
|
2018-05-14 17:15:54 +02:00
|
|
|
this.cipherService = new CipherService(
|
|
|
|
this.cryptoService,
|
|
|
|
this.settingsService,
|
2018-08-06 15:38:17 +02:00
|
|
|
this.apiService,
|
2021-03-29 16:47:39 +02:00
|
|
|
this.fileUploadService,
|
2018-05-15 05:16:59 +02:00
|
|
|
this.i18nService,
|
2021-12-20 18:04:00 +01:00
|
|
|
null,
|
2021-12-28 21:38:51 +01:00
|
|
|
this.logService,
|
|
|
|
this.stateService
|
2021-12-20 18:04:00 +01:00
|
|
|
);
|
2021-12-28 21:38:51 +01:00
|
|
|
|
2022-07-12 20:25:18 +02:00
|
|
|
this.broadcasterService = new BroadcasterService();
|
|
|
|
|
2018-06-25 21:03:57 +02:00
|
|
|
this.folderService = new FolderService(
|
2018-05-14 17:15:54 +02:00
|
|
|
this.cryptoService,
|
2021-11-16 10:42:30 +01:00
|
|
|
this.i18nService,
|
2021-12-28 21:38:51 +01:00
|
|
|
this.cipherService,
|
2022-07-18 14:39:12 +02:00
|
|
|
this.stateService
|
2021-12-20 18:04:00 +01:00
|
|
|
);
|
2021-12-28 21:38:51 +01:00
|
|
|
|
2022-07-08 15:40:31 +02:00
|
|
|
this.folderApiService = new FolderApiService(this.folderService, this.apiService);
|
|
|
|
|
2021-11-16 10:42:30 +01:00
|
|
|
this.collectionService = new CollectionService(
|
|
|
|
this.cryptoService,
|
2021-12-28 21:38:51 +01:00
|
|
|
this.i18nService,
|
|
|
|
this.stateService
|
2021-12-20 18:04:00 +01:00
|
|
|
);
|
2021-12-28 21:38:51 +01:00
|
|
|
|
2021-04-12 17:13:00 +02:00
|
|
|
this.searchService = new SearchService(this.cipherService, this.logService, this.i18nService);
|
2021-12-28 21:38:51 +01:00
|
|
|
|
|
|
|
this.providerService = new ProviderService(this.stateService);
|
|
|
|
|
|
|
|
this.organizationService = new OrganizationService(this.stateService);
|
|
|
|
|
2022-08-08 11:04:36 +02:00
|
|
|
this.policyService = new PolicyService(this.stateService, this.organizationService);
|
2021-12-28 21:38:51 +01:00
|
|
|
|
2021-03-29 16:47:39 +02:00
|
|
|
this.sendService = new SendService(
|
2021-11-16 10:42:30 +01:00
|
|
|
this.cryptoService,
|
2018-07-08 05:52:06 +02:00
|
|
|
this.apiService,
|
2021-03-29 16:47:39 +02:00
|
|
|
this.fileUploadService,
|
2021-11-16 10:42:30 +01:00
|
|
|
this.i18nService,
|
2021-12-28 21:38:51 +01:00
|
|
|
this.cryptoFunctionService,
|
|
|
|
this.stateService
|
2021-12-20 18:04:00 +01:00
|
|
|
);
|
2021-12-28 21:38:51 +01:00
|
|
|
|
2021-11-09 19:00:16 +01:00
|
|
|
this.keyConnectorService = new KeyConnectorService(
|
2021-12-28 21:38:51 +01:00
|
|
|
this.stateService,
|
2021-11-16 10:42:30 +01:00
|
|
|
this.cryptoService,
|
2018-07-08 05:52:06 +02:00
|
|
|
this.apiService,
|
2018-05-14 17:15:54 +02:00
|
|
|
this.tokenService,
|
2021-12-28 21:38:51 +01:00
|
|
|
this.logService,
|
2022-02-08 00:31:36 +01:00
|
|
|
this.organizationService,
|
2022-05-26 03:16:05 +02:00
|
|
|
this.cryptoFunctionService,
|
|
|
|
async (expired: boolean) => await this.logout()
|
2021-12-20 18:04:00 +01:00
|
|
|
);
|
2021-12-28 21:38:51 +01:00
|
|
|
|
2022-05-16 03:58:36 +02:00
|
|
|
this.twoFactorService = new TwoFactorService(this.i18nService, this.platformUtilsService);
|
|
|
|
|
|
|
|
this.authService = new AuthService(
|
|
|
|
this.cryptoService,
|
|
|
|
this.apiService,
|
|
|
|
this.tokenService,
|
|
|
|
this.appIdService,
|
|
|
|
this.platformUtilsService,
|
|
|
|
this.messagingService,
|
|
|
|
this.logService,
|
|
|
|
this.keyConnectorService,
|
|
|
|
this.environmentService,
|
|
|
|
this.stateService,
|
|
|
|
this.twoFactorService,
|
|
|
|
this.i18nService
|
|
|
|
);
|
|
|
|
|
|
|
|
const lockedCallback = async () =>
|
|
|
|
await this.cryptoService.clearStoredKey(KeySuffixOptions.Auto);
|
|
|
|
|
2022-08-30 22:30:43 +02:00
|
|
|
this.vaultTimeoutSettingsService = new VaultTimeoutSettingsService(
|
|
|
|
this.cryptoService,
|
|
|
|
this.tokenService,
|
|
|
|
this.policyService,
|
|
|
|
this.stateService
|
|
|
|
);
|
|
|
|
|
2020-04-14 19:04:19 +02:00
|
|
|
this.vaultTimeoutService = new VaultTimeoutService(
|
2021-05-25 23:42:59 +02:00
|
|
|
this.cipherService,
|
|
|
|
this.folderService,
|
|
|
|
this.collectionService,
|
2021-11-16 10:42:30 +01:00
|
|
|
this.cryptoService,
|
2021-05-25 23:42:59 +02:00
|
|
|
this.platformUtilsService,
|
2020-11-23 21:56:40 +01:00
|
|
|
this.messagingService,
|
2021-09-15 15:57:43 +02:00
|
|
|
this.searchService,
|
2021-11-09 19:00:16 +01:00
|
|
|
this.keyConnectorService,
|
2021-12-28 21:38:51 +01:00
|
|
|
this.stateService,
|
2022-05-16 03:58:36 +02:00
|
|
|
this.authService,
|
2022-08-30 22:30:43 +02:00
|
|
|
this.vaultTimeoutSettingsService,
|
2022-05-16 03:58:36 +02:00
|
|
|
lockedCallback,
|
2021-12-20 18:04:00 +01:00
|
|
|
null
|
|
|
|
);
|
2021-12-28 21:38:51 +01:00
|
|
|
|
2018-05-14 17:15:54 +02:00
|
|
|
this.syncService = new SyncService(
|
2018-07-08 05:52:06 +02:00
|
|
|
this.apiService,
|
2018-05-14 17:15:54 +02:00
|
|
|
this.settingsService,
|
2021-05-25 23:42:59 +02:00
|
|
|
this.folderService,
|
|
|
|
this.cipherService,
|
2021-11-16 10:42:30 +01:00
|
|
|
this.cryptoService,
|
2021-05-25 23:42:59 +02:00
|
|
|
this.collectionService,
|
2020-11-23 21:56:40 +01:00
|
|
|
this.messagingService,
|
|
|
|
this.policyService,
|
|
|
|
this.sendService,
|
2021-11-09 19:00:16 +01:00
|
|
|
this.logService,
|
|
|
|
this.keyConnectorService,
|
2021-12-28 21:38:51 +01:00
|
|
|
this.stateService,
|
|
|
|
this.organizationService,
|
|
|
|
this.providerService,
|
2022-07-08 15:40:31 +02:00
|
|
|
this.folderApiService,
|
2018-05-15 05:16:59 +02:00
|
|
|
async (expired: boolean) => await this.logout()
|
2021-12-20 18:04:00 +01:00
|
|
|
);
|
2021-12-28 21:38:51 +01:00
|
|
|
|
2020-03-03 22:29:10 +01:00
|
|
|
this.passwordGenerationService = new PasswordGenerationService(
|
2021-11-16 10:42:30 +01:00
|
|
|
this.cryptoService,
|
2021-12-28 21:38:51 +01:00
|
|
|
this.policyService,
|
|
|
|
this.stateService
|
2021-12-20 18:04:00 +01:00
|
|
|
);
|
2021-12-28 21:38:51 +01:00
|
|
|
|
2022-06-23 09:53:42 +02:00
|
|
|
this.totpService = new TotpService(this.cryptoFunctionService, this.logService);
|
2021-12-28 21:38:51 +01:00
|
|
|
|
2018-08-06 15:38:17 +02:00
|
|
|
this.importService = new ImportService(
|
2021-05-25 23:42:59 +02:00
|
|
|
this.cipherService,
|
|
|
|
this.folderService,
|
2018-07-08 05:52:06 +02:00
|
|
|
this.apiService,
|
2021-11-16 10:42:30 +01:00
|
|
|
this.i18nService,
|
2021-05-25 23:42:59 +02:00
|
|
|
this.collectionService,
|
2021-11-16 10:42:30 +01:00
|
|
|
this.cryptoService
|
2021-12-20 18:04:00 +01:00
|
|
|
);
|
2021-05-25 23:42:59 +02:00
|
|
|
this.exportService = new ExportService(
|
|
|
|
this.folderService,
|
|
|
|
this.cipherService,
|
2018-07-08 05:52:06 +02:00
|
|
|
this.apiService,
|
2022-02-08 00:31:36 +01:00
|
|
|
this.cryptoService,
|
|
|
|
this.cryptoFunctionService
|
2021-12-20 18:04:00 +01:00
|
|
|
);
|
2021-12-28 21:38:51 +01:00
|
|
|
|
2018-07-08 05:52:06 +02:00
|
|
|
this.auditService = new AuditService(this.cryptoFunctionService, this.apiService);
|
2018-05-14 17:15:54 +02:00
|
|
|
this.program = new Program(this);
|
2021-02-03 18:44:33 +01:00
|
|
|
this.vaultProgram = new VaultProgram(this);
|
|
|
|
this.sendProgram = new SendProgram(this);
|
2022-08-10 03:31:02 +02:00
|
|
|
|
|
|
|
this.userVerificationApiService = new UserVerificationApiService(this.apiService);
|
|
|
|
|
2021-11-16 10:42:30 +01:00
|
|
|
this.userVerificationService = new UserVerificationService(
|
|
|
|
this.cryptoService,
|
|
|
|
this.i18nService,
|
2022-08-10 03:31:02 +02:00
|
|
|
this.userVerificationApiService
|
2021-12-20 18:04:00 +01:00
|
|
|
);
|
|
|
|
}
|
2021-02-03 18:44:33 +01:00
|
|
|
|
2021-04-12 17:13:00 +02:00
|
|
|
async run() {
|
|
|
|
await this.init();
|
2021-02-03 18:44:33 +01:00
|
|
|
|
2021-04-12 17:13:00 +02:00
|
|
|
await this.program.register();
|
2021-02-03 18:44:33 +01:00
|
|
|
await this.vaultProgram.register();
|
|
|
|
await this.sendProgram.register();
|
|
|
|
|
|
|
|
program.parse(process.argv);
|
|
|
|
|
|
|
|
if (process.argv.slice(2).length === 0) {
|
|
|
|
program.outputHelp();
|
2018-05-15 05:16:59 +02:00
|
|
|
}
|
2021-12-20 18:04:00 +01:00
|
|
|
}
|
2018-05-15 05:16:59 +02:00
|
|
|
|
2018-05-16 05:26:36 +02:00
|
|
|
async logout() {
|
2022-01-20 21:03:37 +01:00
|
|
|
this.authService.logOut(() => {
|
|
|
|
/* Do nothing */
|
|
|
|
});
|
2021-12-28 21:38:51 +01:00
|
|
|
const userId = await this.stateService.getUserId();
|
2018-05-16 05:26:36 +02:00
|
|
|
await Promise.all([
|
|
|
|
this.syncService.setLastSync(new Date(0)),
|
|
|
|
this.cryptoService.clearKeys(),
|
|
|
|
this.settingsService.clear(userId),
|
|
|
|
this.cipherService.clear(userId),
|
|
|
|
this.folderService.clear(userId),
|
|
|
|
this.collectionService.clear(userId),
|
2020-01-29 04:37:44 +01:00
|
|
|
this.policyService.clear(userId),
|
2018-05-16 05:26:36 +02:00
|
|
|
this.passwordGenerationService.clear(),
|
|
|
|
]);
|
2021-12-28 21:38:51 +01:00
|
|
|
await this.stateService.clean();
|
2018-05-16 05:28:03 +02:00
|
|
|
process.env.BW_SESSION = null;
|
2018-05-16 05:26:36 +02:00
|
|
|
}
|
2021-12-20 18:04:00 +01:00
|
|
|
|
2018-05-14 17:15:54 +02:00
|
|
|
private async init() {
|
2021-03-02 17:05:20 +01:00
|
|
|
await this.storageService.init();
|
2021-12-28 21:38:51 +01:00
|
|
|
await this.stateService.init();
|
2022-07-22 18:41:02 +02:00
|
|
|
this.containerService.attachToGlobal(global);
|
2018-05-14 17:15:54 +02:00
|
|
|
await this.environmentService.setUrlsFromStorage();
|
2021-12-28 21:38:51 +01:00
|
|
|
const locale = await this.stateService.getLocale();
|
2018-05-14 17:15:54 +02:00
|
|
|
await this.i18nService.init(locale);
|
2022-02-08 00:31:36 +01:00
|
|
|
this.twoFactorService.init();
|
2018-05-16 05:26:36 +02:00
|
|
|
|
2021-12-28 21:38:51 +01:00
|
|
|
const installedVersion = await this.stateService.getInstalledVersion();
|
2021-04-12 17:13:00 +02:00
|
|
|
const currentVersion = await this.platformUtilsService.getApplicationVersion();
|
2018-05-17 03:19:23 +02:00
|
|
|
if (installedVersion == null || installedVersion !== currentVersion) {
|
2021-12-28 21:38:51 +01:00
|
|
|
await this.stateService.setInstalledVersion(currentVersion);
|
2018-05-14 17:15:54 +02:00
|
|
|
}
|
2021-12-20 18:04:00 +01:00
|
|
|
}
|
2018-05-14 17:15:54 +02:00
|
|
|
}
|
2018-05-14 17:59:34 +02:00
|
|
|
|
2018-05-15 05:16:59 +02:00
|
|
|
const main = new Main();
|
|
|
|
main.run();
|