You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RTL/src/app/lnd/store/lnd.effects.ts

1067 lines
40 KiB
TypeScript

import { Injectable, OnDestroy } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { Router } from '@angular/router';
import { Store } from '@ngrx/store';
import { Actions, Effect, ofType } from '@ngrx/effects';
import { of, Subject } from 'rxjs';
import { map, mergeMap, catchError, withLatestFrom } from 'rxjs/operators';
import { MatDialog } from '@angular/material';
import { environment } from '../../../environments/environment';
import { LoggerService } from '../../shared/services/logger.service';
import { GetInfo, Fees, Balance, NetworkInfo, Payment, GraphNode, Transaction, SwitchReq, ListInvoices } from '../../shared/models/lndModels';
import * as RTLActions from '../../store/rtl.actions';
import * as fromRTLReducer from '../../store/rtl.reducers';
import * as LNDActions from './lnd.actions';
import * as fromLNDReducer from './lnd.reducers';
@Injectable()
export class LNDEffects implements OnDestroy {
dialogRef: any;
private unSubs: Array<Subject<void>> = [new Subject(), new Subject()];
constructor(
private actions$: Actions,
private httpClient: HttpClient,
private store: Store<fromLNDReducer.LNDState>,
private logger: LoggerService,
public dialog: MatDialog,
private router: Router) { }
@Effect()
infoFetch = this.actions$.pipe(
ofType(LNDActions.FETCH_INFO),
withLatestFrom(this.store.select('rtlRoot')),
mergeMap(([action, store]: [LNDActions.FetchInfo, fromRTLReducer.State]) => {
this.store.dispatch(new RTLActions.ClearEffectError('FetchInfo'));
return this.httpClient.get<GetInfo>(environment.GETINFO_API)
.pipe(
map((info) => {
this.logger.info(info);
if (undefined === info.identity_pubkey) {
sessionStorage.removeItem('lndUnlocked');
this.logger.info('Redirecting to Unlock');
this.store.dispatch(new RTLActions.SetSelNodeInfo({}));
this.router.navigate(['/unlocklnd']);
return {
type: LNDActions.SET_INFO,
payload: {}
};
} else {
this.store.dispatch(new RTLActions.SetSelNodeInfo(info));
sessionStorage.setItem('lndUnlocked', 'true');
return {
type: LNDActions.SET_INFO,
payload: (undefined !== info) ? info : {}
};
}
}),
catchError((err) => {
this.logger.error(err);
this.store.dispatch(new RTLActions.EffectError({ action: 'FetchInfo', code: err.status, message: err.error.error }));
if (+store.appConfig.sso.rtlSSO) {
this.router.navigate(['/ssoerror']);
} else {
if (err.status === 401) {
this.logger.info('Redirecting to Signin');
this.router.navigate([store.appConfig.sso.logoutRedirectLink]);
return of();
} else {
this.logger.info('Redirecting to Unlock');
this.router.navigate(['/unlocklnd']);
return of();
}
}
})
);
}
));
@Effect()
peersFetch = this.actions$.pipe(
ofType(LNDActions.FETCH_PEERS),
mergeMap((action: LNDActions.FetchPeers) => {
this.store.dispatch(new RTLActions.ClearEffectError('FetchPeers'));
return this.httpClient.get(environment.PEERS_API)
.pipe(
map((peers: any) => {
this.logger.info(peers);
return {
type: LNDActions.SET_PEERS,
payload: (undefined !== peers) ? peers : []
};
}),
catchError((err: any) => {
this.store.dispatch(new RTLActions.EffectError({ action: 'FetchPeers', code: err.status, message: err.error.error }));
this.logger.error(err);
return of();
})
);
}
));
@Effect()
saveNewPeer = this.actions$.pipe(
ofType(LNDActions.SAVE_NEW_PEER),
mergeMap((action: LNDActions.SaveNewPeer) => {
return this.httpClient.post(environment.PEERS_API, {pubkey: action.payload.pubkey, host: action.payload.host, perm: action.payload.perm})
.pipe(
map((postRes: any) => {
this.logger.info(postRes);
this.store.dispatch(new RTLActions.CloseSpinner());
this.store.dispatch(new RTLActions.OpenAlert({ width: '70%', data: { type: 'SUCCESS', titleMessage: 'Peer Added Successfully!'}}));
return {
type: LNDActions.SET_PEERS,
payload: (undefined !== postRes && postRes.length > 0) ? postRes : []
};
}),
catchError((err: any) => {
this.store.dispatch(new RTLActions.CloseSpinner());
this.logger.error(err);
return of(
{
type: RTLActions.OPEN_ALERT,
payload: { width: '70%', data: {type: 'ERROR', titleMessage: 'Add Peer Failed',
message: JSON.stringify({code: err.status, Message: err.error.error})
}}
}
);
})
);
}
));
@Effect()
detachPeer = this.actions$.pipe(
ofType(LNDActions.DETACH_PEER),
mergeMap((action: LNDActions.DetachPeer) => {
return this.httpClient.delete(environment.PEERS_API + '/' + action.payload.pubkey)
.pipe(
map((postRes: any) => {
this.logger.info(postRes);
this.store.dispatch(new RTLActions.CloseSpinner());
this.store.dispatch(new RTLActions.OpenAlert({ width: '70%', data: {type: 'SUCCESS', titleMessage: 'Peer Detached Successfully!'}}));
return {
type: LNDActions.REMOVE_PEER,
payload: { pubkey: action.payload.pubkey }
};
}),
catchError((err: any) => {
this.store.dispatch(new RTLActions.CloseSpinner());
this.logger.error(err);
return of(
{
type: RTLActions.OPEN_ALERT,
payload: { width: '70%', data: {type: 'ERROR', titleMessage: 'Unable to Detach Peer. Try again later.',
message: JSON.stringify({code: err.status, Message: err.error.error})}
}
}
);
})
);
}
));
@Effect()
saveNewInvoice = this.actions$.pipe(
ofType(LNDActions.SAVE_NEW_INVOICE),
mergeMap((action: LNDActions.SaveNewInvoice) => {
return this.httpClient.post(environment.INVOICES_API, {
memo: action.payload.memo, amount: action.payload.invoiceValue, private: action.payload.private, expiry: action.payload.expiry
})
.pipe(
map((postRes: any) => {
postRes.memo = action.payload.memo;
postRes.value = action.payload.invoiceValue;
postRes.expiry = action.payload.expiry;
postRes.cltv_expiry = '144';
postRes.creation_date = Math.round(new Date().getTime() / 1000).toString();
postRes.creation_date_str = new Date(+postRes.creation_date * 1000).toUTCString();
this.logger.info(postRes);
this.store.dispatch(new RTLActions.CloseSpinner());
const msg = { payment_request: postRes.payment_request };
this.store.dispatch(new RTLActions.OpenAlert({ width: '70%',
data: { type: 'SUCCESS', titleMessage: 'Invoice Added Successfully!', message: JSON.stringify(msg) }}));
return {
type: LNDActions.FETCH_INVOICES,
payload: {num_max_invoices: action.payload.pageSize, reversed: true}
};
}),
catchError((err: any) => {
this.store.dispatch(new RTLActions.CloseSpinner());
this.logger.error(err);
return of(
{
type: RTLActions.OPEN_ALERT,
payload: { width: '70%', data: {type: 'ERROR', titleMessage: 'Add Invoice Failed',
message: JSON.stringify({code: err.status, Message: err.error.error})
}}
}
);
})
);
}
));
@Effect()
openNewChannel = this.actions$.pipe(
ofType(LNDActions.SAVE_NEW_CHANNEL),
mergeMap((action: LNDActions.SaveNewChannel) => {
return this.httpClient.post(environment.CHANNELS_API, {
node_pubkey: action.payload.selectedPeerPubkey, local_funding_amount: action.payload.fundingAmount, private: action.payload.private,
trans_type: action.payload.transType, trans_type_value: action.payload.transTypeValue, spend_unconfirmed: action.payload.spendUnconfirmed
})
.pipe(
map((postRes: any) => {
this.logger.info(postRes);
this.store.dispatch(new RTLActions.CloseSpinner());
this.store.dispatch(new LNDActions.FetchBalance('blockchain'));
this.store.dispatch(new LNDActions.FetchChannels({routeParam: 'all'}));
this.store.dispatch(new LNDActions.BackupChannels({channelPoint: 'ALL', showMessage: 'Channel Added Successfully!'}));
return {
type: LNDActions.FETCH_CHANNELS,
payload: {routeParam: 'pending', channelStatus: ''}
};
}),
catchError((err: any) => {
this.store.dispatch(new RTLActions.CloseSpinner());
this.logger.error(err);
return of(
{
type: RTLActions.OPEN_ALERT,
payload: { width: '70%', data: {type: 'ERROR', titleMessage: 'Open Channel Failed',
message: JSON.stringify({code: err.status, Message: err.error.error})
}}
}
);
})
);
}
));
@Effect()
updateChannel = this.actions$.pipe(
ofType(LNDActions.UPDATE_CHANNELS),
mergeMap((action: LNDActions.UpdateChannels) => {
return this.httpClient.post(environment.CHANNELS_API + '/chanPolicy',
{ baseFeeMsat: action.payload.baseFeeMsat, feeRate: action.payload.feeRate, timeLockDelta: action.payload.timeLockDelta, chanPoint: action.payload.chanPoint })
.pipe(
map((postRes: any) => {
this.logger.info(postRes);
this.store.dispatch(new RTLActions.CloseSpinner());
this.store.dispatch(new RTLActions.OpenAlert({ width: '70%', data: {type: 'SUCCESS', titleMessage: 'Channel Updated Successfully!'}}));
return {
type: LNDActions.FETCH_CHANNELS,
payload: {routeParam: 'all', channelStatus: ''}
};
}),
catchError((err: any) => {
this.store.dispatch(new RTLActions.CloseSpinner());
this.logger.error(err);
return of(
{
type: RTLActions.OPEN_ALERT,
payload: { width: '70%', data: {type: 'ERROR', titleMessage: 'Update Channel Failed',
message: JSON.stringify({code: err.status, Message: err.error.error})
}}
}
);
})
);
}
));
@Effect()
closeChannel = this.actions$.pipe(
ofType(LNDActions.CLOSE_CHANNEL),
mergeMap((action: LNDActions.CloseChannel) => {
return this.httpClient.delete(environment.CHANNELS_API + '/' + action.payload.channelPoint + '?force=' + action.payload.forcibly)
.pipe(
map((postRes: any) => {
this.logger.info(postRes);
this.store.dispatch(new RTLActions.CloseSpinner());
this.store.dispatch(new LNDActions.FetchBalance('channels'));
this.store.dispatch(new LNDActions.FetchBalance('blockchain'));
this.store.dispatch(new LNDActions.FetchChannels({routeParam: 'all'}));
if (action.payload.forcibly) {
this.store.dispatch(new LNDActions.FetchChannels({routeParam: 'pending'}));
} else {
this.store.dispatch(new LNDActions.FetchChannels({routeParam: 'closed'}));
}
this.store.dispatch(new LNDActions.BackupChannels({channelPoint: 'ALL', showMessage: 'Channel Closed Successfully!'}));
return {
type: LNDActions.REMOVE_CHANNEL,
payload: { channelPoint: action.payload.channelPoint }
};
}),
catchError((err: any) => {
this.store.dispatch(new RTLActions.CloseSpinner());
this.logger.error(err);
return of(
{
type: RTLActions.OPEN_ALERT,
payload: { width: '70%', data: {type: 'ERROR', titleMessage: 'Unable to Close Channel. Try again later.',
message: JSON.stringify({code: err.status, Message: err.error.error.message})}}
}
);
})
);
}
));
@Effect()
backupChannels = this.actions$.pipe(
ofType(LNDActions.BACKUP_CHANNELS),
mergeMap((action: LNDActions.BackupChannels) => {
this.store.dispatch(new RTLActions.ClearEffectError('BackupChannels'));
return this.httpClient.get(environment.CHANNELS_BACKUP_API + '/' + action.payload.channelPoint)
.pipe(
map((postRes: any) => {
this.logger.info(postRes);
this.store.dispatch(new RTLActions.CloseSpinner());
this.store.dispatch(new RTLActions.OpenAlert({ width: '70%', data: {type: 'SUCCESS', titleMessage: action.payload.showMessage + ' ' + postRes.message}}));
return {
type: LNDActions.BACKUP_CHANNELS_RES,
payload: postRes.message
};
}),
catchError((err: any) => {
this.store.dispatch(new RTLActions.CloseSpinner());
this.logger.error(err);
this.store.dispatch(new RTLActions.EffectError({ action: 'BackupChannels', code: err.status, message: err.error.error }));
return of(
{
type: RTLActions.OPEN_ALERT,
payload: { width: '70%', data: {type: 'ERROR', titleMessage: action.payload.showMessage + ' ' + 'Unable to Backup Channel. Try again later.',
message: JSON.stringify({code: err.status, Message: err.error.message})}}
}
);
})
);
}
));
@Effect()
verifyChannels = this.actions$.pipe(
ofType(LNDActions.VERIFY_CHANNELS),
mergeMap((action: LNDActions.VerifyChannels) => {
this.store.dispatch(new RTLActions.ClearEffectError('VerifyChannels'));
return this.httpClient.post(environment.CHANNELS_BACKUP_API + '/verify/' + action.payload.channelPoint, {})
.pipe(
map((postRes: any) => {
this.logger.info(postRes);
this.store.dispatch(new RTLActions.CloseSpinner());
this.store.dispatch(new RTLActions.OpenAlert({ width: '70%', data: {type: 'SUCCESS', titleMessage: postRes.message}}));
return {
type: LNDActions.VERIFY_CHANNELS_RES,
payload: postRes.message
};
}),
catchError((err: any) => {
this.store.dispatch(new RTLActions.CloseSpinner());
this.logger.error(err);
this.store.dispatch(new RTLActions.EffectError({ action: 'VerifyChannels', code: err.status, message: err.error.error }));
return of(
{
type: RTLActions.OPEN_ALERT,
payload: { width: '70%', data: {type: 'ERROR', titleMessage: 'Unable to Verify Channel. Try again later.',
message: JSON.stringify({code: err.status, Message: err.error.message})}}
}
);
})
);
}
));
@Effect()
fetchFees = this.actions$.pipe(
ofType(LNDActions.FETCH_FEES),
mergeMap((action: LNDActions.FetchFees) => {
this.store.dispatch(new RTLActions.ClearEffectError('FetchFees'));
return this.httpClient.get<Fees>(environment.FEES_API);
}),
map((fees) => {
this.logger.info(fees);
return {
type: LNDActions.SET_FEES,
payload: (undefined !== fees) ? fees : {}
};
}),
catchError((err: any) => {
this.logger.error(err);
this.store.dispatch(new RTLActions.EffectError({ action: 'FetchFees', code: err.status, message: err.error.error }));
return of();
}
));
@Effect()
balanceFetch = this.actions$.pipe(
ofType(LNDActions.FETCH_BALANCE),
mergeMap((action: LNDActions.FetchBalance) => {
this.store.dispatch(new RTLActions.ClearEffectError('FetchBalance/' + action.payload));
return this.httpClient.get<Balance>(environment.BALANCE_API + '/' + action.payload)
.pipe(
map((res: any) => {
if (action.payload === 'channels') {
this.store.dispatch(new LNDActions.FetchBalance('blockchain'));
}
this.logger.info(res);
const emptyRes = (action.payload === 'channels') ? {balance: '', btc_balance: ''} : {total_balance: '', btc_total_balance: ''};
return {
type: LNDActions.SET_BALANCE,
payload: (undefined !== res) ? { target: action.payload, balance: res } : { target: action.payload, balance: emptyRes }
};
}),
catchError((err: any) => {
this.logger.error(err);
this.store.dispatch(new RTLActions.EffectError({ action: 'FetchBalance/' + action.payload, code: err.status, message: err.error.error }));
return of();
}
));
}
));
@Effect()
networkInfoFetch = this.actions$.pipe(
ofType(LNDActions.FETCH_NETWORK),
mergeMap((action: LNDActions.FetchNetwork) => {
this.store.dispatch(new RTLActions.ClearEffectError('FetchNetwork'));
return this.httpClient.get<NetworkInfo>(environment.NETWORK_API + '/info');
}),
map((networkInfo) => {
this.logger.info(networkInfo);
return {
type: LNDActions.SET_NETWORK,
payload: (undefined !== networkInfo) ? networkInfo : {}
};
}),
catchError((err: any) => {
this.logger.error(err);
this.store.dispatch(new RTLActions.EffectError({ action: 'FetchNetwork', code: err.status, message: err.error.error }));
return of();
}
));
@Effect()
channelsFetch = this.actions$.pipe(
ofType(LNDActions.FETCH_CHANNELS),
mergeMap((action: LNDActions.FetchChannels) => {
return this.httpClient.get(environment.CHANNELS_API + '/' + action.payload.routeParam)
.pipe(
map((channels: any) => {
this.logger.info(channels);
if (action.payload.routeParam === 'pending') {
return {
type: LNDActions.SET_PENDING_CHANNELS,
payload: (undefined !== channels) ? channels : {}
};
} else if (action.payload.routeParam === 'closed') {
return {
type: LNDActions.SET_CLOSED_CHANNELS,
payload: (undefined !== channels && undefined !== channels.channels && channels.channels.length > 0) ? channels.channels : []
};
} else if (action.payload.routeParam === 'all') {
return {
type: LNDActions.SET_CHANNELS,
payload: (undefined !== channels && undefined !== channels.channels && channels.channels.length > 0) ? channels.channels : []
};
}
},
catchError((err: any) => {
this.logger.error(err);
this.store.dispatch(new RTLActions.EffectError({ action: 'FetchChannels/' + action.payload.routeParam, code: err.status, message: err.error.error }));
return of();
})
));
}
));
@Effect()
invoicesFetch = this.actions$.pipe(
ofType(LNDActions.FETCH_INVOICES),
mergeMap((action: LNDActions.FetchInvoices) => {
this.store.dispatch(new RTLActions.ClearEffectError('FetchInvoices'));
const num_max_invoices = (action.payload.num_max_invoices) ? action.payload.num_max_invoices : 100;
const index_offset = (action.payload.index_offset) ? action.payload.index_offset : 0;
const reversed = (action.payload.reversed) ? action.payload.reversed : false;
return this.httpClient.get<ListInvoices>(environment.INVOICES_API + '?num_max_invoices=' + num_max_invoices + '&index_offset=' + index_offset + '&reversed=' + reversed)
.pipe(map((res: ListInvoices) => {
this.logger.info(res);
if (action.payload.reversed && !action.payload.index_offset) {
this.store.dispatch(new LNDActions.SetTotalInvoices(+res.last_index_offset));
}
return {
type: LNDActions.SET_INVOICES,
payload: res
};
}),
catchError((err: any) => {
this.logger.error(err);
this.store.dispatch(new RTLActions.EffectError({ action: 'FetchInvoices', code: err.status, message: err.error.error }));
return of();
}
));
}));
@Effect()
transactionsFetch = this.actions$.pipe(
ofType(LNDActions.FETCH_TRANSACTIONS),
mergeMap((action: LNDActions.FetchTransactions) => {
this.store.dispatch(new RTLActions.ClearEffectError('FetchTransactions'));
return this.httpClient.get<Transaction[]>(environment.TRANSACTIONS_API);
}),
map((transactions) => {
this.logger.info(transactions);
return {
type: LNDActions.SET_TRANSACTIONS,
payload: (undefined !== transactions && transactions.length > 0) ? transactions : []
};
}),
catchError((err: any) => {
this.logger.error(err);
this.store.dispatch(new RTLActions.EffectError({ action: 'FetchTransactions', code: err.status, message: err.error.error }));
return of();
}
));
@Effect()
paymentsFetch = this.actions$.pipe(
ofType(LNDActions.FETCH_PAYMENTS),
mergeMap((action: LNDActions.FetchPayments) => {
this.store.dispatch(new RTLActions.ClearEffectError('FetchPayments'));
return this.httpClient.get<Payment[]>(environment.PAYMENTS_API);
}),
map((payments) => {
this.logger.info(payments);
return {
type: LNDActions.SET_PAYMENTS,
payload: (undefined !== payments && null != payments) ? payments : []
};
}),
catchError((err: any) => {
this.logger.error(err);
this.store.dispatch(new RTLActions.EffectError({ action: 'FetchPayments', code: err.status, message: err.error.error }));
return of();
}
));
@Effect()
decodePayment = this.actions$.pipe(
ofType(LNDActions.DECODE_PAYMENT),
mergeMap((action: LNDActions.DecodePayment) => {
return this.httpClient.get(environment.PAYREQUEST_API + '/' + action.payload)
.pipe(
map((decodedPayment) => {
this.logger.info(decodedPayment);
this.store.dispatch(new RTLActions.CloseSpinner());
return {
type: LNDActions.SET_DECODED_PAYMENT,
payload: (undefined !== decodedPayment) ? decodedPayment : {}
};
}),
catchError((err: any) => {
this.store.dispatch(new RTLActions.CloseSpinner());
this.logger.error(err);
return of(
{
type: RTLActions.OPEN_ALERT,
payload: { width: '70%', data: {type: 'ERROR', titleMessage: 'Decode Payment Failed',
message: JSON.stringify({Code: err.status, Message: err.error.error, URL: environment.PAYREQUEST_API + '/' + action.payload})}}
}
);
})
);
})
);
@Effect({ dispatch: false })
setDecodedPayment = this.actions$.pipe(
ofType(LNDActions.SET_DECODED_PAYMENT),
map((action: LNDActions.SetDecodedPayment) => {
this.logger.info(action.payload);
return action.payload;
})
);
@Effect()
sendPayment = this.actions$.pipe(
ofType(LNDActions.SEND_PAYMENT),
withLatestFrom(this.store.select('rtlRoot')),
mergeMap(([action, store]: [LNDActions.SendPayment, fromLNDReducer.LNDState]) => {
let queryHeaders = {};
if (action.payload[2]) {
queryHeaders = {paymentDecoded: action.payload[1]};
} else {
queryHeaders = {paymentReq: action.payload[0]};
}
return this.httpClient.post(environment.CHANNELS_API + '/transactions', queryHeaders)
.pipe(
map((sendRes: any) => {
this.logger.info(sendRes);
this.store.dispatch(new RTLActions.CloseSpinner());
if (sendRes.payment_error) {
this.logger.error('Error: ' + sendRes.payment_error);
return of({
type: RTLActions.OPEN_ALERT,
payload: { width: '70%', data: {type: 'ERROR', titleMessage: 'Send Payment Failed',
message: JSON.stringify(
{code: sendRes.payment_error.status, Message: sendRes.payment_error.error.message, URL: environment.CHANNELS_API + '/transactions/' + action.payload[0]}
)
}}
});
} else {
const confirmationMsg = { 'Destination': action.payload[1].destination, 'Timestamp': action.payload[1].timestamp_str, 'Expiry': action.payload[1].expiry };
confirmationMsg['Amount (' + ((undefined === store.information.smaller_currency_unit) ?
'Sats' : store.information.smaller_currency_unit) + ')'] = action.payload[1].num_satoshis;
const msg = {};
msg['Total Fee (' + ((undefined === store.information.smaller_currency_unit) ? 'Sats' : store.information.smaller_currency_unit) + ')'] =
(sendRes.payment_route.total_fees_msat / 1000);
Object.assign(msg, confirmationMsg);
this.store.dispatch(new RTLActions.OpenAlert({ width: '70%',
data: { type: 'SUCCESS', titleMessage: 'Payment Sent Successfully!', message: JSON.stringify(msg) }}));
this.store.dispatch(new LNDActions.FetchChannels({routeParam: 'all'}));
this.store.dispatch(new LNDActions.FetchBalance('channels'));
this.store.dispatch(new LNDActions.FetchPayments());
return {
type: LNDActions.SET_DECODED_PAYMENT,
payload: {}
};
}
}),
catchError((err: any) => {
this.store.dispatch(new RTLActions.CloseSpinner());
this.logger.error(err);
return of(
{
type: RTLActions.OPEN_ALERT,
payload: { width: '70%', data: {type: 'ERROR', titleMessage: 'Send Payment Failed',
message: JSON.stringify({code: err.status, Message: err.error.error, URL: environment.CHANNELS_API + '/transactions/' + action.payload[0]})}}
}
);
})
);
})
);
@Effect()
graphNodeFetch = this.actions$.pipe(
ofType(LNDActions.FETCH_GRAPH_NODE),
mergeMap((action: LNDActions.FetchGraphNode) => {
return this.httpClient.get<GraphNode>(environment.NETWORK_API + '/node/' + action.payload)
.pipe(map((graphNode: any) => {
this.logger.info(graphNode);
this.store.dispatch(new RTLActions.CloseSpinner());
return {
type: LNDActions.SET_GRAPH_NODE,
payload: (undefined !== graphNode) ? graphNode : {}
};
}),
catchError((err: any) => {
this.store.dispatch(new RTLActions.CloseSpinner());
this.logger.error(err);
return of(
{
type: RTLActions.OPEN_ALERT,
payload: { width: '70%', data: {type: 'ERROR', titleMessage: 'Get Node Address Failed',
message: JSON.stringify({Code: err.status, Message: err.error.error})}}
}
);
}));
}
));
@Effect({ dispatch: false })
setGraphNode = this.actions$.pipe(
ofType(LNDActions.SET_GRAPH_NODE),
map((action: LNDActions.SetGraphNode) => {
this.logger.info(action.payload);
return action.payload;
})
);
@Effect()
getNewAddress = this.actions$.pipe(
ofType(LNDActions.GET_NEW_ADDRESS),
mergeMap((action: LNDActions.GetNewAddress) => {
return this.httpClient.get(environment.NEW_ADDRESS_API + '?type=' + action.payload.addressId)
.pipe(map((newAddress: any) => {
this.logger.info(newAddress);
this.store.dispatch(new RTLActions.CloseSpinner());
return {
type: LNDActions.SET_NEW_ADDRESS,
payload: (undefined !== newAddress && undefined !== newAddress.address) ? newAddress.address : {}
};
}),
catchError((err: any) => {
this.store.dispatch(new RTLActions.CloseSpinner());
this.logger.error(err);
return of(
{
type: RTLActions.OPEN_ALERT,
payload: { width: '70%', data: {type: 'ERROR', titleMessage: 'Generate New Address Failed',
message: JSON.stringify({Code: err.status, Message: err.error.error, URL: environment.NEW_ADDRESS_API + '?type=' + action.payload.addressId})}}
}
);
}));
})
);
@Effect({ dispatch: false })
setNewAddress = this.actions$.pipe(
ofType(LNDActions.SET_NEW_ADDRESS),
map((action: LNDActions.SetNewAddress) => {
this.logger.info(action.payload);
return action.payload;
})
);
@Effect()
configFetch = this.actions$.pipe(
ofType(LNDActions.FETCH_CONFIG),
mergeMap((action: LNDActions.FetchConfig) => {
this.store.dispatch(new RTLActions.ClearEffectError('fetchConfig'));
return this.httpClient.get(environment.CONF_API + '/config/' + action.payload)
.pipe(
map((configFile: any) => {
this.store.dispatch(new RTLActions.CloseSpinner());
return {
type: LNDActions.SHOW_CONFIG,
payload: configFile
};
}),
catchError((err: any) => {
this.store.dispatch(new RTLActions.CloseSpinner());
this.logger.error(err);
this.store.dispatch(new RTLActions.EffectError({ action: 'fetchConfig', code: err.status, message: err.error.error }));
return of(
{
type: RTLActions.OPEN_ALERT,
payload: { width: '70%', data: {type: 'ERROR', titleMessage: 'Fetch Config Failed!',
message: JSON.stringify({Code: err.status, Message: err.error.error})}}
}
);
}
));
})
);
@Effect({ dispatch: false })
showLNDConfig = this.actions$.pipe(
ofType(LNDActions.SHOW_CONFIG),
map((action: LNDActions.ShowConfig) => {
return action.payload;
})
);
@Effect()
SetChannelTransaction = this.actions$.pipe(
ofType(LNDActions.SET_CHANNEL_TRANSACTION),
mergeMap((action: LNDActions.SetChannelTransaction) => {
this.store.dispatch(new RTLActions.ClearEffectError('SetChannelTransaction'));
return this.httpClient.post(environment.TRANSACTIONS_API,
{ amount: action.payload.amount, address: action.payload.address, sendAll: action.payload.sendAll, fees: action.payload.fees, blocks: action.payload.blocks }
)
.pipe(
map((postRes: any) => {
this.logger.info(postRes);
this.store.dispatch(new RTLActions.CloseSpinner());
this.store.dispatch(new LNDActions.FetchBalance('blockchain'));
return {
type: RTLActions.OPEN_ALERT,
payload: { data: {type: 'SUCCESS', titleMessage: 'Fund Sent Successfully!'} }
};
}),
catchError((err: any) => {
this.store.dispatch(new RTLActions.CloseSpinner());
this.store.dispatch(new RTLActions.EffectError({ action: 'SetChannelTransaction', code: err.status, message: err.error.error }));
this.logger.error(err);
return of(
{
type: RTLActions.OPEN_ALERT,
payload: { width: '70%', data: {type: 'ERROR', titleMessage: 'Sending Fund Failed',
message: JSON.stringify({Code: err.status, Message: err.error.error})}}
}
);
}));
})
);
@Effect()
fetchForwardingHistory = this.actions$.pipe(
ofType(LNDActions.GET_FORWARDING_HISTORY),
mergeMap((action: LNDActions.GetForwardingHistory) => {
this.store.dispatch(new RTLActions.ClearEffectError('GetForwardingHistory'));
const queryHeaders: SwitchReq = {
num_max_events: action.payload.num_max_events, index_offset: action.payload.index_offset, end_time: action.payload.end_time , start_time: action.payload.start_time
};
return this.httpClient.post(environment.SWITCH_API, queryHeaders)
.pipe(
map((fhRes: any) => {
this.logger.info(fhRes);
return {
type: LNDActions.SET_FORWARDING_HISTORY,
payload: fhRes
};
}),
catchError((err: any) => {
this.store.dispatch(new RTLActions.EffectError({ action: 'GetForwardingHistory', code: err.status, message: err.error.error }));
this.logger.error(err);
return of(
{
type: RTLActions.OPEN_ALERT,
payload: { width: '70%', data: {type: 'ERROR', titleMessage: 'Get Forwarding History Failed',
message: JSON.stringify({code: err.status, Message: err.error.error, URL: environment.SWITCH_API})}}
}
);
})
);
})
);
@Effect()
queryRoutesFetch = this.actions$.pipe(
ofType(LNDActions.GET_QUERY_ROUTES),
mergeMap((action: LNDActions.GetQueryRoutes) => {
return this.httpClient.get(environment.NETWORK_API + '/routes/' + action.payload.destPubkey + '/' + action.payload.amount)
.pipe(
map((qrRes: any) => {
this.logger.info(qrRes);
return {
type: LNDActions.SET_QUERY_ROUTES,
payload: qrRes
};
}),
catchError((err: any) => {
this.store.dispatch(new LNDActions.SetQueryRoutes({}));
this.logger.error(err);
return of(
{
type: RTLActions.OPEN_ALERT,
payload: { width: '70%', data: {type: 'ERROR', titleMessage: 'Get Query Routes Failed',
message: JSON.stringify({code: err.status, Message: err.error.error.error, URL: environment.NETWORK_API})}}
}
);
})
);
}
));
@Effect({ dispatch: false })
setQueryRoutes = this.actions$.pipe(
ofType(LNDActions.SET_QUERY_ROUTES),
map((action: LNDActions.SetQueryRoutes) => {
return action.payload;
})
);
@Effect()
genSeed = this.actions$.pipe(
ofType(LNDActions.GEN_SEED),
mergeMap((action: LNDActions.GenSeed) => {
return this.httpClient.get(environment.WALLET_API + '/genseed/' + action.payload)
.pipe(
map((postRes: any) => {
this.logger.info('Generated GenSeed!');
this.logger.info(postRes);
this.store.dispatch(new RTLActions.CloseSpinner());
return {
type: LNDActions.GEN_SEED_RESPONSE,
payload: postRes.cipher_seed_mnemonic
};
}),
catchError((err) => {
this.store.dispatch(new RTLActions.CloseSpinner());
this.store.dispatch(new RTLActions.OpenAlert({ width: '70%', data: {type: 'ERROR', titleMessage: err.error.message + ' ' + err.error.error.code}}));
this.logger.error(err.error.error);
return of();
})
);
}
));
@Effect({ dispatch: false })
genSeedResponse = this.actions$.pipe(
ofType(LNDActions.GEN_SEED_RESPONSE),
map((action: LNDActions.GenSeedResponse) => {
return action.payload;
})
);
@Effect({ dispatch: false })
initWalletRes = this.actions$.pipe(
ofType(LNDActions.INIT_WALLET_RESPONSE),
map((action: LNDActions.InitWalletResponse) => {
return action.payload;
})
);
@Effect()
initWallet = this.actions$.pipe(
ofType(LNDActions.INIT_WALLET),
mergeMap((action: LNDActions.InitWallet) => {
return this.httpClient.post(environment.WALLET_API + '/initwallet',
{ wallet_password: action.payload.pwd,
cipher_seed_mnemonic: action.payload.cipher ? action.payload.cipher : '',
aezeed_passphrase: action.payload.passphrase ? action.payload.passphrase : '' })
.pipe(
map((postRes) => {
this.logger.info(postRes);
this.store.dispatch(new RTLActions.CloseSpinner());
return {
type: LNDActions.INIT_WALLET_RESPONSE,
payload: postRes
};
}),
catchError((err) => {
this.store.dispatch(new RTLActions.CloseSpinner());
this.store.dispatch(new RTLActions.OpenAlert({ width: '70%', data: {type: 'ERROR', titleMessage: err.error.error}}));
this.logger.error(err.error.error);
return of();
})
);
}
));
@Effect({ dispatch : false })
unlockWallet = this.actions$.pipe(
ofType(LNDActions.UNLOCK_WALLET),
mergeMap((action: LNDActions.UnlockWallet) => {
return this.httpClient.post(environment.WALLET_API + '/unlockwallet', { wallet_password: action.payload.pwd })
.pipe(
map((postRes) => {
this.logger.info(postRes);
this.store.dispatch(new RTLActions.CloseSpinner());
this.store.dispatch(new RTLActions.OpenSpinner('Initializing Node...'));
this.logger.info('Successfully Unlocked!');
sessionStorage.setItem('lndUnlocked', 'true');
setTimeout(() => {
this.store.dispatch(new RTLActions.CloseSpinner());
this.logger.info('Successfully Initialized!');
this.store.dispatch(new RTLActions.InitAppData());
this.router.navigate(['/']);
}, 1000 * 90);
return of({});
}),
catchError((err) => {
this.store.dispatch(new RTLActions.CloseSpinner());
this.store.dispatch(new RTLActions.OpenAlert({ width: '70%', data: {type: 'ERROR', titleMessage: err.error.error}}));
this.logger.error(err.error.error);
return of();
})
);
}
));
@Effect()
peerLookup = this.actions$.pipe(
ofType(LNDActions.PEER_LOOKUP),
mergeMap((action: LNDActions.PeerLookup) => {
this.store.dispatch(new RTLActions.ClearEffectError('Lookup'));
return this.httpClient.get(environment.NETWORK_API + '/node/' + action.payload)
.pipe(
map((resPeer) => {
this.logger.info(resPeer);
this.store.dispatch(new RTLActions.CloseSpinner());
return {
type: LNDActions.SET_LOOKUP,
payload: resPeer
};
}),
catchError((err: any) => {
this.store.dispatch(new RTLActions.CloseSpinner());
this.store.dispatch(new RTLActions.EffectError({ action: 'Lookup', code: err.status, message: err.error.message }));
this.logger.error(err);
return of(
{
type: RTLActions.OPEN_ALERT,
payload: { width: '70%', data: {type: 'ERROR', titleMessage: 'Peer Lookup Failed',
message: JSON.stringify({Code: err.status, Message: err.error.error, URL: environment.NETWORK_API + '/node/' + action.payload})}}
}
);
})
);
})
);
@Effect()
channelLookup = this.actions$.pipe(
ofType(LNDActions.CHANNEL_LOOKUP),
mergeMap((action: LNDActions.ChannelLookup) => {
this.store.dispatch(new RTLActions.ClearEffectError('Lookup'));
return this.httpClient.get(environment.NETWORK_API + '/edge/' + action.payload)
.pipe(
map((resChannel) => {
this.logger.info(resChannel);
this.store.dispatch(new RTLActions.CloseSpinner());
return {
type: LNDActions.SET_LOOKUP,
payload: resChannel
};
}),
catchError((err: any) => {
this.store.dispatch(new RTLActions.CloseSpinner());
this.store.dispatch(new RTLActions.EffectError({ action: 'Lookup', code: err.status, message: err.error.message }));
this.logger.error(err);
return of(
{
type: RTLActions.OPEN_ALERT,
payload: { width: '70%', data: {type: 'ERROR', titleMessage: 'Channel Lookup Failed',
message: JSON.stringify({Code: err.status, Message: err.error.error, URL: environment.NETWORK_API + '/edge/' + action.payload})}}
}
);
})
);
})
);
@Effect()
invoiceLookup = this.actions$.pipe(
ofType(LNDActions.INVOICE_LOOKUP),
mergeMap((action: LNDActions.InvoiceLookup) => {
this.store.dispatch(new RTLActions.ClearEffectError('Lookup'));
return this.httpClient.get(environment.INVOICES_API + '/' + action.payload)
.pipe(
map((resInvoice) => {
this.logger.info(resInvoice);
this.store.dispatch(new RTLActions.CloseSpinner());
return {
type: LNDActions.SET_LOOKUP,
payload: resInvoice
};
}),
catchError((err: any) => {
this.store.dispatch(new RTLActions.CloseSpinner());
this.store.dispatch(new RTLActions.EffectError({ action: 'Lookup', code: err.status, message: err.error.message }));
this.logger.error(err);
return of(
{
type: RTLActions.OPEN_ALERT,
payload: { width: '70%', data: {type: 'ERROR', titleMessage: 'Invoice Lookup Failed',
message: JSON.stringify({Code: err.status, Message: err.error.error, URL: environment.INVOICES_API + '/' + action.payload})}}
}
);
})
);
})
);
@Effect({ dispatch: false })
setLookup = this.actions$.pipe(
ofType(LNDActions.SET_LOOKUP),
map((action: LNDActions.SetLookup) => {
this.logger.info(action.payload);
return action.payload;
})
);
ngOnDestroy() {
this.unSubs.forEach(completeSub => {
completeSub.next();
completeSub.complete();
});
}
}