1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "android_webview/native/aw_contents_client_bridge.h"
7 #include "base/android/jni_android.h"
8 #include "base/android/jni_array.h"
9 #include "base/android/jni_string.h"
10 #include "base/callback.h"
11 #include "content/public/browser/browser_thread.h"
12 #include "jni/AwContentsClientBridge_jni.h"
13 #include "net/cert/x509_certificate.h"
16 using base::android::AttachCurrentThread
;
17 using base::android::ConvertJavaStringToUTF16
;
18 using base::android::ConvertUTF8ToJavaString
;
19 using base::android::ConvertUTF16ToJavaString
;
20 using base::android::JavaRef
;
21 using base::android::ScopedJavaLocalRef
;
22 using content::BrowserThread
;
24 namespace android_webview
{
26 AwContentsClientBridge::AwContentsClientBridge(JNIEnv
* env
, jobject obj
)
27 : java_ref_(env
, obj
) {
29 Java_AwContentsClientBridge_setNativeContentsClientBridge(
30 env
, obj
, reinterpret_cast<jint
>(this));
33 AwContentsClientBridge::~AwContentsClientBridge() {
34 JNIEnv
* env
= AttachCurrentThread();
36 ScopedJavaLocalRef
<jobject
> obj
= java_ref_
.get(env
);
39 // Clear the weak reference from the java peer to the native object since
40 // it is possible that java object lifetime can exceed the AwContens.
41 Java_AwContentsClientBridge_setNativeContentsClientBridge(env
, obj
.obj(), 0);
44 void AwContentsClientBridge::AllowCertificateError(
46 net::X509Certificate
* cert
,
47 const GURL
& request_url
,
48 const base::Callback
<void(bool)>& callback
,
49 bool* cancel_request
) {
51 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI
));
52 JNIEnv
* env
= AttachCurrentThread();
54 ScopedJavaLocalRef
<jobject
> obj
= java_ref_
.get(env
);
58 std::string der_string
;
59 net::X509Certificate::GetDEREncoded(cert
->os_cert_handle(), &der_string
);
60 ScopedJavaLocalRef
<jbyteArray
> jcert
= base::android::ToJavaByteArray(
62 reinterpret_cast<const uint8
*>(der_string
.data()),
64 ScopedJavaLocalRef
<jstring
> jurl(ConvertUTF8ToJavaString(
65 env
, request_url
.spec()));
66 // We need to add the callback before making the call to java side,
67 // as it may do a synchronous callback prior to returning.
68 int request_id
= pending_cert_error_callbacks_
.Add(
69 new CertErrorCallback(callback
));
70 *cancel_request
= !Java_AwContentsClientBridge_allowCertificateError(
71 env
, obj
.obj(), cert_error
, jcert
.obj(), jurl
.obj(), request_id
);
72 // if the request is cancelled, then cancel the stored callback
73 if (*cancel_request
) {
74 pending_cert_error_callbacks_
.Remove(request_id
);
78 void AwContentsClientBridge::ProceedSslError(JNIEnv
* env
, jobject obj
,
79 jboolean proceed
, jint id
) {
80 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI
));
81 CertErrorCallback
* callback
= pending_cert_error_callbacks_
.Lookup(id
);
82 if (!callback
|| callback
->is_null()) {
83 LOG(WARNING
) << "Ignoring unexpected ssl error proceed callback";
86 callback
->Run(proceed
);
87 pending_cert_error_callbacks_
.Remove(id
);
90 void AwContentsClientBridge::RunJavaScriptDialog(
91 content::JavaScriptMessageType message_type
,
92 const GURL
& origin_url
,
93 const string16
& message_text
,
94 const string16
& default_prompt_text
,
95 const content::JavaScriptDialogManager::DialogClosedCallback
& callback
) {
96 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI
));
97 JNIEnv
* env
= AttachCurrentThread();
99 ScopedJavaLocalRef
<jobject
> obj
= java_ref_
.get(env
);
103 int callback_id
= pending_js_dialog_callbacks_
.Add(
104 new content::JavaScriptDialogManager::DialogClosedCallback(callback
));
105 ScopedJavaLocalRef
<jstring
> jurl(
106 ConvertUTF8ToJavaString(env
, origin_url
.spec()));
107 ScopedJavaLocalRef
<jstring
> jmessage(
108 ConvertUTF16ToJavaString(env
, message_text
));
110 switch (message_type
) {
111 case content::JAVASCRIPT_MESSAGE_TYPE_ALERT
:
112 Java_AwContentsClientBridge_handleJsAlert(
113 env
, obj
.obj(), jurl
.obj(), jmessage
.obj(), callback_id
);
115 case content::JAVASCRIPT_MESSAGE_TYPE_CONFIRM
:
116 Java_AwContentsClientBridge_handleJsConfirm(
117 env
, obj
.obj(), jurl
.obj(), jmessage
.obj(), callback_id
);
119 case content::JAVASCRIPT_MESSAGE_TYPE_PROMPT
: {
120 ScopedJavaLocalRef
<jstring
> jdefault_value(
121 ConvertUTF16ToJavaString(env
, default_prompt_text
));
122 Java_AwContentsClientBridge_handleJsPrompt(env
,
126 jdefault_value
.obj(),
135 void AwContentsClientBridge::RunBeforeUnloadDialog(
136 const GURL
& origin_url
,
137 const string16
& message_text
,
138 const content::JavaScriptDialogManager::DialogClosedCallback
& callback
) {
139 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI
));
140 JNIEnv
* env
= AttachCurrentThread();
142 ScopedJavaLocalRef
<jobject
> obj
= java_ref_
.get(env
);
146 int callback_id
= pending_js_dialog_callbacks_
.Add(
147 new content::JavaScriptDialogManager::DialogClosedCallback(callback
));
148 ScopedJavaLocalRef
<jstring
> jurl(
149 ConvertUTF8ToJavaString(env
, origin_url
.spec()));
150 ScopedJavaLocalRef
<jstring
> jmessage(
151 ConvertUTF16ToJavaString(env
, message_text
));
153 Java_AwContentsClientBridge_handleJsBeforeUnload(
154 env
, obj
.obj(), jurl
.obj(), jmessage
.obj(), callback_id
);
157 void AwContentsClientBridge::ConfirmJsResult(JNIEnv
* env
,
161 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI
));
162 content::JavaScriptDialogManager::DialogClosedCallback
* callback
=
163 pending_js_dialog_callbacks_
.Lookup(id
);
165 LOG(WARNING
) << "Unexpected JS dialog confirm. " << id
;
168 string16 prompt_text
;
170 prompt_text
= ConvertJavaStringToUTF16(env
, prompt
);
172 callback
->Run(true, prompt_text
);
173 pending_js_dialog_callbacks_
.Remove(id
);
176 void AwContentsClientBridge::CancelJsResult(JNIEnv
*, jobject
, int id
) {
177 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI
));
178 content::JavaScriptDialogManager::DialogClosedCallback
* callback
=
179 pending_js_dialog_callbacks_
.Lookup(id
);
181 LOG(WARNING
) << "Unexpected JS dialog cancel. " << id
;
184 callback
->Run(false, string16());
185 pending_js_dialog_callbacks_
.Remove(id
);
188 bool RegisterAwContentsClientBridge(JNIEnv
* env
) {
189 return RegisterNativesImpl(env
) >= 0;
192 } // namespace android_webview