clear stats interval on shutdown button, remove deprecated sync httpget

This commit is contained in:
Kevin Froman 2020-08-23 05:17:15 -05:00
parent 02fde0ad70
commit b66e1d852e
3 changed files with 10 additions and 14 deletions

View File

@ -25,6 +25,8 @@ totalRec = document.getElementById('totalRec')
securityLevel = document.getElementById('securityLevel')
sec_description_str = 'unknown'
statsInterval = null
function showSecStatNotice(){
var secWarnEls = document.getElementsByClassName('secRequestNotice')
for (el = 0; el < secWarnEls.length; el++){
@ -143,7 +145,7 @@ document.addEventListener("visibilitychange", function() {
})
getStats()
setInterval(function(){getStats()}, 1000)
statsInterval = setInterval(function(){getStats()}, 1000)

View File

@ -65,18 +65,7 @@ function arrayContains(needle, arrhaystack) {
return (arrhaystack.indexOf(needle) > -1);
}
function httpGet(theUrl) {
var xmlHttp = new XMLHttpRequest()
xmlHttp.open( "GET", theUrl, false ) // false for synchronous request
xmlHttp.setRequestHeader('token', webpass)
xmlHttp.send( null )
if (xmlHttp.status == 200){
return xmlHttp.responseText
}
else{
return ""
}
}
function overlay(overlayID) {
el = document.getElementById(overlayID)
el.style.visibility = (el.style.visibility == "visible") ? "hidden" : "visible"

View File

@ -23,8 +23,13 @@ restartBtn = document.getElementById('restartNode')
shutdownBtn.onclick = function(){
if (! nowebpass){
if (confirm("Really shutdown Onionr?")){
httpGet('/shutdownclean')
fetch('/shutdownclean', {
method: 'GET',
headers: {
"token": webpass
}})
overlay('shutdownNotice')
clearInterval(statsInterval)
}
}
}