UNPKG

@antbat/base-client-js

Version:

Base JS library for BASE-platform

63 lines (62 loc) 3.15 kB
import { AccountRepository } from '../repository/account/AccountRepository'; import Account from '../repository/models/Account'; import { KeyPairHelper } from '../utils/keypair/KeyPairHelper'; import { BehaviorSubject } from 'rxjs/Rx'; import { MessageSigner } from '../utils/keypair/MessageSigner'; import { AccountManager } from './AccountManager'; export declare class AccountManagerImpl implements AccountManager { private accountRepository; private keyPairCreator; private messageSigner; private authAccountBehavior; constructor(auth: AccountRepository, keyPairCreator: KeyPairHelper, messageSigner: MessageSigner, authAccountBehavior: BehaviorSubject<Account>); /** * Checks or Register user with provided mnemonic phrase is already registered in the system. * @param {string} passPhrase Mnemonic phrase for Public/Private key pair * generation for asymmetric encryption scheme. * @param {string} message on the basis of which a signature will be created to verify the public key * * @returns {Promise<Account>} {Account} if client exist or http exception if fail. */ authenticationByPassPhrase(passPhrase: string, message: string): Promise<Account>; /** * Checks if user with provided access token is already registered in the system. * @param {string} accessToken token for authenticate on remote signer * (if {@link KeyPairHelper} support {@link RemoteSigner}) * * @param {string} message on the basis of which a signature will be created to verify the public key * * @returns {Promise<Account>} {Account} if client exist or http exception if fail. */ authenticationByAccessToken(accessToken: string, message: string): Promise<Account>; /** * Registers a new user in the system. * @param {string} mnemonicPhrase Mnemonic phrase for Public/Private key pair * generation for asymmetric encryption scheme. * @param {string} message on the basis of which a signature will be created to verify the public key * * @returns {Promise<Account>} {Account} after successful registration or http exception if fail. */ registration(mnemonicPhrase: string, message: string): Promise<Account>; /** * Checks if user with provided mnemonic phrase is already registered in the system. * @param {string} mnemonicPhrase Mnemonic phrase for Public/Private key pair * generation for asymmetric encryption scheme. * @param {string} message on the basis of which a signature will be created to verify the public key * * @returns {Promise<Account>} {Account} if client exist or http exception if fail. */ checkAccount(mnemonicPhrase: string, message: string): Promise<Account>; /** * Allows user to unsubscribe from BASE. Delets all his data * * @returns {Promise<Account>} {Account} if client exist or http exception if fail. */ unsubscribe(): Promise<Account>; getNewMnemonic(): Promise<string>; getAccount(): Account; private checkSigMessage; private syncAccount; private generateAccount; private onGetAccount; }