mempool/lightning-backend/src/api/explorer/general.routes.ts

44 lines
1.3 KiB
TypeScript
Raw Normal View History

2022-05-09 18:21:42 +04:00
import config from '../../config';
import { Express, Request, Response } from 'express';
import nodesApi from './nodes.api';
import channelsApi from './channels.api';
2022-07-01 16:50:53 +02:00
import statisticsApi from './statistics.api';
2022-05-09 18:21:42 +04:00
class GeneralRoutes {
constructor() { }
public initRoutes(app: Express) {
app
.get(config.MEMPOOL.API_URL_PREFIX + 'search', this.$searchNodesAndChannels)
2022-07-01 16:50:53 +02:00
.get(config.MEMPOOL.API_URL_PREFIX + 'statistics', this.$getStatistics)
2022-05-09 18:21:42 +04:00
;
}
private async $searchNodesAndChannels(req: Request, res: Response) {
if (typeof req.query.searchText !== 'string') {
res.status(501).send('Missing parameter: searchText');
return;
}
try {
const nodes = await nodesApi.$searchNodeByPublicKeyOrAlias(req.query.searchText);
const channels = await channelsApi.$searchChannelsById(req.query.searchText);
res.json({
nodes: nodes,
channels: channels,
});
} catch (e) {
res.status(500).send(e instanceof Error ? e.message : e);
}
}
2022-07-01 16:50:53 +02:00
private async $getStatistics(req: Request, res: Response) {
try {
const statistics = await statisticsApi.$getStatistics();
res.json(statistics);
} catch (e) {
res.status(500).send(e instanceof Error ? e.message : e);
}
}
2022-05-09 18:21:42 +04:00
}
export default new GeneralRoutes();