2020-06-17 18:31:42 +03:00
|
|
|
/*
|
2021-02-10 10:48:28 +03:00
|
|
|
* Copyright (c) 2020-2021, Andreas Kling <kling@serenityos.org>
|
2020-06-17 18:31:42 +03:00
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-06-17 18:31:42 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "WebContentClient.h"
|
2020-08-17 17:20:47 +03:00
|
|
|
#include "OutOfProcessWebView.h"
|
2021-01-17 18:57:17 +03:00
|
|
|
#include <AK/Debug.h>
|
2021-04-15 17:36:20 +03:00
|
|
|
#include <LibWeb/Cookie/ParsedCookie.h>
|
2020-06-17 18:31:42 +03:00
|
|
|
|
2022-04-30 11:46:33 +03:00
|
|
|
namespace WebView {
|
2020-08-24 14:03:18 +03:00
|
|
|
|
2023-02-09 01:05:44 +03:00
|
|
|
WebContentClient::WebContentClient(NonnullOwnPtr<Core::LocalSocket> socket, ViewImplementation& view)
|
2022-02-25 13:27:37 +03:00
|
|
|
: IPC::ConnectionToServer<WebContentClientEndpoint, WebContentServerEndpoint>(*this, move(socket))
|
2020-06-17 18:31:42 +03:00
|
|
|
, m_view(view)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-01-30 20:20:40 +03:00
|
|
|
void WebContentClient::die()
|
|
|
|
{
|
2021-02-23 22:42:32 +03:00
|
|
|
VERIFY(on_web_content_process_crash);
|
2021-01-30 20:20:40 +03:00
|
|
|
on_web_content_process_crash();
|
|
|
|
}
|
|
|
|
|
2022-04-01 20:58:27 +03:00
|
|
|
void WebContentClient::did_paint(Gfx::IntRect const&, i32 bitmap_id)
|
2020-06-17 18:31:42 +03:00
|
|
|
{
|
2021-05-02 20:54:34 +03:00
|
|
|
m_view.notify_server_did_paint({}, bitmap_id);
|
2020-06-17 18:31:42 +03:00
|
|
|
}
|
|
|
|
|
2021-09-13 00:33:23 +03:00
|
|
|
void WebContentClient::did_finish_loading(AK::URL const& url)
|
2020-06-17 18:31:42 +03:00
|
|
|
{
|
2021-05-02 20:54:34 +03:00
|
|
|
m_view.notify_server_did_finish_loading({}, url);
|
2020-06-17 18:31:42 +03:00
|
|
|
}
|
2020-06-17 19:00:18 +03:00
|
|
|
|
2022-11-11 21:33:11 +03:00
|
|
|
void WebContentClient::did_request_navigate_back()
|
|
|
|
{
|
|
|
|
m_view.notify_server_did_request_navigate_back({});
|
|
|
|
}
|
|
|
|
|
|
|
|
void WebContentClient::did_request_navigate_forward()
|
|
|
|
{
|
|
|
|
m_view.notify_server_did_request_navigate_forward({});
|
|
|
|
}
|
|
|
|
|
|
|
|
void WebContentClient::did_request_refresh()
|
|
|
|
{
|
|
|
|
m_view.notify_server_did_request_refresh({});
|
|
|
|
}
|
|
|
|
|
2021-05-02 20:54:34 +03:00
|
|
|
void WebContentClient::did_invalidate_content_rect(Gfx::IntRect const& content_rect)
|
2020-06-17 19:00:18 +03:00
|
|
|
{
|
2021-05-02 20:54:34 +03:00
|
|
|
dbgln_if(SPAM_DEBUG, "handle: WebContentClient::DidInvalidateContentRect! content_rect={}", content_rect);
|
2020-06-17 19:00:18 +03:00
|
|
|
|
|
|
|
// FIXME: Figure out a way to coalesce these messages to reduce unnecessary painting
|
2021-05-02 20:54:34 +03:00
|
|
|
m_view.notify_server_did_invalidate_content_rect({}, content_rect);
|
2020-06-17 19:00:18 +03:00
|
|
|
}
|
2020-07-04 21:57:57 +03:00
|
|
|
|
2021-05-02 20:54:34 +03:00
|
|
|
void WebContentClient::did_change_selection()
|
2020-07-04 21:57:57 +03:00
|
|
|
{
|
2021-05-01 22:10:08 +03:00
|
|
|
dbgln_if(SPAM_DEBUG, "handle: WebContentClient::DidChangeSelection!");
|
2020-07-04 21:57:57 +03:00
|
|
|
m_view.notify_server_did_change_selection({});
|
|
|
|
}
|
2020-07-05 00:19:32 +03:00
|
|
|
|
2021-05-02 20:54:34 +03:00
|
|
|
void WebContentClient::did_request_cursor_change(i32 cursor_type)
|
2021-02-28 00:12:12 +03:00
|
|
|
{
|
2021-05-02 20:54:34 +03:00
|
|
|
if (cursor_type < 0 || cursor_type >= (i32)Gfx::StandardCursor::__Count) {
|
2021-02-28 00:12:12 +03:00
|
|
|
dbgln("DidRequestCursorChange: Bad cursor type");
|
|
|
|
return;
|
|
|
|
}
|
2021-05-02 20:54:34 +03:00
|
|
|
m_view.notify_server_did_request_cursor_change({}, (Gfx::StandardCursor)cursor_type);
|
2021-02-28 00:12:12 +03:00
|
|
|
}
|
|
|
|
|
2022-12-07 00:35:32 +03:00
|
|
|
void WebContentClient::did_layout(Gfx::IntSize content_size)
|
2020-07-05 00:19:32 +03:00
|
|
|
{
|
2021-05-02 20:54:34 +03:00
|
|
|
dbgln_if(SPAM_DEBUG, "handle: WebContentClient::DidLayout! content_size={}", content_size);
|
|
|
|
m_view.notify_server_did_layout({}, content_size);
|
2020-07-05 00:19:32 +03:00
|
|
|
}
|
2020-07-05 00:40:17 +03:00
|
|
|
|
2022-12-04 21:02:33 +03:00
|
|
|
void WebContentClient::did_change_title(DeprecatedString const& title)
|
2020-07-05 00:40:17 +03:00
|
|
|
{
|
2021-05-02 20:54:34 +03:00
|
|
|
dbgln_if(SPAM_DEBUG, "handle: WebContentClient::DidChangeTitle! title={}", title);
|
|
|
|
m_view.notify_server_did_change_title({}, title);
|
2020-07-05 00:40:17 +03:00
|
|
|
}
|
2020-07-05 16:43:43 +03:00
|
|
|
|
2021-09-08 13:22:44 +03:00
|
|
|
void WebContentClient::did_request_scroll(i32 x_delta, i32 y_delta)
|
2021-03-02 00:39:07 +03:00
|
|
|
{
|
2021-09-08 13:22:44 +03:00
|
|
|
m_view.notify_server_did_request_scroll({}, x_delta, y_delta);
|
2021-03-02 00:39:07 +03:00
|
|
|
}
|
|
|
|
|
2022-12-06 23:27:44 +03:00
|
|
|
void WebContentClient::did_request_scroll_to(Gfx::IntPoint scroll_position)
|
2021-09-08 13:44:36 +03:00
|
|
|
{
|
|
|
|
m_view.notify_server_did_request_scroll_to({}, scroll_position);
|
|
|
|
}
|
|
|
|
|
2021-05-02 20:54:34 +03:00
|
|
|
void WebContentClient::did_request_scroll_into_view(Gfx::IntRect const& rect)
|
2020-07-05 16:43:43 +03:00
|
|
|
{
|
2021-05-02 20:54:34 +03:00
|
|
|
dbgln_if(SPAM_DEBUG, "handle: WebContentClient::DidRequestScrollIntoView! rect={}", rect);
|
|
|
|
m_view.notify_server_did_request_scroll_into_view({}, rect);
|
2020-07-05 16:43:43 +03:00
|
|
|
}
|
2020-07-05 17:59:20 +03:00
|
|
|
|
2022-12-06 23:27:44 +03:00
|
|
|
void WebContentClient::did_enter_tooltip_area(Gfx::IntPoint content_position, DeprecatedString const& title)
|
2021-03-30 19:10:06 +03:00
|
|
|
{
|
2021-05-02 20:54:34 +03:00
|
|
|
m_view.notify_server_did_enter_tooltip_area({}, content_position, title);
|
2021-03-30 19:10:06 +03:00
|
|
|
}
|
|
|
|
|
2021-05-02 20:54:34 +03:00
|
|
|
void WebContentClient::did_leave_tooltip_area()
|
2021-03-30 19:10:06 +03:00
|
|
|
{
|
|
|
|
m_view.notify_server_did_leave_tooltip_area({});
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:33:23 +03:00
|
|
|
void WebContentClient::did_hover_link(AK::URL const& url)
|
2020-07-05 17:59:20 +03:00
|
|
|
{
|
2021-05-02 20:54:34 +03:00
|
|
|
dbgln_if(SPAM_DEBUG, "handle: WebContentClient::DidHoverLink! url={}", url);
|
|
|
|
m_view.notify_server_did_hover_link({}, url);
|
2020-07-05 17:59:20 +03:00
|
|
|
}
|
|
|
|
|
2021-05-02 20:54:34 +03:00
|
|
|
void WebContentClient::did_unhover_link()
|
2020-07-05 17:59:20 +03:00
|
|
|
{
|
2021-05-01 22:10:08 +03:00
|
|
|
dbgln_if(SPAM_DEBUG, "handle: WebContentClient::DidUnhoverLink!");
|
2020-07-05 17:59:20 +03:00
|
|
|
m_view.notify_server_did_unhover_link({});
|
|
|
|
}
|
2020-07-06 21:01:46 +03:00
|
|
|
|
2022-12-04 21:02:33 +03:00
|
|
|
void WebContentClient::did_click_link(AK::URL const& url, DeprecatedString const& target, unsigned modifiers)
|
2020-07-06 21:01:46 +03:00
|
|
|
{
|
2021-05-02 20:54:34 +03:00
|
|
|
m_view.notify_server_did_click_link({}, url, target, modifiers);
|
2020-07-06 21:01:46 +03:00
|
|
|
}
|
|
|
|
|
2022-12-04 21:02:33 +03:00
|
|
|
void WebContentClient::did_middle_click_link(AK::URL const& url, DeprecatedString const& target, unsigned modifiers)
|
2020-07-06 21:01:46 +03:00
|
|
|
{
|
2021-05-02 20:54:34 +03:00
|
|
|
m_view.notify_server_did_middle_click_link({}, url, target, modifiers);
|
2020-07-06 21:01:46 +03:00
|
|
|
}
|
2020-07-06 22:58:16 +03:00
|
|
|
|
2022-11-10 02:29:35 +03:00
|
|
|
void WebContentClient::did_start_loading(AK::URL const& url, bool is_redirect)
|
2020-07-06 22:58:16 +03:00
|
|
|
{
|
2022-11-10 02:29:35 +03:00
|
|
|
m_view.notify_server_did_start_loading({}, url, is_redirect);
|
2020-07-06 22:58:16 +03:00
|
|
|
}
|
2020-07-07 13:24:29 +03:00
|
|
|
|
2022-12-06 23:27:44 +03:00
|
|
|
void WebContentClient::did_request_context_menu(Gfx::IntPoint content_position)
|
2020-07-07 13:24:29 +03:00
|
|
|
{
|
2021-05-02 20:54:34 +03:00
|
|
|
m_view.notify_server_did_request_context_menu({}, content_position);
|
2020-07-07 13:24:29 +03:00
|
|
|
}
|
|
|
|
|
2022-12-06 23:27:44 +03:00
|
|
|
void WebContentClient::did_request_link_context_menu(Gfx::IntPoint content_position, AK::URL const& url, DeprecatedString const& target, unsigned modifiers)
|
2020-07-07 13:24:29 +03:00
|
|
|
{
|
2021-05-02 20:54:34 +03:00
|
|
|
m_view.notify_server_did_request_link_context_menu({}, content_position, url, target, modifiers);
|
2020-07-07 13:24:29 +03:00
|
|
|
}
|
2020-08-24 14:03:18 +03:00
|
|
|
|
2022-12-06 23:27:44 +03:00
|
|
|
void WebContentClient::did_request_image_context_menu(Gfx::IntPoint content_position, AK::URL const& url, DeprecatedString const& target, unsigned modifiers, Gfx::ShareableBitmap const& bitmap)
|
2021-04-11 17:49:25 +03:00
|
|
|
{
|
2021-05-02 20:54:34 +03:00
|
|
|
m_view.notify_server_did_request_image_context_menu({}, content_position, url, target, modifiers, bitmap);
|
2021-04-11 17:49:25 +03:00
|
|
|
}
|
|
|
|
|
2022-12-04 21:02:33 +03:00
|
|
|
void WebContentClient::did_get_source(AK::URL const& url, DeprecatedString const& source)
|
2021-02-23 15:17:23 +03:00
|
|
|
{
|
2021-05-02 20:54:34 +03:00
|
|
|
m_view.notify_server_did_get_source(url, source);
|
2021-02-23 15:17:23 +03:00
|
|
|
}
|
|
|
|
|
2022-12-04 21:02:33 +03:00
|
|
|
void WebContentClient::did_get_dom_tree(DeprecatedString const& dom_tree)
|
2021-06-07 18:35:10 +03:00
|
|
|
{
|
|
|
|
m_view.notify_server_did_get_dom_tree(dom_tree);
|
|
|
|
}
|
|
|
|
|
2022-12-19 01:49:09 +03:00
|
|
|
void WebContentClient::did_get_dom_node_properties(i32 node_id, DeprecatedString const& computed_style, DeprecatedString const& resolved_style, DeprecatedString const& custom_properties, DeprecatedString const& node_box_sizing)
|
2021-08-27 14:47:30 +03:00
|
|
|
{
|
2022-12-19 01:49:09 +03:00
|
|
|
m_view.notify_server_did_get_dom_node_properties(node_id, computed_style, resolved_style, custom_properties, node_box_sizing);
|
2021-08-27 14:47:30 +03:00
|
|
|
}
|
|
|
|
|
2021-09-04 13:14:25 +03:00
|
|
|
void WebContentClient::did_output_js_console_message(i32 message_index)
|
|
|
|
{
|
|
|
|
m_view.notify_server_did_output_js_console_message(message_index);
|
|
|
|
}
|
|
|
|
|
2022-12-04 21:02:33 +03:00
|
|
|
void WebContentClient::did_get_js_console_messages(i32 start_index, Vector<DeprecatedString> const& message_types, Vector<DeprecatedString> const& messages)
|
2021-09-04 13:14:25 +03:00
|
|
|
{
|
|
|
|
m_view.notify_server_did_get_js_console_messages(start_index, message_types, messages);
|
|
|
|
}
|
|
|
|
|
2022-12-04 21:02:33 +03:00
|
|
|
void WebContentClient::did_request_alert(DeprecatedString const& message)
|
2020-09-12 12:56:13 +03:00
|
|
|
{
|
2021-05-02 20:54:34 +03:00
|
|
|
m_view.notify_server_did_request_alert({}, message);
|
2020-09-12 12:56:13 +03:00
|
|
|
}
|
|
|
|
|
2022-12-04 21:02:33 +03:00
|
|
|
void WebContentClient::did_request_confirm(DeprecatedString const& message)
|
2021-02-10 10:48:28 +03:00
|
|
|
{
|
2022-11-15 23:49:36 +03:00
|
|
|
m_view.notify_server_did_request_confirm({}, message);
|
2021-02-10 10:48:28 +03:00
|
|
|
}
|
|
|
|
|
2022-12-04 21:02:33 +03:00
|
|
|
void WebContentClient::did_request_prompt(DeprecatedString const& message, DeprecatedString const& default_)
|
2021-02-20 14:05:18 +03:00
|
|
|
{
|
2022-11-15 23:49:36 +03:00
|
|
|
m_view.notify_server_did_request_prompt({}, message, default_);
|
2021-02-20 14:05:18 +03:00
|
|
|
}
|
|
|
|
|
2022-12-04 21:02:33 +03:00
|
|
|
void WebContentClient::did_request_set_prompt_text(DeprecatedString const& message)
|
2022-11-16 16:57:05 +03:00
|
|
|
{
|
|
|
|
m_view.notify_server_did_request_set_prompt_text({}, message);
|
|
|
|
}
|
|
|
|
|
2022-11-16 14:58:14 +03:00
|
|
|
void WebContentClient::did_request_accept_dialog()
|
|
|
|
{
|
|
|
|
m_view.notify_server_did_request_accept_dialog({});
|
|
|
|
}
|
|
|
|
|
|
|
|
void WebContentClient::did_request_dismiss_dialog()
|
|
|
|
{
|
|
|
|
m_view.notify_server_did_request_dismiss_dialog({});
|
|
|
|
}
|
|
|
|
|
2021-05-02 20:54:34 +03:00
|
|
|
void WebContentClient::did_change_favicon(Gfx::ShareableBitmap const& favicon)
|
2021-03-26 17:41:25 +03:00
|
|
|
{
|
2021-05-02 20:54:34 +03:00
|
|
|
if (!favicon.is_valid()) {
|
2021-03-26 17:41:25 +03:00
|
|
|
dbgln("DidChangeFavicon: Received invalid favicon");
|
|
|
|
return;
|
|
|
|
}
|
2021-05-02 20:54:34 +03:00
|
|
|
m_view.notify_server_did_change_favicon(*favicon.bitmap());
|
2021-03-26 17:41:25 +03:00
|
|
|
}
|
|
|
|
|
2022-11-11 17:23:24 +03:00
|
|
|
Messages::WebContentClient::DidRequestAllCookiesResponse WebContentClient::did_request_all_cookies(AK::URL const& url)
|
|
|
|
{
|
|
|
|
return m_view.notify_server_did_request_all_cookies({}, url);
|
|
|
|
}
|
|
|
|
|
2022-12-04 21:02:33 +03:00
|
|
|
Messages::WebContentClient::DidRequestNamedCookieResponse WebContentClient::did_request_named_cookie(AK::URL const& url, DeprecatedString const& name)
|
2022-11-11 17:46:56 +03:00
|
|
|
{
|
|
|
|
return m_view.notify_server_did_request_named_cookie({}, url, name);
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:33:23 +03:00
|
|
|
Messages::WebContentClient::DidRequestCookieResponse WebContentClient::did_request_cookie(AK::URL const& url, u8 source)
|
2021-04-11 17:54:11 +03:00
|
|
|
{
|
2022-04-30 11:46:33 +03:00
|
|
|
return m_view.notify_server_did_request_cookie({}, url, static_cast<Web::Cookie::Source>(source));
|
2021-04-11 17:54:11 +03:00
|
|
|
}
|
|
|
|
|
2021-09-13 00:33:23 +03:00
|
|
|
void WebContentClient::did_set_cookie(AK::URL const& url, Web::Cookie::ParsedCookie const& cookie, u8 source)
|
2021-04-11 17:54:11 +03:00
|
|
|
{
|
2022-04-30 11:46:33 +03:00
|
|
|
m_view.notify_server_did_set_cookie({}, url, cookie, static_cast<Web::Cookie::Source>(source));
|
2021-04-11 17:54:11 +03:00
|
|
|
}
|
|
|
|
|
2022-11-28 19:24:04 +03:00
|
|
|
void WebContentClient::did_update_cookie(Web::Cookie::Cookie const& cookie)
|
2022-11-11 19:18:40 +03:00
|
|
|
{
|
2022-11-28 19:24:04 +03:00
|
|
|
m_view.notify_server_did_update_cookie({}, cookie);
|
2022-11-11 19:18:40 +03:00
|
|
|
}
|
|
|
|
|
2022-02-21 01:03:39 +03:00
|
|
|
void WebContentClient::did_update_resource_count(i32 count_waiting)
|
|
|
|
{
|
|
|
|
m_view.notify_server_did_update_resource_count(count_waiting);
|
|
|
|
}
|
|
|
|
|
2022-11-09 17:51:39 +03:00
|
|
|
void WebContentClient::did_request_restore_window()
|
|
|
|
{
|
|
|
|
m_view.notify_server_did_request_restore_window();
|
|
|
|
}
|
|
|
|
|
2022-12-06 23:27:44 +03:00
|
|
|
Messages::WebContentClient::DidRequestRepositionWindowResponse WebContentClient::did_request_reposition_window(Gfx::IntPoint position)
|
2022-11-09 17:51:39 +03:00
|
|
|
{
|
|
|
|
return m_view.notify_server_did_request_reposition_window(position);
|
|
|
|
}
|
|
|
|
|
2022-12-07 00:35:32 +03:00
|
|
|
Messages::WebContentClient::DidRequestResizeWindowResponse WebContentClient::did_request_resize_window(Gfx::IntSize size)
|
2022-11-09 17:51:39 +03:00
|
|
|
{
|
|
|
|
return m_view.notify_server_did_request_resize_window(size);
|
|
|
|
}
|
|
|
|
|
2022-11-09 18:04:09 +03:00
|
|
|
Messages::WebContentClient::DidRequestMaximizeWindowResponse WebContentClient::did_request_maximize_window()
|
|
|
|
{
|
|
|
|
return m_view.notify_server_did_request_maximize_window();
|
|
|
|
}
|
|
|
|
|
|
|
|
Messages::WebContentClient::DidRequestMinimizeWindowResponse WebContentClient::did_request_minimize_window()
|
|
|
|
{
|
|
|
|
return m_view.notify_server_did_request_minimize_window();
|
|
|
|
}
|
|
|
|
|
2022-11-09 21:09:17 +03:00
|
|
|
Messages::WebContentClient::DidRequestFullscreenWindowResponse WebContentClient::did_request_fullscreen_window()
|
|
|
|
{
|
|
|
|
return m_view.notify_server_did_request_fullscreen_window();
|
|
|
|
}
|
|
|
|
|
2022-12-04 21:02:33 +03:00
|
|
|
void WebContentClient::did_request_file(DeprecatedString const& path, i32 request_id)
|
2022-02-26 19:50:31 +03:00
|
|
|
{
|
|
|
|
m_view.notify_server_did_request_file({}, path, request_id);
|
|
|
|
}
|
|
|
|
|
2022-11-21 19:07:47 +03:00
|
|
|
void WebContentClient::did_finish_handling_input_event(bool event_was_accepted)
|
|
|
|
{
|
|
|
|
m_view.notify_server_did_finish_handling_input_event(event_was_accepted);
|
|
|
|
}
|
|
|
|
|
2022-12-08 04:30:37 +03:00
|
|
|
void WebContentClient::did_get_accessibility_tree(DeprecatedString const& accessibility_tree)
|
|
|
|
{
|
|
|
|
m_view.notify_server_did_get_accessibility_tree(accessibility_tree);
|
|
|
|
}
|
|
|
|
|
2020-08-24 14:03:18 +03:00
|
|
|
}
|