1 | /* |
2 | * Copyright (C) 2011 Apple Inc. All rights reserved. |
3 | * |
4 | * Redistribution and use in source and binary forms, with or without |
5 | * modification, are permitted provided that the following conditions |
6 | * are met: |
7 | * 1. Redistributions of source code must retain the above copyright |
8 | * notice, this list of conditions and the following disclaimer. |
9 | * 2. Redistributions in binary form must reproduce the above copyright |
10 | * notice, this list of conditions and the following disclaimer in the |
11 | * documentation and/or other materials provided with the distribution. |
12 | * |
13 | * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' |
14 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, |
15 | * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
16 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS |
17 | * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
18 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
19 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
20 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
21 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
22 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
23 | * THE POSSIBILITY OF SUCH DAMAGE. |
24 | */ |
25 | |
26 | #include "config.h" |
27 | #include "InjectedBundlePagePolicyClient.h" |
28 | |
29 | #include "APIError.h" |
30 | #include "APIURLRequest.h" |
31 | #include "InjectedBundleNavigationAction.h" |
32 | #include "WKBundleAPICast.h" |
33 | #include "WebFrame.h" |
34 | #include "WebPage.h" |
35 | |
36 | namespace WebKit { |
37 | using namespace WebCore; |
38 | |
39 | WKBundlePagePolicyAction InjectedBundlePagePolicyClient::decidePolicyForNavigationAction(WebPage* page, WebFrame* frame, InjectedBundleNavigationAction* action, const ResourceRequest& resourceRequest, RefPtr<API::Object>& userData) |
40 | { |
41 | if (!m_client.decidePolicyForNavigationAction) |
42 | return WKBundlePagePolicyActionPassThrough; |
43 | |
44 | Ref<API::URLRequest> request = API::URLRequest::create(resourceRequest); |
45 | |
46 | WKTypeRef userDataToPass = 0; |
47 | WKBundlePagePolicyAction policy = m_client.decidePolicyForNavigationAction(toAPI(page), toAPI(frame), toAPI(action), toAPI(request.ptr()), &userDataToPass, m_client.base.clientInfo); |
48 | userData = adoptRef(toImpl(userDataToPass)); |
49 | return policy; |
50 | } |
51 | |
52 | WKBundlePagePolicyAction InjectedBundlePagePolicyClient::decidePolicyForNewWindowAction(WebPage* page, WebFrame* frame, InjectedBundleNavigationAction* action, const ResourceRequest& resourceRequest, const String& frameName, RefPtr<API::Object>& userData) |
53 | { |
54 | if (!m_client.decidePolicyForNewWindowAction) |
55 | return WKBundlePagePolicyActionPassThrough; |
56 | |
57 | Ref<API::URLRequest> request = API::URLRequest::create(resourceRequest); |
58 | |
59 | WKTypeRef userDataToPass = 0; |
60 | WKBundlePagePolicyAction policy = m_client.decidePolicyForNewWindowAction(toAPI(page), toAPI(frame), toAPI(action), toAPI(request.ptr()), toAPI(frameName.impl()), &userDataToPass, m_client.base.clientInfo); |
61 | userData = adoptRef(toImpl(userDataToPass)); |
62 | return policy; |
63 | } |
64 | |
65 | WKBundlePagePolicyAction InjectedBundlePagePolicyClient::decidePolicyForResponse(WebPage* page, WebFrame* frame, const ResourceResponse& resourceResponse, const ResourceRequest& resourceRequest, RefPtr<API::Object>& userData) |
66 | { |
67 | if (!m_client.decidePolicyForResponse) |
68 | return WKBundlePagePolicyActionPassThrough; |
69 | |
70 | Ref<API::URLResponse> response = API::URLResponse::create(resourceResponse); |
71 | Ref<API::URLRequest> request = API::URLRequest::create(resourceRequest); |
72 | |
73 | WKTypeRef userDataToPass = 0; |
74 | WKBundlePagePolicyAction policy = m_client.decidePolicyForResponse(toAPI(page), toAPI(frame), toAPI(response.ptr()), toAPI(request.ptr()), &userDataToPass, m_client.base.clientInfo); |
75 | userData = adoptRef(toImpl(userDataToPass)); |
76 | return policy; |
77 | } |
78 | |
79 | void InjectedBundlePagePolicyClient::unableToImplementPolicy(WebPage* page, WebFrame* frame, const WebCore::ResourceError& error, RefPtr<API::Object>& userData) |
80 | { |
81 | if (!m_client.unableToImplementPolicy) |
82 | return; |
83 | |
84 | WKTypeRef userDataToPass = 0; |
85 | m_client.unableToImplementPolicy(toAPI(page), toAPI(frame), toAPI(error), &userDataToPass, m_client.base.clientInfo); |
86 | userData = adoptRef(toImpl(userDataToPass)); |
87 | } |
88 | |
89 | } // namespace WebKit |
90 | |