2019-02-02 03:49:11 +00:00
|
|
|
/*
|
2019-06-14 07:05:58 +00:00
|
|
|
Onionr - Private P2P Communication
|
2019-02-02 03:49:11 +00:00
|
|
|
|
|
|
|
This file loads stats to show on the main node web page
|
|
|
|
|
|
|
|
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/>
|
|
|
|
*/
|
|
|
|
uptimeDisplay = document.getElementById('uptime')
|
|
|
|
connectedDisplay = document.getElementById('connectedNodes')
|
|
|
|
storedBlockDisplay = document.getElementById('storedBlocks')
|
|
|
|
queuedBlockDisplay = document.getElementById('blockQueue')
|
2019-02-14 23:48:41 +00:00
|
|
|
lastIncoming = document.getElementById('lastIncoming')
|
2019-06-16 22:34:43 +00:00
|
|
|
totalRec = document.getElementById('totalRec')
|
2019-06-19 06:57:13 +00:00
|
|
|
securityLevel = document.getElementById('securityLevel')
|
|
|
|
sec_description_str = 'unknown'
|
|
|
|
|
2020-08-23 10:17:15 +00:00
|
|
|
statsInterval = null
|
|
|
|
|
2019-06-19 06:57:13 +00:00
|
|
|
function showSecStatNotice(){
|
|
|
|
var secWarnEls = document.getElementsByClassName('secRequestNotice')
|
|
|
|
for (el = 0; el < secWarnEls.length; el++){
|
|
|
|
secWarnEls[el].style.display = 'block'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-09 04:17:29 +00:00
|
|
|
function seconds2time (seconds) {
|
|
|
|
//func from https://stackoverflow.com/a/7579799/2465421 by https://stackoverflow.com/users/14555/jottos
|
|
|
|
var hours = Math.floor(seconds / 3600)
|
|
|
|
var minutes = Math.floor((seconds - (hours * 3600)) / 60)
|
|
|
|
var seconds = seconds - (hours * 3600) - (minutes * 60)
|
|
|
|
var time = ""
|
|
|
|
|
|
|
|
if (hours != 0) {
|
|
|
|
time = hours+":"
|
|
|
|
}
|
|
|
|
if (minutes != 0 || time !== "") {
|
|
|
|
minutes = (minutes < 10 && time !== "") ? "0"+minutes : String(minutes)
|
|
|
|
time += minutes+":"
|
|
|
|
}
|
|
|
|
if (time === "") {
|
|
|
|
time = seconds+"s"
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
time += (seconds < 10) ? "0"+seconds : String(seconds)
|
|
|
|
}
|
|
|
|
return time
|
|
|
|
}
|
|
|
|
|
2019-06-19 06:57:13 +00:00
|
|
|
|
2020-03-20 08:46:33 +00:00
|
|
|
fetch('/config/get/general.security_level', {
|
|
|
|
headers: {
|
|
|
|
"token": webpass
|
|
|
|
}})
|
|
|
|
.then((resp) => resp.text()) // Transform the data into text
|
|
|
|
.then(function(resp) {
|
|
|
|
switch(resp){
|
|
|
|
case "0":
|
|
|
|
sec_description_str = 'normal'
|
|
|
|
break;
|
|
|
|
case "1":
|
|
|
|
sec_description_str = 'high'
|
|
|
|
break;
|
|
|
|
case "2":
|
|
|
|
sec_description_str = 'very high'
|
|
|
|
break;
|
|
|
|
case "3":
|
|
|
|
sec_description_str = 'extreme'
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (sec_description_str !== 'normal'){
|
|
|
|
showSecStatNotice()
|
|
|
|
}
|
|
|
|
})
|
2019-02-02 03:49:11 +00:00
|
|
|
|
2020-03-20 08:46:33 +00:00
|
|
|
var getStats = function(){
|
2020-03-23 05:00:35 +00:00
|
|
|
if (document.hidden){
|
2020-03-23 03:04:06 +00:00
|
|
|
console.debug('skipping stats since no window focus')
|
|
|
|
return
|
|
|
|
}
|
2020-03-20 08:46:33 +00:00
|
|
|
fetch('/getstats', {
|
|
|
|
headers: {
|
|
|
|
"token": webpass
|
|
|
|
}})
|
|
|
|
.then((resp) => resp.json())
|
|
|
|
.then(function(stats) {
|
|
|
|
uptimeDisplay.innerText = seconds2time(stats['uptime'])
|
|
|
|
connectedNodes = stats['connectedNodes'].split('\n')
|
|
|
|
connectedDisplay.innerText = ''
|
|
|
|
for (x = 0; x < connectedNodes.length; x++){
|
|
|
|
if (! connectedDisplay.innerText.includes(connectedNodes[x])){
|
|
|
|
connectedDisplay.innerText += '🧅 ' + connectedNodes[x] + '\n'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
storedBlockDisplay.innerText = stats['blockCount']
|
|
|
|
queuedBlockDisplay.innerText = stats['blockQueueCount']
|
|
|
|
document.getElementById('threads').innerText = stats['threads']
|
2020-03-20 23:39:26 +00:00
|
|
|
document.getElementById('ramPercent').innerText = (stats['ramPercent']).toFixed(2) + '%'
|
2020-03-24 08:18:05 +00:00
|
|
|
document.getElementById('fileDescriptors').innerText = stats['fd']
|
|
|
|
document.getElementById('diskUsage').innerText = stats['diskUsage']
|
2020-03-20 08:46:33 +00:00
|
|
|
securityLevel.innerText = sec_description_str
|
|
|
|
fetch('/hitcount', {
|
|
|
|
headers: {
|
|
|
|
"token": webpass
|
|
|
|
}})
|
|
|
|
.then((resp) => resp.text())
|
2020-08-25 20:02:13 +00:00
|
|
|
.then(function(resp) {
|
|
|
|
totalRec.innerText = resp
|
2020-03-20 08:46:33 +00:00
|
|
|
})
|
|
|
|
fetch('/lastconnect', {
|
|
|
|
headers: {
|
|
|
|
"token": webpass
|
|
|
|
}})
|
|
|
|
.then((resp) => resp.text())
|
|
|
|
.then(function(conn) {
|
|
|
|
var lastConnect = conn
|
|
|
|
if (lastConnect > 0){
|
|
|
|
var humanDate = new Date(0)
|
|
|
|
humanDate.setUTCSeconds(conn)
|
|
|
|
humanDate = humanDate.toString()
|
|
|
|
lastConnect = humanDate.substring(0, humanDate.indexOf('('));
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
lastConnect = 'None since start'
|
|
|
|
}
|
|
|
|
lastIncoming.innerText = lastConnect
|
|
|
|
})
|
|
|
|
})
|
2019-02-02 03:49:11 +00:00
|
|
|
}
|
2020-03-20 08:46:33 +00:00
|
|
|
|
2020-04-05 08:52:40 +00:00
|
|
|
document.addEventListener("visibilitychange", function() {
|
|
|
|
if (document.visibilityState === 'visible') {
|
|
|
|
getStats()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2019-08-06 05:49:31 +00:00
|
|
|
getStats()
|
2020-08-23 10:17:15 +00:00
|
|
|
statsInterval = setInterval(function(){getStats()}, 1000)
|
2020-06-20 10:31:51 +00:00
|
|
|
|
|
|
|
|
2020-06-21 07:27:55 +00:00
|
|
|
|
|
|
|
fetch('/config/get/ui.animated_background', {
|
|
|
|
headers: {
|
|
|
|
"token": webpass
|
|
|
|
}})
|
|
|
|
.then((resp) => resp.text()) // Transform the data into text
|
|
|
|
.then(function(resp) {
|
|
|
|
if (resp == "false"){
|
|
|
|
return
|
|
|
|
}
|
2020-08-21 14:57:28 +00:00
|
|
|
fetch('/config/get/ui.theme', {
|
|
|
|
headers: {
|
|
|
|
"token": webpass
|
|
|
|
}})
|
|
|
|
.then((resp) => resp.text()) // Transform the data into text
|
|
|
|
.then(function(resp) {
|
|
|
|
if (resp == '"dark"'){
|
|
|
|
/* particlesJS.load(@dom-id, @path-json, @callback (optional)); */
|
|
|
|
particlesJS.load('particles-js', '/shared/main/particles.json', function() {
|
|
|
|
console.debug('callback - particles.js config loaded')
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)
|
2020-06-21 07:27:55 +00:00
|
|
|
}
|
|
|
|
)
|