2019-02-10 22:43:42 +00:00
|
|
|
/*
|
2019-06-12 00:05:15 +00:00
|
|
|
Onionr - Private P2P Communication
|
2019-02-10 22:43:42 +00:00
|
|
|
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
var sendbutton = document.getElementById('sendMail')
|
2019-02-26 04:19:37 +00:00
|
|
|
messageContent = document.getElementById('draftText')
|
|
|
|
to = document.getElementById('draftID')
|
|
|
|
subject = document.getElementById('draftSubject')
|
|
|
|
friendPicker = document.getElementById('friendSelect')
|
2019-02-10 22:43:42 +00:00
|
|
|
|
2020-02-19 07:57:56 +00:00
|
|
|
function utf8Length(s) {
|
|
|
|
var size = encodeURIComponent(s).match(/%[89ABab]/g);
|
|
|
|
return s.length + (size ? size.length : 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
function padString(string_data, round_nearest_byte_exponent = 3){
|
|
|
|
if (utf8Length(string_data) === 0){
|
|
|
|
string_data += '0'
|
|
|
|
}
|
|
|
|
let round_size = 10 ** round_nearest_byte_exponent
|
|
|
|
while (utf8Length(string_data) % round_size > 0){
|
|
|
|
string_data += '0'
|
|
|
|
}
|
|
|
|
return string_data
|
|
|
|
}
|
|
|
|
|
2019-10-04 21:49:35 +00:00
|
|
|
function sendMail(toData, message, subject){
|
2020-02-19 07:57:56 +00:00
|
|
|
let meta = {'subject': subject}
|
2020-02-17 12:13:57 +00:00
|
|
|
|
2020-02-19 07:57:56 +00:00
|
|
|
if (document.getElementById('messagePaddingSetting').checked){
|
|
|
|
message = padString(message)
|
|
|
|
}
|
|
|
|
|
2020-03-04 10:45:27 +00:00
|
|
|
if (document.getElementById('mailSignatureSetting').value !== false){
|
|
|
|
message += "\n"
|
|
|
|
message += document.getElementById('mailSignatureSetting').value
|
|
|
|
}
|
2020-02-19 07:57:56 +00:00
|
|
|
|
|
|
|
postData = {'message': message, 'to': toData, 'type': 'pm', 'encrypt': true, 'meta': JSON.stringify(meta)}
|
2020-02-17 12:13:57 +00:00
|
|
|
postData.forward = document.getElementById('forwardSecrecySetting').checked
|
2019-02-10 22:43:42 +00:00
|
|
|
postData = JSON.stringify(postData)
|
2019-03-05 03:16:33 +00:00
|
|
|
sendForm.style.display = 'none'
|
2020-02-19 07:57:56 +00:00
|
|
|
|
2019-02-10 22:43:42 +00:00
|
|
|
fetch('/insertblock', {
|
|
|
|
method: 'POST',
|
|
|
|
body: postData,
|
|
|
|
headers: {
|
|
|
|
"content-type": "application/json",
|
|
|
|
"token": webpass
|
2020-10-14 22:28:56 +00:00
|
|
|
}}).then(function(resp){
|
|
|
|
if (!resp.ok){
|
|
|
|
PNotify.error({
|
|
|
|
text: 'Malformed input'
|
|
|
|
})
|
|
|
|
sendForm.style.display = 'block'
|
|
|
|
throw new Error("Malformed input in sendmail")
|
|
|
|
}
|
|
|
|
return resp
|
|
|
|
})
|
2020-02-03 00:29:20 +00:00
|
|
|
.then((resp) => resp.text()) // Transform the data into text
|
2019-02-10 22:43:42 +00:00
|
|
|
.then(function(data) {
|
2019-03-05 03:16:33 +00:00
|
|
|
sendForm.style.display = 'block'
|
2019-09-09 08:23:09 +00:00
|
|
|
PNotify.success({
|
2020-03-09 22:58:01 +00:00
|
|
|
text: 'Queued for sending!',
|
|
|
|
delay: 3500,
|
|
|
|
mouseReset: false
|
2019-09-09 08:23:09 +00:00
|
|
|
})
|
2019-10-04 21:49:35 +00:00
|
|
|
to.value = subject.value = messageContent.value = ""
|
2020-02-03 00:29:20 +00:00
|
|
|
friendPicker.value = ""
|
|
|
|
subject.value = ""
|
2019-02-10 22:43:42 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-02-26 04:19:37 +00:00
|
|
|
var friendPicker = document.getElementById('friendSelect')
|
|
|
|
friendPicker.onchange = function(){
|
|
|
|
to.value = friendPicker.value
|
|
|
|
}
|
2019-02-10 22:43:42 +00:00
|
|
|
|
2019-02-26 04:19:37 +00:00
|
|
|
sendForm.onsubmit = function(){
|
2020-10-14 22:28:56 +00:00
|
|
|
let getInstances = function(string, word) {
|
|
|
|
return string.split(word).length - 1;
|
2019-06-19 06:57:13 +00:00
|
|
|
}
|
2020-10-14 22:28:56 +00:00
|
|
|
|
|
|
|
if(getInstances(to.value, '-') != 15){
|
|
|
|
if (to.value.length != 56 && to.value.length != 52){
|
|
|
|
PNotify.error({
|
|
|
|
text: 'User ID is not valid'
|
|
|
|
})
|
|
|
|
return false
|
|
|
|
}
|
2019-06-19 06:57:13 +00:00
|
|
|
}
|
2020-10-14 22:28:56 +00:00
|
|
|
sendMail(to.value, messageContent.value, subject.value)
|
2019-02-26 04:19:37 +00:00
|
|
|
return false
|
2019-02-10 22:43:42 +00:00
|
|
|
}
|