forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaw_render_frame_ext.cc
365 lines (303 loc) · 13.1 KB
/
aw_render_frame_ext.cc
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "android_webview/renderer/aw_render_frame_ext.h"
#include <map>
#include <memory>
#include "android_webview/common/mojom/frame.mojom.h"
#include "base/no_destructor.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "components/autofill/content/renderer/autofill_agent.h"
#include "components/autofill/content/renderer/password_autofill_agent.h"
#include "components/content_capture/common/content_capture_features.h"
#include "components/content_capture/renderer/content_capture_sender.h"
#include "content/public/renderer/render_frame.h"
#include "content/public/renderer/render_view.h"
#include "third_party/blink/public/common/associated_interfaces/associated_interface_provider.h"
#include "third_party/blink/public/platform/web_security_origin.h"
#include "third_party/blink/public/web/web_element.h"
#include "third_party/blink/public/web/web_element_collection.h"
#include "third_party/blink/public/web/web_frame_widget.h"
#include "third_party/blink/public/web/web_hit_test_result.h"
#include "third_party/blink/public/web/web_image_cache.h"
#include "third_party/blink/public/web/web_local_frame.h"
#include "third_party/blink/public/web/web_meaningful_layout.h"
#include "third_party/blink/public/web/web_node.h"
#include "third_party/blink/public/web/web_view.h"
#include "url/url_canon.h"
#include "url/url_constants.h"
#include "url/url_util.h"
namespace android_webview {
namespace {
const char kAddressPrefix[] = "geo:0,0?q=";
const char kEmailPrefix[] = "mailto:";
const char kPhoneNumberPrefix[] = "tel:";
GURL GetAbsoluteUrl(const blink::WebNode& node,
const std::u16string& url_fragment) {
return GURL(node.GetDocument().CompleteURL(
blink::WebString::FromUTF16(url_fragment)));
}
std::u16string GetHref(const blink::WebElement& element) {
// Get the actual 'href' attribute, which might relative if valid or can
// possibly contain garbage otherwise, so not using absoluteLinkURL here.
return element.GetAttribute("href").Utf16();
}
GURL GetAbsoluteSrcUrl(const blink::WebElement& element) {
if (element.IsNull())
return GURL();
return GetAbsoluteUrl(element, element.GetAttribute("src").Utf16());
}
blink::WebElement GetImgChild(const blink::WebNode& node) {
// This implementation is incomplete (for example if is an area tag) but
// matches the original WebViewClassic implementation.
blink::WebElementCollection collection = node.GetElementsByHTMLTagName("img");
DCHECK(!collection.IsNull());
return collection.FirstItem();
}
GURL GetChildImageUrlFromElement(const blink::WebElement& element) {
const blink::WebElement child_img = GetImgChild(element);
if (child_img.IsNull())
return GURL();
return GetAbsoluteSrcUrl(child_img);
}
bool RemovePrefixAndAssignIfMatches(const base::StringPiece& prefix,
const GURL& url,
std::string* dest) {
const base::StringPiece spec(url.possibly_invalid_spec());
if (base::StartsWith(spec, prefix)) {
url::RawCanonOutputW<1024> output;
url::DecodeURLEscapeSequences(
spec.data() + prefix.length(), spec.length() - prefix.length(),
url::DecodeURLMode::kUTF8OrIsomorphic, &output);
*dest =
base::UTF16ToUTF8(base::StringPiece16(output.data(), output.length()));
return true;
}
return false;
}
void DistinguishAndAssignSrcLinkType(const GURL& url,
mojom::HitTestData* data) {
if (RemovePrefixAndAssignIfMatches(kAddressPrefix, url,
&data->extra_data_for_type)) {
data->type = mojom::HitTestDataType::kGeo;
} else if (RemovePrefixAndAssignIfMatches(kPhoneNumberPrefix, url,
&data->extra_data_for_type)) {
data->type = mojom::HitTestDataType::kPhone;
} else if (RemovePrefixAndAssignIfMatches(kEmailPrefix, url,
&data->extra_data_for_type)) {
data->type = mojom::HitTestDataType::kEmail;
} else {
data->type = mojom::HitTestDataType::kSrcLink;
data->extra_data_for_type = url.possibly_invalid_spec();
if (!data->extra_data_for_type.empty())
data->href = base::UTF8ToUTF16(data->extra_data_for_type);
}
}
void PopulateHitTestData(const GURL& absolute_link_url,
const GURL& absolute_image_url,
bool is_editable,
mojom::HitTestData* data) {
// Note: Using GURL::is_empty instead of GURL:is_valid due to the
// WebViewClassic allowing any kind of protocol which GURL::is_valid
// disallows. Similar reasons for using GURL::possibly_invalid_spec instead of
// GURL::spec.
if (!absolute_image_url.is_empty())
data->img_src = absolute_image_url;
const bool is_javascript_scheme =
absolute_link_url.SchemeIs(url::kJavaScriptScheme);
const bool has_link_url = !absolute_link_url.is_empty();
const bool has_image_url = !absolute_image_url.is_empty();
if (has_link_url && !has_image_url && !is_javascript_scheme) {
DistinguishAndAssignSrcLinkType(absolute_link_url, data);
} else if (has_link_url && has_image_url && !is_javascript_scheme) {
data->type = mojom::HitTestDataType::kSrcImageLink;
data->extra_data_for_type = data->img_src.possibly_invalid_spec();
if (absolute_link_url.is_valid())
data->href = base::UTF8ToUTF16(absolute_link_url.possibly_invalid_spec());
} else if (!has_link_url && has_image_url) {
data->type = mojom::HitTestDataType::kImage;
data->extra_data_for_type = data->img_src.possibly_invalid_spec();
} else if (is_editable) {
data->type = mojom::HitTestDataType::kEditText;
DCHECK_EQ(0u, data->extra_data_for_type.length());
}
}
} // namespace
// Registry for RenderFrame => AwRenderFrameExt lookups
typedef std::map<content::RenderFrame*, AwRenderFrameExt*> FrameExtMap;
FrameExtMap* GetFrameExtMap() {
static base::NoDestructor<FrameExtMap> map;
return map.get();
}
AwRenderFrameExt::AwRenderFrameExt(content::RenderFrame* render_frame)
: content::RenderFrameObserver(render_frame) {
// TODO(sgurun) do not create a password autofill agent (change
// autofill agent to store a weakptr).
autofill::PasswordAutofillAgent* password_autofill_agent =
new autofill::PasswordAutofillAgent(render_frame, ®istry_);
new autofill::AutofillAgent(render_frame, password_autofill_agent, nullptr,
nullptr, ®istry_);
if (content_capture::features::IsContentCaptureEnabled())
new content_capture::ContentCaptureSender(render_frame, ®istry_);
// If we are the main frame register an additional mojo interface.
if (render_frame->IsMainFrame()) {
registry_.AddInterface(base::BindRepeating(
&AwRenderFrameExt::BindLocalMainFrame, base::Unretained(this)));
}
// Add myself to the RenderFrame => AwRenderFrameExt register.
GetFrameExtMap()->emplace(render_frame, this);
}
AwRenderFrameExt::~AwRenderFrameExt() {
// Remove myself from the RenderFrame => AwRenderFrameExt register. Ideally,
// we'd just use render_frame() and erase by key. However, by this time the
// render_frame has already been cleared so we have to iterate over all
// render_frames in the map and wipe the one(s) that point to this
// AwRenderFrameExt
auto* map = GetFrameExtMap();
auto it = map->begin();
while (it != map->end()) {
if (it->second == this) {
it = map->erase(it);
} else {
++it;
}
}
}
AwRenderFrameExt* AwRenderFrameExt::FromRenderFrame(
content::RenderFrame* render_frame) {
DCHECK(render_frame != nullptr);
auto iter = GetFrameExtMap()->find(render_frame);
DCHECK(GetFrameExtMap()->end() != iter)
<< "Should always exist a render_frame_ext for a render_frame";
AwRenderFrameExt* render_frame_ext = iter->second;
return render_frame_ext;
}
const mojo::AssociatedRemote<mojom::FrameHost>&
AwRenderFrameExt::GetFrameHost() {
if (!frame_host_remote_) {
render_frame()->GetRemoteAssociatedInterfaces()->GetInterface(
&frame_host_remote_);
}
return frame_host_remote_;
}
bool AwRenderFrameExt::OnAssociatedInterfaceRequestForFrame(
const std::string& interface_name,
mojo::ScopedInterfaceEndpointHandle* handle) {
return registry_.TryBindInterface(interface_name, handle);
}
void AwRenderFrameExt::DidCommitProvisionalLoad(
ui::PageTransition transition) {
// Clear the cache when we cross site boundaries in the main frame.
//
// We're trying to approximate what happens with a multi-process Chromium,
// where navigation across origins would cause a new render process to spin
// up, and thus start with a clear cache. Wiring up a signal from browser to
// renderer code to say "this navigation would have switched processes" would
// be disruptive, so this clearing of the cache is the compromise.
blink::WebLocalFrame* frame = render_frame()->GetWebFrame();
if (!frame->Parent()) {
url::Origin new_origin = url::Origin::Create(frame->GetDocument().Url());
if (!new_origin.IsSameOriginWith(last_origin_)) {
last_origin_ = new_origin;
blink::WebImageCache::Clear();
}
}
}
void AwRenderFrameExt::FocusedElementChanged(const blink::WebElement& element) {
if (element.IsNull() || !render_frame() || !render_frame()->GetRenderView())
return;
auto data = mojom::HitTestData::New();
data->href = GetHref(element);
data->anchor_text = element.TextContent().Utf16();
GURL absolute_link_url;
if (element.IsLink())
absolute_link_url = GetAbsoluteUrl(element, data->href);
GURL absolute_image_url = GetChildImageUrlFromElement(element);
PopulateHitTestData(absolute_link_url, absolute_image_url,
element.IsEditable(), data.get());
GetFrameHost()->UpdateHitTestData(std::move(data));
}
// Only main frame needs to *receive* the hit test request, because all we need
// is to get the blink::webView object and invoke a the hitTestResultForTap API
// from it.
void AwRenderFrameExt::HitTest(const gfx::PointF& touch_center,
const gfx::SizeF& touch_area) {
blink::WebView* webview = GetWebView();
if (!webview)
return;
const blink::WebHitTestResult result = webview->HitTestResultForTap(
gfx::Point(touch_center.x(), touch_center.y()),
gfx::Size(touch_area.width(), touch_area.height()));
auto data = mojom::HitTestData::New();
GURL absolute_image_url = result.AbsoluteImageURL();
if (!result.UrlElement().IsNull()) {
data->anchor_text = result.UrlElement().TextContent().Utf16();
data->href = GetHref(result.UrlElement());
// If we hit an image that failed to load, Blink won't give us its URL.
// Fall back to walking the DOM in this case.
if (absolute_image_url.is_empty())
absolute_image_url = GetChildImageUrlFromElement(result.UrlElement());
}
PopulateHitTestData(result.AbsoluteLinkURL(), absolute_image_url,
result.IsContentEditable(), data.get());
GetFrameHost()->UpdateHitTestData(std::move(data));
}
void AwRenderFrameExt::SetInitialPageScale(double page_scale_factor) {
blink::WebView* webview = GetWebView();
if (!webview)
return;
webview->SetInitialPageScaleOverride(page_scale_factor);
}
void AwRenderFrameExt::SetTextZoomFactor(float zoom_factor) {
// TODO(crbug.com/1085428): This will need to be set on every local root
// when site isolation is used in android webview.
DCHECK(render_frame()->IsMainFrame());
blink::WebView* webview = GetWebView();
if (!webview)
return;
// Hide selection and autofill popups.
webview->CancelPagePopup();
render_frame()->GetWebFrame()->FrameWidget()->SetTextZoomFactor(zoom_factor);
}
void AwRenderFrameExt::DocumentHasImage(DocumentHasImageCallback callback) {
blink::WebLocalFrame* frame = render_frame()->GetWebFrame();
// DocumentHasImages Mojo message should only be sent to the main frame.
DCHECK(frame);
DCHECK(!frame->Parent());
const blink::WebElement child_img = GetImgChild(frame->GetDocument());
bool has_images = !child_img.IsNull();
std::move(callback).Run(has_images);
}
void AwRenderFrameExt::SmoothScroll(int32_t target_x,
int32_t target_y,
base::TimeDelta duration) {
blink::WebView* webview = GetWebView();
if (!webview)
return;
webview->SmoothScroll(target_x, target_y, duration);
}
void AwRenderFrameExt::ResetScrollAndScaleState() {
blink::WebView* webview = GetWebView();
if (!webview)
return;
webview->ResetScrollAndScaleState();
}
blink::WebView* AwRenderFrameExt::GetWebView() {
if (!render_frame())
return nullptr;
return render_frame()->GetWebView();
}
blink::WebFrameWidget* AwRenderFrameExt::GetWebFrameWidget() {
return render_frame()
? render_frame()->GetWebFrame()->LocalRoot()->FrameWidget()
: nullptr;
}
void AwRenderFrameExt::OnDestruct() {
delete this;
}
void AwRenderFrameExt::BindLocalMainFrame(
mojo::PendingAssociatedReceiver<mojom::LocalMainFrame> pending_receiver) {
local_main_frame_receiver_.Bind(std::move(pending_receiver));
}
} // namespace android_webview