mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:18:48 +00:00
7a25ca546c
- fix patch ordering coming from PM repo (3a8768f44) - Bug 1119074 - If we're stopping event propagation from XUL popups, also stop them from crossing process boundaries r=smaug,felipe (965e2193e) - Bug 1082145 - |js::WatchGuts| can leak |wpmap|. r=erahm (12c86f3d3) - No Bug - Improve Interpreter stack accessor assertions. (rs=Waldo) (8ba7a702c) - Bug 874842 - Return Event instead of nsIDOMEvent (748b57fd2) - Bug 1165966 - Add test cases r=terrence (79a909d5b) - Bug 1167025: Do not mix bool and int in bitwise-or in blendpsMask; r=sunfish (f0f23c0c4) - Bug 1158323 - Make sure we set a base rect on document elements that have margins set. r=tn (c253a2ef8) - Bug 1178847 - Move the code from ChromeProcessController::InitializeRoot to APZCCallbackHelper so it can be reused in the child process. r=botond (16d539bcb) - Bug 1165966 - Add error checking when populating safepoints r=bhackett (c66d249d1) - spacing and pointer style (cddc1bac4) - Bug 1196027 - check the actual current marking mode instead of the permanent intention, r=terrence (eddcfd7fb) - Bug 1206590: Move gcWeakMapList from JSCompartment to JS::Zone. r=terrence (7e5e0d505) - Bug 1181908 part 1. Fix support for JSOP_OBJECT in scripts parsed on background threads by clearing the unboxedLayouts list on the background thread parsing compartment when merging the parse result to the target compartment. r=jandem (25c6a3b01) - Bug 1163207 - Make RematerializedFrame store the real callee. (r=shu) (ce276e91c) - Bug 1164448 - Handle unwound rectifier frames as exit frames in JitProfilingFrameIterator. r=jandem (bb639b4e2) - Bug 1164448 - Add test. r=jandem (83f5cc608) - Bug 1196497 - Don't assert that the replacer continues to pass IsArray during JSON.stringify. (If the replacer was a revocable proxy to an array, revoking the proxy would make the replacer no longer IsArray.) r=evilpie (442c3823f) - Bug 1177247 - Prevent HandlePossibleViewportChange from clobbering a restored scroll position from forward/back navigation. r=botond (4202ac757) - Bug 1182772, optimize ProcessGlobal out from CC graph (and also TabChild's EventListeners), r=mccr8 (ccb2278bf) - Bug 1139155 - Add a mechanism to know when the APZ is done processing. r=botond (17328e5be) - Bug 1171537 - Allow URIs to be the empty string in TabParent::RecvCreateWindow. r=billm. (e280e994c) - Bug 1173219 - Return nsresults from TabParent::RecvCreateWindow to make opening windows more robust. r=billm (9f0633b15) - Bug 1142817 - Use UniquePtr in testXDR_sourceMap. r=erahm (7ec437162)
342 lines
10 KiB
C++
342 lines
10 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
#include "mozilla/dom/DesktopNotification.h"
|
|
#include "mozilla/dom/DesktopNotificationBinding.h"
|
|
#include "mozilla/dom/AppNotificationServiceOptionsBinding.h"
|
|
#include "mozilla/dom/ToJSValue.h"
|
|
#include "nsContentPermissionHelper.h"
|
|
#include "nsXULAppAPI.h"
|
|
#include "mozilla/dom/PBrowserChild.h"
|
|
#include "nsIDOMDesktopNotification.h"
|
|
#include "mozilla/Preferences.h"
|
|
#include "nsGlobalWindow.h"
|
|
#include "nsIAppsService.h"
|
|
#include "nsIScriptSecurityManager.h"
|
|
#include "nsServiceManagerUtils.h"
|
|
#include "PermissionMessageUtils.h"
|
|
#include "nsILoadContext.h"
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
/*
|
|
* Simple Request
|
|
*/
|
|
class DesktopNotificationRequest : public nsIContentPermissionRequest
|
|
, public nsRunnable
|
|
{
|
|
virtual ~DesktopNotificationRequest()
|
|
{
|
|
}
|
|
|
|
nsCOMPtr<nsIContentPermissionRequester> mRequester;
|
|
public:
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
NS_DECL_NSICONTENTPERMISSIONREQUEST
|
|
|
|
explicit DesktopNotificationRequest(DesktopNotification* aNotification)
|
|
: mDesktopNotification(aNotification)
|
|
{
|
|
mRequester = new nsContentPermissionRequester(mDesktopNotification->GetOwner());
|
|
}
|
|
|
|
NS_IMETHOD Run() override
|
|
{
|
|
nsCOMPtr<nsPIDOMWindow> window = mDesktopNotification->GetOwner();
|
|
nsContentPermissionUtils::AskPermission(this, window);
|
|
return NS_OK;
|
|
}
|
|
|
|
nsRefPtr<DesktopNotification> mDesktopNotification;
|
|
};
|
|
|
|
/* ------------------------------------------------------------------------ */
|
|
/* AlertServiceObserver */
|
|
/* ------------------------------------------------------------------------ */
|
|
|
|
NS_IMPL_ISUPPORTS(AlertServiceObserver, nsIObserver)
|
|
|
|
/* ------------------------------------------------------------------------ */
|
|
/* DesktopNotification */
|
|
/* ------------------------------------------------------------------------ */
|
|
|
|
uint32_t DesktopNotification::sCount = 0;
|
|
|
|
nsresult
|
|
DesktopNotification::PostDesktopNotification()
|
|
{
|
|
if (!mObserver) {
|
|
mObserver = new AlertServiceObserver(this);
|
|
}
|
|
|
|
#ifdef MOZ_B2G
|
|
nsCOMPtr<nsIAppNotificationService> appNotifier =
|
|
do_GetService("@mozilla.org/system-alerts-service;1");
|
|
if (appNotifier) {
|
|
nsCOMPtr<nsPIDOMWindow> window = GetOwner();
|
|
uint32_t appId = (window.get())->GetDoc()->NodePrincipal()->GetAppId();
|
|
|
|
if (appId != nsIScriptSecurityManager::UNKNOWN_APP_ID) {
|
|
nsCOMPtr<nsIAppsService> appsService = do_GetService("@mozilla.org/AppsService;1");
|
|
nsString manifestUrl = EmptyString();
|
|
appsService->GetManifestURLByLocalId(appId, manifestUrl);
|
|
mozilla::AutoSafeJSContext cx;
|
|
JS::Rooted<JS::Value> val(cx);
|
|
AppNotificationServiceOptions ops;
|
|
ops.mTextClickable = true;
|
|
ops.mManifestURL = manifestUrl;
|
|
|
|
if (!ToJSValue(cx, ops, &val)) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
return appNotifier->ShowAppNotification(mIconURL, mTitle, mDescription,
|
|
mObserver, val);
|
|
}
|
|
}
|
|
#endif
|
|
|
|
nsCOMPtr<nsIAlertsService> alerts = do_GetService("@mozilla.org/alerts-service;1");
|
|
if (!alerts) {
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
// Generate a unique name (which will also be used as a cookie) because
|
|
// the nsIAlertsService will coalesce notifications with the same name.
|
|
// In the case of IPC, the parent process will use the cookie to map
|
|
// to nsIObservers, thus cookies must be unique to differentiate observers.
|
|
nsString uniqueName = NS_LITERAL_STRING("desktop-notification:");
|
|
uniqueName.AppendInt(sCount++);
|
|
nsCOMPtr<nsIDocument> doc = GetOwner()->GetDoc();
|
|
nsIPrincipal* principal = doc->NodePrincipal();
|
|
nsCOMPtr<nsILoadContext> loadContext = doc->GetLoadContext();
|
|
bool inPrivateBrowsing = loadContext && loadContext->UsePrivateBrowsing();
|
|
return alerts->ShowAlertNotification(mIconURL, mTitle, mDescription,
|
|
true,
|
|
uniqueName,
|
|
mObserver,
|
|
uniqueName,
|
|
NS_LITERAL_STRING("auto"),
|
|
EmptyString(),
|
|
EmptyString(),
|
|
principal,
|
|
inPrivateBrowsing);
|
|
}
|
|
|
|
DesktopNotification::DesktopNotification(const nsAString & title,
|
|
const nsAString & description,
|
|
const nsAString & iconURL,
|
|
nsPIDOMWindow *aWindow,
|
|
nsIPrincipal* principal)
|
|
: DOMEventTargetHelper(aWindow)
|
|
, mTitle(title)
|
|
, mDescription(description)
|
|
, mIconURL(iconURL)
|
|
, mPrincipal(principal)
|
|
, mAllow(false)
|
|
, mShowHasBeenCalled(false)
|
|
{
|
|
if (Preferences::GetBool("notification.disabled", false)) {
|
|
return;
|
|
}
|
|
|
|
// If we are in testing mode (running mochitests, for example)
|
|
// and we are suppose to allow requests, then just post an allow event.
|
|
if (Preferences::GetBool("notification.prompt.testing", false) &&
|
|
Preferences::GetBool("notification.prompt.testing.allow", true)) {
|
|
mAllow = true;
|
|
}
|
|
}
|
|
|
|
void
|
|
DesktopNotification::Init()
|
|
{
|
|
nsRefPtr<DesktopNotificationRequest> request = new DesktopNotificationRequest(this);
|
|
|
|
NS_DispatchToMainThread(request);
|
|
}
|
|
|
|
DesktopNotification::~DesktopNotification()
|
|
{
|
|
if (mObserver) {
|
|
mObserver->Disconnect();
|
|
}
|
|
}
|
|
|
|
void
|
|
DesktopNotification::DispatchNotificationEvent(const nsString& aName)
|
|
{
|
|
if (NS_FAILED(CheckInnerWindowCorrectness())) {
|
|
return;
|
|
}
|
|
|
|
nsRefPtr<Event> event = NS_NewDOMEvent(this, nullptr, nullptr);
|
|
// it doesn't bubble, and it isn't cancelable
|
|
nsresult rv = event->InitEvent(aName, false, false);
|
|
if (NS_FAILED(rv)) {
|
|
return;
|
|
}
|
|
event->SetTrusted(true);
|
|
DispatchDOMEvent(nullptr, event, nullptr, nullptr);
|
|
}
|
|
|
|
nsresult
|
|
DesktopNotification::SetAllow(bool aAllow)
|
|
{
|
|
mAllow = aAllow;
|
|
|
|
// if we have called Show() already, lets go ahead and post a notification
|
|
if (mShowHasBeenCalled && aAllow) {
|
|
return PostDesktopNotification();
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
void
|
|
DesktopNotification::HandleAlertServiceNotification(const char *aTopic)
|
|
{
|
|
if (NS_FAILED(CheckInnerWindowCorrectness())) {
|
|
return;
|
|
}
|
|
|
|
if (!strcmp("alertclickcallback", aTopic)) {
|
|
DispatchNotificationEvent(NS_LITERAL_STRING("click"));
|
|
} else if (!strcmp("alertfinished", aTopic)) {
|
|
DispatchNotificationEvent(NS_LITERAL_STRING("close"));
|
|
}
|
|
}
|
|
|
|
void
|
|
DesktopNotification::Show(ErrorResult& aRv)
|
|
{
|
|
mShowHasBeenCalled = true;
|
|
|
|
if (!mAllow) {
|
|
return;
|
|
}
|
|
|
|
aRv = PostDesktopNotification();
|
|
}
|
|
|
|
JSObject*
|
|
DesktopNotification::WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
|
|
{
|
|
return DesktopNotificationBinding::Wrap(aCx, this, aGivenProto);
|
|
}
|
|
|
|
/* ------------------------------------------------------------------------ */
|
|
/* DesktopNotificationCenter */
|
|
/* ------------------------------------------------------------------------ */
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE_0(DesktopNotificationCenter)
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(DesktopNotificationCenter)
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(DesktopNotificationCenter)
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(DesktopNotificationCenter)
|
|
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
|
NS_INTERFACE_MAP_END
|
|
|
|
already_AddRefed<DesktopNotification>
|
|
DesktopNotificationCenter::CreateNotification(const nsAString& aTitle,
|
|
const nsAString& aDescription,
|
|
const nsAString& aIconURL)
|
|
{
|
|
MOZ_ASSERT(mOwner);
|
|
|
|
nsRefPtr<DesktopNotification> notification =
|
|
new DesktopNotification(aTitle,
|
|
aDescription,
|
|
aIconURL,
|
|
mOwner,
|
|
mPrincipal);
|
|
notification->Init();
|
|
return notification.forget();
|
|
}
|
|
|
|
JSObject*
|
|
DesktopNotificationCenter::WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
|
|
{
|
|
return DesktopNotificationCenterBinding::Wrap(aCx, this, aGivenProto);
|
|
}
|
|
|
|
/* ------------------------------------------------------------------------ */
|
|
/* DesktopNotificationRequest */
|
|
/* ------------------------------------------------------------------------ */
|
|
|
|
NS_IMPL_ISUPPORTS_INHERITED(DesktopNotificationRequest, nsRunnable,
|
|
nsIContentPermissionRequest)
|
|
|
|
NS_IMETHODIMP
|
|
DesktopNotificationRequest::GetPrincipal(nsIPrincipal * *aRequestingPrincipal)
|
|
{
|
|
if (!mDesktopNotification) {
|
|
return NS_ERROR_NOT_INITIALIZED;
|
|
}
|
|
|
|
NS_IF_ADDREF(*aRequestingPrincipal = mDesktopNotification->mPrincipal);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
DesktopNotificationRequest::GetWindow(nsIDOMWindow * *aRequestingWindow)
|
|
{
|
|
if (!mDesktopNotification) {
|
|
return NS_ERROR_NOT_INITIALIZED;
|
|
}
|
|
|
|
NS_IF_ADDREF(*aRequestingWindow = mDesktopNotification->GetOwner());
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
DesktopNotificationRequest::GetElement(nsIDOMElement * *aElement)
|
|
{
|
|
NS_ENSURE_ARG_POINTER(aElement);
|
|
*aElement = nullptr;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
DesktopNotificationRequest::Cancel()
|
|
{
|
|
nsresult rv = mDesktopNotification->SetAllow(false);
|
|
mDesktopNotification = nullptr;
|
|
return rv;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
DesktopNotificationRequest::Allow(JS::HandleValue aChoices)
|
|
{
|
|
MOZ_ASSERT(aChoices.isUndefined());
|
|
nsresult rv = mDesktopNotification->SetAllow(true);
|
|
mDesktopNotification = nullptr;
|
|
return rv;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
DesktopNotificationRequest::GetRequester(nsIContentPermissionRequester** aRequester)
|
|
{
|
|
NS_ENSURE_ARG_POINTER(aRequester);
|
|
|
|
nsCOMPtr<nsIContentPermissionRequester> requester = mRequester;
|
|
requester.forget(aRequester);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
DesktopNotificationRequest::GetTypes(nsIArray** aTypes)
|
|
{
|
|
nsTArray<nsString> emptyOptions;
|
|
return nsContentPermissionUtils::CreatePermissionArray(NS_LITERAL_CSTRING("desktop-notification"),
|
|
NS_LITERAL_CSTRING("unused"),
|
|
emptyOptions,
|
|
aTypes);
|
|
}
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|