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 "WKBundleAPICast.h"
32
33using namespace WebCore;
34
35namespace WebKit {
36
37WKBundlePagePolicyAction InjectedBundlePagePolicyClient::decidePolicyForNavigationAction(WebPage* page, WebFrame* frame, InjectedBundleNavigationAction* action, const ResourceRequest& resourceRequest, RefPtr<API::Object>& userData)
38{
39    if (!m_client.decidePolicyForNavigationAction)
40        return WKBundlePagePolicyActionPassThrough;
41
42    RefPtr<API::URLRequest> request = API::URLRequest::create(resourceRequest);
43
44    WKTypeRef userDataToPass = 0;
45    WKBundlePagePolicyAction policy = m_client.decidePolicyForNavigationAction(toAPI(page), toAPI(frame), toAPI(action), toAPI(request.get()), &userDataToPass, m_client.base.clientInfo);
46    userData = adoptRef(toImpl(userDataToPass));
47    return policy;
48}
49
50WKBundlePagePolicyAction InjectedBundlePagePolicyClient::decidePolicyForNewWindowAction(WebPage* page, WebFrame* frame, InjectedBundleNavigationAction* action, const ResourceRequest& resourceRequest, const String& frameName, RefPtr<API::Object>& userData)
51{
52    if (!m_client.decidePolicyForNewWindowAction)
53        return WKBundlePagePolicyActionPassThrough;
54
55    RefPtr<API::URLRequest> request = API::URLRequest::create(resourceRequest);
56
57    WKTypeRef userDataToPass = 0;
58    WKBundlePagePolicyAction policy = m_client.decidePolicyForNewWindowAction(toAPI(page), toAPI(frame), toAPI(action), toAPI(request.get()), toAPI(frameName.impl()), &userDataToPass, m_client.base.clientInfo);
59    userData = adoptRef(toImpl(userDataToPass));
60    return policy;
61}
62
63WKBundlePagePolicyAction InjectedBundlePagePolicyClient::decidePolicyForResponse(WebPage* page, WebFrame* frame, const ResourceResponse& resourceResponse, const ResourceRequest& resourceRequest, RefPtr<API::Object>& userData)
64{
65    if (!m_client.decidePolicyForResponse)
66        return WKBundlePagePolicyActionPassThrough;
67
68    RefPtr<API::URLResponse> response = API::URLResponse::create(resourceResponse);
69    RefPtr<API::URLRequest> request = API::URLRequest::create(resourceRequest);
70
71    WKTypeRef userDataToPass = 0;
72    WKBundlePagePolicyAction policy = m_client.decidePolicyForResponse(toAPI(page), toAPI(frame), toAPI(response.get()), toAPI(request.get()), &userDataToPass, m_client.base.clientInfo);
73    userData = adoptRef(toImpl(userDataToPass));
74    return policy;
75}
76
77void InjectedBundlePagePolicyClient::unableToImplementPolicy(WebPage* page, WebFrame* frame, const WebCore::ResourceError& error, RefPtr<API::Object>& userData)
78{
79    if (!m_client.unableToImplementPolicy)
80        return;
81
82    WKTypeRef userDataToPass = 0;
83    m_client.unableToImplementPolicy(toAPI(page), toAPI(frame), toAPI(error), &userDataToPass, m_client.base.clientInfo);
84    userData = adoptRef(toImpl(userDataToPass));
85}
86
87} // namespace WebKit
88