1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342
|
/*
* Copyright (C) 2017 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "ServiceWorkerRegistration.h"
#if ENABLE(SERVICE_WORKER)
#include "Document.h"
#include "Event.h"
#include "EventLoop.h"
#include "EventNames.h"
#include "JSDOMPromise.h"
#include "JSDOMPromiseDeferred.h"
#include "JSNotification.h"
#include "LocalDOMWindow.h"
#include "Logging.h"
#include "NavigationPreloadManager.h"
#include "NotificationClient.h"
#include "NotificationPermission.h"
#include "PushEvent.h"
#include "ServiceWorker.h"
#include "ServiceWorkerContainer.h"
#include "ServiceWorkerGlobalScope.h"
#include "ServiceWorkerTypes.h"
#include "WebCoreOpaqueRoot.h"
#include "WorkerGlobalScope.h"
#include <wtf/IsoMallocInlines.h>
#define REGISTRATION_RELEASE_LOG(fmt, ...) RELEASE_LOG(ServiceWorker, "%p - ServiceWorkerRegistration::" fmt, this, ##__VA_ARGS__)
#define REGISTRATION_RELEASE_LOG_ERROR(fmt, ...) RELEASE_LOG_ERROR(ServiceWorker, "%p - ServiceWorkerRegistration::" fmt, this, ##__VA_ARGS__)
namespace WebCore {
WTF_MAKE_ISO_ALLOCATED_IMPL(ServiceWorkerRegistration);
Ref<ServiceWorkerRegistration> ServiceWorkerRegistration::getOrCreate(ScriptExecutionContext& context, Ref<ServiceWorkerContainer>&& container, ServiceWorkerRegistrationData&& data)
{
if (auto* registration = container->registration(data.identifier)) {
ASSERT(!registration->isContextStopped());
return *registration;
}
auto registration = adoptRef(*new ServiceWorkerRegistration(context, WTFMove(container), WTFMove(data)));
registration->suspendIfNeeded();
return registration;
}
ServiceWorkerRegistration::ServiceWorkerRegistration(ScriptExecutionContext& context, Ref<ServiceWorkerContainer>&& container, ServiceWorkerRegistrationData&& registrationData)
: ActiveDOMObject(&context)
, m_registrationData(WTFMove(registrationData))
, m_container(WTFMove(container))
{
LOG(ServiceWorker, "Creating registration %p for registration key %s", this, m_registrationData.key.loggingString().utf8().data());
if (m_registrationData.installingWorker)
m_installingWorker = ServiceWorker::getOrCreate(context, WTFMove(*m_registrationData.installingWorker));
if (m_registrationData.waitingWorker)
m_waitingWorker = ServiceWorker::getOrCreate(context, WTFMove(*m_registrationData.waitingWorker));
if (m_registrationData.activeWorker)
m_activeWorker = ServiceWorker::getOrCreate(context, WTFMove(*m_registrationData.activeWorker));
REGISTRATION_RELEASE_LOG("ServiceWorkerRegistration: ID %llu, installing=%llu, waiting=%llu, active=%llu", identifier().toUInt64(), m_installingWorker ? m_installingWorker->identifier().toUInt64() : 0, m_waitingWorker ? m_waitingWorker->identifier().toUInt64() : 0, m_activeWorker ? m_activeWorker->identifier().toUInt64() : 0);
m_container->addRegistration(*this);
relaxAdoptionRequirement();
}
ServiceWorkerRegistration::~ServiceWorkerRegistration()
{
LOG(ServiceWorker, "Deleting registration %p for registration key %s", this, m_registrationData.key.loggingString().utf8().data());
m_container->removeRegistration(*this);
}
ServiceWorker* ServiceWorkerRegistration::installing()
{
return m_installingWorker.get();
}
ServiceWorker* ServiceWorkerRegistration::waiting()
{
return m_waitingWorker.get();
}
ServiceWorker* ServiceWorkerRegistration::active()
{
return m_activeWorker.get();
}
ServiceWorker* ServiceWorkerRegistration::getNewestWorker() const
{
if (m_installingWorker)
return m_installingWorker.get();
if (m_waitingWorker)
return m_waitingWorker.get();
return m_activeWorker.get();
}
const String& ServiceWorkerRegistration::scope() const
{
return m_registrationData.scopeURL.string();
}
ServiceWorkerUpdateViaCache ServiceWorkerRegistration::updateViaCache() const
{
return m_registrationData.updateViaCache;
}
WallTime ServiceWorkerRegistration::lastUpdateTime() const
{
return m_registrationData.lastUpdateTime;
}
void ServiceWorkerRegistration::setLastUpdateTime(WallTime lastUpdateTime)
{
m_registrationData.lastUpdateTime = lastUpdateTime;
}
void ServiceWorkerRegistration::setUpdateViaCache(ServiceWorkerUpdateViaCache updateViaCache)
{
m_registrationData.updateViaCache = updateViaCache;
}
void ServiceWorkerRegistration::update(Ref<DeferredPromise>&& promise)
{
if (isContextStopped()) {
promise->reject(Exception(InvalidStateError));
return;
}
auto* newestWorker = getNewestWorker();
if (!newestWorker) {
promise->reject(Exception(InvalidStateError, "newestWorker is null"_s));
return;
}
if (auto* serviceWorkerGlobalScope = dynamicDowncast<ServiceWorkerGlobalScope>(scriptExecutionContext()); serviceWorkerGlobalScope && serviceWorkerGlobalScope->serviceWorker().state() == ServiceWorkerState::Installing) {
promise->reject(Exception(InvalidStateError, "service worker is installing"_s));
return;
}
m_container->updateRegistration(m_registrationData.scopeURL, newestWorker->scriptURL(), newestWorker->workerType(), WTFMove(promise));
}
void ServiceWorkerRegistration::unregister(Ref<DeferredPromise>&& promise)
{
if (isContextStopped()) {
promise->reject(Exception(InvalidStateError));
return;
}
m_container->unregisterRegistration(identifier(), WTFMove(promise));
}
void ServiceWorkerRegistration::subscribeToPushService(const Vector<uint8_t>& applicationServerKey, DOMPromiseDeferred<IDLInterface<PushSubscription>>&& promise)
{
if (isContextStopped()) {
promise.reject(Exception(InvalidStateError));
return;
}
m_container->subscribeToPushService(*this, applicationServerKey, WTFMove(promise));
}
void ServiceWorkerRegistration::unsubscribeFromPushService(PushSubscriptionIdentifier subscriptionIdentifier, DOMPromiseDeferred<IDLBoolean>&& promise)
{
if (isContextStopped()) {
promise.reject(Exception(InvalidStateError));
return;
}
m_container->unsubscribeFromPushService(identifier(), subscriptionIdentifier, WTFMove(promise));
}
void ServiceWorkerRegistration::getPushSubscription(DOMPromiseDeferred<IDLNullable<IDLInterface<PushSubscription>>>&& promise)
{
if (isContextStopped()) {
promise.reject(Exception(InvalidStateError));
return;
}
m_container->getPushSubscription(*this, WTFMove(promise));
}
void ServiceWorkerRegistration::getPushPermissionState(DOMPromiseDeferred<IDLEnumeration<PushPermissionState>>&& promise)
{
if (isContextStopped()) {
promise.reject(Exception(InvalidStateError));
return;
}
m_container->getPushPermissionState(identifier(), WTFMove(promise));
}
void ServiceWorkerRegistration::updateStateFromServer(ServiceWorkerRegistrationState state, RefPtr<ServiceWorker>&& serviceWorker)
{
switch (state) {
case ServiceWorkerRegistrationState::Installing:
REGISTRATION_RELEASE_LOG("updateStateFromServer: Setting registration %llu installing worker to %llu", identifier().toUInt64(), serviceWorker ? serviceWorker->identifier().toUInt64() : 0);
m_installingWorker = WTFMove(serviceWorker);
break;
case ServiceWorkerRegistrationState::Waiting:
REGISTRATION_RELEASE_LOG("updateStateFromServer: Setting registration %llu waiting worker to %llu", identifier().toUInt64(), serviceWorker ? serviceWorker->identifier().toUInt64() : 0);
m_waitingWorker = WTFMove(serviceWorker);
break;
case ServiceWorkerRegistrationState::Active:
REGISTRATION_RELEASE_LOG("updateStateFromServer: Setting registration %llu active worker to %llu", identifier().toUInt64(), serviceWorker ? serviceWorker->identifier().toUInt64() : 0);
m_activeWorker = WTFMove(serviceWorker);
break;
}
}
void ServiceWorkerRegistration::queueTaskToFireUpdateFoundEvent()
{
if (isContextStopped())
return;
REGISTRATION_RELEASE_LOG("fireUpdateFoundEvent: Firing updatefound event for registration %llu", identifier().toUInt64());
queueTaskToDispatchEvent(*this, TaskSource::DOMManipulation, Event::create(eventNames().updatefoundEvent, Event::CanBubble::No, Event::IsCancelable::No));
}
EventTargetInterface ServiceWorkerRegistration::eventTargetInterface() const
{
return ServiceWorkerRegistrationEventTargetInterfaceType;
}
ScriptExecutionContext* ServiceWorkerRegistration::scriptExecutionContext() const
{
return ActiveDOMObject::scriptExecutionContext();
}
const char* ServiceWorkerRegistration::activeDOMObjectName() const
{
return "ServiceWorkerRegistration";
}
void ServiceWorkerRegistration::stop()
{
removeAllEventListeners();
}
bool ServiceWorkerRegistration::virtualHasPendingActivity() const
{
return getNewestWorker() && hasEventListeners();
}
NavigationPreloadManager& ServiceWorkerRegistration::navigationPreload()
{
if (!m_navigationPreload)
m_navigationPreload = std::unique_ptr<NavigationPreloadManager>(new NavigationPreloadManager(*this));
return *m_navigationPreload;
}
WebCoreOpaqueRoot root(ServiceWorkerRegistration* registration)
{
return WebCoreOpaqueRoot { registration };
}
#if ENABLE(NOTIFICATION_EVENT)
void ServiceWorkerRegistration::showNotification(ScriptExecutionContext& context, String&& title, NotificationOptions&& options, Ref<DeferredPromise>&& promise)
{
if (!m_activeWorker) {
RELEASE_LOG_ERROR(Push, "Cannot show notification from ServiceWorker: No active worker");
promise->reject(Exception { TypeError, "Registration does not have an active worker"_s });
return;
}
auto* client = context.notificationClient();
if (!client) {
RELEASE_LOG_ERROR(Push, "Cannot show notification from ServiceWorker: Registration not active");
promise->reject(Exception { TypeError, "Registration not active"_s });
return;
}
if (client->checkPermission(&context) != NotificationPermission::Granted) {
RELEASE_LOG_ERROR(Push, "Cannot show notification from ServiceWorker: Client permission is not granted");
promise->reject(Exception { TypeError, "Registration does not have permission to show notifications"_s });
return;
}
auto notificationResult = Notification::createForServiceWorker(context, WTFMove(title), WTFMove(options), m_registrationData.scopeURL);
if (notificationResult.hasException()) {
RELEASE_LOG_ERROR(Push, "Cannot show notification from ServiceWorker: Creating Notification had an exception");
promise->reject(notificationResult.releaseException());
return;
}
if (auto* serviceWorkerGlobalScope = dynamicDowncast<ServiceWorkerGlobalScope>(context)) {
if (auto* pushEvent = serviceWorkerGlobalScope->pushEvent()) {
auto& globalObject = *JSC::jsCast<JSDOMGlobalObject*>(promise->globalObject());
auto& jsPromise = *JSC::jsCast<JSC::JSPromise*>(promise->promise());
pushEvent->waitUntil(DOMPromise::create(globalObject, jsPromise));
}
if (!serviceWorkerGlobalScope->hasPendingSilentPushEvent() && serviceWorkerGlobalScope->didFirePushEventRecently())
serviceWorkerGlobalScope->addConsoleMessage(MessageSource::Storage, MessageLevel::Warning, "showNotification was called outside of any push event lifetime. PushEvent.waitUntil can be used to extend the push event lifetime as necessary."_s, 0);
else
serviceWorkerGlobalScope->setHasPendingSilentPushEvent(false);
}
auto notification = notificationResult.releaseReturnValue();
notification->show([promise = WTFMove(promise)]() mutable {
promise->resolve();
});
}
void ServiceWorkerRegistration::getNotifications(const GetNotificationOptions& filter, DOMPromiseDeferred<IDLSequence<IDLInterface<Notification>>> promise)
{
m_container->getNotifications(m_registrationData.scopeURL, filter.tag, WTFMove(promise));
}
#endif // ENABLE(NOTIFICATION_EVENT)
} // namespace WebCore
#endif // ENABLE(SERVICE_WORKER)
|