mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 05:37:11 +00:00
65d6aee9e0
- Bug 1132141 - Update storage when ServiceWorker registration fails. (5bf56ab4f) - Bug 1001691 - WorkerPrivate::LoadInfo -> WorkerLoadInfo (bc017200f) - Bug 1001691 - Move WorkerType out of WorkerPrivate.h (02751f7b6) - Bug 1131882 - Associate ServiceWorkers with underlying ServiceWorkerInfo. (4492ae042) - Bug 1131874 - ServiceWorker persistence activation fixes. (cd4f32309) - Bug 1142015 - Add source for messages dispatched to a Service Worker. (25b685a06) - Bug 1053275 - Exempt ServiceWorkers from per domain thread limits. (f67251f0d) - Bug 1139561 - Various small ServiceWorker test fixes. (dbd0beae4) - Bug 1130688 - Implement additional scope checking in service worker registration. (cbd8fee66) - Bug 1142841: Convert all nsRefPtr<nsIRunnable> to nsCOMPtr<nsIRunnable>. r=ehsan (9d4e51880) - Bug 1134462 - Synthesize status and headers from Response returned by ServiceWorker. (8203ae32b) - Bug 1134462 - allow null body. (1490bb9bd) - Bug 1141332 - Disable content decoding and use decoded length on intercepted channels. (2eec7968b) - Bug 1134330 - Mark fetch events as reloads appropriately. (a3025a42a) - Bug 1136757 - Add direct Response overload for FetchEvent.respondWith(). (a33248935) - Bug 1134462 - Cleanup Promise usage in fetch test SW. (fbe9f4cd5) - Bug 1134462 followup: Add missing MOZ_OVERRIDE annotation to SynthesizeStatus impls in SynthesizeStatus.h. (fb34b64d4) - Bug 1142124 - Never revalidate cache entries for synthesized responses. (0f4842e41) - Bug 1143155 - Filtered response stores internal response and allows access to headers. (956c334b1) - Bug 1133861 - Enable the Fetch API by default. (e05918105) - Bug 1140791 - Run fetch tests on main thread and workers. (e672969d6) - Bug 1144819 - Change JS_DefineProperty APIs to treat getter=nullptr and setter=nullptr as indicating class getter/setter ops only for data properties. (e030ab7d6)
296 lines
7.8 KiB
C++
296 lines
7.8 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 "ServiceWorkerRegistration.h"
|
|
|
|
#include "mozilla/dom/Promise.h"
|
|
#include "mozilla/dom/ServiceWorkerRegistrationBinding.h"
|
|
#include "mozilla/Services.h"
|
|
#include "nsCycleCollectionParticipant.h"
|
|
#include "nsNetUtil.h"
|
|
#include "nsServiceManagerUtils.h"
|
|
#include "ServiceWorker.h"
|
|
|
|
#include "nsIDocument.h"
|
|
#include "nsIServiceWorkerManager.h"
|
|
#include "nsISupportsPrimitives.h"
|
|
#include "nsPIDOMWindow.h"
|
|
|
|
using namespace mozilla::dom::workers;
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION_INHERITED(ServiceWorkerRegistration)
|
|
NS_INTERFACE_MAP_END_INHERITING(DOMEventTargetHelper)
|
|
|
|
NS_IMPL_ADDREF_INHERITED(ServiceWorkerRegistration, DOMEventTargetHelper)
|
|
NS_IMPL_RELEASE_INHERITED(ServiceWorkerRegistration, DOMEventTargetHelper)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_INHERITED(ServiceWorkerRegistration,
|
|
DOMEventTargetHelper,
|
|
mInstallingWorker,
|
|
mWaitingWorker,
|
|
mActiveWorker)
|
|
|
|
ServiceWorkerRegistration::ServiceWorkerRegistration(nsPIDOMWindow* aWindow,
|
|
const nsAString& aScope)
|
|
: DOMEventTargetHelper(aWindow)
|
|
, mScope(aScope)
|
|
, mListeningForEvents(false)
|
|
{
|
|
MOZ_ASSERT(aWindow);
|
|
MOZ_ASSERT(aWindow->IsInnerWindow());
|
|
|
|
StartListeningForEvents();
|
|
}
|
|
|
|
ServiceWorkerRegistration::~ServiceWorkerRegistration()
|
|
{
|
|
StopListeningForEvents();
|
|
}
|
|
|
|
void
|
|
ServiceWorkerRegistration::DisconnectFromOwner()
|
|
{
|
|
StopListeningForEvents();
|
|
DOMEventTargetHelper::DisconnectFromOwner();
|
|
}
|
|
|
|
JSObject*
|
|
ServiceWorkerRegistration::WrapObject(JSContext* aCx)
|
|
{
|
|
return ServiceWorkerRegistrationBinding::Wrap(aCx, this);
|
|
}
|
|
|
|
already_AddRefed<workers::ServiceWorker>
|
|
ServiceWorkerRegistration::GetInstalling()
|
|
{
|
|
if (!mInstallingWorker) {
|
|
mInstallingWorker = GetWorkerReference(WhichServiceWorker::INSTALLING_WORKER);
|
|
}
|
|
|
|
nsRefPtr<ServiceWorker> ret = mInstallingWorker;
|
|
return ret.forget();
|
|
}
|
|
|
|
already_AddRefed<workers::ServiceWorker>
|
|
ServiceWorkerRegistration::GetWaiting()
|
|
{
|
|
if (!mWaitingWorker) {
|
|
mWaitingWorker = GetWorkerReference(WhichServiceWorker::WAITING_WORKER);
|
|
}
|
|
|
|
nsRefPtr<ServiceWorker> ret = mWaitingWorker;
|
|
return ret.forget();
|
|
}
|
|
|
|
already_AddRefed<workers::ServiceWorker>
|
|
ServiceWorkerRegistration::GetActive()
|
|
{
|
|
if (!mActiveWorker) {
|
|
mActiveWorker = GetWorkerReference(WhichServiceWorker::ACTIVE_WORKER);
|
|
}
|
|
|
|
nsRefPtr<ServiceWorker> ret = mActiveWorker;
|
|
return ret.forget();
|
|
}
|
|
|
|
namespace {
|
|
|
|
class UnregisterCallback final : public nsIServiceWorkerUnregisterCallback
|
|
{
|
|
nsRefPtr<Promise> mPromise;
|
|
|
|
public:
|
|
NS_DECL_ISUPPORTS
|
|
|
|
explicit UnregisterCallback(Promise* aPromise)
|
|
: mPromise(aPromise)
|
|
{
|
|
MOZ_ASSERT(mPromise);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
UnregisterSucceeded(bool aState) override
|
|
{
|
|
AssertIsOnMainThread();
|
|
mPromise->MaybeResolve(aState);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
UnregisterFailed() override
|
|
{
|
|
AssertIsOnMainThread();
|
|
|
|
AutoJSAPI api;
|
|
api.Init(mPromise->GetParentObject());
|
|
mPromise->MaybeReject(api.cx(), JS::UndefinedHandleValue);
|
|
return NS_OK;
|
|
}
|
|
|
|
private:
|
|
~UnregisterCallback()
|
|
{ }
|
|
};
|
|
|
|
NS_IMPL_ISUPPORTS(UnregisterCallback, nsIServiceWorkerUnregisterCallback)
|
|
|
|
} // anonymous namespace
|
|
|
|
already_AddRefed<Promise>
|
|
ServiceWorkerRegistration::Unregister(ErrorResult& aRv)
|
|
{
|
|
nsCOMPtr<nsIGlobalObject> go = do_QueryInterface(GetOwner());
|
|
if (!go) {
|
|
aRv.Throw(NS_ERROR_FAILURE);
|
|
return nullptr;
|
|
}
|
|
|
|
// Although the spec says that the same-origin checks should also be done
|
|
// asynchronously, we do them in sync because the Promise created by the
|
|
// WebIDL infrastructure due to a returned error will be resolved
|
|
// asynchronously. We aren't making any internal state changes in these
|
|
// checks, so ordering of multiple calls is not affected.
|
|
nsCOMPtr<nsIDocument> document = GetOwner()->GetExtantDoc();
|
|
if (!document) {
|
|
aRv.Throw(NS_ERROR_FAILURE);
|
|
return nullptr;
|
|
}
|
|
|
|
nsCOMPtr<nsIURI> scopeURI;
|
|
nsCOMPtr<nsIURI> baseURI = document->GetBaseURI();
|
|
// "If the origin of scope is not client's origin..."
|
|
nsresult rv = NS_NewURI(getter_AddRefs(scopeURI), mScope, nullptr, baseURI);
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
aRv.Throw(NS_ERROR_DOM_SECURITY_ERR);
|
|
return nullptr;
|
|
}
|
|
|
|
nsCOMPtr<nsIPrincipal> documentPrincipal = document->NodePrincipal();
|
|
rv = documentPrincipal->CheckMayLoad(scopeURI, true /* report */,
|
|
false /* allowIfInheritsPrinciple */);
|
|
if (NS_FAILED(rv)) {
|
|
aRv.Throw(NS_ERROR_DOM_SECURITY_ERR);
|
|
return nullptr;
|
|
}
|
|
|
|
nsAutoCString uriSpec;
|
|
aRv = scopeURI->GetSpecIgnoringRef(uriSpec);
|
|
if (NS_WARN_IF(aRv.Failed())) {
|
|
return nullptr;
|
|
}
|
|
|
|
nsCOMPtr<nsIServiceWorkerManager> swm =
|
|
do_GetService(SERVICEWORKERMANAGER_CONTRACTID, &rv);
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
aRv.Throw(rv);
|
|
return nullptr;
|
|
}
|
|
|
|
nsRefPtr<Promise> promise = Promise::Create(go, aRv);
|
|
if (NS_WARN_IF(aRv.Failed())) {
|
|
return nullptr;
|
|
}
|
|
|
|
nsRefPtr<UnregisterCallback> cb = new UnregisterCallback(promise);
|
|
|
|
NS_ConvertUTF8toUTF16 scope(uriSpec);
|
|
aRv = swm->Unregister(documentPrincipal, cb, scope);
|
|
if (aRv.Failed()) {
|
|
return nullptr;
|
|
}
|
|
|
|
return promise.forget();
|
|
}
|
|
|
|
already_AddRefed<workers::ServiceWorker>
|
|
ServiceWorkerRegistration::GetWorkerReference(WhichServiceWorker aWhichOne)
|
|
{
|
|
nsCOMPtr<nsPIDOMWindow> window = GetOwner();
|
|
if (!window) {
|
|
return nullptr;
|
|
}
|
|
|
|
nsresult rv;
|
|
nsCOMPtr<nsIServiceWorkerManager> swm =
|
|
do_GetService(SERVICEWORKERMANAGER_CONTRACTID, &rv);
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
return nullptr;
|
|
}
|
|
|
|
nsCOMPtr<nsISupports> serviceWorker;
|
|
switch(aWhichOne) {
|
|
case WhichServiceWorker::INSTALLING_WORKER:
|
|
rv = swm->GetInstalling(window, mScope, getter_AddRefs(serviceWorker));
|
|
break;
|
|
case WhichServiceWorker::WAITING_WORKER:
|
|
rv = swm->GetWaiting(window, mScope, getter_AddRefs(serviceWorker));
|
|
break;
|
|
case WhichServiceWorker::ACTIVE_WORKER:
|
|
rv = swm->GetActive(window, mScope, getter_AddRefs(serviceWorker));
|
|
break;
|
|
default:
|
|
MOZ_CRASH("Invalid enum value");
|
|
}
|
|
|
|
NS_WARN_IF_FALSE(NS_SUCCEEDED(rv) || rv == NS_ERROR_DOM_NOT_FOUND_ERR,
|
|
"Unexpected error getting service worker instance from ServiceWorkerManager");
|
|
if (NS_FAILED(rv)) {
|
|
return nullptr;
|
|
}
|
|
|
|
nsRefPtr<ServiceWorker> ref =
|
|
static_cast<ServiceWorker*>(serviceWorker.get());
|
|
return ref.forget();
|
|
}
|
|
|
|
void
|
|
ServiceWorkerRegistration::InvalidateWorkerReference(WhichServiceWorker aWhichOnes)
|
|
{
|
|
if (aWhichOnes & WhichServiceWorker::INSTALLING_WORKER) {
|
|
mInstallingWorker = nullptr;
|
|
}
|
|
|
|
if (aWhichOnes & WhichServiceWorker::WAITING_WORKER) {
|
|
mWaitingWorker = nullptr;
|
|
}
|
|
|
|
if (aWhichOnes & WhichServiceWorker::ACTIVE_WORKER) {
|
|
mActiveWorker = nullptr;
|
|
}
|
|
}
|
|
|
|
// XXXnsm, maybe this can be optimized to only add when a event handler is
|
|
// registered.
|
|
void
|
|
ServiceWorkerRegistration::StartListeningForEvents()
|
|
{
|
|
nsCOMPtr<nsIServiceWorkerManager> swm = do_GetService(SERVICEWORKERMANAGER_CONTRACTID);
|
|
if (swm) {
|
|
swm->AddRegistrationEventListener(mScope, this);
|
|
mListeningForEvents = true;
|
|
}
|
|
}
|
|
|
|
void
|
|
ServiceWorkerRegistration::StopListeningForEvents()
|
|
{
|
|
if (!mListeningForEvents) {
|
|
return;
|
|
}
|
|
|
|
nsCOMPtr<nsIServiceWorkerManager> swm = do_GetService(SERVICEWORKERMANAGER_CONTRACTID);
|
|
if (swm) {
|
|
swm->RemoveRegistrationEventListener(mScope, this);
|
|
mListeningForEvents = false;
|
|
}
|
|
}
|
|
|
|
} // dom namespace
|
|
} // mozilla namespace
|