Merge "getInitData" method from simon/angular-universal.
This commit is contained in:
parent
30fb0bad78
commit
c0d2430a84
@ -81,18 +81,7 @@ class WebsocketHandler {
|
|||||||
if (!_blocks) {
|
if (!_blocks) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
client.send(JSON.stringify({
|
client.send(JSON.stringify(this.getInitData(_blocks)));
|
||||||
'mempoolInfo': memPool.getMempoolInfo(),
|
|
||||||
'vBytesPerSecond': memPool.getVBytesPerSecond(),
|
|
||||||
'lastDifficultyAdjustment': blocks.getLastDifficultyAdjustmentTime(),
|
|
||||||
'blocks': _blocks,
|
|
||||||
'conversions': fiatConversion.getTickers()['BTCUSD'],
|
|
||||||
'mempool-blocks': mempoolBlocks.getMempoolBlocks(),
|
|
||||||
'transactions': memPool.getLatestTransactions(),
|
|
||||||
'git-commit': backendInfo.gitCommitHash,
|
|
||||||
'hostname': backendInfo.hostname,
|
|
||||||
...this.extraInitProperties
|
|
||||||
}));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (parsedMessage.action === 'ping') {
|
if (parsedMessage.action === 'ping') {
|
||||||
@ -128,6 +117,24 @@ class WebsocketHandler {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getInitData(_blocks?: Block[]) {
|
||||||
|
if (!_blocks) {
|
||||||
|
_blocks = blocks.getBlocks();
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
'mempoolInfo': memPool.getMempoolInfo(),
|
||||||
|
'vBytesPerSecond': memPool.getVBytesPerSecond(),
|
||||||
|
'lastDifficultyAdjustment': blocks.getLastDifficultyAdjustmentTime(),
|
||||||
|
'blocks': _blocks,
|
||||||
|
'conversions': fiatConversion.getTickers()['BTCUSD'],
|
||||||
|
'mempool-blocks': mempoolBlocks.getMempoolBlocks(),
|
||||||
|
'transactions': memPool.getLatestTransactions(),
|
||||||
|
'git-commit': backendInfo.gitCommitHash,
|
||||||
|
'hostname': backendInfo.hostname,
|
||||||
|
...this.extraInitProperties
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
handleNewStatistic(stats: OptimizedStatistic) {
|
handleNewStatistic(stats: OptimizedStatistic) {
|
||||||
if (!this.wss) {
|
if (!this.wss) {
|
||||||
throw new Error('WebSocket.Server is not set');
|
throw new Error('WebSocket.Server is not set');
|
||||||
|
@ -142,6 +142,7 @@ class Server {
|
|||||||
.get(config.MEMPOOL.API_URL_PREFIX + 'fees/recommended', routes.getRecommendedFees)
|
.get(config.MEMPOOL.API_URL_PREFIX + 'fees/recommended', routes.getRecommendedFees)
|
||||||
.get(config.MEMPOOL.API_URL_PREFIX + 'fees/mempool-blocks', routes.getMempoolBlocks)
|
.get(config.MEMPOOL.API_URL_PREFIX + 'fees/mempool-blocks', routes.getMempoolBlocks)
|
||||||
.get(config.MEMPOOL.API_URL_PREFIX + 'backend-info', routes.getBackendInfo)
|
.get(config.MEMPOOL.API_URL_PREFIX + 'backend-info', routes.getBackendInfo)
|
||||||
|
.get(config.MEMPOOL.API_URL_PREFIX + 'init-data', routes.getInitData)
|
||||||
;
|
;
|
||||||
|
|
||||||
if (config.STATISTICS.ENABLED && config.DATABASE.ENABLED) {
|
if (config.STATISTICS.ENABLED && config.DATABASE.ENABLED) {
|
||||||
|
@ -6,6 +6,7 @@ import backendInfo from './api/backend-info';
|
|||||||
import mempoolBlocks from './api/mempool-blocks';
|
import mempoolBlocks from './api/mempool-blocks';
|
||||||
import mempool from './api/mempool';
|
import mempool from './api/mempool';
|
||||||
import bisq from './api/bisq/bisq';
|
import bisq from './api/bisq/bisq';
|
||||||
|
import websocketHandler from './api/websocket-handler';
|
||||||
import bisqMarket from './api/bisq/markets-api';
|
import bisqMarket from './api/bisq/markets-api';
|
||||||
import { OptimizedStatistic, RequiredSpec } from './interfaces';
|
import { OptimizedStatistic, RequiredSpec } from './interfaces';
|
||||||
import { MarketsApiError } from './api/bisq/interfaces';
|
import { MarketsApiError } from './api/bisq/interfaces';
|
||||||
@ -63,6 +64,15 @@ class Routes {
|
|||||||
res.json(this.cache['1y']);
|
res.json(this.cache['1y']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public getInitData(req: Request, res: Response) {
|
||||||
|
try {
|
||||||
|
const result = websocketHandler.getInitData();
|
||||||
|
res.json(result);
|
||||||
|
} catch (e) {
|
||||||
|
res.status(500).send(e.message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public async getRecommendedFees(req: Request, res: Response) {
|
public async getRecommendedFees(req: Request, res: Response) {
|
||||||
if (!mempool.isInSync()) {
|
if (!mempool.isInSync()) {
|
||||||
res.statusCode = 503;
|
res.statusCode = 503;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user