Thomas B.
2013-07-17 5acb99a4981b8cc2697d72dc8d7e166e2a01bdc4
Merge pull request #87 from rimas-kudelis/master

Merge pull request #87 from rimas-kudelis: additions to newmail_notifier
1 files added
3 files modified
66 ■■■■■ changed files
plugins/newmail_notifier/newmail_notifier.js 66 ●●●●● patch | view | raw | blame | history
plugins/newmail_notifier/overlay.ico patch | view | raw | blame | history
skins/classic/images/favicon.ico patch | view | raw | blame | history
skins/larry/images/favicon.ico patch | view | raw | blame | history
plugins/newmail_notifier/newmail_notifier.js
@@ -34,6 +34,13 @@
        $('<link rel="shortcut icon" href="'+rcmail.env.favicon_href+'"/>').replaceAll('link[rel="shortcut icon"]');
        rcmail.env.favicon_href = null;
    }
    // Remove IE icon overlay if we're pinned to Taskbar
    try {
        if(window.external.msIsSiteMode()) {
            window.external.msSiteModeClearIconOverlay();
        }
    } catch(e) {}
}
// Basic notification: window.focus and favicon change
@@ -49,6 +56,13 @@
    rcmail.env.favicon_href = oldlink.attr('href');
    link.replaceAll(oldlink);
    // Add IE icon overlay if we're pinned to Taskbar
    try {
        if (window.external.msIsSiteMode()) {
            window.external.msSiteModeSetIconOverlay('plugins/newmail_notifier/overlay.ico', rcmail.gettext('title', 'newmail_notifier'));
        }
    } catch(e) {}
}
// Sound notification
@@ -69,9 +83,34 @@
    }
}
// Desktop notification (need Chrome or Firefox with a plugin)
// Desktop notification
// - Require Chrome or Firefox latest version (22+) / 21.0 or older with a plugin
function newmail_notifier_desktop(body)
{
/**
 * Fix: As of 17 June 2013, Chrome/Chromium does not implement Notification.permission correctly that
 *      it gives 'undefined' until an object has been created:
 *      https://code.google.com/p/chromium/issues/detail?id=163226
 *
 */
    try {
        if (Notification.permission == 'granted' || Notification.permission == undefined) {
            var popup = new Notification(rcmail.gettext('title', 'newmail_notifier'), {
                dir: "auto",
                lang: "",
                body: body,
                tag: "newmail_notifier",
                icon: "plugins/newmail_notifier/mail.png",
            });
            popup.onclick = function() {
                this.close();
            }
            setTimeout(function() { popup.close(); }, 10000); // close after 10 seconds
            if (popup.permission == 'granted') return true;
        }
    }
    catch (e) {
    var dn = window.webkitNotifications;
    if (dn && !dn.checkPermission()) {
@@ -87,15 +126,23 @@
        rcmail.newmail_popup = popup;
        return true;
    }
    }
    return false;
}
function newmail_notifier_test_desktop()
{
    var dn = window.webkitNotifications,
        txt = rcmail.gettext('testbody', 'newmail_notifier');
    var txt = rcmail.gettext('testbody', 'newmail_notifier');
    // W3C draft implementation (with fix for Chrome/Chromium)
    try {
        var testNotification = new window.Notification(txt, {tag: "newmail_notifier"});  // Try to show a test message
        if (Notification.permission !== 'granted' || (testNotification.permission && testNotification.permission !== 'granted'))
            newmail_notifier_desktop_authorize();
    }
    // webkit implementation
    catch (e) {
        var dn = window.webkitNotifications;
    if (dn) {
        if (!dn.checkPermission())
            newmail_notifier_desktop(txt);
@@ -106,7 +153,9 @@
            });
    }
    else
            // Everything fails, means the browser has no support
        rcmail.display_message(rcmail.gettext('desktopunsupported', 'newmail_notifier'), 'error');
    }
}
function newmail_notifier_test_basic()
@@ -118,3 +167,12 @@
{
    newmail_notifier_sound();
}
function newmail_notifier_desktop_authorize() {
        Notification.requestPermission(function(perm) {
                if (perm == 'denied')
                        rcmail.display_message(rcmail.gettext('desktopdisabled', 'newmail_notifier'), 'error');
                if (perm == 'granted')
                        newmail_notifier_test_desktop();  // Test again, which should show test message
        });
}
plugins/newmail_notifier/overlay.ico
skins/classic/images/favicon.ico

skins/larry/images/favicon.ico