public-gateway-cacher/app.js

56 lines
1.7 KiB
JavaScript
Raw Normal View History

2017-09-27 19:52:43 +00:00
const hashToTest = 'Qmaisz6NMhDB51cCvNWa1GMS7LU1pAxdF4Ld6Ft9kZEP2a'
const hashString = 'Hello from IPFS Gateway Checker'
const $results = document.querySelector('#results')
2019-03-03 02:31:03 +00:00
function returnHtmlLink (gateway) {
let gatewayTitle = gateway.split(hashToTest)[0]
return '<a title="' + gatewayTitle + '" href="' + gateway + '">' + gateway + '</a>'
}
2017-09-27 19:52:43 +00:00
function addNode (gateway, online, title) {
2019-03-01 23:21:35 +00:00
const para = document.createElement('div')
let node
if (online) {
node = document.createElement('strong')
2019-03-03 02:31:03 +00:00
node.innerHTML = '✅ - Online - ' + returnHtmlLink(gateway)
2019-03-01 23:21:35 +00:00
} else {
node = document.createElement('div')
node.innerText = '❌ - Offline - ' + gateway
}
node.setAttribute('title', title)
para.appendChild(node)
$results.appendChild(para)
2017-09-27 19:52:43 +00:00
}
function updateStats (total, checked) {
2019-03-01 23:21:35 +00:00
document.getElementById('stats').innerText = checked + '/' + total + ' gateways checked'
2017-09-27 19:52:43 +00:00
}
function checkGateways (gateways) {
const total = gateways.length
let checked = 0
gateways.forEach((gateway) => {
const gatewayAndHash = gateway.replace(':hash', hashToTest)
// opt-out from gateway redirects done by browser extension
const testUrl = gatewayAndHash + '#x-ipfs-companion-no-redirect'
fetch(testUrl)
2017-09-27 19:52:43 +00:00
.then(res => res.text())
.then((text) => {
const matched = text.trim() === hashString.trim()
addNode(gatewayAndHash, matched, matched ? 'All good' : 'Output did not match expected output')
checked++
updateStats(total, checked)
}).catch((err) => {
window.err = err
addNode(gatewayAndHash, false, err)
checked++
updateStats(total, checked)
})
})
}
fetch('./gateways.json')
.then(res => res.json())
.then(gateways => checkGateways(gateways))