mirror of
https://github.com/moparisthebest/mailcatcher
synced 2024-10-31 15:35:07 -04:00
a9e46c1d55
* Added analysis.xsl to transform the fractal validation xml into html which is injected into the analysis iframe. This allowed for easier styling of the returned xml data. * Added xslt query plugin to fetch and transform the xml * Styled the output in a similar manner to the Fractal website
203 lines
9.7 KiB
JavaScript
203 lines
9.7 KiB
JavaScript
(function() {
|
|
var MailCatcher;
|
|
var __bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
|
|
MailCatcher = (function() {
|
|
function MailCatcher() {
|
|
$('#messages tr').live('click', __bind(function(e) {
|
|
e.preventDefault();
|
|
return this.loadMessage($(e.currentTarget).attr('data-message-id'));
|
|
}, this));
|
|
$('#message .views .format.tab a').live('click', __bind(function(e) {
|
|
e.preventDefault();
|
|
return this.loadMessageBody(this.selectedMessage(), $($(e.currentTarget).parent('li')).data('message-format'));
|
|
}, this));
|
|
$('#message .views .analysis.tab a').live('click', __bind(function(e) {
|
|
e.preventDefault();
|
|
return this.loadMessageAnalysis(this.selectedMessage());
|
|
}, this));
|
|
$('#resizer').live({
|
|
mousedown: function(e) {
|
|
var events;
|
|
e.preventDefault();
|
|
return $(window).bind(events = {
|
|
mouseup: function(e) {
|
|
e.preventDefault();
|
|
return $(window).unbind(events);
|
|
},
|
|
mousemove: function(e) {
|
|
e.preventDefault();
|
|
return $('#messages').css({
|
|
height: e.clientY - $('#messages').offset().top
|
|
});
|
|
}
|
|
});
|
|
}
|
|
});
|
|
$('nav.app .clear a').live('click', __bind(function(e) {
|
|
e.preventDefault();
|
|
if (confirm("You will lose all your received messages.\n\nAre you sure you want to clear all messages?")) {
|
|
return $.ajax({
|
|
url: '/messages',
|
|
type: 'DELETE',
|
|
success: function() {
|
|
$('#messages tbody, #message .metadata dd').empty();
|
|
$('#message .metadata .attachments').hide();
|
|
return $('#message iframe').attr('src', 'about:blank');
|
|
},
|
|
error: function() {
|
|
return alert('Error while quitting.');
|
|
}
|
|
});
|
|
}
|
|
}, this));
|
|
$('nav.app .quit a').live('click', __bind(function(e) {
|
|
e.preventDefault();
|
|
if (confirm("You will lose all your received messages.\n\nAre you sure you want to quit?")) {
|
|
return $.ajax({
|
|
type: 'DELETE',
|
|
success: function() {
|
|
return location.replace($('body > header h1 a').attr('href'));
|
|
},
|
|
error: function() {
|
|
return alert('Error while quitting.');
|
|
}
|
|
});
|
|
}
|
|
}, this));
|
|
this.refresh();
|
|
this.subscribe();
|
|
}
|
|
MailCatcher.prototype.parseDateRegexp = /^(\d{4})[-\/\\](\d{2})[-\/\\](\d{2})(?:\s+|T)(\d{2})[:-](\d{2})[:-](\d{2})(?:([ +-]\d{2}:\d{2}|\s*\S+|Z?))?$/;
|
|
MailCatcher.prototype.parseDate = function(date) {
|
|
var match;
|
|
if (match = this.parseDateRegexp.exec(date)) {
|
|
return new Date(match[1], match[2] - 1, match[3], match[4], match[5], match[6], 0);
|
|
}
|
|
};
|
|
MailCatcher.prototype.formatDate = function(date) {
|
|
if (typeof date === "string") {
|
|
date && (date = this.parseDate(date));
|
|
}
|
|
return date && (date = date.toString("dddd, d MMM yyyy h:mm:ss tt"));
|
|
};
|
|
MailCatcher.prototype.haveMessage = function(message) {
|
|
if (message.id != null) {
|
|
message = message.id;
|
|
}
|
|
return $("#messages tbody tr[data-message-id=\"" + message + "\"]").length > 0;
|
|
};
|
|
MailCatcher.prototype.selectedMessage = function() {
|
|
return $('#messages tr.selected').data('message-id');
|
|
};
|
|
MailCatcher.prototype.addMessage = function(message) {
|
|
return $('#messages tbody').append($('<tr />').attr('data-message-id', message.id.toString()).append($('<td/>').text(message.sender || "No sender").toggleClass("blank", !message.sender)).append($('<td/>').text((message.recipients || []).join(', ') || "No receipients").toggleClass("blank", !message.recipients.length)).append($('<td/>').text(message.subject || "No subject").toggleClass("blank", !message.subject)).append($('<td/>').text(this.formatDate(message.created_at))));
|
|
};
|
|
MailCatcher.prototype.loadMessage = function(id) {
|
|
if ((id != null ? id.id : void 0) != null) {
|
|
id = id.id;
|
|
}
|
|
id || (id = $('#messages tr.selected').attr('data-message-id'));
|
|
if (id != null) {
|
|
$('#messages tbody tr:not([data-message-id="' + id + '"])').removeClass('selected');
|
|
$('#messages tbody tr[data-message-id="' + id + '"]').addClass('selected');
|
|
return $.getJSON('/messages/' + id + '.json', __bind(function(message) {
|
|
var $ul;
|
|
$('#message .metadata dd.created_at').text(this.formatDate(message.created_at));
|
|
$('#message .metadata dd.from').text(message.sender);
|
|
$('#message .metadata dd.to').text((message.recipients || []).join(', '));
|
|
$('#message .metadata dd.subject').text(message.subject);
|
|
$('#message .views .tab.format').each(function(i, el) {
|
|
var $el, format;
|
|
$el = $(el);
|
|
format = $el.attr('data-message-format');
|
|
if ($.inArray(format, message.formats) >= 0) {
|
|
$el.find('a').attr('href', '/messages/' + id + '.' + format);
|
|
return $el.show();
|
|
} else {
|
|
return $el.hide();
|
|
}
|
|
});
|
|
if ($("#message .views .tab.selected:not(:visible)").length) {
|
|
$("#message .views .tab.selected").removeClass("selected");
|
|
$("#message .views .tab:visible:first").addClass("selected");
|
|
}
|
|
if (message.attachments.length) {
|
|
$ul = $('<ul/>').appendTo($('#message .metadata dd.attachments').empty());
|
|
$.each(message.attachments, function(i, attachment) {
|
|
return $ul.append($('<li>').append($('<a>').attr('href', attachment['href']).addClass(attachment['type'].split('/', 1)[0]).addClass(attachment['type'].replace('/', '-')).text(attachment['filename'])));
|
|
});
|
|
$('#message .metadata .attachments').show();
|
|
} else {
|
|
$('#message .metadata .attachments').hide();
|
|
}
|
|
$('#message .views .download a').attr('href', "/messages/" + id + ".eml");
|
|
if ($('#message .views .tab.analysis.selected').length) {
|
|
return this.loadMessageAnalysis();
|
|
} else {
|
|
return this.loadMessageBody();
|
|
}
|
|
}, this));
|
|
}
|
|
};
|
|
MailCatcher.prototype.loadMessageBody = function(id, format) {
|
|
id || (id = this.selectedMessage());
|
|
format || (format = $('#message .views .tab.format.selected').attr('data-message-format'));
|
|
format || (format = 'html');
|
|
$("#message .views .tab[data-message-format=\"" + format + "\"]:not(.selected)").addClass('selected');
|
|
$("#message .views .tab:not([data-message-format=\"" + format + "\"]).selected").removeClass('selected');
|
|
if (id != null) {
|
|
return $('#message iframe').attr("src", "/messages/" + id + "." + format);
|
|
}
|
|
};
|
|
MailCatcher.prototype.loadMessageAnalysis = function(id) {
|
|
var $form, $iframe;
|
|
id || (id = this.selectedMessage());
|
|
$("#message .views .analysis.tab:not(.selected)").addClass('selected');
|
|
$("#message .views :not(.analysis).tab.selected").removeClass('selected');
|
|
if (id != null) {
|
|
$iframe = $('#message iframe').contents().children().html("<html>\n<head>\n<title>Analysis</title>\n" + ($('link[rel="stylesheet"]')[0].outerHTML) + "\n</head>\n<body class=\"iframe\">\n<h1>Analyse your email with Fractal</h1>\n<p><a href=\"http://getfractal.com/\" target=\"_blank\">Fractal</a> is a really neat service that applies common email design and development knowledge from <a href=\"http://www.email-standards.org/\" target=\"_blank\">Email Standards Project</a> to your HTML email and tells you what you've done wrong or what you should do instead.</p>\n<p>Please note that this <strong>sends your email to the Fractal service</strong> for analysis. Read their <a href=\"http://getfractal.com/terms\" target=\"_blank\">terms of service</a> if you're paranoid.</p>\n<form>\n<input type=\"submit\" value=\"Analyse\" /><span class=\"loading\" style=\"color: #999; display: none\">Analysing…</span>\n</form>\n</body>\n</html>");
|
|
return $form = $iframe.find('form').submit(function(e) {
|
|
e.preventDefault();
|
|
$(this).find('input[type="submit"]').attr('disabled', 'disabled').end().find('.loading').show();
|
|
return $form.xslt("/messages/" + id + "/analysis.xml", "/stylesheets/analysis.xsl");
|
|
});
|
|
}
|
|
};
|
|
MailCatcher.prototype.refresh = function() {
|
|
return $.getJSON('/messages', __bind(function(messages) {
|
|
return $.each(messages, __bind(function(i, message) {
|
|
if (!this.haveMessage(message)) {
|
|
return this.addMessage(message);
|
|
}
|
|
}, this));
|
|
}, this));
|
|
};
|
|
MailCatcher.prototype.subscribe = function() {
|
|
if (typeof WebSocket !== "undefined" && WebSocket !== null) {
|
|
return this.subscribeWebSocket();
|
|
} else {
|
|
return this.subscribePoll();
|
|
}
|
|
};
|
|
MailCatcher.prototype.subscribeWebSocket = function() {
|
|
var secure;
|
|
secure = window.location.scheme === 'https';
|
|
this.websocket = new WebSocket("" + (secure ? 'wss' : 'ws') + "://" + window.location.host + "/messages");
|
|
return this.websocket.onmessage = __bind(function(event) {
|
|
return this.addMessage($.parseJSON(event.data));
|
|
}, this);
|
|
};
|
|
MailCatcher.prototype.subscribePoll = function() {
|
|
if (this.refreshInterval == null) {
|
|
return this.refreshInterval = setInterval((__bind(function() {
|
|
return this.refresh();
|
|
}, this)), 1000);
|
|
}
|
|
};
|
|
return MailCatcher;
|
|
})();
|
|
$(function() {
|
|
return window.MailCatcher = new MailCatcher;
|
|
});
|
|
}).call(this);
|