mirror of
https://github.com/mempool/mempool.git
synced 2024-11-20 10:21:52 +01:00
241 lines
8.2 KiB
JavaScript
241 lines
8.2 KiB
JavaScript
var https = require('https');
|
|
var fs = require('fs');
|
|
var crypto = require('crypto');
|
|
|
|
const CONFIG_FILE_NAME = 'mempool-frontend-config.json';
|
|
let configContent = {};
|
|
|
|
var PATH;
|
|
if (process.argv[2]) {
|
|
PATH = process.argv[2];
|
|
}
|
|
|
|
if (!PATH) {
|
|
throw new Error('Resource path argument is not set');
|
|
}
|
|
|
|
try {
|
|
const rawConfig = fs.readFileSync(CONFIG_FILE_NAME);
|
|
configContent = JSON.parse(rawConfig);
|
|
console.log(`${CONFIG_FILE_NAME} file found, using provided config`);
|
|
} catch (e) {
|
|
if (e.code !== 'ENOENT') {
|
|
throw new Error(e);
|
|
} else {
|
|
console.log(`${CONFIG_FILE_NAME} file not found, using default config`);
|
|
}
|
|
}
|
|
|
|
function download(filename, url) {
|
|
https.get(url, (response) => {
|
|
if (response.statusCode < 200 || response.statusCode > 299) {
|
|
throw new Error('HTTP Error ' + response.statusCode + ' while fetching \'' + filename + '\'');
|
|
}
|
|
response.pipe(fs.createWriteStream(filename));
|
|
})
|
|
.on('error', function(e) {
|
|
throw new Error(e);
|
|
});
|
|
}
|
|
|
|
function getLocalHash(filePath) {
|
|
const size = fs.statSync(filePath);
|
|
const buffer = fs.readFileSync(filePath);
|
|
const bufferWithHeader = Buffer.concat([Buffer.from('blob '), Buffer.from(`${size.size}`), Buffer.from('\0'), buffer]);
|
|
return crypto.createHash('sha1').update(bufferWithHeader).digest('hex');
|
|
}
|
|
|
|
function downloadMiningPoolLogos$() {
|
|
return new Promise((resolve, reject) => {
|
|
console.log('Checking if mining pool logos needs downloading or updating...');
|
|
const options = {
|
|
host: 'api.github.com',
|
|
path: '/repos/mempool/mining-pool-logos/contents/',
|
|
method: 'GET',
|
|
headers: {'user-agent': 'node.js'}
|
|
};
|
|
|
|
https.get(options, (response) => {
|
|
const chunks_of_data = [];
|
|
|
|
response.on('data', (fragments) => {
|
|
chunks_of_data.push(fragments);
|
|
});
|
|
|
|
response.on('end', () => {
|
|
const response_body = Buffer.concat(chunks_of_data);
|
|
try {
|
|
const poolLogos = JSON.parse(response_body.toString());
|
|
if (poolLogos.message) {
|
|
reject(poolLogos.message);
|
|
}
|
|
let downloadedCount = 0;
|
|
for (const poolLogo of poolLogos) {
|
|
const filePath = `${PATH}/mining-pools/${poolLogo.name}`;
|
|
if (fs.existsSync(filePath)) {
|
|
const localHash = getLocalHash(filePath);
|
|
if (localHash !== poolLogo.sha) {
|
|
console.log(`${poolLogo.name} is different on the remote, downloading...`);
|
|
download(filePath, poolLogo.download_url);
|
|
downloadedCount++;
|
|
}
|
|
} else {
|
|
console.log(`${poolLogo.name} is missing, downloading...`);
|
|
download(filePath, poolLogo.download_url);
|
|
downloadedCount++;
|
|
}
|
|
}
|
|
console.log(`Downloaded ${downloadedCount} and skipped ${poolLogos.length - downloadedCount} existing mining pool logos`);
|
|
resolve();
|
|
} catch (e) {
|
|
reject(`Unable to download mining pool logos. Trying again at next restart. Reason: ${e instanceof Error ? e.message : e}`);
|
|
}
|
|
});
|
|
|
|
response.on('error', (error) => {
|
|
reject(error);
|
|
});
|
|
});
|
|
});
|
|
}
|
|
|
|
function downloadPromoVideoSubtiles$() {
|
|
return new Promise((resolve, reject) => {
|
|
console.log('Checking if promo video subtitles needs downloading or updating...');
|
|
const options = {
|
|
host: 'api.github.com',
|
|
path: '/repos/mempool/mempool-promo/contents/subtitles',
|
|
method: 'GET',
|
|
headers: {'user-agent': 'node.js'}
|
|
};
|
|
|
|
https.get(options, (response) => {
|
|
const chunks_of_data = [];
|
|
|
|
response.on('data', (fragments) => {
|
|
chunks_of_data.push(fragments);
|
|
});
|
|
|
|
response.on('end', () => {
|
|
const response_body = Buffer.concat(chunks_of_data);
|
|
try {
|
|
const videoLanguages = JSON.parse(response_body.toString());
|
|
if (videoLanguages.message) {
|
|
reject(videoLanguages.message);
|
|
}
|
|
let downloadedCount = 0;
|
|
for (const language of videoLanguages) {
|
|
const filePath = `${PATH}/promo-video/${language.name}`;
|
|
if (fs.existsSync(filePath)) {
|
|
const localHash = getLocalHash(filePath);
|
|
if (localHash !== language.sha) {
|
|
console.log(`${language.name} is different on the remote, updating`);
|
|
download(filePath, language.download_url);
|
|
downloadedCount++;
|
|
}
|
|
} else {
|
|
console.log(`${language.name} is missing, downloading`);
|
|
download(filePath, language.download_url);
|
|
downloadedCount++;
|
|
}
|
|
}
|
|
console.log(`Downloaded ${downloadedCount} and skipped ${videoLanguages.length - downloadedCount} existing video subtitles`);
|
|
resolve();
|
|
} catch (e) {
|
|
reject(`Unable to download video subtitles. Trying again at next restart. Reason: ${e instanceof Error ? e.message : e}`);
|
|
}
|
|
});
|
|
|
|
response.on('error', (error) => {
|
|
reject(error);
|
|
});
|
|
});
|
|
});
|
|
}
|
|
|
|
function downloadPromoVideo$() {
|
|
return new Promise((resolve, reject) => {
|
|
console.log('Checking if promo video needs downloading or updating...');
|
|
const options = {
|
|
host: 'api.github.com',
|
|
path: '/repos/mempool/mempool-promo/contents',
|
|
method: 'GET',
|
|
headers: {'user-agent': 'node.js'}
|
|
};
|
|
|
|
https.get(options, (response) => {
|
|
const chunks_of_data = [];
|
|
|
|
response.on('data', (fragments) => {
|
|
chunks_of_data.push(fragments);
|
|
});
|
|
|
|
response.on('end', () => {
|
|
const response_body = Buffer.concat(chunks_of_data);
|
|
try {
|
|
const contents = JSON.parse(response_body.toString());
|
|
if (contents.message) {
|
|
reject(contents.message);
|
|
}
|
|
for (const item of contents) {
|
|
if (item.name !== 'promo.mp4') {
|
|
continue;
|
|
}
|
|
const filePath = `${PATH}/promo-video/mempool-promo.mp4`;
|
|
if (fs.existsSync(filePath)) {
|
|
const localHash = getLocalHash(filePath);
|
|
if (localHash !== item.sha) {
|
|
console.log(`mempool-promo.mp4 is different on the remote, updating`);
|
|
download(filePath, item.download_url);
|
|
console.log('mempool-promo.mp4 downloaded.');
|
|
} else {
|
|
console.log(`mempool-promo.mp4 is already up to date. Skipping.`);
|
|
}
|
|
} else {
|
|
console.log(`mempool-promo.mp4 is missing, downloading`);
|
|
download(filePath, item.download_url);
|
|
}
|
|
}
|
|
resolve();
|
|
} catch (e) {
|
|
reject(`Unable to download video. Trying again at next restart. Reason: ${e instanceof Error ? e.message : e}`);
|
|
}
|
|
});
|
|
|
|
response.on('error', (error) => {
|
|
reject(error);
|
|
});
|
|
});
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
let assetsJsonUrl = 'https://raw.githubusercontent.com/mempool/asset_registry_db/master/index.json';
|
|
let assetsMinimalJsonUrl = 'https://raw.githubusercontent.com/mempool/asset_registry_db/master/index.minimal.json';
|
|
|
|
if (configContent.BASE_MODULE && configContent.BASE_MODULE === 'liquid') {
|
|
assetsJsonUrl = 'https://raw.githubusercontent.com/Blockstream/asset_registry_db/master/index.json';
|
|
assetsMinimalJsonUrl = 'https://raw.githubusercontent.com/Blockstream/asset_registry_db/master/index.minimal.json';
|
|
}
|
|
|
|
const testnetAssetsJsonUrl = 'https://raw.githubusercontent.com/Blockstream/asset_registry_testnet_db/master/index.json';
|
|
const testnetAssetsMinimalJsonUrl = 'https://raw.githubusercontent.com/Blockstream/asset_registry_testnet_db/master/index.minimal.json';
|
|
|
|
console.log('Downloading assets');
|
|
download(PATH + 'assets.json', assetsJsonUrl);
|
|
console.log('Downloading assets minimal');
|
|
download(PATH + 'assets.minimal.json', assetsMinimalJsonUrl);
|
|
console.log('Downloading testnet assets');
|
|
download(PATH + 'assets-testnet.json', testnetAssetsJsonUrl);
|
|
console.log('Downloading testnet assets minimal');
|
|
download(PATH + 'assets-testnet.minimal.json', testnetAssetsMinimalJsonUrl);
|
|
|
|
downloadMiningPoolLogos$()
|
|
.then(() => downloadPromoVideoSubtiles$())
|
|
.then(() => downloadPromoVideo$())
|
|
.catch((error) => {
|
|
throw new Error(error);
|
|
});
|