Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 /* | 1 /* |
2 * This file is part of Adblock Plus <http://adblockplus.org/>, | 2 * This file is part of Adblock Plus <http://adblockplus.org/>, |
3 * Copyright (C) 2006-2013 Eyeo GmbH | 3 * Copyright (C) 2006-2013 Eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
281 }); | 281 }); |
282 } | 282 } |
283 | 283 |
284 function prepareNotificationIconAndPopup() | 284 function prepareNotificationIconAndPopup() |
285 { | 285 { |
286 activeNotification.onClicked = function() | 286 activeNotification.onClicked = function() |
287 { | 287 { |
288 iconAnimation.stop(); | 288 iconAnimation.stop(); |
289 activeNotification = null; | 289 activeNotification = null; |
290 }; | 290 }; |
291 | 291 |
292 iconAnimation.update(activeNotification.severity); | 292 iconAnimation.update(activeNotification.severity); |
Felix Dahlke
2014/02/27 14:10:39
Nit: Probably whitespace differences, this shouldn
| |
293 } | 293 } |
294 | 294 |
295 function openNotificationLinks() | 295 function openNotificationLinks() |
296 { | 296 { |
297 if (activeNotification.links) | 297 if (activeNotification.links) |
298 { | 298 { |
299 activeNotification.links.forEach(function(link) | 299 activeNotification.links.forEach(function(link) |
300 { | 300 { |
301 ext.windows.getLastFocused(function(win) | 301 ext.windows.getLastFocused(function(win) |
302 { | 302 { |
303 win.openTab(Utils.getDocLink(link)); | 303 win.openTab(Utils.getDocLink(link)); |
304 }); | 304 }); |
305 }); | 305 }); |
306 } | 306 } |
307 prepareNotificationIconAndPopup(); | |
308 } | 307 } |
309 | 308 |
310 function notificationButtonClick(id, index) | 309 function notificationButtonClick(id, index) |
311 { | 310 { |
312 if (activeNotification.links && activeNotification.links[index]) | 311 if (activeNotification.links && activeNotification.links[index]) |
313 { | 312 { |
314 ext.windows.getLastFocused(function(win) | 313 ext.windows.getLastFocused(function(win) |
315 { | 314 { |
316 win.openTab(Utils.getDocLink(activeNotification.links[index])); | 315 win.openTab(Utils.getDocLink(activeNotification.links[index])); |
317 }); | 316 }); |
318 } | 317 } |
319 prepareNotificationIconAndPopup(); | |
320 } | 318 } |
321 | 319 |
322 function showNotification(notification) | 320 function showNotification(notification) |
323 { | 321 { |
324 activeNotification = notification; | 322 activeNotification = notification; |
325 if (activeNotification.severity === "critical") | 323 if (activeNotification.severity === "critical") |
326 { | 324 { |
327 var hasWebkitNotifications = typeof webkitNotifications !== "undefined"; | 325 var hasWebkitNotifications = typeof webkitNotifications !== "undefined"; |
328 if (hasWebkitNotifications && "createHTMLNotification" in webkitNotification s) | 326 if (hasWebkitNotifications && "createHTMLNotification" in webkitNotification s) |
329 { | 327 { |
330 var notification = webkitNotifications.createHTMLNotification("notificatio n.html"); | 328 var notification = webkitNotifications.createHTMLNotification("notificatio n.html"); |
331 notification.show(); | 329 notification.show(); |
332 notification.addEventListener("close", prepareNotificationIconAndPopup, fa lse); | 330 notification.addEventListener("close", prepareNotificationIconAndPopup, fa lse); |
333 return; | 331 return; |
334 } | 332 } |
335 | 333 |
336 var texts = Notification.getLocalizedTexts(notification); | 334 var texts = Notification.getLocalizedTexts(notification); |
337 var title = texts.title || ""; | 335 var title = texts.title || ""; |
338 var message = texts.message ? texts.message.replace(/<\/?(a|strong)>/g, "") : ""; | 336 var message = texts.message ? texts.message.replace(/<\/?(a|strong)>/g, "") : ""; |
339 var iconUrl = ext.getURL("icons/abp-128.png"); | 337 var iconUrl = ext.getURL("icons/abp-128.png"); |
338 var hasLinks = activeNotification.links && activeNotification.links.length > 0; | |
340 if ("browserNotifications" in ext) | 339 if ("browserNotifications" in ext) |
341 { | 340 { |
342 var opts = { | 341 var opts = { |
343 type: "basic", | 342 type: "basic", |
344 title: title, | 343 title: title, |
345 message: message, | 344 message: message, |
346 iconUrl: iconUrl, | 345 iconUrl: iconUrl, |
347 buttons: [] | 346 buttons: [] |
348 }; | 347 }; |
349 var regex = /<a>(.*?)<\/a>/g; | 348 var regex = /<a>(.*?)<\/a>/g; |
350 var plainMessage = texts.message || ""; | 349 var plainMessage = texts.message || ""; |
351 var match; | 350 var match; |
352 while (match = regex.exec(plainMessage)) | 351 while (match = regex.exec(plainMessage)) |
353 opts.buttons.push({title: match[1]}); | 352 opts.buttons.push({title: match[1]}); |
354 | 353 |
355 var notification = ext.browserNotifications; | 354 var notification = ext.browserNotifications; |
356 notification.create("", opts, function() {}); | 355 notification.create("", opts, function() {}); |
357 notification.onClosed.addListener(prepareNotificationIconAndPopup); | 356 notification.onClosed.addListener(prepareNotificationIconAndPopup); |
358 notification.onButtonClicked.addListener(notificationButtonClick); | 357 notification.onButtonClicked.addListener(notificationButtonClick); |
359 } | 358 } |
360 else if (hasWebkitNotifications && "createNotification" in webkitNotificatio ns) | 359 else if (hasWebkitNotifications && "createNotification" in webkitNotificatio ns) |
361 { | 360 { |
361 if (hasLinks) | |
362 message += " " + ext.i18n.getMessage("notification_without_buttons"); | |
363 | |
362 var notification = webkitNotifications.createNotification(iconUrl, title, message); | 364 var notification = webkitNotifications.createNotification(iconUrl, title, message); |
Thomas Greiner
2014/02/21 15:54:52
Shouldn't this notification's message also include
| |
363 notification.show(); | 365 notification.show(); |
364 notification.addEventListener("close", prepareNotificationIconAndPopup, fa lse); | 366 notification.addEventListener("close", prepareNotificationIconAndPopup, fa lse); |
365 notification.addEventListener("click", openNotificationLinks, false); | 367 notification.addEventListener("click", openNotificationLinks, false); |
366 } | 368 } |
367 else | 369 else |
368 { | 370 { |
369 var message = title + "\n" + message; | 371 var message = title + "\n" + message; |
370 if (activeNotification.links && activeNotification.links.length > 0) | 372 if (hasLinks) |
371 { | 373 message += "\n\n" + ext.i18n.getMessage("notification_with_buttons"); |
372 message += "\n\n" + ext.i18n.getMessage("confirm_window_notification"); | 374 |
373 } | 375 if (confirm(message)) |
Thomas Greiner
2014/02/27 10:07:32
Nit: Change to…
if (confirm(message))
openNotif
| |
374 var notification = confirm(message); | 376 { |
375 if (notification == true) | |
376 openNotificationLinks(); | 377 openNotificationLinks(); |
378 prepareNotificationIconAndPopup(); | |
379 } | |
380 else | |
381 prepareNotificationIconAndPopup(); | |
377 } | 382 } |
378 } | 383 } |
379 else | 384 else |
380 prepareNotificationIconAndPopup(); | 385 prepareNotificationIconAndPopup(); |
381 } | 386 } |
382 | 387 |
383 ext.onMessage.addListener(function (msg, sender, sendResponse) | 388 ext.onMessage.addListener(function (msg, sender, sendResponse) |
384 { | 389 { |
385 switch (msg.type) | 390 switch (msg.type) |
386 { | 391 { |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
492 tab.sendMessage({type: "clickhide-deactivate"}); | 497 tab.sendMessage({type: "clickhide-deactivate"}); |
493 refreshIconAndContextMenu(tab); | 498 refreshIconAndContextMenu(tab); |
494 }); | 499 }); |
495 | 500 |
496 setTimeout(function() | 501 setTimeout(function() |
497 { | 502 { |
498 var notificationToShow = Notification.getNextToShow(); | 503 var notificationToShow = Notification.getNextToShow(); |
499 if (notificationToShow) | 504 if (notificationToShow) |
500 showNotification(notificationToShow); | 505 showNotification(notificationToShow); |
501 }, 3 * 60 * 1000); | 506 }, 3 * 60 * 1000); |
LEFT | RIGHT |