diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-09-22 17:12:24 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-09-22 17:12:24 +0000 |
| commit | c0795652f729fd65a9feaab348b62bbb27992c26 (patch) | |
| tree | d0e91bd7ec1168364fa2beacfc151e8551fe9a0c /plugins/newmail_notifier/newmail_notifier.js | |
| parent | e5b14be82dd654ef4553fc1188ccf45281e09644 (diff) | |
- Support HTML5 notifications + notification test feature
git-svn-id: https://svn.roundcube.net/trunk@5269 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'plugins/newmail_notifier/newmail_notifier.js')
| -rw-r--r-- | plugins/newmail_notifier/newmail_notifier.js | 60 |
1 files changed, 57 insertions, 3 deletions
diff --git a/plugins/newmail_notifier/newmail_notifier.js b/plugins/newmail_notifier/newmail_notifier.js index 6afd66aee..16e3edd42 100644 --- a/plugins/newmail_notifier/newmail_notifier.js +++ b/plugins/newmail_notifier/newmail_notifier.js @@ -1,7 +1,7 @@ /** * New Mail Notifier plugin script * - * @version 0.2 + * @version 0.3 * @author Aleksander Machniak <alec@alec.pl> */ @@ -22,6 +22,8 @@ function newmail_notifier_run(prop) newmail_notifier_basic(); if (prop.sound) newmail_notifier_sound(); + if (prop.desktop) + newmail_notifier_desktop(rcmail.gettext('body', 'newmail_notifier')); } // Stops notification @@ -37,11 +39,13 @@ function newmail_notifier_stop(prop) // Basic notification: window.focus and favicon change function newmail_notifier_basic() { - window.focus(); + var w = rcmail.is_framed() ? window.parent : window; + + w.focus(); // we cannot simply change a href attribute, we must to replace the link element (at least in FF) var link = $('<link rel="shortcut icon" href="plugins/newmail_notifier/favicon.ico"/>'), - oldlink = $('link[rel="shortcut icon"]'); + oldlink = $('link[rel="shortcut icon"]', w.document); rcmail.env.favicon_href = oldlink.attr('href'); link.replaceAll(oldlink); @@ -64,3 +68,53 @@ function newmail_notifier_sound() window.setTimeout("$('#sound').remove()", 5000); } } + +// Desktop notification (need Chrome or Firefox with a plugin) +function newmail_notifier_desktop(body) +{ + var dn = window.webkitNotifications; + + if (dn && !dn.checkPermission()) { + if (rcmail.newmail_popup) + rcmail.newmail_popup.cancel(); + var popup = window.webkitNotifications.createNotification('plugins/newmail_notifier/mail.png', + rcmail.gettext('title', 'newmail_notifier'), body); + popup.onclick = function() { + this.cancel(); + } + popup.show(); + setTimeout(function() { popup.cancel(); }, 10000); // close after 10 seconds + rcmail.newmail_popup = popup; + return true; + } + + return false; +} + +function newmail_notifier_test_desktop() +{ + var dn = window.webkitNotifications, + txt = rcmail.gettext('testbody', 'newmail_notifier'); + + if (dn) { + if (!dn.checkPermission()) + newmail_notifier_desktop(txt); + else + dn.requestPermission(function() { + if (!newmail_notifier_desktop(txt)) + rcmail.display_message(rcmail.gettext('desktopdisabled', 'newmail_notifier'), 'error'); + }); + } + else + rcmail.display_message(rcmail.gettext('desktopunsupported', 'newmail_notifier'), 'error'); +} + +function newmail_notifier_test_basic() +{ + newmail_notifier_basic(); +} + +function newmail_notifier_test_sound() +{ + newmail_notifier_sound(); +} |
