2019-09-20 17:53:42 +00:00
|
|
|
/*
|
|
|
|
Onionr - Private P2P Communication
|
|
|
|
|
|
|
|
This file handles the mail interface
|
|
|
|
|
|
|
|
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-02-02 03:49:11 +00:00
|
|
|
shutdownBtn = document.getElementById('shutdownNode')
|
2019-09-20 17:53:42 +00:00
|
|
|
restartBtn = document.getElementById('restartNode')
|
|
|
|
|
2020-09-15 17:08:50 +00:00
|
|
|
|
|
|
|
let restartTorBtnControl = function(){
|
|
|
|
if (typeof config == "undefined" || typeof config.tor == "undefined"){
|
|
|
|
setTimeout(function(){restartTorBtnControl()}, 10)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
var restartTor = document.getElementsByClassName('restartTor')[0]
|
|
|
|
|
2020-10-22 13:46:28 +00:00
|
|
|
if (config.tor.use_existing_tor || ! config.transports.tor){
|
|
|
|
restartTor.setAttribute('disabled', true)
|
2020-09-15 17:08:50 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
restartTor.onclick = function(){
|
|
|
|
if (restartTor.disabled){
|
|
|
|
console.debug("Tor still restarting (or restart_tor event failed)")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
restartTor.disabled = true
|
|
|
|
PNotify.success({
|
|
|
|
text: 'Initializing Tor restart...'
|
|
|
|
})
|
|
|
|
fetch('/daemon-event/restart_tor', {
|
|
|
|
method: 'POST',
|
|
|
|
body: {},
|
|
|
|
headers: {
|
|
|
|
"content-type": "application/json",
|
|
|
|
"token": webpass
|
|
|
|
}})
|
|
|
|
.then((resp) => resp.text())
|
|
|
|
.then(function(data) {
|
|
|
|
PNotify.success({
|
|
|
|
text: 'Tor restarting...'
|
|
|
|
})
|
|
|
|
restartTor.disabled = false
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
restartTorBtnControl()
|
|
|
|
|
2019-02-02 03:49:11 +00:00
|
|
|
shutdownBtn.onclick = function(){
|
|
|
|
if (! nowebpass){
|
2019-10-09 03:25:34 +00:00
|
|
|
if (confirm("Really shutdown Onionr?")){
|
2020-08-23 10:17:15 +00:00
|
|
|
fetch('/shutdownclean', {
|
|
|
|
method: 'GET',
|
|
|
|
headers: {
|
|
|
|
"token": webpass
|
|
|
|
}})
|
2019-10-09 03:25:34 +00:00
|
|
|
overlay('shutdownNotice')
|
2020-08-23 10:17:15 +00:00
|
|
|
clearInterval(statsInterval)
|
2019-10-09 03:25:34 +00:00
|
|
|
}
|
2019-02-02 03:49:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-26 07:26:00 +00:00
|
|
|
if (document.location.pathname != "/onboarding/"){
|
|
|
|
|
|
|
|
restartBtn.onclick = function(){
|
|
|
|
if (! nowebpass){
|
|
|
|
if (confirm("Really restart Onionr?")){
|
|
|
|
fetch('/restartclean', {
|
|
|
|
headers: {
|
|
|
|
"token": webpass
|
|
|
|
}})
|
|
|
|
PNotify.notice('Node is restarting')
|
|
|
|
}
|
2019-10-09 03:25:34 +00:00
|
|
|
}
|
2019-09-20 17:53:42 +00:00
|
|
|
}
|
2019-11-30 08:42:49 +00:00
|
|
|
|
2020-03-26 07:26:00 +00:00
|
|
|
fetch('/config/get/onboarding.done', {
|
|
|
|
method: 'GET',
|
|
|
|
headers: {
|
|
|
|
"content-type": "application/json",
|
|
|
|
"token": webpass
|
|
|
|
}})
|
|
|
|
.then((resp) => resp.text()) // Transform the data into text
|
|
|
|
.then(function(data) {
|
|
|
|
if (data === 'false'){
|
|
|
|
window.location.href = window.location.pathname = "/onboarding/" + window.location.hash
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|