2019-02-11 22:36:43 +00:00
|
|
|
/*
|
|
|
|
Onionr - P2P Anonymous Storage Network
|
|
|
|
|
|
|
|
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-01-16 05:57:47 +00:00
|
|
|
webpass = document.location.hash.replace('#', '')
|
2019-01-17 05:31:56 +00:00
|
|
|
nowebpass = false
|
2019-02-04 23:48:21 +00:00
|
|
|
|
2019-02-22 21:04:03 +00:00
|
|
|
function post_to_url(path, params) {
|
|
|
|
|
|
|
|
var form = document.createElement("form")
|
|
|
|
|
|
|
|
form.setAttribute("method", "POST")
|
|
|
|
form.setAttribute("action", path)
|
|
|
|
|
|
|
|
for(var key in params) {
|
|
|
|
var hiddenField = document.createElement("input")
|
|
|
|
hiddenField.setAttribute("type", "hidden")
|
|
|
|
hiddenField.setAttribute("name", key)
|
|
|
|
hiddenField.setAttribute("value", params[key])
|
|
|
|
form.appendChild(hiddenField)
|
|
|
|
}
|
|
|
|
|
|
|
|
document.body.appendChild(form)
|
|
|
|
form.submit()
|
|
|
|
}
|
|
|
|
|
2019-01-16 05:57:47 +00:00
|
|
|
if (typeof webpass == "undefined"){
|
|
|
|
webpass = localStorage['webpass']
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
localStorage['webpass'] = webpass
|
2019-02-01 06:38:12 +00:00
|
|
|
//document.location.hash = ''
|
2019-01-16 05:57:47 +00:00
|
|
|
}
|
|
|
|
if (typeof webpass == "undefined" || webpass == ""){
|
|
|
|
alert('Web password was not found in memory or URL')
|
2019-01-17 05:31:56 +00:00
|
|
|
nowebpass = true
|
2019-01-16 05:57:47 +00:00
|
|
|
}
|
|
|
|
|
2019-02-04 23:48:21 +00:00
|
|
|
function arrayContains(needle, arrhaystack) {
|
|
|
|
return (arrhaystack.indexOf(needle) > -1);
|
|
|
|
}
|
|
|
|
|
2019-01-16 05:57:47 +00:00
|
|
|
function httpGet(theUrl) {
|
2019-01-14 06:14:02 +00:00
|
|
|
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{
|
2019-01-16 05:57:47 +00:00
|
|
|
return ""
|
2019-01-14 06:14:02 +00:00
|
|
|
}
|
2019-01-16 05:57:47 +00:00
|
|
|
}
|
|
|
|
function overlay(overlayID) {
|
|
|
|
el = document.getElementById(overlayID)
|
|
|
|
el.style.visibility = (el.style.visibility == "visible") ? "hidden" : "visible"
|
2019-02-10 22:26:47 +00:00
|
|
|
scroll(0,0)
|
2019-01-16 05:57:47 +00:00
|
|
|
}
|
2019-02-01 06:38:12 +00:00
|
|
|
|
|
|
|
var passLinks = document.getElementsByClassName("idLink")
|
|
|
|
for(var i = 0; i < passLinks.length; i++) {
|
|
|
|
passLinks[i].href += '#' + webpass
|
|
|
|
}
|
|
|
|
|
|
|
|
var refreshLinks = document.getElementsByClassName("refresh")
|
|
|
|
|
|
|
|
for(var i = 0; i < refreshLinks.length; i++) {
|
|
|
|
//Can't use .reload because of webpass
|
|
|
|
refreshLinks[i].onclick = function(){
|
|
|
|
location.reload()
|
|
|
|
}
|
|
|
|
}
|
2019-02-22 21:04:03 +00:00
|
|
|
|
2019-03-13 04:56:26 +00:00
|
|
|
for (var i = 0; i < document.getElementsByClassName('closeOverlay').length; i++){
|
|
|
|
document.getElementsByClassName('closeOverlay')[i].onclick = function(e){
|
|
|
|
document.getElementById(e.target.getAttribute('overlay')).style.visibility = 'hidden'
|
|
|
|
}
|
|
|
|
}
|