1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 00:03:56 +00:00

setup storage service and log in

This commit is contained in:
Kyle Spearrin
2018-05-13 00:19:14 -04:00
parent 8f49b58d2e
commit 70c7b182ae
9 changed files with 151 additions and 8 deletions

View File

@@ -2,8 +2,41 @@ import * as program from 'commander';
import { AuthService } from 'jslib/services/auth.service';
import { LoginCommand } from './commands/login.command';
import { CryptoService } from 'jslib/services/crypto.service';
import { NodeCryptoFunctionService } from 'jslib/services/nodeCryptoFunction.service';
import { NodeStorageService } from './services/nodeStorage.service';
import { ApiService } from 'jslib/services/api.service';
import { NodePlatformUtilsService } from './services/nodePlatformUtils.service';
import { AppIdService } from 'jslib/services/appId.service';
import { TokenService } from 'jslib/services/token.service';
import { EnvironmentService } from 'jslib/services/environment.service';
import { UserService } from 'jslib/services/user.service';
import { ContainerService } from 'jslib/services/container.service';
import { NodeMessagingService } from './services/nodeMessaging.service';
const platformUtilsService = new NodePlatformUtilsService();
const cryptoFunctionService = new NodeCryptoFunctionService();
const storageService = new NodeStorageService('./scratch');
const cryptoService = new CryptoService(storageService, storageService, cryptoFunctionService);
const appIdService = new AppIdService(storageService);
const tokenService = new TokenService(storageService);
const messagingService = new NodeMessagingService();
const apiService = new ApiService(tokenService, platformUtilsService,
(expired: boolean) => { });
const environmentService = new EnvironmentService(apiService, storageService);
const userService = new UserService(tokenService, storageService);
const containerService = new ContainerService(cryptoService, platformUtilsService);
const authService = new AuthService(cryptoService, apiService, userService, tokenService, appIdService,
null, platformUtilsService, messagingService, true);
containerService.attachToWindow(global);
environmentService.setUrlsFromStorage().then(() => {
// Do nothing
});
program
.version('1.0.0', '-v, --version');
@@ -12,9 +45,9 @@ program
.description('Log into a Bitwarden user account.')
.option('-m, --method <method>', '2FA method.')
.option('-c, --code <code>', '2FA code.')
.action((email: string, password: string, cmd: program.Command) => {
const command = new LoginCommand(null);
command.run(email, password, cmd);
.action(async (email: string, password: string, cmd: program.Command) => {
const command = new LoginCommand(authService);
await command.run(email, password, cmd);
});
program