blob: ec4a688566d4892775fcc7eec634795f3ced5781 [file] [log] [blame]
/*
* Copyright (C) 2009 Google Inc. All rights reserved.
* Copyright (C) 2009, 2011, 2012, 2016 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:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * 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.
* * Neither the name of Google Inc. nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 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 THE COPYRIGHT
* OWNER OR 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"
#if ENABLE(NOTIFICATIONS)
#include "Notification.h"
#include "Document.h"
#include "Event.h"
#include "EventNames.h"
#include "JSDOMPromiseDeferred.h"
#include "NotificationClient.h"
#include "NotificationController.h"
#include "NotificationData.h"
#include "NotificationPermissionCallback.h"
#include "WindowEventLoop.h"
#include "WindowFocusAllowedIndicator.h"
#include <wtf/CompletionHandler.h>
#include <wtf/IsoMallocInlines.h>
namespace WebCore {
WTF_MAKE_ISO_ALLOCATED_IMPL(Notification);
Ref<Notification> Notification::create(Document& context, const String& title, const Options& options)
{
auto notification = adoptRef(*new Notification(context, title, options));
notification->suspendIfNeeded();
notification->showSoon();
return notification;
}
Notification::Notification(Document& document, const String& title, const Options& options)
: ActiveDOMObject(document)
, m_title(title)
, m_direction(options.dir)
, m_lang(options.lang)
, m_body(options.body)
, m_tag(options.tag)
, m_state(Idle)
{
if (!options.icon.isEmpty()) {
auto iconURL = document.completeURL(options.icon);
if (iconURL.isValid())
m_icon = iconURL;
}
}
Notification::~Notification() = default;
void Notification::showSoon()
{
queueTaskKeepingObjectAlive(*this, TaskSource::UserInteraction, [this] {
show();
});
}
void Notification::show()
{
// prevent double-showing
if (m_state != Idle)
return;
auto* page = document()->page();
if (!page)
return;
auto& client = NotificationController::from(page)->client();
if (client.checkPermission(scriptExecutionContext()) != Permission::Granted) {
dispatchErrorEvent();
return;
}
if (client.show(*this))
m_state = Showing;
}
void Notification::close()
{
switch (m_state) {
case Idle:
break;
case Showing: {
if (auto* page = document()->page())
NotificationController::from(page)->client().cancel(*this);
break;
}
case Closed:
break;
}
}
Document* Notification::document() const
{
return downcast<Document>(scriptExecutionContext());
}
const char* Notification::activeDOMObjectName() const
{
return "Notification";
}
void Notification::stop()
{
ActiveDOMObject::stop();
if (auto* page = document()->page())
NotificationController::from(page)->client().notificationObjectDestroyed(*this);
}
void Notification::suspend(ReasonForSuspension)
{
close();
}
void Notification::finalize()
{
if (m_state == Closed)
return;
m_state = Closed;
}
void Notification::dispatchShowEvent()
{
queueTaskToDispatchEvent(*this, TaskSource::UserInteraction, Event::create(eventNames().showEvent, Event::CanBubble::No, Event::IsCancelable::No));
}
void Notification::dispatchClickEvent()
{
queueTaskKeepingObjectAlive(*this, TaskSource::UserInteraction, [this] {
WindowFocusAllowedIndicator windowFocusAllowed;
dispatchEvent(Event::create(eventNames().clickEvent, Event::CanBubble::No, Event::IsCancelable::No));
});
}
void Notification::dispatchCloseEvent()
{
queueTaskToDispatchEvent(*this, TaskSource::UserInteraction, Event::create(eventNames().closeEvent, Event::CanBubble::No, Event::IsCancelable::No));
finalize();
}
void Notification::dispatchErrorEvent()
{
queueTaskToDispatchEvent(*this, TaskSource::UserInteraction, Event::create(eventNames().errorEvent, Event::CanBubble::No, Event::IsCancelable::No));
}
auto Notification::permission(Document& document) -> Permission
{
auto* page = document.page();
if (!page)
return Permission::Default;
if (!document.isSecureContext())
return Permission::Denied;
return NotificationController::from(document.page())->client().checkPermission(&document);
}
void Notification::requestPermission(Document& document, RefPtr<NotificationPermissionCallback>&& callback, Ref<DeferredPromise>&& promise)
{
auto resolvePromiseAndCallback = [document = Ref { document }, callback = WTFMove(callback), promise = WTFMove(promise)](Permission permission) mutable {
document->eventLoop().queueTask(TaskSource::DOMManipulation, [callback = WTFMove(callback), promise = WTFMove(promise), permission]() mutable {
if (callback)
callback->handleEvent(permission);
promise->resolve<IDLEnumeration<NotificationPermission>>(permission);
});
};
auto* page = document.page();
if (!page)
return resolvePromiseAndCallback(Permission::Denied);
if (!document.isSecureContext()) {
document.addConsoleMessage(MessageSource::Security, MessageLevel::Error, "The Notification permission may only be requested in a secure context."_s);
return resolvePromiseAndCallback(Permission::Denied);
}
NotificationController::from(page)->client().requestPermission(document, WTFMove(resolvePromiseAndCallback));
}
void Notification::eventListenersDidChange()
{
m_hasRelevantEventListener = hasEventListeners(eventNames().clickEvent)
|| hasEventListeners(eventNames().closeEvent)
|| hasEventListeners(eventNames().errorEvent)
|| hasEventListeners(eventNames().showEvent);
}
// A Notification object must not be garbage collected while the list of notifications contains its corresponding
// notification and it has an event listener whose type is click, show, close, or error.
// See https://notifications.spec.whatwg.org/#garbage-collection
bool Notification::virtualHasPendingActivity() const
{
return m_state == Showing && m_hasRelevantEventListener;
}
NotificationData Notification::data() const
{
return {
m_title,
m_body,
m_icon.string(),
m_tag,
m_lang,
m_direction,
scriptExecutionContext()->securityOrigin()->toString(),
identifier(),
};
}
} // namespace WebCore
#endif // ENABLE(NOTIFICATIONS)