2019-10-17 19:52:56 +00:00
|
|
|
/*
|
|
|
|
Onionr - Private P2P Communication
|
|
|
|
|
|
|
|
Checks if the api server is still online
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>
|
|
|
|
*/
|
2019-10-16 22:32:47 +00:00
|
|
|
apiOnline = true
|
|
|
|
async function doPing(){
|
|
|
|
out = setTimeout(function(){
|
|
|
|
if (apiOnline){
|
|
|
|
PNotify.notice('Connection lost with API server')
|
|
|
|
}
|
|
|
|
apiOnline = false
|
2020-08-21 14:57:28 +00:00
|
|
|
}, 10000)
|
2019-10-16 22:32:47 +00:00
|
|
|
return await fetch('/ping', {
|
|
|
|
headers: {
|
|
|
|
"token": webpass
|
|
|
|
}})
|
|
|
|
.then((resp) => resp.text()) // Transform the data into text
|
|
|
|
.then(function(resp) {
|
|
|
|
if (!apiOnline){PNotify.success('API server connection reestablished')}
|
|
|
|
apiOnline = true
|
|
|
|
clearTimeout(out)
|
|
|
|
return resp
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
let pingCheck = async function(){
|
2020-03-24 05:21:13 +00:00
|
|
|
if (document.hidden){return}
|
2019-10-16 22:32:47 +00:00
|
|
|
result = await doPing()
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
pingCheckInterval = setInterval(function(){pingCheck()}, 3000)
|