123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693 |
- /*
- * MIT License
- *
- * Copyright (c) 2020 Alexey Edelev <semlanik@gmail.com>
- *
- * This file is part of gostfix project https://git.semlanik.org/semlanik/gostfix
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy of this
- * software and associated documentation files (the "Software"), to deal in the Software
- * without restriction, including without limitation the rights to use, copy, modify,
- * merge, publish, distribute, sublicense, and/or sell copies of the Software, and
- * to permit persons to whom the Software is furnished to do so, subject to the following
- * conditions:
- *
- * The above copyright notice and this permission notice shall be included in all copies
- * or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
- * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
- * PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
- * FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
- * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
- * DEALINGS IN THE SOFTWARE.
- */
- var currentFolder = '';
- var currentPage = 0;
- var currentMail = '';
- var mailbox = null;
- var pageMax = 10;
- const emailRegex = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
- const emailEndRegex = /[;,\s]/g;
- var folders = new Array();
- var notifierSocket = null;
- var toEmailList = new Array();
- var toEmailIndex = 0;
- var toEmailPreviousSelectionPosition = 0;
- $(window).click(function(e){
- var target = $(e.target);
- var isDropDown = false;
- for (var i = 0; i < target.parents().length; i++) {
- isDropDown = target.parents()[i].classList.contains('dropbtn');
- if (isDropDown) {
- break;
- }
- }
- if (!e.target.matches('.dropbtn') && !isDropDown) {
- $('.dropdown-content').hide();
- }
- })
- $(document).ready(function(){
- $.ajaxSetup({
- global: false,
- type: 'POST'
- });
- urlPaths = $(location).attr('pathname').split('/');
- if (urlPaths != null && urlPaths.length >= 2 && urlPaths[1] == 'm') {
- mailbox = urlPaths[2];
- } else {
- mailbox = null;
- }
- $(window).bind('hashchange', onHashChanged);
- onHashChanged();
- loadFolders();
- loadStatusLine();
- $('#mailNewButton').click(mailNew);
- connectNotifier();
- $('#toEmailField').on('input', toEmailFieldChanged);
- $('#toEmailField').keydown(function(e){
- var actualText = $('#toEmailField').val();
- const selectionPosition = e.target.selectionStart;
- switch(e.keyCode) {
- case 8:
- if (toEmailPreviousSelectionPosition == 0 && e.target.selectionStart == 0
- && toEmailList.length > 0 && $('#toEmailList').children().length > 1) {
- removeToEmail($('#toEmailList').children()[$('#toEmailList').children().length - 2].id, toEmailList[toEmailList.length - 1]);
- }
- break;
- case 13:
- case 9:
- addToEmail(actualText.slice(0, selectionPosition));
- $('#toEmailField').val(actualText.slice(selectionPosition + 1, actualText.length));
- break;
- }
- toEmailPreviousSelectionPosition = e.target.selectionStart;
- })
- resetSelectionList();
- })
- function toEmailFieldChanged(e) {
- const selectionPosition = e.target.selectionStart - 1;
- var actualText = $('#toEmailField').val();
- if (actualText.length <= 0 || selectionPosition < 0) {
- return;
- }
- var lastChar = actualText[selectionPosition];
- if (emailEndRegex.test(lastChar)) {
- addToEmail(actualText.slice(0, selectionPosition));
- $('#toEmailField').val(actualText.slice(selectionPosition + 1, actualText.length));
- }
- }
- function addToEmail(toEmail) {
- if (toEmail.length <= 0) {
- return;
- }
- var style = emailRegex.test(toEmail) ? 'valid' : 'invalid';
- $('<div class="'+ style + ' toEmail" id="toEmail' + toEmailIndex + '">' + toEmail + '<img class="iconBtn" style="height: 12px; margin-left:10px; margin: auto;" onclick="removeToEmail(\'toEmail' + toEmailIndex + '\', \'' + toEmail + '\');" src="/assets/cross.svg"/></div>').insertBefore('#toEmailField');
- toEmailIndex++;
- toEmailList.push(toEmail);
- checkSendDisabled();
- }
- function removeToEmail(id, email) {
- const index = toEmailList.indexOf(email);
- if (index >= 0) {
- toEmailList.splice(index, 1);
- checkSendDisabled();
- }
- $('#' + id).remove();
- }
- function checkSendDisabled() {
- if (toEmailList.length > 0) {
- $('#sendButton').removeClass('disabled');
- } else {
- $('#sendButton').addClass('disabled');
- }
- }
- function mailNew(e) {
- window.location.hash = currentFolder + currentPage + '/mailNew';
- }
- function mailOpen(id) {
- window.location.hash = currentFolder + currentPage + '/' + id;
- }
- function openFolder(folder) {
- resetSelectionList();
- window.location.hash = folder;
- }
- function onHashChanged() {
- var hashLocation = window.location.hash;
- if (hashLocation == '') {
- setDetailsVisible(false);
- openFolder('Inbox');
- return;
- }
- hashRegex = /^#([a-zA-Z]+)(\d*)\/?([A-Fa-f\d]*)/g;
- hashParts = hashRegex.exec(hashLocation);
- page = 0;
- if (hashParts.length >= 3 && hashParts[2] != '') {
- page = parseInt(hashParts[2]);
- if (typeof page != 'number' || page > pageMax || page < 0) {
- page = 0;
- }
- }
- if (hashParts.length >= 2 && (hashParts[1] != currentFolder || currentPage != page) && hashParts[1] != '') {
- updateMailList(hashParts[1], page);
- }
- if (hashParts.length >= 4 && hashParts[3] != "" && hashParts[3] != '/mailNew') {
- if (currentMail != hashParts[3]) {
- requestMail(hashParts[3]);
- }
- } else {
- setDetailsVisible(false);
- }
- hashParts = hashLocation.split('/');
- if (hashParts.length == 2 && hashParts[1] == 'mailNew') {
- setMailNewVisible(true);
- } else {
- setMailNewVisible(false);
- }
- }
- function requestMail(mailId) {
- if (mailId != "") {
- $.ajax({
- url: '/mail/' + mailId,
- type: 'GET',
- success: function(result) {
- currentMail = mailId;
- if ($('#readListIcon'+mailId)) {
- $('#readListIcon'+mailId).attr('src', '/assets/read.svg');
- }
- $('#mail'+mailId).removeClass('unread');
- $('#mail'+mailId).addClass('read');
- $('#mailDetails').html(result);
- setDetailsVisible(true);
- checkMailUnread();
- },
- error: function(jqXHR, textStatus, errorThrown) {
- $('#mailDetails').html(textStatus);
- setDetailsVisible(true);
- showToast(Severity.Critical, 'Unable to open mail: ' + errorThrown + ' ' + textStatus);
- }
- });
- }
- }
- function updateFolderStat(stat) {
- var folder = stat.folder
- if (stat.unread > 0) {
- $('#folderStats'+folder).text(stat.unread);
- $('#folder'+folder).addClass('unread');
- } else {
- $('#folder'+folder).removeClass('unread');
- $('#folderStats'+folder).text("");
- }
- }
- function loadFolders() {
- if (mailbox === null) {
- return
- }
- $.ajax({
- url: '/m/' + mailbox + '/folders',
- success: function(result) {
- var folderList = jQuery.parseJSON(result);
- $('#folders').html(folderList.html);
- for(var i = 0; i < folderList.folders.length; i++) {
- var folder = folderList.folders[i].name;
- folders.push(folder);
- updateFolderStat(folderList.stats[i])
- }
- },
- error: function(jqXHR, textStatus, errorThrown) {
- showToast(Severity.Critical, 'Unable to update folder list: ' + errorThrown + ' ' + textStatus);
- }
- });
- }
- function folderStat(folder) {
- if (mailbox === null) {
- return
- }
- $.ajax({
- url: '/m/' + mailbox + '/folderStat',
- data: {
- folder: folder
- },
- success: function(result) {
- var stat = jQuery.parseJSON(result);
- updateFolderStat(stat)
- },
- error: function(jqXHR, textStatus, errorThrown) {
- showToast(Severity.Critical, 'Unable to update folder list: ' + errorThrown + ' ' + textStatus);
- }
- });
- }
- function closeDetails() {
- window.location.hash = currentFolder + currentPage;
- }
- function closeMailNew() {
- window.location.hash = currentFolder + currentPage;
- }
- function loadStatusLine() {
- if (mailbox === null) {
- return
- }
- $.ajax({
- url: '/m/' + mailbox + '/statusLine',
- success: function(result) {
- $('#statusLine').html(result);
- },
- error: function(jqXHR, textStatus, errorThrown) {
- showToast(Severity.Critical, 'Unable to load status line: ' + errorThrown + ' ' + textStatus);
- }
- });
- }
- function localDate(elementToChange, timestamp) {
- var today = new Date();
- var date = new Date(timestamp * 1000);
- dateString = '';
- if (today.getDay() == date.getDay()
- && today.getMonth() == date.getMonth()
- && today.getFullYear() == date.getFullYear()) {
- dateString = date.toLocaleTimeString('en-US');
- } else if (today.getFullYear() == date.getFullYear()) {
- const options = { day: 'numeric', month: 'short' };
- dateString = date.toLocaleDateString('en-US', options);
- } else {
- dateString = date.toLocaleDateString('en-US');
- }
- $('#'+elementToChange).text(dateString);
- }
- function setRead(mailId, read) {
- $.ajax({
- url: '/mail/'+mailId,
- type: 'PATCH',
- data: {read: read},
- success: function(result) {
- if (read) {
- if ($('#readIcon'+mailId)) {
- $('#readIcon'+mailId).attr('src', '/assets/read.svg');
- }
- if ($('#readListIcon'+mailId)) {
- $('#readListIcon'+mailId).attr('src', '/assets/read.svg');
- }
- $('#mail'+mailId).removeClass('unread');
- $('#mail'+mailId).addClass('read');
- } else {
- if ($('#readIcon'+mailId)) {
- $('#readIcon'+mailId).attr('src', '/assets/unread.svg');
- }
- if ($('#readListIcon'+mailId)) {
- $('#readListIcon'+mailId).attr('src', '/assets/unread.svg');
- }
- $('#mail'+mailId).removeClass('read');
- $('#mail'+mailId).addClass('unread');
- }
- checkMailUnread();
- },
- error: function(jqXHR, textStatus, errorThrown) {
- }
- });
- }
- function toggleRead(mailId) {
- var read = $('#mail'+mailId).hasClass('read');
- setRead(mailId, !read);
- }
- function removeMail(mailId, callback) {
- var method = 'PATCH';
- var data = { trash: 'true' };
- if (currentFolder == 'Trash') {
- method = 'DELETE';
- data = null;
- }
- $.ajax({
- url: '/mail/'+mailId,
- type: method,
- data: data,
- success: function() {
- removeFromSelectionList(mailId);
- $('#mail'+mailId).remove();
- if (callback) {
- callback(mailId);
- }
- },
- error: function(jqXHR, textStatus, errorThrown) {
- showToast(Severity.Critical, 'Unable to remove mail: ' + errorThrown + ' ' + textStatus);
- }
- });
- }
- function restoreMail(mailId, callback) {
- $.ajax({
- url: '/mail/'+mailId,
- type: 'PATCH',
- data: {trash: 'false'},
- success: function() {
- if (currentFolder == 'Trash') {
- $('#mail'+mailId).remove();
- removeFromSelectionList(mailId);
- }
- if (callback) {
- callback();
- }
- },
- error: function(jqXHR, textStatus, errorThrown) {
- showToast(Severity.Critical, 'Unable to restore mail: ' + errorThrown + ' ' + textStatus);
- }
- });
- }
- function downloadAttachment(attachmentId, filename) {
- $.ajax({
- url: '/attachment/' + attachmentId,
- type: 'GET',
- xhrFields: {
- responseType: 'blob'
- },
- success: function (data) {
- // Ah-ha-ha-ha html and web is piece of shit full of hacks...
- var a = document.createElement('a');
- var url = window.URL.createObjectURL(data);
- a.href = url;
- a.download = filename;
- document.body.append(a);
- a.click();
- a.remove();
- window.URL.revokeObjectURL(url);
- },
- error: function(jqXHR, textStatus, errorThrown) {
- showToast(Severity.Critical, 'Unable to download attachment: ' + errorThrown + ' ' + textStatus);
- }
- });
- }
- function setDetailsVisible(visible) {
- if (visible) {
- $('#mailDetails').show();
- $('#mailList').css({pointerEvents: 'none'});
- } else {
- currentMail = '';
- $('#mailDetails').hide();
- $('#mailDetails').html('');
- $('#mailList').css({pointerEvents: 'auto'});
- }
- }
- function setMailNewVisible(visible) {
- if (visible) {
- $('#mailNew').show();
- $('#mailList').css({pointerEvents: 'none'});
- } else {
- currentMail = '';
- $('#mailNew').hide();
- $('#mailList').css({pointerEvents: 'auto'});
- }
- while (toEmailList.length > 0 && $('#toEmailList').children().length > 1) {
- removeToEmail($('#toEmailList').children()[$('#toEmailList').children().length - 2].id, toEmailList[toEmailList.length - 1]);
- }
- toEmailList = new Array();
- $('#newMailEditor').val('');
- $('#newMailSubject').val('');
- $('#newMailTo').val('');
- $('#toEmailField').val('');
- }
- function updateMailList(folder, page) {
- if (mailbox === null) {
- return
- }
- if (folder == '') {
- if ($('#mailList')) {
- $('#mailList').html('Unable to load message list');
- }
- return;
- }
- $.ajax({
- url: '/m/' + mailbox + '/mailList',
- data: {
- folder: folder,
- page: page
- },
- success: function(result) {
- var data = jQuery.parseJSON(result);
- pageMax = Math.floor(data.total/50);
- if ($('#mailList')) {
- $('#mailList').html(data.html);
- }
- currentFolder = folder;
- enableRestoreFunctionality();
- currentPage = page;
- resetSelectionList();
- if ($('#currentPageIndex')) {
- $('#currentPageIndex').text(currentPage + 1);
- }
- if ($('#totalPageCount')) {
- $('#totalPageCount').text(pageMax + 1);
- }
- },
- error: function(jqXHR, textStatus, errorThrown) {
- if ($('#mailList')) {
- $('#mailList').html('Unable to load message list');
- }
- }
- });
- }
- function nextPage() {
- var newPage = currentPage < (pageMax - 1) ? currentPage + 1 : pageMax;
- window.location.hash = currentFolder + newPage;
- }
- function prevPage() {
- var newPage = currentPage > 0 ? currentPage - 1 : 0;
- window.location.hash = currentFolder + newPage;
- }
- function toggleDropDown(dd) {
- $('#'+dd).toggle();
- }
- function sendNewMail(force) {
- if (mailbox === null) {
- return
- }
- if (toEmailList.length <= 0) {
- return;
- }
- if (!force) {
- //TODO: Check if subject or body empty and display popup here
- // return
- }
- var composedEmailString = toEmailList[0];
- for (var i = 1; i < toEmailList.length; i++) {
- composedEmailString += "," + toEmailList[i];
- }
- $('#newMailTo').val(composedEmailString);
- var formValue = $('#mailNewForm').serialize();
- $.ajax({
- url: '/m/' + mailbox + '/sendNewMail',
- data: formValue,
- success: function() {
- $('#newMailEditor').val('');
- $('#newMailSubject').val('');
- $('#newMailTo').val('');
- closeMailNew();
- showToast(Severity.Normal, 'Email succesfully send');
- },
- error: function(jqXHR, textStatus, errorThrown) {
- showToast(Severity.Critical, 'Unable to send email: ' + errorThrown + ' ' + textStatus);
- }
- });
- }
- function logout() {
- window.location.href = '/logout';
- }
- function settings() {
- window.location.href = '/settings';
- }
- function connectNotifier() {
- if (notifierSocket != null) {
- return;
- }
- var protocol = window.location.protocol !== 'https:' ? 'ws://' : 'wss://';
- notifierSocket = new WebSocket(protocol + window.location.host + '/m/' + mailbox + '/notifierSubscribe');
- notifierSocket.onmessage = function (ev) {
- jsonData = JSON.parse(ev.data);
- switch (jsonData.type) {
- case 'mail':
- if (currentFolder == jsonData.data.folder) {
- $('#mailList').prepend(jsonData.data.html);
- }
- break;
- case 'stats':
- for (var i = 0; i < jsonData.data.length; i++) {
- var folder = jsonData.data[i].folder
- var unread = jsonData.data[i].unread
- if (unread > 0) {
- $('#folderStats'+folder).text(unread);
- $('#folder'+folder).addClass('unread');
- } else {
- $('#folder'+folder).removeClass('unread');
- $('#folderStats'+folder).text("");
- }
- }
- }
- }
- }
- $(window).on('beforeunload', function(){
- if (notifierSocket != null) {
- notifierSocket.close();
- notifierSocket = null;
- }
- });
- function toggleMailSelection(id) {
- var currentState = $('#mailCheckbox'+id).prop('checked')
- if (currentState) {
- addToSelectionList(id);
- } else {
- removeFromSelectionList(id);
- }
- }
- function toogleMailSelection() {
- var currentState = $('#selectAllCheckbox').prop('checked');
- currentState = !currentState;
- resetSelectionList();
- if (!currentState) {
- $('[id^="mailCheckbox"]').each(function() {
- addToSelectionList(this.id.replace('mailCheckbox', ''));
- })
- }
- }
- function removeSelection() {
- for (var i = 0; i < selectionList.length; ++i) {
- removeMail(selectionList[i], function(){});
- }
- }
- function restoreSelection() {
- for (var i = 0; i < selectionList.length; ++i) {
- restoreMail(selectionList[i], function(){});
- }
- }
- function toggleSelectionRead() {
- var read = checkMailUnread();
- for (var i = 0; i < selectionList.length; ++i) {
- setRead(selectionList[i], read);
- }
- }
- function checkMailUnread() {
- for (var i = 0; i < selectionList.length; ++i) {
- if ($('#mail'+selectionList[i]).hasClass('unread')) {
- $('#multiActionsRead').attr('src', '/assets/unread.svg');
- return true;
- }
- }
- $('#multiActionsRead').attr('src', '/assets/read.svg');
- return false;
- }
- //Mail selection list operations
- var selectionList = new Array();
- function addToSelectionList(mailId) {
- const i = selectionList.indexOf(mailId);
- if (i >= 0) {
- return;
- }
- selectionList.push(mailId);
- $('#mailCheckbox'+mailId).prop('checked', true);
- $('#multiActionsControls').css('display', 'flex');
- $('#selectAllCheckbox').prop('checked', true);
- checkMailUnread();
- }
- function removeFromSelectionList(mailId) {
- const i = selectionList.indexOf(mailId);
- if (i < 0) {
- console.log('Mail with id ' + mailId + ' is not in list');
- return;
- }
- selectionList.splice(i, 1);
- $('#'+mailId).prop('checked', false);
- if (selectionList.length <= 0) {
- $('#multiActionsControls').css('display', 'none');
- $('#selectAllCheckbox').prop('checked', false);
- }
- checkMailUnread();
- }
- function resetSelectionList() {
- for (var i = 0; i < selectionList.length; ++i) {
- $('#mailCheckbox'+selectionList[i]).prop('checked', false);
- }
- selectionList = new Array();
- $('#selectAllCheckbox').prop('checked', false);
- $('#multiActionsControls').css('display', 'none');
- }
- function enableRestoreFunctionality() {
- if (currentFolder == 'Trash') {
- $('#multiActionsRestore').css('display', 'block');
- $('[id^="restoreListIcon"]').css('display', 'block');
- } else {
- $('#multiActionsRestore').css('display', 'none');
- $('[id^="restoreListIcon"]').css('display', 'none');
- }
- }
|