Proxy donation requests to mempool.space when BTCPay Sponsors is disabled.

This commit is contained in:
softsimon
2020-10-12 10:50:10 +07:00
parent 7673bf13b9
commit e37a9de71d
3 changed files with 9 additions and 7 deletions

View File

@@ -7,6 +7,7 @@ import * as http from 'http';
import * as https from 'https';
import * as WebSocket from 'ws';
import * as cluster from 'cluster';
import * as request from 'request';
import { checkDbConnection } from './database';
import routes from './routes';
@@ -174,6 +175,11 @@ class Server {
.post(config.API_ENDPOINT + 'donations', routes.createDonationRequest.bind(routes))
.post(config.API_ENDPOINT + 'donations-webhook', routes.donationWebhook.bind(routes))
;
} else {
this.app
.get(config.API_ENDPOINT + 'donations', (req, res) => {
req.pipe(request('http://mempool.space/api/v1/donations')).pipe(res);
});
}
}
}