Make imap node check for email right away on start/restart. Add some more console logging for re-assurance of things happening - or not.

This commit is contained in:
Dave C-J 2013-11-24 13:10:48 +00:00
parent f2ed2365cd
commit f051fbd1e1
1 changed files with 68 additions and 71 deletions

View File

@ -22,7 +22,8 @@ var oldmail = {};
try { try {
var emailkey = RED.settings.email || require(process.env.NODE_RED_HOME+"/../emailkeys.js"); var emailkey = RED.settings.email || require(process.env.NODE_RED_HOME+"/../emailkeys.js");
} catch (err) { } catch (err) {
throw new Error("Failed to load Email credentials"); util.log("[imap] : Failed to load Email credentials");
return;
} }
var imap = new Imap({ var imap = new Imap({
@ -33,13 +34,9 @@ var imap = new Imap({
secure: true secure: true
}); });
function fail(err) {
util.log('[imap] : ' + err);
}
function openInbox(cb) { function openInbox(cb) {
imap.connect(function(err) { imap.connect(function(err) {
if (err) fail(err); if (err) util.log("[imap] : error : "+err);
imap.openBox('INBOX', true, cb); imap.openBox('INBOX', true, cb);
}); });
} }
@ -47,12 +44,12 @@ function openInbox(cb) {
function ImapNode(n) { function ImapNode(n) {
RED.nodes.createNode(this,n); RED.nodes.createNode(this,n);
this.name = n.name; this.name = n.name;
this.repeat = n.repeat * 1000; this.repeat = n.repeat * 1000 || 300000;
var node = this; var node = this;
this.interval_id = null; this.interval_id = null;
if (this.repeat && !isNaN(this.repeat) && this.repeat > 0) { if (!isNaN(this.repeat) && this.repeat > 0) {
this.log("repeat = "+this.repeat); node.log("repeat = "+this.repeat);
this.interval_id = setInterval( function() { this.interval_id = setInterval( function() {
node.emit("input",{}); node.emit("input",{});
}, this.repeat ); }, this.repeat );
@ -60,13 +57,13 @@ function ImapNode(n) {
this.on("input", function(msg) { this.on("input", function(msg) {
openInbox(function(err, mailbox) { openInbox(function(err, mailbox) {
if (err) fail(err); if (err) node.log("error : "+err);
imap.seq.fetch(mailbox.messages.total + ':*', { struct: false }, imap.seq.fetch(mailbox.messages.total + ':*', { struct: false },
{ headers: ['from', 'subject'], { headers: ['from', 'subject'],
body: true, body: true,
cb: function(fetch) { cb: function(fetch) {
fetch.on('message', function(msg) { fetch.on('message', function(msg) {
//node.log('Saw message no. ' + msg.seqno); node.log('Read message no. ' + msg.seqno);
var pay = {}; var pay = {};
var body = ''; var body = '';
msg.on('headers', function(hdrs) { msg.on('headers', function(hdrs) {
@ -89,13 +86,12 @@ function ImapNode(n) {
}); });
} }
}, function(err) { }, function(err) {
if (err) node.log("Err : "+err); if (err) node.log("error : "+err);
//node.log("Done fetching messages."); node.log("Done fetching messages.");
imap.logout(); imap.logout();
} }
); );
}); });
}); });
this.on("close", function() { this.on("close", function() {
@ -103,6 +99,7 @@ function ImapNode(n) {
clearInterval(this.interval_id); clearInterval(this.interval_id);
} }
}); });
}
node.emit("input",{});
}
RED.nodes.registerType("imap",ImapNode); RED.nodes.registerType("imap",ImapNode);