mirror of
https://github.com/haveno-dex/haveno-ts.git
synced 2024-12-18 04:04:18 -05:00
1333 lines
53 KiB
JavaScript
1333 lines
53 KiB
JavaScript
|
import console from "console";
|
||
|
import HavenoUtils from "./utils/HavenoUtils";
|
||
|
import TaskLooper from "./utils/TaskLooper";
|
||
|
import { GetVersionClient, AccountClient, MoneroConnectionsClient, DisputesClient, DisputeAgentsClient, NotificationsClient, WalletsClient, PriceClient, OffersClient, PaymentAccountsClient, TradesClient, ShutdownServerClient, MoneroNodeClient } from './protobuf/GrpcServiceClientPb';
|
||
|
import { GetVersionRequest, IsAppInitializedRequest, RegisterDisputeAgentRequest, MarketPriceRequest, MarketPricesRequest, MarketDepthRequest, GetBalancesRequest, GetMyOfferRequest, GetOffersRequest, GetPaymentMethodsRequest, GetPaymentAccountFormRequest, CreatePaymentAccountRequest, GetPaymentAccountsRequest, CreateCryptoCurrencyPaymentAccountRequest, CreateOfferRequest, CancelOfferRequest, TakeOfferRequest, GetTradeRequest, GetTradesRequest, GetNewDepositAddressRequest, ConfirmPaymentStartedRequest, ConfirmPaymentReceivedRequest, GetXmrTxsRequest, CreateXmrTxRequest, RelayXmrTxRequest, CreateAccountRequest, AccountExistsRequest, DeleteAccountRequest, OpenAccountRequest, IsAccountOpenRequest, CloseAccountRequest, ChangePasswordRequest, BackupAccountRequest, RestoreAccountRequest, StopRequest, NotificationMessage, RegisterNotificationListenerRequest, SendNotificationRequest, UrlConnection, AddConnectionRequest, RemoveConnectionRequest, GetConnectionRequest, GetConnectionsRequest, SetConnectionRequest, CheckConnectionRequest, CheckConnectionsRequest, StartCheckingConnectionsRequest, StopCheckingConnectionsRequest, GetBestAvailableConnectionRequest, SetAutoSwitchRequest, GetDisputeRequest, GetDisputesRequest, OpenDisputeRequest, ResolveDisputeRequest, SendDisputeChatMessageRequest, SendChatMessageRequest, GetChatMessagesRequest, StartMoneroNodeRequest, StopMoneroNodeRequest, IsMoneroNodeRunningRequest, GetMoneroNodeSettingsRequest } from "./protobuf/grpc_pb";
|
||
|
import { AvailabilityResult } from "./protobuf/pb_pb";
|
||
|
/**
|
||
|
* Haveno daemon client using gRPC.
|
||
|
*/
|
||
|
export default class HavenoClient {
|
||
|
/**
|
||
|
* Construct a client connected to a Haveno daemon.
|
||
|
*
|
||
|
* @param {string} url - Haveno daemon url
|
||
|
* @param {string} password - Haveno daemon password
|
||
|
*/
|
||
|
constructor(url, password) {
|
||
|
this._processLogging = false;
|
||
|
this._notificationListeners = [];
|
||
|
this._registerNotificationListenerCalled = false;
|
||
|
this._keepAlivePeriodMs = 60000;
|
||
|
if (!url)
|
||
|
throw new Error("Must provide URL of Haveno daemon");
|
||
|
if (!password)
|
||
|
throw new Error("Must provide password of Haveno daemon");
|
||
|
HavenoUtils.log(2, "Creating Haveno client connected to " + url);
|
||
|
this._url = url;
|
||
|
this._password = password;
|
||
|
this._getVersionClient = new GetVersionClient(this._url);
|
||
|
this._accountClient = new AccountClient(this._url);
|
||
|
this._moneroConnectionsClient = new MoneroConnectionsClient(this._url);
|
||
|
this._moneroNodeClient = new MoneroNodeClient(this._url);
|
||
|
this._disputeAgentsClient = new DisputeAgentsClient(this._url);
|
||
|
this._disputesClient = new DisputesClient(this._url);
|
||
|
this._walletsClient = new WalletsClient(this._url);
|
||
|
this._priceClient = new PriceClient(this._url);
|
||
|
this._paymentAccountsClient = new PaymentAccountsClient(this._url);
|
||
|
this._offersClient = new OffersClient(this._url);
|
||
|
this._tradesClient = new TradesClient(this._url);
|
||
|
this._notificationsClient = new NotificationsClient(this._url);
|
||
|
this._shutdownServerClient = new ShutdownServerClient(this._url);
|
||
|
}
|
||
|
/**
|
||
|
* Start a new Haveno process.
|
||
|
*
|
||
|
* @param {string} havenoPath - path to Haveno binaries
|
||
|
* @param {string[]} cmd - command to start the process
|
||
|
* @param {string} url - Haveno daemon url (must proxy to api port)
|
||
|
* @param {boolean} enableLogging - specifies if logging is enabled or disabled at log level 3
|
||
|
* @return {haveno} a client connected to the newly started Haveno process
|
||
|
*/
|
||
|
static async startProcess(havenoPath, cmd, url, enableLogging) {
|
||
|
// return promise which resolves after starting havenod
|
||
|
return new Promise((resolve, reject) => {
|
||
|
HavenoUtils.log(2, "Starting Haveno process: " + cmd + " on proxy url: " + url);
|
||
|
// state variables
|
||
|
let output = "";
|
||
|
let isStarted = false;
|
||
|
let daemon = undefined;
|
||
|
// start process
|
||
|
const childProcess = require('child_process').spawn(cmd[0], cmd.slice(1), { cwd: havenoPath });
|
||
|
childProcess.stdout.setEncoding('utf8');
|
||
|
childProcess.stderr.setEncoding('utf8');
|
||
|
// handle stdout
|
||
|
childProcess.stdout.on('data', async function (data) {
|
||
|
const line = data.toString();
|
||
|
if (loggingEnabled())
|
||
|
process.stdout.write(line);
|
||
|
output += line + '\n'; // capture output in case of error
|
||
|
// initialize daemon on success or login required message
|
||
|
if (!daemon && (line.indexOf(HavenoClient._fullyInitializedMessage) >= 0 || line.indexOf(HavenoClient._loginRequiredMessage) >= 0)) {
|
||
|
// get api password
|
||
|
const passwordIdx = cmd.indexOf("--apiPassword");
|
||
|
if (passwordIdx < 0) {
|
||
|
reject("Must provide API password to start Haveno daemon");
|
||
|
return;
|
||
|
}
|
||
|
const password = cmd[passwordIdx + 1];
|
||
|
// create client connected to internal process
|
||
|
daemon = new HavenoClient(url, password);
|
||
|
daemon._process = childProcess;
|
||
|
daemon._processLogging = enableLogging;
|
||
|
daemon._appName = cmd[cmd.indexOf("--appName") + 1];
|
||
|
// get wallet rpc port
|
||
|
const walletRpcPortIdx = cmd.indexOf("--walletRpcBindPort");
|
||
|
if (walletRpcPortIdx >= 0)
|
||
|
daemon._walletRpcPort = parseInt(cmd[walletRpcPortIdx + 1]);
|
||
|
// resolve promise with client connected to internal process
|
||
|
isStarted = true;
|
||
|
resolve(daemon);
|
||
|
}
|
||
|
// read error message
|
||
|
if (line.indexOf("[HavenoDaemonMain] ERROR") >= 0) {
|
||
|
if (!isStarted)
|
||
|
await rejectStartup(new Error(line));
|
||
|
}
|
||
|
});
|
||
|
// handle stderr
|
||
|
childProcess.stderr.on('data', function (data) {
|
||
|
if (loggingEnabled())
|
||
|
process.stderr.write(data);
|
||
|
});
|
||
|
// handle exit
|
||
|
childProcess.on("exit", async function (code) {
|
||
|
if (!isStarted)
|
||
|
await rejectStartup(new Error("Haveno process terminated with exit code " + code + (output ? ":\n\n" + output : "")));
|
||
|
});
|
||
|
// handle error
|
||
|
childProcess.on("error", async function (err) {
|
||
|
if (err.message.indexOf("ENOENT") >= 0)
|
||
|
reject(new Error("haveno-daemon does not exist at path '" + cmd[0] + "'"));
|
||
|
if (!isStarted)
|
||
|
await rejectStartup(err);
|
||
|
});
|
||
|
// handle uncaught exception
|
||
|
childProcess.on("uncaughtException", async function (err, origin) {
|
||
|
console.error("Uncaught exception in Haveno process: " + err.message);
|
||
|
console.error(origin);
|
||
|
await rejectStartup(err);
|
||
|
});
|
||
|
async function rejectStartup(err) {
|
||
|
await HavenoUtils.kill(childProcess);
|
||
|
reject(err);
|
||
|
}
|
||
|
function loggingEnabled() {
|
||
|
return (daemon && daemon._processLogging) || (!daemon && enableLogging);
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Return the process running the haveno daemon.
|
||
|
*
|
||
|
* @return the process running the haveno daemon
|
||
|
*/
|
||
|
getProcess() {
|
||
|
return this._process;
|
||
|
}
|
||
|
/**
|
||
|
* Enable or disable process logging.
|
||
|
*
|
||
|
* @param {boolean} enabled - specifies if logging is enabled or disabled
|
||
|
*/
|
||
|
setProcessLogging(enabled) {
|
||
|
if (this._process === undefined)
|
||
|
throw new Error("haveno instance not created from new process");
|
||
|
this._processLogging = enabled;
|
||
|
}
|
||
|
/**
|
||
|
* Get the URL of the Haveno daemon.
|
||
|
*
|
||
|
* @return {string} the URL of the Haveno daemon
|
||
|
*/
|
||
|
getUrl() {
|
||
|
return this._url;
|
||
|
}
|
||
|
/**
|
||
|
* Get the port of the primary wallet rpc instance if known.
|
||
|
*
|
||
|
* @return {number|undefined} the port of the primary wallet rpc instance if known
|
||
|
*/
|
||
|
getWalletRpcPort() {
|
||
|
return this._walletRpcPort;
|
||
|
}
|
||
|
/**
|
||
|
* Get the name of the Haveno application folder.
|
||
|
*/
|
||
|
getAppName() {
|
||
|
return this._appName;
|
||
|
}
|
||
|
/**
|
||
|
* Get the Haveno version.
|
||
|
*
|
||
|
* @return {string} the Haveno daemon version
|
||
|
*/
|
||
|
async getVersion() {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._getVersionClient.getVersion(new GetVersionRequest(), { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getVersion());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Indicates if connected and authenticated with the Haveno daemon.
|
||
|
*
|
||
|
* @return {boolean} true if connected with the Haveno daemon, false otherwise
|
||
|
*/
|
||
|
async isConnectedToDaemon() {
|
||
|
try {
|
||
|
await this.getVersion();
|
||
|
return true;
|
||
|
}
|
||
|
catch (err) {
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
/**
|
||
|
* Indicates if the Haveno account is created.
|
||
|
*
|
||
|
* @return {boolean} true if the account is created, false otherwise
|
||
|
*/
|
||
|
async accountExists() {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._accountClient.accountExists(new AccountExistsRequest(), { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getAccountExists());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Indicates if the Haveno account is open and authenticated with the correct password.
|
||
|
*
|
||
|
* @return {boolean} true if the account is open and authenticated, false otherwise
|
||
|
*/
|
||
|
async isAccountOpen() {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._accountClient.isAccountOpen(new IsAccountOpenRequest(), { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getIsAccountOpen());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Create and open a new Haveno account.
|
||
|
*
|
||
|
* @param {string} password - the password to encrypt the account
|
||
|
*/
|
||
|
async createAccount(password) {
|
||
|
await new Promise((resolve, reject) => {
|
||
|
this._accountClient.createAccount(new CreateAccountRequest().setPassword(password), { password: this._password }, function (err) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve();
|
||
|
});
|
||
|
});
|
||
|
return this._awaitAppInitialized(); // TODO: grpc should not return before setup is complete
|
||
|
}
|
||
|
/**
|
||
|
* Open existing Haveno account.
|
||
|
*
|
||
|
* @param {string} password - the account password
|
||
|
*/
|
||
|
async openAccount(password) {
|
||
|
await new Promise((resolve, reject) => {
|
||
|
this._accountClient.openAccount(new OpenAccountRequest().setPassword(password), { password: this._password }, function (err) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve();
|
||
|
});
|
||
|
});
|
||
|
return this._awaitAppInitialized(); // TODO: grpc should not return before setup is complete
|
||
|
}
|
||
|
/**
|
||
|
* Change the Haveno account password.
|
||
|
*
|
||
|
* @param {string} password - the new account password
|
||
|
*/
|
||
|
async changePassword(password) {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._accountClient.changePassword(new ChangePasswordRequest().setPassword(password), { password: this._password }, function (err) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve();
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Close the currently open account.
|
||
|
*/
|
||
|
async closeAccount() {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._accountClient.closeAccount(new CloseAccountRequest(), { password: this._password }, function (err) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve();
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Permanently delete the Haveno account and shutdown the server. // TODO: possible to not shutdown server?
|
||
|
*/
|
||
|
async deleteAccount() {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._accountClient.deleteAccount(new DeleteAccountRequest(), { password: this._password }, async function (err) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
setTimeout(resolve, 5000);
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Backup the account to the given stream. TODO: stream type?
|
||
|
*/
|
||
|
async backupAccount(stream) {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
let total = 0;
|
||
|
const response = this._accountClient.backupAccount(new BackupAccountRequest(), { password: this._password });
|
||
|
response.on('data', (chunk) => {
|
||
|
const bytes = chunk.getZipBytes(); // TODO: right api?
|
||
|
total += bytes.length;
|
||
|
stream.write(bytes);
|
||
|
});
|
||
|
response.on('error', function (err) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
});
|
||
|
response.on('end', function () {
|
||
|
resolve(total);
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Restore the account from zip bytes.
|
||
|
*
|
||
|
* Sends chunked requests if size over max grpc envelope size (41943404 bytes).
|
||
|
*
|
||
|
* @param {Uint8Array} zipBytes - the bytes of the zipped account to restore
|
||
|
*/
|
||
|
async restoreAccount(zipBytes) {
|
||
|
if (zipBytes.length === 0)
|
||
|
throw new Error("Zip bytes must not be empty");
|
||
|
const totalLength = zipBytes.byteLength;
|
||
|
let offset = 0;
|
||
|
let chunkSize = 4000000; // the max frame size is 4194304 but leave room for http headers
|
||
|
let hasMore = true;
|
||
|
// eslint-disable-next-line no-constant-condition
|
||
|
while (true) {
|
||
|
if (zipBytes.byteLength <= offset + 1)
|
||
|
return;
|
||
|
if (zipBytes.byteLength <= offset + chunkSize) {
|
||
|
chunkSize = zipBytes.byteLength - offset - 1;
|
||
|
hasMore = false;
|
||
|
}
|
||
|
const subArray = zipBytes.subarray(offset, offset + chunkSize);
|
||
|
await this._restoreAccountChunk(subArray, offset, totalLength, hasMore);
|
||
|
offset += chunkSize;
|
||
|
}
|
||
|
}
|
||
|
/**
|
||
|
* Add a listener to receive notifications from the Haveno daemon.
|
||
|
*
|
||
|
* @param {(notification: NotificationMessage) => void} listener - the notification listener to add
|
||
|
*/
|
||
|
async addNotificationListener(listener) {
|
||
|
this._notificationListeners.push(listener);
|
||
|
return this._updateNotificationListenerRegistration();
|
||
|
}
|
||
|
/**
|
||
|
* Remove a notification listener.
|
||
|
*
|
||
|
* @param {(notification: NotificationMessage) => void} listener - the notification listener to remove
|
||
|
*/
|
||
|
async removeNotificationListener(listener) {
|
||
|
const idx = this._notificationListeners.indexOf(listener);
|
||
|
if (idx > -1)
|
||
|
this._notificationListeners.splice(idx, 1);
|
||
|
else
|
||
|
throw new Error("Notification listener is not registered");
|
||
|
return this._updateNotificationListenerRegistration();
|
||
|
}
|
||
|
/**
|
||
|
* Indicates if connected to the Monero network based on last connection check.
|
||
|
*
|
||
|
* @return {boolean} true if connected to the Monero network, false otherwise
|
||
|
*/
|
||
|
async isConnectedToMonero() {
|
||
|
const connection = await this.getMoneroConnection();
|
||
|
return connection !== undefined &&
|
||
|
connection.getOnlineStatus() === UrlConnection.OnlineStatus.ONLINE &&
|
||
|
connection.getAuthenticationStatus() !== UrlConnection.AuthenticationStatus.NOT_AUTHENTICATED;
|
||
|
}
|
||
|
/**
|
||
|
* Add a Monero daemon connection.
|
||
|
*
|
||
|
* @param {string | UrlConnection} connection - daemon url or connection to add
|
||
|
*/
|
||
|
async addMoneroConnection(connection) {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._moneroConnectionsClient.addConnection(new AddConnectionRequest().setConnection(typeof connection === "string" ? new UrlConnection().setUrl(connection) : connection), { password: this._password }, function (err) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve();
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Remove a Monero daemon connection.
|
||
|
*
|
||
|
* @param {string} url - url of the daemon connection to remove
|
||
|
*/
|
||
|
async removeMoneroConnection(url) {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._moneroConnectionsClient.removeConnection(new RemoveConnectionRequest().setUrl(url), { password: this._password }, function (err) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve();
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Get the current Monero daemon connection.
|
||
|
*
|
||
|
* @return {UrlConnection | undefined} the current daemon connection, undefined if no current connection
|
||
|
*/
|
||
|
async getMoneroConnection() {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._moneroConnectionsClient.getConnection(new GetConnectionRequest(), { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getConnection());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Get all Monero daemon connections.
|
||
|
*
|
||
|
* @return {UrlConnection[]} all daemon connections
|
||
|
*/
|
||
|
async getMoneroConnections() {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._moneroConnectionsClient.getConnections(new GetConnectionsRequest(), { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getConnectionsList());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Set the current Monero daemon connection.
|
||
|
*
|
||
|
* Add the connection if not previously seen.
|
||
|
* If the connection is provided as string, connect to the URI with any previously set credentials and priority.
|
||
|
* If the connection is provided as UrlConnection, overwrite any previously set credentials and priority.
|
||
|
* If undefined connection provided, disconnect the client.
|
||
|
*
|
||
|
* @param {string | UrlConnection} connection - connection to set as current
|
||
|
*/
|
||
|
async setMoneroConnection(connection) {
|
||
|
const request = new SetConnectionRequest();
|
||
|
if (typeof connection === "string")
|
||
|
request.setUrl(connection);
|
||
|
else
|
||
|
request.setConnection(connection);
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._moneroConnectionsClient.setConnection(request, { password: this._password }, function (err) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve();
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Check the current Monero daemon connection.
|
||
|
*
|
||
|
* If disconnected and auto switch enabled, switch to the best available connection and return its status.
|
||
|
*
|
||
|
* @return {UrlConnection | undefined} the current daemon connection status, undefined if no current connection
|
||
|
*/
|
||
|
async checkMoneroConnection() {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._moneroConnectionsClient.checkConnection(new CheckConnectionRequest(), { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getConnection());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Check all Monero daemon connections.
|
||
|
*
|
||
|
* @return {UrlConnection[]} status of all managed connections.
|
||
|
*/
|
||
|
async checkMoneroConnections() {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._moneroConnectionsClient.checkConnections(new CheckConnectionsRequest(), { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getConnectionsList());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Check the connection and start checking the connection periodically.
|
||
|
*
|
||
|
* @param {number} refreshPeriod - time between checks in milliseconds (default 15000 ms or 15 seconds)
|
||
|
*/
|
||
|
async startCheckingConnection(refreshPeriod) {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._moneroConnectionsClient.startCheckingConnections(new StartCheckingConnectionsRequest().setRefreshPeriod(refreshPeriod), { password: this._password }, function (err) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve();
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Stop checking the connection status periodically.
|
||
|
*/
|
||
|
async stopCheckingConnection() {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._moneroConnectionsClient.stopCheckingConnections(new StopCheckingConnectionsRequest(), { password: this._password }, function (err) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve();
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Get the best available connection in order of priority then response time.
|
||
|
*
|
||
|
* @return {UrlConnection | undefined} the best available connection in order of priority then response time, undefined if no connections available
|
||
|
*/
|
||
|
async getBestAvailableConnection() {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._moneroConnectionsClient.getBestAvailableConnection(new GetBestAvailableConnectionRequest(), { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getConnection());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Automatically switch to the best available connection if current connection is disconnected after being checked.
|
||
|
*
|
||
|
* @param {boolean} autoSwitch - whether auto switch is enabled or disabled
|
||
|
*/
|
||
|
async setAutoSwitch(autoSwitch) {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._moneroConnectionsClient.setAutoSwitch(new SetAutoSwitchRequest().setAutoSwitch(autoSwitch), { password: this._password }, function (err) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve();
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Returns whether daemon is running a local monero node.
|
||
|
*/
|
||
|
async isMoneroNodeRunning() {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._moneroNodeClient.isMoneroNodeRunning(new IsMoneroNodeRunningRequest(), { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getIsRunning());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Gets the current local monero node settings.
|
||
|
*/
|
||
|
async getMoneroNodeSettings() {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
const request = new GetMoneroNodeSettingsRequest();
|
||
|
this._moneroNodeClient.getMoneroNodeSettings(request, { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getSettings());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Starts the local monero node.
|
||
|
*
|
||
|
* @param {MoneroNodeSettings} settings - the settings to start the local node with
|
||
|
*/
|
||
|
async startMoneroNode(settings) {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
const request = new StartMoneroNodeRequest().setSettings(settings);
|
||
|
this._moneroNodeClient.startMoneroNode(request, { password: this._password }, function (err) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve();
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Stops the local monero node.
|
||
|
*/
|
||
|
async stopMoneroNode() {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._moneroNodeClient.stopMoneroNode(new StopMoneroNodeRequest(), { password: this._password }, function (err) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve();
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Register as a dispute agent.
|
||
|
*
|
||
|
* @param {string} disputeAgentType - type of dispute agent to register, e.g. mediator, refundagent
|
||
|
* @param {string} registrationKey - registration key
|
||
|
*/
|
||
|
async registerDisputeAgent(disputeAgentType, registrationKey) {
|
||
|
const request = new RegisterDisputeAgentRequest()
|
||
|
.setDisputeAgentType(disputeAgentType)
|
||
|
.setRegistrationKey(registrationKey);
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._disputeAgentsClient.registerDisputeAgent(request, { password: this._password }, function (err) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve();
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Get the user's balances.
|
||
|
*
|
||
|
* @return {XmrBalanceInfo} the user's balances
|
||
|
*/
|
||
|
async getBalances() {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._walletsClient.getBalances(new GetBalancesRequest().setCurrencyCode("XMR"), { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getBalances().getXmr());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Get a new subaddress in the Monero wallet to receive deposits.
|
||
|
*
|
||
|
* @return {string} the deposit address (a subaddress in the Haveno wallet)
|
||
|
*/
|
||
|
async getNewDepositAddress() {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._walletsClient.getNewDepositAddress(new GetNewDepositAddressRequest(), { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getSubaddress());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Get all transactions in the Monero wallet.
|
||
|
*
|
||
|
* @return {XmrTx[]} the transactions
|
||
|
*/
|
||
|
async getXmrTxs() {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._walletsClient.getXmrTxs(new GetXmrTxsRequest(), { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getTxsList());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Get a transaction by hash in the Monero wallet.
|
||
|
*
|
||
|
* @param {String} txHash - hash of the transaction to get
|
||
|
* @return {XmrTx} the transaction with the hash
|
||
|
*/
|
||
|
async getXmrTx(txHash) {
|
||
|
const txs = await this.getXmrTxs(); // TODO (woodser): implement getXmrTx(hash) grpc call
|
||
|
for (const tx of txs) {
|
||
|
if (tx.getHash() === txHash)
|
||
|
return tx;
|
||
|
}
|
||
|
throw new Error("No transaction with hash " + txHash);
|
||
|
}
|
||
|
/**
|
||
|
* Create but do not relay a transaction to send funds from the Monero wallet.
|
||
|
*
|
||
|
* @return {XmrTx} the created transaction
|
||
|
*/
|
||
|
async createXmrTx(destinations) {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._walletsClient.createXmrTx(new CreateXmrTxRequest().setDestinationsList(destinations), { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getTx());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Relay a previously created transaction to send funds from the Monero wallet.
|
||
|
*
|
||
|
* @return {string} the hash of the relayed transaction
|
||
|
*/
|
||
|
async relayXmrTx(metadata) {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._walletsClient.relayXmrTx(new RelayXmrTxRequest().setMetadata(metadata), { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getHash());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Get the current market price per 1 XMR in the given currency.
|
||
|
*
|
||
|
* @param {string} currencyCode - currency code (fiat or crypto) to get the price of
|
||
|
* @return {number} the current market price per 1 XMR in the given currency
|
||
|
*/
|
||
|
async getPrice(currencyCode) {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._priceClient.getMarketPrice(new MarketPriceRequest().setCurrencyCode(currencyCode), { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getPrice());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Get the current market prices of all currencies.
|
||
|
*
|
||
|
* @return {MarketPrice[]} price per 1 XMR in all supported currencies (fiat & crypto)
|
||
|
*/
|
||
|
async getPrices() {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._priceClient.getMarketPrices(new MarketPricesRequest(), { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getMarketPriceList());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Get the market depth of a currency.
|
||
|
*
|
||
|
* @param {string} assetCode - asset to get the market depth of
|
||
|
* @return {MarketDepthInfo} market depth of the given currency
|
||
|
*/
|
||
|
async getMarketDepth(assetCode) {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._priceClient.getMarketDepth(new MarketDepthRequest().setCurrencyCode(assetCode), { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getMarketDepth());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Get payment methods.
|
||
|
*
|
||
|
* @return {PaymentMethod[]} the payment methods
|
||
|
*/
|
||
|
async getPaymentMethods() {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._paymentAccountsClient.getPaymentMethods(new GetPaymentMethodsRequest(), { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getPaymentMethodsList());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Get payment accounts.
|
||
|
*
|
||
|
* @return {PaymentAccount[]} the payment accounts
|
||
|
*/
|
||
|
async getPaymentAccounts() {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._paymentAccountsClient.getPaymentAccounts(new GetPaymentAccountsRequest(), { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getPaymentAccountsList());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Get a payment account by id.
|
||
|
*
|
||
|
* @param {string} paymentAccountId - the payment account id to get
|
||
|
* @return {PaymentAccount} the payment account
|
||
|
*/
|
||
|
async getPaymentAccount(paymentAccountId) {
|
||
|
// TODO (woodser): implement this on the backend
|
||
|
const paymentAccounts = await this.getPaymentAccounts();
|
||
|
for (const paymentAccount of paymentAccounts) {
|
||
|
if (paymentAccount.getId() === paymentAccountId)
|
||
|
return paymentAccount;
|
||
|
}
|
||
|
throw new Error("No payment account with id " + paymentAccountId);
|
||
|
}
|
||
|
/**
|
||
|
* Get a form for the given payment method to complete and create a new payment account.
|
||
|
*
|
||
|
* @return {object} the payment account form as JSON
|
||
|
*/
|
||
|
async getPaymentAccountForm(paymentMethodId) {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._paymentAccountsClient.getPaymentAccountForm(new GetPaymentAccountFormRequest().setPaymentMethodId(paymentMethodId), { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(JSON.parse(response.getPaymentAccountFormJson()));
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Create a payment account.
|
||
|
*
|
||
|
* @param {object} paymentAccountForm - the completed form as JSON to create the payment account
|
||
|
* @return {PaymentAccount} the created payment account
|
||
|
*/
|
||
|
async createPaymentAccount(paymentAccountForm) {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._paymentAccountsClient.createPaymentAccount(new CreatePaymentAccountRequest().setPaymentAccountForm(JSON.stringify(paymentAccountForm)), { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getPaymentAccount());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Create a crypto payment account.
|
||
|
*
|
||
|
* @param {string} accountName - description of the account
|
||
|
* @param {string} assetCode - traded asset code
|
||
|
* @param {string} address - payment address of the account
|
||
|
* @return {PaymentAccount} the created payment account
|
||
|
*/
|
||
|
async createCryptoPaymentAccount(accountName, assetCode, address) {
|
||
|
const request = new CreateCryptoCurrencyPaymentAccountRequest()
|
||
|
.setAccountName(accountName)
|
||
|
.setCurrencyCode(assetCode)
|
||
|
.setAddress(address)
|
||
|
.setTradeInstant(false); // not using instant trades
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._paymentAccountsClient.createCryptoCurrencyPaymentAccount(request, { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getPaymentAccount());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Get available offers to buy or sell XMR.
|
||
|
*
|
||
|
* @param {string} assetCode - traded asset code
|
||
|
* @param {string|undefined} direction - "buy" or "sell" (default all)
|
||
|
* @return {OfferInfo[]} the available offers
|
||
|
*/
|
||
|
async getOffers(assetCode, direction) {
|
||
|
if (!direction)
|
||
|
return (await this.getOffers(assetCode, "buy")).concat(await this.getOffers(assetCode, "sell")); // TODO: implement in backend
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._offersClient.getOffers(new GetOffersRequest().setDirection(direction).setCurrencyCode(assetCode), { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getOffersList());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Get the user's posted offers to buy or sell XMR.
|
||
|
*
|
||
|
* @param {string} assetCode - traded asset code
|
||
|
* @param {string|undefined} direction - "buy" or "sell" XMR (default all)
|
||
|
* @return {OfferInfo[]} the user's created offers
|
||
|
*/
|
||
|
async getMyOffers(assetCode, direction) {
|
||
|
if (!direction)
|
||
|
return (await this.getMyOffers(assetCode, "buy")).concat(await this.getMyOffers(assetCode, "sell")); // TODO: implement in backend
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._offersClient.getMyOffers(new GetOffersRequest().setDirection(direction).setCurrencyCode(assetCode), { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getOffersList());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Get my offer by id.
|
||
|
*
|
||
|
* @param {string} offerId - id of the user's created offer
|
||
|
* @return {OfferInfo} the user's created offer
|
||
|
*/
|
||
|
async getMyOffer(offerId) {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._offersClient.getMyOffer(new GetMyOfferRequest().setId(offerId), { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getOffer());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Post an offer.
|
||
|
*
|
||
|
* @param {string} direction - "buy" or "sell" XMR
|
||
|
* @param {bigint} amount - amount of XMR to trade
|
||
|
* @param {string} assetCode - asset code to trade for XMR
|
||
|
* @param {string} paymentAccountId - payment account id
|
||
|
* @param {number} buyerSecurityDeposit - buyer security deposit as % of trade amount
|
||
|
* @param {number} price - trade price (optional, default to market price)
|
||
|
* @param {number} marketPriceMargin - if using market price, % from market price to accept (optional, default 0%)
|
||
|
* @param {bigint} minAmount - minimum amount to trade (optional, default to fixed amount)
|
||
|
* @param {number} triggerPrice - price to remove offer (optional)
|
||
|
* @return {OfferInfo} the posted offer
|
||
|
*/
|
||
|
async postOffer(direction, amount, assetCode, paymentAccountId, buyerSecurityDeposit, price, marketPriceMargin, triggerPrice, minAmount) {
|
||
|
const request = new CreateOfferRequest()
|
||
|
.setDirection(direction)
|
||
|
.setAmount(amount.toString())
|
||
|
.setCurrencyCode(assetCode)
|
||
|
.setPaymentAccountId(paymentAccountId)
|
||
|
.setBuyerSecurityDeposit(buyerSecurityDeposit)
|
||
|
.setPrice(price ? price.toString() : "1.0") // TOOD (woodser): positive price required even if using market price?
|
||
|
.setUseMarketBasedPrice(price === undefined) // TODO (woodser): this field is redundant; remove from api
|
||
|
.setMinAmount(minAmount ? minAmount.toString() : amount.toString());
|
||
|
if (marketPriceMargin)
|
||
|
request.setMarketPriceMargin(marketPriceMargin);
|
||
|
if (triggerPrice)
|
||
|
request.setTriggerPrice(triggerPrice.toString());
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._offersClient.createOffer(request, { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getOffer());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Remove a posted offer, releasing its reserved funds.
|
||
|
*
|
||
|
* @param {string} offerId - the offer id to cancel
|
||
|
*/
|
||
|
async removeOffer(offerId) {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._offersClient.cancelOffer(new CancelOfferRequest().setId(offerId), { password: this._password }, function (err) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve();
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Take an offer.
|
||
|
*
|
||
|
* @param {string} offerId - id of the offer to take
|
||
|
* @param {string} paymentAccountId - id of the payment account
|
||
|
* @return {TradeInfo} the initialized trade
|
||
|
*/
|
||
|
async takeOffer(offerId, paymentAccountId) {
|
||
|
const request = new TakeOfferRequest()
|
||
|
.setOfferId(offerId)
|
||
|
.setPaymentAccountId(paymentAccountId);
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._tradesClient.takeOffer(request, { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else if (response.getFailureReason() && response.getFailureReason().getAvailabilityResult() !== AvailabilityResult.AVAILABLE)
|
||
|
reject(new Error(response.getFailureReason().getDescription())); // TODO: api should throw grpcWeb.RpcError
|
||
|
else
|
||
|
resolve(response.getTrade());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Get a trade by id.
|
||
|
*
|
||
|
* @param {string} tradeId - the id of the trade and its offer
|
||
|
* @return {TradeInfo} the trade with the given id
|
||
|
*/
|
||
|
async getTrade(tradeId) {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._tradesClient.getTrade(new GetTradeRequest().setTradeId(tradeId), { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getTrade());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Get all trades.
|
||
|
*
|
||
|
* @return {TradeInfo[]} all user trades
|
||
|
*/
|
||
|
async getTrades() {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._tradesClient.getTrades(new GetTradesRequest(), { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getTradesList());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Confirm a payment is started.
|
||
|
*
|
||
|
* @param {string} tradeId - the id of the trade
|
||
|
*/
|
||
|
async confirmPaymentStarted(tradeId) {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._tradesClient.confirmPaymentStarted(new ConfirmPaymentStartedRequest().setTradeId(tradeId), { password: this._password }, function (err) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve();
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Confirm a payment is received.
|
||
|
*
|
||
|
* @param {string} tradeId - the id of the trade
|
||
|
*/
|
||
|
async confirmPaymentReceived(tradeId) {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._tradesClient.confirmPaymentReceived(new ConfirmPaymentReceivedRequest().setTradeId(tradeId), { password: this._password }, function (err) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve();
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Get all chat messages for a trade.
|
||
|
*
|
||
|
* @param {string} tradeId - the id of the trade
|
||
|
*/
|
||
|
async getChatMessages(tradeId) {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
const request = new GetChatMessagesRequest().setTradeId(tradeId);
|
||
|
this._tradesClient.getChatMessages(request, { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getMessageList());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Send a trade chat message.
|
||
|
*
|
||
|
* @param {string} tradeId - the id of the trade
|
||
|
* @param {string} message - the message
|
||
|
*/
|
||
|
async sendChatMessage(tradeId, message) {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
const request = new SendChatMessageRequest()
|
||
|
.setTradeId(tradeId)
|
||
|
.setMessage(message);
|
||
|
this._tradesClient.sendChatMessage(request, { password: this._password }, function (err) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve();
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Get a dispute by trade id.
|
||
|
*
|
||
|
* @param {string} tradeId - the id of the trade
|
||
|
*/
|
||
|
async getDispute(tradeId) {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._disputesClient.getDispute(new GetDisputeRequest().setTradeId(tradeId), { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getDispute());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Get all disputes.
|
||
|
*/
|
||
|
async getDisputes() {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._disputesClient.getDisputes(new GetDisputesRequest(), { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getDisputesList());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Open a dispute for a trade.
|
||
|
*
|
||
|
* @param {string} tradeId - the id of the trade
|
||
|
*/
|
||
|
async openDispute(tradeId) {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._disputesClient.openDispute(new OpenDisputeRequest().setTradeId(tradeId), { password: this._password }, function (err) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve();
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Resolve a dispute. By default, the winner receives the trade amount and the security deposits are returned,
|
||
|
* but the arbitrator may award a custom amount to the winner.
|
||
|
*
|
||
|
* @param {string} tradeId - the id of the trade
|
||
|
* @param {DisputeResult.Winner} winner - the winner of the dispute
|
||
|
* @param {DisputeResult.Reason} reason - the reason for the dispute
|
||
|
* @param {string} summaryNotes - summary of the dispute
|
||
|
* @param {bigint} customWinnerAmount - custom amount to award the winner (optional)
|
||
|
*/
|
||
|
async resolveDispute(tradeId, winner, reason, summaryNotes, customWinnerAmount) {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
const request = new ResolveDisputeRequest()
|
||
|
.setTradeId(tradeId)
|
||
|
.setWinner(winner)
|
||
|
.setReason(reason)
|
||
|
.setSummaryNotes(summaryNotes)
|
||
|
.setCustomPayoutAmount(customWinnerAmount ? customWinnerAmount.toString() : "0");
|
||
|
this._disputesClient.resolveDispute(request, { password: this._password }, function (err) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve();
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Send a dispute chat message.
|
||
|
*
|
||
|
* @param {string} disputeId - the id of the dispute
|
||
|
* @param {string} message - the message
|
||
|
* @param {Attachment[]} attachments - attachments
|
||
|
*/
|
||
|
async sendDisputeChatMessage(disputeId, message, attachments) {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
const request = new SendDisputeChatMessageRequest()
|
||
|
.setDisputeId(disputeId)
|
||
|
.setMessage(message)
|
||
|
.setAttachmentsList(attachments);
|
||
|
this._disputesClient.sendDisputeChatMessage(request, { password: this._password }, function (err) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve();
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Disconnect this client from the server.
|
||
|
*/
|
||
|
async disconnect() {
|
||
|
while (this._notificationListeners.length)
|
||
|
await this.removeNotificationListener(this._notificationListeners[0]);
|
||
|
}
|
||
|
/**
|
||
|
* Shutdown the Haveno daemon server and stop the process if applicable.
|
||
|
*/
|
||
|
async shutdownServer() {
|
||
|
await this.disconnect();
|
||
|
await new Promise((resolve, reject) => {
|
||
|
this._shutdownServerClient.stop(new StopRequest(), { password: this._password }, function (err) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve();
|
||
|
});
|
||
|
});
|
||
|
if (this._process)
|
||
|
return HavenoUtils.kill(this._process);
|
||
|
}
|
||
|
// ------------------------------- HELPERS ----------------------------------
|
||
|
/**
|
||
|
* Wait for the application to be fully initialized with an account and a
|
||
|
* connection to the Haveno network.
|
||
|
*
|
||
|
* TODO:
|
||
|
*
|
||
|
* Currently when the application starts, the account is first initialized with createAccount()
|
||
|
* or openAccount() which return immediately. A notification is sent after all setup is complete and
|
||
|
* the application is connected to the Haveno network.
|
||
|
*
|
||
|
* Ideally when the application starts, the system checks the Haveno network connection, supporting
|
||
|
* havenod.isHavenoConnectionInitialized() and havenod.awaitHavenoConnectionInitialized().
|
||
|
* Independently, gRPC createAccount() and openAccount() return after all account setup and reading from disk.
|
||
|
*
|
||
|
* @hidden
|
||
|
*/
|
||
|
async _awaitAppInitialized() {
|
||
|
// eslint-disable-next-line no-async-promise-executor
|
||
|
return new Promise(async (resolve) => {
|
||
|
let isResolved = false;
|
||
|
const resolveOnce = async () => {
|
||
|
if (isResolved)
|
||
|
return;
|
||
|
isResolved = true;
|
||
|
await this.removeNotificationListener(listener);
|
||
|
resolve();
|
||
|
};
|
||
|
const listener = async function (notification) {
|
||
|
if (notification.getType() === NotificationMessage.NotificationType.APP_INITIALIZED)
|
||
|
await resolveOnce();
|
||
|
};
|
||
|
await this.addNotificationListener(listener);
|
||
|
if (await this._isAppInitialized())
|
||
|
await resolveOnce();
|
||
|
});
|
||
|
}
|
||
|
// @hidden
|
||
|
async _isAppInitialized() {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._accountClient.isAppInitialized(new IsAppInitializedRequest(), { password: this._password }, function (err, response) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve(response.getIsAppInitialized());
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Update notification listener registration.
|
||
|
* Due to the nature of grpc streaming, this method returns a promise
|
||
|
* which may be resolved before the listener is actually registered.
|
||
|
*/
|
||
|
async _updateNotificationListenerRegistration() {
|
||
|
const listening = this._notificationListeners.length > 0;
|
||
|
if (listening && this._notificationStream || !listening && !this._notificationStream)
|
||
|
return; // no difference
|
||
|
if (listening) {
|
||
|
return new Promise((resolve) => {
|
||
|
// send request to register client listener
|
||
|
this._notificationStream = this._notificationsClient.registerNotificationListener(new RegisterNotificationListenerRequest(), { password: this._password })
|
||
|
.on('data', (data) => {
|
||
|
if (data instanceof NotificationMessage) {
|
||
|
for (const listener of this._notificationListeners)
|
||
|
listener(data);
|
||
|
}
|
||
|
});
|
||
|
// periodically send keep alive requests // TODO (woodser): better way to keep notification stream alive?
|
||
|
let firstRequest = true;
|
||
|
this._keepAliveLooper = new TaskLooper(async () => {
|
||
|
if (firstRequest) {
|
||
|
firstRequest = false;
|
||
|
return;
|
||
|
}
|
||
|
await this._sendNotification(new NotificationMessage()
|
||
|
.setType(NotificationMessage.NotificationType.KEEP_ALIVE)
|
||
|
.setTimestamp(Date.now()));
|
||
|
});
|
||
|
this._keepAliveLooper.start(this._keepAlivePeriodMs);
|
||
|
setTimeout(resolve, 1000); // TODO: call returns before listener registered
|
||
|
});
|
||
|
}
|
||
|
else {
|
||
|
this._keepAliveLooper.stop();
|
||
|
this._notificationStream.cancel();
|
||
|
this._notificationStream = undefined;
|
||
|
}
|
||
|
}
|
||
|
/**
|
||
|
* Send a notification.
|
||
|
*
|
||
|
* @hidden
|
||
|
* @param {NotificationMessage} notification - notification to send
|
||
|
*/
|
||
|
async _sendNotification(notification) {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._notificationsClient.sendNotification(new SendNotificationRequest().setNotification(notification), { password: this._password }, function (err) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve();
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
* Restore an account chunk from zip bytes.
|
||
|
*
|
||
|
* @hidden
|
||
|
*/
|
||
|
async _restoreAccountChunk(zipBytes, offset, totalLength, hasMore) {
|
||
|
const request = new RestoreAccountRequest()
|
||
|
.setZipBytes(zipBytes)
|
||
|
.setOffset(offset)
|
||
|
.setTotalLength(totalLength)
|
||
|
.setHasMore(hasMore);
|
||
|
return new Promise((resolve, reject) => {
|
||
|
this._accountClient.restoreAccount(request, { password: this._password }, function (err) {
|
||
|
if (err)
|
||
|
reject(err);
|
||
|
else
|
||
|
resolve();
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
// constants
|
||
|
HavenoClient._fullyInitializedMessage = "Application fully initialized";
|
||
|
HavenoClient._loginRequiredMessage = "Interactive login required";
|
||
|
//# sourceMappingURL=HavenoClient.js.map
|