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/clightning/store/cl.effects.ts

766 lines
31 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';
5 years ago
import { Subject, of } from 'rxjs';
import { map, mergeMap, catchError, withLatestFrom } from 'rxjs/operators';
import { Location } from '@angular/common';
import { environment, API_URL } from '../../../environments/environment';
import { LoggerService } from '../../shared/services/logger.service';
import { SessionService } from '../../shared/services/session.service';
import { CommonService } from '../../shared/services/common.service';
import { ErrorMessageComponent } from '../../shared/components/data-modal/error-message/error-message.component';
import { CLInvoiceInformationComponent } from '../../shared/components/data-modal/invoice-information-cl/invoice-information.component';
4 years ago
import { GetInfoCL, FeesCL, BalanceCL, LocalRemoteBalanceCL, PaymentCL, FeeRatesCL, ListInvoicesCL, InvoiceCL } from '../../shared/models/clModels';
import { AlertTypeEnum } from '../../shared/services/consts-enums-functions';
import * as fromRTLReducer from '../../store/rtl.reducers';
import * as RTLActions from '../../store/rtl.actions';
import * as fromCLReducers from '../store/cl.reducers';
import { CLOpenChannelComponent } from '../../shared/components/data-modal/open-channel-cl/open-channel.component';
@Injectable()
export class CLEffects implements OnDestroy {
5 years ago
CHILD_API_URL = API_URL + '/cl';
5 years ago
private unSubs: Array<Subject<void>> = [new Subject(), new Subject()];
5 years ago
constructor(
private actions$: Actions,
private httpClient: HttpClient,
private store: Store<fromRTLReducer.RTLState>,
private sessionService: SessionService,
private logger: LoggerService,
private commonService: CommonService,
private router: Router,
private location: Location) { }
5 years ago
@Effect()
infoFetchCL = this.actions$.pipe(
5 years ago
ofType(RTLActions.FETCH_INFO_CL),
5 years ago
withLatestFrom(this.store.select('root')),
mergeMap(([action, store]: [RTLActions.FetchInfoCL, fromRTLReducer.RootState]) => {
5 years ago
this.store.dispatch(new RTLActions.ClearEffectErrorCl('FetchInfoCL'));
5 years ago
return this.httpClient.get<GetInfoCL>(this.CHILD_API_URL + environment.GETINFO_API)
.pipe(
map((info) => {
this.logger.info(info);
this.initializeRemainingData(info, action.payload.loadPage);
5 years ago
return {
5 years ago
type: RTLActions.SET_INFO_CL,
payload: info ? info : {}
5 years ago
};
}),
catchError((err) => {
let code = err.status ? err.status : '';
let message = err.error.message ? err.error.message + ' ' : '';
if (err.error && err.error.error) {
if (err.error.error.code) {
code = err.error.error.code;
} else if (err.error.error.message && err.error.error.message.code) {
code = err.error.error.message.code;
}
if (typeof err.error.error === 'string') {
message = message + err.error.error;
} else if (err.error.error.error) {
message = message + err.error.error.error;
} else if (err.error.error.errno) {
message = message + err.error.error.errno;
}
}
this.router.navigate(['/error'], { state: { errorCode: code, errorMessage: message }});
this.handleErrorWithoutAlert('FetchInfoCL', err);
return of({type: RTLActions.VOID});
5 years ago
})
);
}
));
5 years ago
@Effect()
fetchFeesCL = this.actions$.pipe(
5 years ago
ofType(RTLActions.FETCH_FEES_CL),
mergeMap((action: RTLActions.FetchFeesCL) => {
this.store.dispatch(new RTLActions.ClearEffectErrorCl('FetchFeesCL'));
5 years ago
return this.httpClient.get<FeesCL>(this.CHILD_API_URL + environment.FEES_API);
}),
map((fees) => {
this.logger.info(fees);
return {
5 years ago
type: RTLActions.SET_FEES_CL,
payload: fees ? fees : {}
5 years ago
};
}),
catchError((err: any) => {
this.handleErrorWithoutAlert('FetchFeesCL', err);
return of({type: RTLActions.VOID});
5 years ago
}
));
@Effect()
fetchFeeRatesCL = this.actions$.pipe(
ofType(RTLActions.FETCH_FEE_RATES_CL),
mergeMap((action: RTLActions.FetchFeeRatesCL) => {
this.store.dispatch(new RTLActions.ClearEffectErrorCl('FetchFeeRatesCL'));
return this.httpClient.get<FeeRatesCL>(this.CHILD_API_URL + environment.NETWORK_API + '/feeRates/' + action.payload);
}),
map((feeRates) => {
this.logger.info(feeRates);
return {
type: RTLActions.SET_FEE_RATES_CL,
payload: feeRates ? feeRates : {}
};
}),
catchError((err: any) => {
this.handleErrorWithoutAlert('FetchFeeRatesCL', err);
return of({type: RTLActions.VOID});
}
));
5 years ago
@Effect()
fetchBalanceCL = this.actions$.pipe(
5 years ago
ofType(RTLActions.FETCH_BALANCE_CL),
mergeMap((action: RTLActions.FetchBalanceCL) => {
this.store.dispatch(new RTLActions.ClearEffectErrorCl('FetchBalanceCL'));
5 years ago
return this.httpClient.get<BalanceCL>(this.CHILD_API_URL + environment.BALANCE_API);
}),
map((balance) => {
this.logger.info(balance);
return {
5 years ago
type: RTLActions.SET_BALANCE_CL,
payload: balance ? balance : {}
5 years ago
};
}),
catchError((err: any) => {
this.handleErrorWithoutAlert('FetchBalanceCL', err);
return of({type: RTLActions.VOID});
5 years ago
}
));
5 years ago
@Effect()
fetchLocalRemoteBalanceCL = this.actions$.pipe(
5 years ago
ofType(RTLActions.FETCH_LOCAL_REMOTE_BALANCE_CL),
mergeMap((action: RTLActions.FetchLocalRemoteBalanceCL) => {
this.store.dispatch(new RTLActions.ClearEffectErrorCl('FetchLocalRemoteBalanceCL'));
5 years ago
return this.httpClient.get<LocalRemoteBalanceCL>(this.CHILD_API_URL + environment.CHANNELS_API + '/localremotebalance');
}),
map((lrBalance) => {
this.logger.info(lrBalance);
return {
5 years ago
type: RTLActions.SET_LOCAL_REMOTE_BALANCE_CL,
payload: lrBalance ? lrBalance : {}
5 years ago
};
}),
catchError((err: any) => {
this.handleErrorWithoutAlert('FetchLocalRemoteBalanceCL', err);
return of({type: RTLActions.VOID});
5 years ago
}
));
5 years ago
@Effect()
getNewAddressCL = this.actions$.pipe(
ofType(RTLActions.GET_NEW_ADDRESS_CL),
mergeMap((action: RTLActions.GetNewAddressCL) => {
return this.httpClient.get(this.CHILD_API_URL + environment.ON_CHAIN_API + '?type=' + action.payload.addressCode)
5 years ago
.pipe(map((newAddress: any) => {
this.logger.info(newAddress);
this.store.dispatch(new RTLActions.CloseSpinner());
return {
type: RTLActions.SET_NEW_ADDRESS_CL,
payload: (newAddress && newAddress.address) ? newAddress.address : {}
5 years ago
};
}),
catchError((err: any) => {
this.handleErrorWithAlert('ERROR', 'Generate New Address Failed', this.CHILD_API_URL + environment.ON_CHAIN_API + '?type=' + action.payload.addressId, err);
return of({type: RTLActions.VOID});
}));
5 years ago
})
);
@Effect({ dispatch: false })
setNewAddressCL = this.actions$.pipe(
ofType(RTLActions.SET_NEW_ADDRESS_CL),
map((action: RTLActions.SetNewAddressCL) => {
this.logger.info(action.payload);
return action.payload;
})
);
@Effect()
peersFetchCL = this.actions$.pipe(
ofType(RTLActions.FETCH_PEERS_CL),
mergeMap((action: RTLActions.FetchPeersCL) => {
this.store.dispatch(new RTLActions.ClearEffectErrorCl('FetchPeersCL'));
return this.httpClient.get(this.CHILD_API_URL + environment.PEERS_API)
.pipe(
map((peers: any) => {
this.logger.info(peers);
return {
type: RTLActions.SET_PEERS_CL,
payload: peers ? peers : []
5 years ago
};
}),
catchError((err: any) => {
this.handleErrorWithoutAlert('FetchPeersCL', err);
return of({type: RTLActions.VOID});
5 years ago
})
);
}
));
@Effect()
saveNewPeerCL = this.actions$.pipe(
ofType(RTLActions.SAVE_NEW_PEER_CL),
withLatestFrom(this.store.select('cl')),
mergeMap(([action, clData]: [RTLActions.SaveNewPeerCL, fromCLReducers.CLState]) => {
5 years ago
return this.httpClient.post(this.CHILD_API_URL + environment.PEERS_API, { id: action.payload.id })
.pipe(
map((postRes: any) => {
this.logger.info(postRes);
this.store.dispatch(new RTLActions.CloseSpinner());
this.store.dispatch(new RTLActions.SetPeersCL((postRes && postRes.length > 0) ? postRes : []));
if(action.payload.showOpenChannelModal) {
const peerToAddChannelMessage = {
peer: postRes[0],
information: clData.information,
balance: clData.balance.totalBalance || 0
};
return {
type: RTLActions.OPEN_ALERT,
payload: { width: '50%', data: {
type: AlertTypeEnum.INFORMATION,
alertTitle: 'Peer Connected',
message: peerToAddChannelMessage,
newlyAdded: true,
component: CLOpenChannelComponent
}}
};
} else {
return {
type: RTLActions.VOID
}
}
5 years ago
}),
catchError((err: any) => {
this.handleErrorWithAlert('ERROR', 'Add Peer Failed', this.CHILD_API_URL + environment.PEERS_API, err);
return of({type: RTLActions.VOID});
5 years ago
})
);
}
));
5 years ago
@Effect()
detachPeerCL = this.actions$.pipe(
ofType(RTLActions.DETACH_PEER_CL),
mergeMap((action: RTLActions.DetachPeerCL) => {
return this.httpClient.delete(this.CHILD_API_URL + environment.PEERS_API + '/' + action.payload.id + '?force=' + action.payload.force)
.pipe(
map((postRes: any) => {
this.logger.info(postRes);
this.store.dispatch(new RTLActions.CloseSpinner());
this.store.dispatch(new RTLActions.OpenSnackBar('Peer Disconnected Successfully!'));
5 years ago
return {
type: RTLActions.REMOVE_PEER_CL,
payload: { id: action.payload.id }
};
}),
catchError((err: any) => {
this.handleErrorWithAlert('ERROR', 'Unable to Detach Peer. Try again later.', this.CHILD_API_URL + environment.PEERS_API + '/' + action.payload.id, err);
return of({type: RTLActions.VOID});
5 years ago
})
);
5 years ago
}
));
5 years ago
5 years ago
@Effect()
channelsFetchCL = this.actions$.pipe(
ofType(RTLActions.FETCH_CHANNELS_CL),
mergeMap((action: RTLActions.FetchChannelsCL) => {
this.store.dispatch(new RTLActions.ClearEffectErrorCl('FetchChannelsCL'));
return this.httpClient.get(this.CHILD_API_URL + environment.CHANNELS_API + '/listChannels')
.pipe(
map((channels: any) => {
this.logger.info(channels);
return {
type: RTLActions.SET_CHANNELS_CL,
payload: (channels && channels.length > 0) ? channels : []
};
5 years ago
},
catchError((err: any) => {
this.handleErrorWithoutAlert('FetchChannelsCL', err);
return of({type: RTLActions.VOID});
5 years ago
})
));
}
));
@Effect()
openNewChannelCL = this.actions$.pipe(
ofType(RTLActions.SAVE_NEW_CHANNEL_CL),
mergeMap((action: RTLActions.SaveNewChannelCL) => {
return this.httpClient.post(this.CHILD_API_URL + environment.CHANNELS_API, {
id: action.payload.peerId, satoshis: action.payload.satoshis, feeRate: action.payload.feeRate, announce: action.payload.announce, minconf: (action.payload.minconf) ? action.payload.minconf : null
5 years ago
})
.pipe(
map((postRes: any) => {
this.logger.info(postRes);
this.store.dispatch(new RTLActions.CloseSpinner());
this.store.dispatch(new RTLActions.OpenSnackBar('Channel Added Successfully!'));
5 years ago
return {
type: RTLActions.FETCH_CHANNELS_CL
};
}),
catchError((err: any) => {
this.handleErrorWithAlert('ERROR', 'Open Channel Failed', this.CHILD_API_URL + environment.CHANNELS_API, err);
return of({type: RTLActions.VOID});
5 years ago
})
);
}
));
@Effect()
updateChannelCL = this.actions$.pipe(
ofType(RTLActions.UPDATE_CHANNELS_CL),
mergeMap((action: RTLActions.UpdateChannelsCL) => {
return this.httpClient.post(this.CHILD_API_URL + environment.CHANNELS_API + '/setChannelFee',
{ id: action.payload.channelId, base: action.payload.baseFeeMsat, ppm: action.payload.feeRate })
.pipe(
map((postRes: any) => {
this.logger.info(postRes);
this.store.dispatch(new RTLActions.CloseSpinner());
if(action.payload.channelId === 'all') {
this.store.dispatch(new RTLActions.OpenSnackBar('All Channels Updated Successfully.'));
} else {
this.store.dispatch(new RTLActions.OpenSnackBar('Channel Updated Successfully!'));
}
5 years ago
return {
type: RTLActions.FETCH_CHANNELS_CL
};
}),
catchError((err: any) => {
this.handleErrorWithAlert('ERROR', 'Update Channel Failed', this.CHILD_API_URL + environment.CHANNELS_API, err);
return of({type: RTLActions.VOID});
5 years ago
})
);
}
));
@Effect()
closeChannelCL = this.actions$.pipe(
ofType(RTLActions.CLOSE_CHANNEL_CL),
mergeMap((action: RTLActions.CloseChannelCL) => {
const queryParam = action.payload.timeoutSec ? '?unilateralTimeout =' + action.payload.timeoutSec : '';
return this.httpClient.delete(this.CHILD_API_URL + environment.CHANNELS_API + '/' + action.payload.channelId + queryParam)
.pipe(
map((postRes: any) => {
this.logger.info(postRes);
this.store.dispatch(new RTLActions.CloseSpinner());
this.store.dispatch(new RTLActions.FetchChannelsCL());
this.store.dispatch(new RTLActions.OpenSnackBar('Channel Closed Successfully!'));
5 years ago
return {
type: RTLActions.REMOVE_CHANNEL_CL,
payload: { channelId: action.payload.channelId }
};
}),
catchError((err: any) => {
this.handleErrorWithAlert('ERROR', 'Unable to Close Channel. Try again later.', this.CHILD_API_URL + environment.CHANNELS_API, err);
return of({type: RTLActions.VOID});
5 years ago
})
);
}
));
@Effect()
paymentsFetchCL = this.actions$.pipe(
ofType(RTLActions.FETCH_PAYMENTS_CL),
mergeMap((action: RTLActions.FetchPaymentsCL) => {
this.store.dispatch(new RTLActions.ClearEffectErrorCl('FetchPaymentsCL'));
return this.httpClient.get<PaymentCL[]>(this.CHILD_API_URL + environment.PAYMENTS_API);
}),
map((payments) => {
this.logger.info(payments);
return {
type: RTLActions.SET_PAYMENTS_CL,
payload: payments ? payments : []
};
}),
catchError((err: any) => {
this.handleErrorWithoutAlert('FetchPaymentsCL', err);
return of({type: RTLActions.VOID});
}
));
@Effect()
decodePaymentCL = this.actions$.pipe(
ofType(RTLActions.DECODE_PAYMENT_CL),
mergeMap((action: RTLActions.DecodePaymentCL) => {
return this.httpClient.get(this.CHILD_API_URL + environment.PAYMENTS_API + '/' + action.payload)
.pipe(
map((decodedPayment) => {
this.logger.info(decodedPayment);
this.store.dispatch(new RTLActions.CloseSpinner());
return {
type: RTLActions.SET_DECODED_PAYMENT_CL,
payload: decodedPayment ? decodedPayment : {}
};
}),
catchError((err: any) => {
this.handleErrorWithAlert('ERROR', 'Decode Payment Failed', this.CHILD_API_URL + environment.PAYMENTS_API + '/' + action.payload, err);
return of({type: RTLActions.VOID});
})
);
})
);
@Effect({ dispatch: false })
setDecodedPaymentCL = this.actions$.pipe(
ofType(RTLActions.SET_DECODED_PAYMENT_CL),
map((action: RTLActions.SetDecodedPaymentCL) => {
this.logger.info(action.payload);
return action.payload;
})
);
@Effect()
sendPaymentCL = this.actions$.pipe(
ofType(RTLActions.SEND_PAYMENT_CL),
withLatestFrom(this.store.select('root')),
mergeMap(([action, store]: [RTLActions.SendPaymentCL, any]) => {
return this.httpClient.post(this.CHILD_API_URL + environment.PAYMENTS_API, action.payload)
.pipe(
map((sendRes: any) => {
this.logger.info(sendRes);
this.store.dispatch(new RTLActions.CloseSpinner());
if (sendRes.error) {
this.handleErrorWithAlert('ERROR', 'Send Payment Failed', this.CHILD_API_URL + environment.PAYMENTS_API, { status: sendRes.status, error: sendRes.error.message });
} else {
this.store.dispatch(new RTLActions.OpenSnackBar('Payment Sent Successfully!'));
this.store.dispatch(new RTLActions.FetchChannelsCL());
this.store.dispatch(new RTLActions.FetchBalanceCL());
this.store.dispatch(new RTLActions.FetchPaymentsCL());
return {
type: RTLActions.SET_DECODED_PAYMENT_CL,
payload: {}
};
}
}),
catchError((err: any) => {
this.handleErrorWithAlert('ERROR', 'Send Payment Failed', this.CHILD_API_URL + environment.PAYMENTS_API, err.error ? err.error : err);
return of({type: RTLActions.VOID});
})
);
})
);
@Effect()
queryRoutesFetchCL = this.actions$.pipe(
ofType(RTLActions.GET_QUERY_ROUTES_CL),
mergeMap((action: RTLActions.GetQueryRoutesCL) => {
return this.httpClient.get(this.CHILD_API_URL + environment.NETWORK_API + '/getRoute/' + action.payload.destPubkey + '/' + action.payload.amount)
.pipe(
map((qrRes: any) => {
this.logger.info(qrRes);
return {
type: RTLActions.SET_QUERY_ROUTES_CL,
payload: qrRes
};
}),
catchError((err: any) => {
this.store.dispatch(new RTLActions.SetQueryRoutesCL({ routes: [] }));
this.handleErrorWithAlert('ERROR', 'Get Query Routes Failed', this.CHILD_API_URL + environment.NETWORK_API + '/getRoute/' + action.payload.destPubkey + '/' + action.payload.amount, err);
return of({type: RTLActions.VOID});
})
);
}
));
@Effect({ dispatch: false })
setQueryRoutesCL = this.actions$.pipe(
ofType(RTLActions.SET_QUERY_ROUTES_CL),
map((action: RTLActions.SetQueryRoutesCL) => {
return action.payload;
})
);
5 years ago
@Effect()
peerLookupCL = this.actions$.pipe(
ofType(RTLActions.PEER_LOOKUP_CL),
mergeMap((action: RTLActions.PeerLookupCL) => {
this.store.dispatch(new RTLActions.ClearEffectErrorCl('LookupCL'));
return this.httpClient.get(this.CHILD_API_URL + environment.NETWORK_API + '/listNode/' + action.payload)
.pipe(
map((resPeer) => {
this.logger.info(resPeer);
this.store.dispatch(new RTLActions.CloseSpinner());
return {
type: RTLActions.SET_LOOKUP_CL,
payload: resPeer
};
}),
catchError((err: any) => {
this.store.dispatch(new RTLActions.EffectErrorCl({ action: 'LookupCL', code: err.status, message: err.error.message }));
this.handleErrorWithAlert('ERROR', 'Peer Lookup Failed', this.CHILD_API_URL + environment.NETWORK_API + '/listNode/' + action.payload, err);
return of({type: RTLActions.VOID});
5 years ago
})
);
})
);
@Effect()
channelLookupCL = this.actions$.pipe(
ofType(RTLActions.CHANNEL_LOOKUP_CL),
mergeMap((action: RTLActions.ChannelLookupCL) => {
this.store.dispatch(new RTLActions.ClearEffectErrorCl('LookupCL'));
return this.httpClient.get(this.CHILD_API_URL + environment.NETWORK_API + '/listChannel/' + action.payload)
.pipe(
map((resChannel) => {
this.logger.info(resChannel);
this.store.dispatch(new RTLActions.CloseSpinner());
return {
type: RTLActions.SET_LOOKUP_CL,
payload: resChannel
};
}),
catchError((err: any) => {
this.store.dispatch(new RTLActions.EffectErrorCl({ action: 'LookupCL', code: err.status, message: err.error.message }));
this.handleErrorWithAlert('ERROR', 'Channel Lookup Failed', this.CHILD_API_URL + environment.NETWORK_API + '/listChannel/' + action.payload, err);
return of({type: RTLActions.VOID});
5 years ago
})
);
})
);
@Effect()
invoiceLookupCL = this.actions$.pipe(
ofType(RTLActions.INVOICE_LOOKUP_CL),
mergeMap((action: RTLActions.InvoiceLookupCL) => {
this.store.dispatch(new RTLActions.ClearEffectErrorCl('LookupCL'));
return this.httpClient.get(this.CHILD_API_URL + environment.INVOICES_API + '/listInvoice?label=' + action.payload)
.pipe(
map((resInvoice) => {
this.logger.info(resInvoice);
this.store.dispatch(new RTLActions.CloseSpinner());
return {
type: RTLActions.SET_LOOKUP_CL,
payload: resInvoice
};
}),
catchError((err: any) => {
this.store.dispatch(new RTLActions.EffectErrorCl({ action: 'LookupCL', code: err.status, message: err.error.message }));
this.handleErrorWithAlert('ERROR', 'Invoice Lookup Failed', this.CHILD_API_URL + environment.NETWORK_API + '/listInvoice?label=' + action.payload, err);
return of({type: RTLActions.VOID});
5 years ago
})
);
})
);
@Effect({ dispatch: false })
setLookupCL = this.actions$.pipe(
ofType(RTLActions.SET_LOOKUP_CL),
map((action: RTLActions.SetLookupCL) => {
this.logger.info(action.payload);
return action.payload;
})
);
@Effect()
fetchForwardingHistoryCL = this.actions$.pipe(
ofType(RTLActions.GET_FORWARDING_HISTORY_CL),
mergeMap((action: RTLActions.GetForwardingHistoryCL) => {
this.store.dispatch(new RTLActions.ClearEffectErrorCl('GetForwardingHistoryCL'));
// 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(this.CHILD_API_URL + environment.SWITCH_API, queryHeaders)
return this.httpClient.get(this.CHILD_API_URL + environment.CHANNELS_API + '/listForwards')
.pipe(
map((fhRes: any) => {
this.logger.info(fhRes);
return {
type: RTLActions.SET_FORWARDING_HISTORY_CL,
payload: fhRes
};
}),
catchError((err: any) => {
this.store.dispatch(new RTLActions.EffectErrorCl({ action: 'GetForwardingHistory', code: err.status, message: err.error.error }));
this.handleErrorWithAlert('ERROR', 'Get Forwarding History Failed', this.CHILD_API_URL + environment.CHANNELS_API + '/listForwards', err);
return of({type: RTLActions.VOID});
})
);
})
);
@Effect()
deleteExpiredInvoiceCL = this.actions$.pipe(
ofType(RTLActions.DELETE_EXPIRED_INVOICE_CL),
mergeMap((action: RTLActions.DeleteExpiredInvoiceCL) => {
const queryStr = (action.payload) ? '?maxexpiry=' + action.payload : '';
return this.httpClient.delete(this.CHILD_API_URL + environment.INVOICES_API + queryStr)
.pipe(
map((postRes: any) => {
this.logger.info(postRes);
this.store.dispatch(new RTLActions.CloseSpinner());
this.store.dispatch(new RTLActions.OpenSnackBar('Invoices Deleted Successfully!'));
return {
type: RTLActions.FETCH_INVOICES_CL,
payload: { num_max_invoices: 100, reversed: true }
};
}),
catchError((err: any) => {
this.handleErrorWithAlert('ERROR', 'Delete Invoice Failed', this.CHILD_API_URL + environment.INVOICES_API, err);
return of({type: RTLActions.VOID});
})
);
}
));
@Effect()
saveNewInvoiceCL = this.actions$.pipe(
ofType(RTLActions.SAVE_NEW_INVOICE_CL),
mergeMap((action: RTLActions.SaveNewInvoiceCL) => {
return this.httpClient.post(this.CHILD_API_URL + environment.INVOICES_API, {
label: action.payload.label, amount: action.payload.amount, description: action.payload.description, expiry: action.payload.expiry, private: action.payload.private
})
.pipe(
map((postRes: InvoiceCL) => {
this.logger.info(postRes);
this.store.dispatch(new RTLActions.CloseSpinner());
postRes.msatoshi = action.payload.amount;
postRes.label = action.payload.label;
postRes.expires_at = Math.round((new Date().getTime() / 1000) + action.payload.expiry);
postRes.expires_at_str = this.commonService.convertTimestampToDate(+postRes.expires_at);
postRes.description = action.payload.description;
postRes.status = 'unpaid';
this.store.dispatch(new RTLActions.OpenAlert({ data: {
invoice: postRes,
newlyAdded: false,
component: CLInvoiceInformationComponent
}}));
return {
type: RTLActions.FETCH_INVOICES_CL,
payload: { num_max_invoices: 100, reversed: true }
};
}),
catchError((err: any) => {
this.handleErrorWithAlert('ERROR', 'Add Invoice Failed', this.CHILD_API_URL + environment.INVOICES_API, err);
return of({type: RTLActions.VOID});
})
);
}
));
@Effect()
invoicesFetchCL = this.actions$.pipe(
ofType(RTLActions.FETCH_INVOICES_CL),
mergeMap((action: RTLActions.FetchInvoicesCL) => {
this.store.dispatch(new RTLActions.ClearEffectErrorCl('FetchInvoicesCL'));
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<ListInvoicesCL>(this.CHILD_API_URL + environment.INVOICES_API + '?num_max_invoices=' + num_max_invoices + '&index_offset=' + index_offset + '&reversed=' + reversed)
.pipe(map((res: ListInvoicesCL) => {
this.logger.info(res);
this.store.dispatch(new RTLActions.SetTotalInvoicesCL(res.invoices ? res.invoices.length : 0));
return {
type: RTLActions.SET_INVOICES_CL,
payload: res
};
}),
catchError((err: any) => {
this.handleErrorWithoutAlert('FetchInvoicesCL', err);
return of({type: RTLActions.VOID});
}
));
}));
@Effect()
SetChannelTransactionCL = this.actions$.pipe(
ofType(RTLActions.SET_CHANNEL_TRANSACTION_CL),
mergeMap((action: RTLActions.SetChannelTransactionCL) => {
this.store.dispatch(new RTLActions.ClearEffectErrorCl('SetChannelTransactionCL'));
return this.httpClient.post(this.CHILD_API_URL + environment.ON_CHAIN_API, action.payload)
4 years ago
.pipe(
map((postRes: any) => {
this.logger.info(postRes);
this.store.dispatch(new RTLActions.CloseSpinner());
this.store.dispatch(new RTLActions.FetchBalanceCL());
this.store.dispatch(new RTLActions.OpenSnackBar('Fund Sent Successfully.'));
return { type: RTLActions.VOID };
}),
catchError((err: any) => {
this.store.dispatch(new RTLActions.EffectErrorCl({ action: 'SetChannelTransactionCL', code: err.status, message: err.error.error }));
this.handleErrorWithAlert('ERROR', 'Sending Fund Failed', this.CHILD_API_URL + environment.ON_CHAIN_API, err);
return of({type: RTLActions.VOID});
}));
})
);
initializeRemainingData(info: any, landingPage: string) {
this.sessionService.setItem('clUnlocked', 'true');
const node_data = {
identity_pubkey: info.id,
alias: info.alias,
testnet: (info.network === 'testnet' || info.network === 'litecoin-testnet') ? true : false,
chains: info.chains,
uris: info.uris,
version: info.version,
currency_unit: 'BTC',
smaller_currency_unit: 'Sats',
numberOfPendingChannels: info.num_pending_channels
};
this.store.dispatch(new RTLActions.SetNodeData(node_data));
this.store.dispatch(new RTLActions.FetchFeesCL());
this.store.dispatch(new RTLActions.FetchChannelsCL());
this.store.dispatch(new RTLActions.FetchBalanceCL());
this.store.dispatch(new RTLActions.FetchLocalRemoteBalanceCL());
this.store.dispatch(new RTLActions.FetchFeeRatesCL('perkw'));
this.store.dispatch(new RTLActions.FetchFeeRatesCL('perkb'));
this.store.dispatch(new RTLActions.FetchPeersCL());
this.store.dispatch(new RTLActions.GetForwardingHistoryCL());
let newRoute = this.location.path();
if(newRoute.includes('/lnd/')) {
newRoute = newRoute.replace('/lnd/', '/cl/');
}
if (newRoute.includes('/login') || newRoute.includes('/error') || newRoute === '' || landingPage === 'HOME' || newRoute.includes('?access-key=')) {
newRoute = '/cl/home';
}
this.router.navigate([newRoute]);
}
handleErrorWithoutAlert(actionName: string, err: { status: number, error: any }) {
this.logger.error('ERROR IN: ' + actionName + '\n' + JSON.stringify(err));
if (err.status === 401) {
5 years ago
this.logger.info('Redirecting to Signin');
this.store.dispatch(new RTLActions.Signout());
5 years ago
} else {
this.store.dispatch(new RTLActions.EffectErrorCl({ action: actionName, code: err.status.toString(), message: err.error.error }));
}
}
handleErrorWithAlert(alerType: string, alertTitle: string, errURL: string, err: { status: number, error: any }) {
5 years ago
this.logger.error(err);
if (err.status === 401) {
5 years ago
this.logger.info('Redirecting to Signin');
this.store.dispatch(new RTLActions.Signout());
5 years ago
} else {
this.store.dispatch(new RTLActions.CloseSpinner());
this.store.dispatch(new RTLActions.OpenAlert({
data: {
type: alerType,
alertTitle: alertTitle,
message: { code: err.status, message: err.error.error, URL: errURL },
component: ErrorMessageComponent
5 years ago
}
}));
5 years ago
}
}
ngOnDestroy() {
5 years ago
this.unSubs.forEach(completeSub => {
completeSub.next();
completeSub.complete();
});
5 years ago
}
}