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
|
/*
* Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this program; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#include "config.h"
#include "QtWebPagePolicyClient.h"
#include "WKFrame.h"
#include "WKURLQt.h"
#include "qquickwebview_p_p.h"
#include "qwebnavigationrequest_p.h"
#include <QtCore/QObject>
#include <WKFramePolicyListener.h>
#include <WKRetainPtr.h>
#include <WKURLRequest.h>
namespace WebKit {
QtWebPagePolicyClient::QtWebPagePolicyClient(WKPageRef pageRef, QQuickWebView* webView)
: m_webView(webView)
{
WKPagePolicyClient policyClient;
memset(&policyClient, 0, sizeof(WKPagePolicyClient));
policyClient.version = kWKPagePolicyClientCurrentVersion;
policyClient.clientInfo = this;
policyClient.decidePolicyForNavigationAction = decidePolicyForNavigationAction;
policyClient.decidePolicyForResponse = decidePolicyForResponse;
WKPageSetPagePolicyClient(pageRef, &policyClient);
}
void QtWebPagePolicyClient::decidePolicyForNavigationAction(const QUrl& url, Qt::MouseButton mouseButton, Qt::KeyboardModifiers keyboardModifiers, QQuickWebView::NavigationType navigationType, WKFramePolicyListenerRef listener)
{
// NOTE: even though the C API (and the WebKit2 IPC) supports an asynchronous answer, this is not currently working.
// We are expected to call the listener immediately. See the patch for https://bugs.webkit.org/show_bug.cgi?id=53785.
QWebNavigationRequest navigationRequest(url, mouseButton, keyboardModifiers, navigationType);
emit m_webView->navigationRequested(&navigationRequest);
switch (navigationRequest.action()) {
case QQuickWebView::IgnoreRequest:
WKFramePolicyListenerIgnore(listener);
return;
case QQuickWebViewExperimental::DownloadRequest:
WKFramePolicyListenerDownload(listener);
return;
case QQuickWebView::AcceptRequest:
WKFramePolicyListenerUse(listener);
return;
}
ASSERT_NOT_REACHED();
}
static inline QtWebPagePolicyClient* toQtWebPagePolicyClient(const void* clientInfo)
{
ASSERT(clientInfo);
return reinterpret_cast<QtWebPagePolicyClient*>(const_cast<void*>(clientInfo));
}
static Qt::MouseButton toQtMouseButton(WKEventMouseButton button)
{
switch (button) {
case kWKEventMouseButtonLeftButton:
return Qt::LeftButton;
case kWKEventMouseButtonMiddleButton:
return Qt::MiddleButton;
case kWKEventMouseButtonRightButton:
return Qt::RightButton;
case kWKEventMouseButtonNoButton:
return Qt::NoButton;
}
ASSERT_NOT_REACHED();
return Qt::NoButton;
}
static Qt::KeyboardModifiers toQtKeyboardModifiers(WKEventModifiers modifiers)
{
Qt::KeyboardModifiers qtModifiers = Qt::NoModifier;
if (modifiers & kWKEventModifiersShiftKey)
qtModifiers |= Qt::ShiftModifier;
if (modifiers & kWKEventModifiersControlKey)
qtModifiers |= Qt::ControlModifier;
if (modifiers & kWKEventModifiersAltKey)
qtModifiers |= Qt::AltModifier;
if (modifiers & kWKEventModifiersMetaKey)
qtModifiers |= Qt::MetaModifier;
return qtModifiers;
}
static QQuickWebView::NavigationType toQuickWebViewNavigationType(WKFrameNavigationType navigationType)
{
switch (navigationType) {
case kWKFrameNavigationTypeLinkClicked:
return QQuickWebView::LinkClickedNavigation;
case kWKFrameNavigationTypeFormSubmitted:
return QQuickWebView::FormSubmittedNavigation;
case kWKFrameNavigationTypeBackForward:
return QQuickWebView::BackForwardNavigation;
case kWKFrameNavigationTypeReload:
return QQuickWebView::ReloadNavigation;
case kWKFrameNavigationTypeFormResubmitted:
return QQuickWebView::FormResubmittedNavigation;
case kWKFrameNavigationTypeOther:
return QQuickWebView::OtherNavigation;
}
ASSERT_NOT_REACHED();
return QQuickWebView::OtherNavigation;
}
void QtWebPagePolicyClient::decidePolicyForNavigationAction(WKPageRef, WKFrameRef frame, WKFrameNavigationType navigationType, WKEventModifiers modifiers, WKEventMouseButton mouseButton, WKURLRequestRef request, WKFramePolicyListenerRef listener, WKTypeRef, const void* clientInfo)
{
WKRetainPtr<WKURLRef> frameURL(AdoptWK, WKFrameCopyURL(frame));
WKRetainPtr<WKURLRef> requestURL(AdoptWK, WKURLRequestCopyURL(request));
QUrl qUrl = WKURLCopyQUrl(requestURL.get());
toQtWebPagePolicyClient(clientInfo)->decidePolicyForNavigationAction(qUrl, toQtMouseButton(mouseButton), toQtKeyboardModifiers(modifiers), toQuickWebViewNavigationType(navigationType), listener);
}
void QtWebPagePolicyClient::decidePolicyForResponse(WKPageRef page, WKFrameRef frame, WKURLResponseRef response, WKURLRequestRef, WKFramePolicyListenerRef listener, WKTypeRef, const void*)
{
String type = toImpl(response)->resourceResponse().mimeType();
type.makeLower();
bool canShowMIMEType = toImpl(frame)->canShowMIMEType(type);
if (WKPageGetMainFrame(page) == frame) {
if (canShowMIMEType) {
WKFramePolicyListenerUse(listener);
return;
}
// If we can't use (show) it then we should download it.
WKFramePolicyListenerDownload(listener);
return;
}
// We should ignore downloadable top-level content for subframes, with an exception for text/xml and application/xml so we can still support Acid3 test.
// It makes the browser intentionally behave differently when it comes to text(application)/xml content in subframes vs. mainframe.
if (!canShowMIMEType && !(type == "text/xml" || type == "application/xml")) {
WKFramePolicyListenerIgnore(listener);
return;
}
WKFramePolicyListenerUse(listener);
}
} // namespace WebKit
|