2019-10-17 19:52:56 +00:00
|
|
|
/*
|
|
|
|
Onionr - Private P2P Communication
|
|
|
|
|
|
|
|
Handles onboarding for Onionr
|
|
|
|
|
|
|
|
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-11-27 00:01:32 +00:00
|
|
|
|
2019-10-11 09:28:43 +00:00
|
|
|
fetch('/getnewkeys', {
|
|
|
|
headers: {
|
|
|
|
"token": webpass
|
|
|
|
}})
|
2019-11-27 00:01:32 +00:00
|
|
|
.then((resp) => resp.text())
|
2019-10-11 09:28:43 +00:00
|
|
|
.then(function(resp) {
|
2019-10-17 10:00:24 +00:00
|
|
|
keys = resp.split('')
|
|
|
|
})
|
|
|
|
|
|
|
|
function getCheckValue(elName){
|
|
|
|
return document.getElementsByName(elName)[0].checked
|
|
|
|
}
|
|
|
|
|
2019-11-27 00:01:32 +00:00
|
|
|
function sendConfig(configInfo){
|
|
|
|
fetch('/setonboarding', {
|
|
|
|
method: 'POST',
|
|
|
|
headers: {
|
|
|
|
"token": webpass,
|
|
|
|
'Content-Type': 'application/json'
|
|
|
|
},
|
|
|
|
body: JSON.stringify({configInfo})
|
|
|
|
}).then(function(data) {
|
2019-11-30 08:42:49 +00:00
|
|
|
window.location.href = window.location.origin + '/' + window.location.hash
|
2019-11-27 00:01:32 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-10-17 10:00:24 +00:00
|
|
|
document.getElementById('onboardingForm').onsubmit = function(e){
|
|
|
|
submitInfo = {}
|
|
|
|
submitInfo.massSurveil = getCheckValue('state')
|
|
|
|
submitInfo.stateTarget = getCheckValue('stateTarget')
|
|
|
|
submitInfo.localThreat = getCheckValue('local')
|
|
|
|
submitInfo.networkContrib = getCheckValue('networkContribution')
|
|
|
|
submitInfo.plainContrib = getCheckValue('networkContributionPlain')
|
|
|
|
submitInfo.donate = getCheckValue('donate')
|
2020-02-03 23:01:08 +00:00
|
|
|
//submitInfo.deterministic = getCheckValue('useDeterministic')
|
2019-10-17 10:00:24 +00:00
|
|
|
submitInfo.mail = getCheckValue('useMail')
|
2019-11-27 00:01:32 +00:00
|
|
|
submitInfo.circles = getCheckValue('useCircles')
|
2019-11-30 08:42:49 +00:00
|
|
|
submitInfo.useDark = getCheckValue('useDarkTheme')
|
2019-11-27 00:01:32 +00:00
|
|
|
|
|
|
|
if (submitInfo.donate){
|
|
|
|
openDonateModal(submitInfo)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
sendConfig(submitInfo)
|
2019-10-17 10:00:24 +00:00
|
|
|
|
|
|
|
e.preventDefault()
|
2020-08-20 06:29:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Fix label clicking since bulma is weird */
|
|
|
|
|
|
|
|
let labelClickFix = function(labels) {
|
|
|
|
for (i = 0; i < labels.length; i++){
|
|
|
|
labels[i].onclick = function(event){
|
|
|
|
document.getElementsByName(event.target.getAttribute("for"))[0].checked ^= 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
let setupLabelFix = function(){
|
|
|
|
var labels = document.getElementsByTagName('label')
|
|
|
|
var icons = document.getElementsByTagName('i')
|
|
|
|
labelClickFix(labels)
|
|
|
|
labelClickFix(icons)
|
|
|
|
}
|
|
|
|
setupLabelFix()
|