mirror of
https://github.com/apotdevin/thunderhub.git
synced 2025-02-23 06:35:05 +01:00
Feat/balancing (#1)
* feat(balancing): add get route and pay via route * chore(parse): check if parsing possible
This commit is contained in:
parent
c3e158427b
commit
cdbea201f2
7 changed files with 102 additions and 2 deletions
|
@ -2,10 +2,12 @@ import { parsePayment } from './parsePayment';
|
||||||
import { pay } from './pay';
|
import { pay } from './pay';
|
||||||
import { createInvoice } from './createInvoice';
|
import { createInvoice } from './createInvoice';
|
||||||
import { decodeRequest } from './decode';
|
import { decodeRequest } from './decode';
|
||||||
|
import { payViaRoute } from './payViaRoute';
|
||||||
|
|
||||||
export const invoices = {
|
export const invoices = {
|
||||||
parsePayment,
|
parsePayment,
|
||||||
pay,
|
pay,
|
||||||
createInvoice,
|
createInvoice,
|
||||||
decodeRequest,
|
decodeRequest,
|
||||||
|
payViaRoute,
|
||||||
};
|
};
|
||||||
|
|
43
src/schemas/mutations/invoices/payViaRoute.ts
Normal file
43
src/schemas/mutations/invoices/payViaRoute.ts
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
import { GraphQLNonNull, GraphQLBoolean, GraphQLString } from 'graphql';
|
||||||
|
import { payViaRoutes, createInvoice } from 'ln-service';
|
||||||
|
import { logger } from '../../../helpers/logger';
|
||||||
|
import { requestLimiter } from '../../../helpers/rateLimiter';
|
||||||
|
import { getAuthLnd, getErrorMsg } from '../../../helpers/helpers';
|
||||||
|
import { AuthType } from '../../../schemaTypes/Auth';
|
||||||
|
|
||||||
|
export const payViaRoute = {
|
||||||
|
type: GraphQLBoolean,
|
||||||
|
args: {
|
||||||
|
auth: { type: new GraphQLNonNull(AuthType) },
|
||||||
|
route: { type: new GraphQLNonNull(GraphQLString) },
|
||||||
|
},
|
||||||
|
resolve: async (root: any, params: any, context: any) => {
|
||||||
|
await requestLimiter(context.ip, 'payViaRoute');
|
||||||
|
|
||||||
|
const lnd = getAuthLnd(params.auth);
|
||||||
|
|
||||||
|
let route;
|
||||||
|
try {
|
||||||
|
route = JSON.parse(params.route);
|
||||||
|
} catch (error) {
|
||||||
|
logger.error('Corrupt route json: %o', error);
|
||||||
|
throw new Error('Corrupt Route JSON');
|
||||||
|
}
|
||||||
|
|
||||||
|
const { id } = await createInvoice({
|
||||||
|
lnd,
|
||||||
|
tokens: params.tokens,
|
||||||
|
description: 'Balancing Channel',
|
||||||
|
}).catch((error: any) => {
|
||||||
|
logger.error('Error getting invoice: %o', error);
|
||||||
|
throw new Error(getErrorMsg(error));
|
||||||
|
});
|
||||||
|
|
||||||
|
await payViaRoutes({ lnd, routes: [route], id }).catch((error: any) => {
|
||||||
|
logger.error('Error making payment: %o', error);
|
||||||
|
throw new Error(getErrorMsg(error));
|
||||||
|
});
|
||||||
|
|
||||||
|
return true;
|
||||||
|
},
|
||||||
|
};
|
|
@ -1,4 +1,4 @@
|
||||||
import { GraphQLList, GraphQLNonNull } from 'graphql';
|
import { GraphQLList, GraphQLNonNull, GraphQLBoolean } from 'graphql';
|
||||||
import { getChannels as getLnChannels, getNode } from 'ln-service';
|
import { getChannels as getLnChannels, getNode } from 'ln-service';
|
||||||
import { logger } from '../../../helpers/logger';
|
import { logger } from '../../../helpers/logger';
|
||||||
import { ChannelType } from '../../../schemaTypes/query/channels/channels';
|
import { ChannelType } from '../../../schemaTypes/query/channels/channels';
|
||||||
|
@ -38,7 +38,12 @@ interface ChannelProps {
|
||||||
|
|
||||||
export const getChannels = {
|
export const getChannels = {
|
||||||
type: new GraphQLList(ChannelType),
|
type: new GraphQLList(ChannelType),
|
||||||
args: { auth: { type: new GraphQLNonNull(AuthType) } },
|
args: {
|
||||||
|
auth: {
|
||||||
|
type: new GraphQLNonNull(AuthType),
|
||||||
|
},
|
||||||
|
active: { type: GraphQLBoolean },
|
||||||
|
},
|
||||||
resolve: async (root: any, params: any, context: any) => {
|
resolve: async (root: any, params: any, context: any) => {
|
||||||
await requestLimiter(context.ip, 'channels');
|
await requestLimiter(context.ip, 'channels');
|
||||||
|
|
||||||
|
@ -47,6 +52,7 @@ export const getChannels = {
|
||||||
try {
|
try {
|
||||||
const channelList: ChannelListProps = await getLnChannels({
|
const channelList: ChannelListProps = await getLnChannels({
|
||||||
lnd,
|
lnd,
|
||||||
|
is_active: params.active,
|
||||||
});
|
});
|
||||||
|
|
||||||
const getChannelList = () =>
|
const getChannelList = () =>
|
||||||
|
|
|
@ -5,6 +5,7 @@ import { dataQueries } from './data';
|
||||||
import { reportQueries } from './report';
|
import { reportQueries } from './report';
|
||||||
import { flowQueries } from './flow';
|
import { flowQueries } from './flow';
|
||||||
import { backupQueries } from './backup';
|
import { backupQueries } from './backup';
|
||||||
|
import { routeQueries } from './route';
|
||||||
|
|
||||||
export const query = {
|
export const query = {
|
||||||
...channelQueries,
|
...channelQueries,
|
||||||
|
@ -14,4 +15,5 @@ export const query = {
|
||||||
...reportQueries,
|
...reportQueries,
|
||||||
...flowQueries,
|
...flowQueries,
|
||||||
...backupQueries,
|
...backupQueries,
|
||||||
|
...routeQueries,
|
||||||
};
|
};
|
||||||
|
|
40
src/schemas/query/route/getRoutes.ts
Normal file
40
src/schemas/query/route/getRoutes.ts
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
import { GraphQLNonNull, GraphQLString, GraphQLInt } from 'graphql';
|
||||||
|
import { getRouteToDestination, getWalletInfo } from 'ln-service';
|
||||||
|
import { logger } from '../../../helpers/logger';
|
||||||
|
import { requestLimiter } from '../../../helpers/rateLimiter';
|
||||||
|
import { getAuthLnd, getErrorMsg } from '../../../helpers/helpers';
|
||||||
|
import { AuthType } from '../../../schemaTypes/Auth';
|
||||||
|
|
||||||
|
export const getRoutes = {
|
||||||
|
type: GraphQLString,
|
||||||
|
args: {
|
||||||
|
auth: { type: new GraphQLNonNull(AuthType) },
|
||||||
|
outgoing: { type: new GraphQLNonNull(GraphQLString) },
|
||||||
|
incoming: { type: new GraphQLNonNull(GraphQLString) },
|
||||||
|
tokens: { type: new GraphQLNonNull(GraphQLInt) },
|
||||||
|
},
|
||||||
|
resolve: async (root: any, params: any, context: any) => {
|
||||||
|
await requestLimiter(context.ip, 'getRoutes');
|
||||||
|
|
||||||
|
const lnd = getAuthLnd(params.auth);
|
||||||
|
|
||||||
|
const { public_key } = await getWalletInfo({ lnd });
|
||||||
|
|
||||||
|
const { route } = await getRouteToDestination({
|
||||||
|
lnd,
|
||||||
|
outgoing_channel: params.outgoing,
|
||||||
|
incoming_peer: params.incoming,
|
||||||
|
destination: public_key,
|
||||||
|
tokens: params.tokens,
|
||||||
|
}).catch((error: any) => {
|
||||||
|
logger.error('Error getting routes: %o', error);
|
||||||
|
throw new Error(getErrorMsg(error));
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!route) {
|
||||||
|
throw new Error('No route found.');
|
||||||
|
}
|
||||||
|
|
||||||
|
return JSON.stringify(route);
|
||||||
|
},
|
||||||
|
};
|
5
src/schemas/query/route/index.ts
Normal file
5
src/schemas/query/route/index.ts
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
import { getRoutes } from './getRoutes';
|
||||||
|
|
||||||
|
export const routeQueries = {
|
||||||
|
getRoutes,
|
||||||
|
};
|
|
@ -38,4 +38,6 @@ export const RateConfig: RateConfigProps = {
|
||||||
recoverFunds: { max: 3, window: '1s' },
|
recoverFunds: { max: 3, window: '1s' },
|
||||||
updateFees: { max: 3, window: '1s' },
|
updateFees: { max: 3, window: '1s' },
|
||||||
chainTransactions: { max: 3, window: '1s' },
|
chainTransactions: { max: 3, window: '1s' },
|
||||||
|
getRoutes: { max: 3, window: '1s' },
|
||||||
|
payViaRoute: { max: 3, window: '1s' },
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue