mirror of
https://github.com/imapsync/imapsync.git
synced 2024-11-17 00:02:29 +01:00
229 lines
8.4 KiB
JavaScript
229 lines
8.4 KiB
JavaScript
|
|
// $Id: imapsync_form.js,v 1.4 2019/04/28 03:02:37 gilles Exp $
|
|
|
|
/*jslint browser: true*/ /*global $*/
|
|
$(document).ready(function () {
|
|
"use strict";
|
|
// Bootstrap popover and tooltip
|
|
$("[data-toggle='tooltip']").tooltip();
|
|
|
|
var readyStateStr = {
|
|
"0": "Request not initialized",
|
|
"1": "Server connection established",
|
|
"2": "Response headers received",
|
|
"3": "Processing request",
|
|
"4": "Finished and response is ready"
|
|
};
|
|
|
|
function refreshLog(xhr) {
|
|
$("#output").html(xhr.responseText);
|
|
}
|
|
|
|
function handleRun(xhr, timerRefreshLog) {
|
|
|
|
$("#console").text("Status: " + xhr.status + " " + xhr.statusText + "\n" + "State: " + readyStateStr[xhr.readyState] + "\n");
|
|
|
|
if (xhr.readyState === 4) {
|
|
// var headers = xhr.getAllResponseHeaders();
|
|
// $("#console").append(headers);
|
|
// $("#console").append("See the completed log\n");
|
|
$("#link_to_bottom").show();
|
|
clearInterval(timerRefreshLog);
|
|
refreshLog(xhr); // a last time
|
|
$("#bt-sync").prop("disabled", false); // back to enable state for next run
|
|
}
|
|
}
|
|
|
|
function imapsync() {
|
|
var querystring = $("#form").serialize();
|
|
$("#abort").text("\n\n"); // clean abort console
|
|
$("#output").text("Here comes the log!\n\n");
|
|
if ("imap.gmail.com" === $("#host1").val()) {
|
|
querystring = querystring + "&gmail1=on";
|
|
}
|
|
if ("imap.gmail.com" === $("#host2").val()) {
|
|
querystring = querystring + "&gmail2=on";
|
|
}
|
|
var xhr;
|
|
xhr = new XMLHttpRequest();
|
|
var timerRefreshLog = setInterval(function () {
|
|
refreshLog(xhr);
|
|
}, 5000);
|
|
xhr.onreadystatechange = function () {
|
|
handleRun(xhr, timerRefreshLog);
|
|
};
|
|
xhr.open("POST", "/cgi-bin/imapsync", true);
|
|
xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
|
|
xhr.send(querystring);
|
|
}
|
|
|
|
|
|
function handleAbort(xhr) {
|
|
|
|
$("#abort").text("Status: " + xhr.status + " " + xhr.statusText + "\n" + "State: " + readyStateStr[xhr.readyState] + "\n\n");
|
|
|
|
if (xhr.readyState === 4) {
|
|
$("#abort").append(xhr.responseText);
|
|
$("#bt-sync").prop("disabled", false);
|
|
$("#bt-abort").prop("disabled", false); // back for next abort
|
|
}
|
|
}
|
|
|
|
function abort() {
|
|
var querystring = $("#form").serialize() + "&abort=on";
|
|
var xhr;
|
|
xhr = new XMLHttpRequest();
|
|
xhr.onreadystatechange = function () {
|
|
handleAbort(xhr);
|
|
};
|
|
xhr.open("POST", "/cgi-bin/imapsync", true);
|
|
xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
|
|
xhr.send(querystring);
|
|
}
|
|
|
|
function store_form() {
|
|
if (typeof(Storage) !== "undefined") {
|
|
// Code for localStorage.
|
|
localStorage.user1 = $("#user1").val();
|
|
localStorage.password1 = $("#password1").val();
|
|
localStorage.host1 = $("#host1").val();
|
|
localStorage.subfolder1 = $("#subfolder1").val();
|
|
localStorage.showpassword1 = $("#showpassword1")[0].checked ;
|
|
|
|
//
|
|
localStorage.account1_background_color = $("#account1").css("background-color") ;
|
|
|
|
localStorage.user2 = $("#user2").val();
|
|
localStorage.password2 = $("#password2").val();
|
|
localStorage.host2 = $("#host2").val();
|
|
localStorage.subfolder2 = $("#subfolder2").val();
|
|
localStorage.showpassword2 = $("#showpassword2")[0].checked ;
|
|
|
|
// alert( $("#dry")[0].checked ) ;
|
|
localStorage.dry = $("#dry")[0].checked ;
|
|
localStorage.justlogin = $("#justlogin")[0].checked ;
|
|
localStorage.justfolders = $("#justfolders")[0].checked ;
|
|
localStorage.justfoldersizes = $("#justfoldersizes")[0].checked ;
|
|
|
|
localStorage.account2_background_color = $("#account2").css("background-color") ;
|
|
|
|
} else {
|
|
// Sorry! No Web Storage support...
|
|
}
|
|
}
|
|
|
|
function retrieve_form() {
|
|
if (typeof(Storage) !== "undefined")
|
|
{
|
|
// Code for localStorage.
|
|
$("#user1").val(localStorage.user1);
|
|
$("#password1").val(localStorage.password1);
|
|
// $("#showpassword1")[0].checked = JSON.parse(localStorage.showpassword1);
|
|
$("#host1").val(localStorage.host1);
|
|
$("#subfolder1").val(localStorage.subfolder1);
|
|
|
|
$("#user2").val(localStorage.user2);
|
|
$("#password2").val(localStorage.password2);
|
|
// $("#showpassword2")[0].checked = JSON.parse(localStorage.showpassword2);
|
|
$("#host2").val(localStorage.host2);
|
|
$("#subfolder2").val(localStorage.subfolder2);
|
|
|
|
|
|
$("#dry")[0].checked = JSON.parse(localStorage.dry || false );
|
|
$("#justlogin")[0].checked = JSON.parse(localStorage.justlogin || false );
|
|
$("#justfolders")[0].checked = JSON.parse(localStorage.justfolders || false );
|
|
$("#justfoldersizes")[0].checked = JSON.parse(localStorage.justfoldersizes || false );
|
|
|
|
// In case
|
|
// localStorage.removeItem( "account1_background_color" ) ;
|
|
// localStorage.removeItem( "account2_background_color" ) ;
|
|
|
|
if ( localStorage.account1_background_color )
|
|
{
|
|
$("#account1").css("background-color", localStorage.account1_background_color ) ;
|
|
}
|
|
if ( localStorage.account2_background_color )
|
|
{
|
|
$("#account2").css("background-color", localStorage.account2_background_color ) ;
|
|
}
|
|
|
|
|
|
}
|
|
else
|
|
{
|
|
// Sorry! No Web Storage support...
|
|
}
|
|
}
|
|
|
|
function showpassword() {
|
|
}
|
|
|
|
// in case of a manual refresh, start with
|
|
$("#bt-sync").prop("disabled", false);
|
|
$("#bt-abort").prop("disabled", false);
|
|
$("#link_to_bottom").hide();
|
|
retrieve_form();
|
|
|
|
// Well I should write function showpassword() body and use it
|
|
// I'm just dumb in js and jQuery
|
|
$("#showpassword1").click(function () {
|
|
var x = document.getElementById("password1");
|
|
if (x.type === "password" && this.checked ) {
|
|
x.type = "text";
|
|
} else {
|
|
x.type = "password";
|
|
}
|
|
});
|
|
|
|
$("#showpassword2").click(function () {
|
|
var x = document.getElementById("password2");
|
|
if (x.type === "password" && this.checked ) {
|
|
x.type = "text";
|
|
} else {
|
|
x.type = "password";
|
|
}
|
|
});
|
|
|
|
|
|
|
|
$("#bt-sync").click(function () {
|
|
$("#bt-sync").prop("disabled", true);
|
|
$("#bt-abort").prop("disabled", false);
|
|
$("#link_to_bottom").hide();
|
|
store_form();
|
|
imapsync();
|
|
});
|
|
|
|
$("#bt-abort").click(function () {
|
|
$("#bt-sync").prop("disabled", true);
|
|
$("#bt-abort").prop("disabled", true);
|
|
abort();
|
|
});
|
|
|
|
|
|
jQuery.fn.swapWith = function(to) {
|
|
var temp = $(to).val();
|
|
$(to).val($(this).val());
|
|
$(this).val(temp);
|
|
};
|
|
|
|
|
|
|
|
$("#swap").click(function(){
|
|
$("#user1").swapWith("#user2");
|
|
$("#password1").swapWith("#password2");
|
|
$("#host1").swapWith("#host2");
|
|
$("#subfolder1").swapWith("#subfolder2");
|
|
|
|
var temp = $("#account1").css("background-color") ;
|
|
$("#account1").css("background-color", $("#account2").css("background-color") ) ;
|
|
$("#account2").css("background-color", temp ) ;
|
|
|
|
});
|
|
|
|
// End of
|
|
|
|
|
|
});
|
|
|