This commit is contained in:
Danny Harpigny 2023-10-22 17:21:39 +02:00
parent 428b042fe9
commit cf7df568c7
1 changed files with 14 additions and 6 deletions

View File

@ -1,4 +1,4 @@
const storageType = 'sessionStorage'
const storageType = 'localStorage'
var data = {}
@ -26,7 +26,7 @@ function locallyGetInstances () {
const item = window[storageType].getItem('instances')
try {
return JSON.parse(item)
} finally {
} catch (_err) {
return []
}
}
@ -47,6 +47,7 @@ async function remotelyGetInstances () {
.then((json) => Object.entries(json.instances))
.then((entries) => entries.filter(([_url, details]) => {
if (details.network_type !== 'normal') return
if (details.uptime == null) return
if (details.uptime.uptimeDay !== 100) return
return true
}))
@ -55,14 +56,21 @@ async function remotelyGetInstances () {
console.error(err)
return []
})
window[storageType].setItem('timestamp', Date.now().toString())
return instances
}
// Get local instances
data.instances = locallyGetInstances()
const remoteInstances = await remotelyGetInstances()
if (remoteInstances.length > 0) {
data.instances = remoteInstances
locallySetInstances()
// Fetch remote instances if necessary
const timestamp = +window[storageType].getItem('timestamp')
if (Date.now() > timestamp + 1_440_000 /* 1 hour */) {
const remoteInstances = await remotelyGetInstances()
if (remoteInstances.length > 0) {
data.instances = remoteInstances
locallySetInstances()
}
}
if (data.instances.length > 0) {