2021-09-11 23:43:34 +01:00
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2021, Luke Wilde <lukew@serenityos.org>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
2024-04-27 12:09:58 +12:00
|
|
|
|
#include <LibWeb/Bindings/HistoryPrototype.h>
|
2022-09-25 16:38:21 -06:00
|
|
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
2021-09-11 23:43:34 +01:00
|
|
|
|
#include <LibWeb/DOM/Document.h>
|
|
|
|
|
#include <LibWeb/HTML/History.h>
|
2024-08-06 14:18:40 +02:00
|
|
|
|
#include <LibWeb/HTML/Navigation.h>
|
2023-08-21 17:44:42 -06:00
|
|
|
|
#include <LibWeb/HTML/StructuredSerialize.h>
|
2023-08-24 23:30:21 +02:00
|
|
|
|
#include <LibWeb/HTML/TraversableNavigable.h>
|
2024-08-06 14:18:40 +02:00
|
|
|
|
#include <LibWeb/HTML/Window.h>
|
2021-09-11 23:43:34 +01:00
|
|
|
|
|
|
|
|
|
namespace Web::HTML {
|
|
|
|
|
|
2023-11-19 19:47:52 +01:00
|
|
|
|
JS_DEFINE_ALLOCATOR(History);
|
|
|
|
|
|
2023-08-13 13:05:26 +02:00
|
|
|
|
JS::NonnullGCPtr<History> History::create(JS::Realm& realm, DOM::Document& document)
|
2021-09-11 23:43:34 +01:00
|
|
|
|
{
|
2023-08-13 13:05:26 +02:00
|
|
|
|
return realm.heap().allocate<History>(realm, realm, document);
|
2022-09-02 13:50:24 +02:00
|
|
|
|
}
|
|
|
|
|
|
2022-09-25 16:38:21 -06:00
|
|
|
|
History::History(JS::Realm& realm, DOM::Document& document)
|
|
|
|
|
: PlatformObject(realm)
|
2022-09-02 13:50:24 +02:00
|
|
|
|
, m_associated_document(document)
|
|
|
|
|
{
|
2021-09-11 23:43:34 +01:00
|
|
|
|
}
|
|
|
|
|
|
2022-03-14 13:21:51 -06:00
|
|
|
|
History::~History() = default;
|
2021-09-11 23:43:34 +01:00
|
|
|
|
|
2023-08-07 08:41:28 +02:00
|
|
|
|
void History::initialize(JS::Realm& realm)
|
2023-01-10 06:28:20 -05:00
|
|
|
|
{
|
2023-08-07 08:41:28 +02:00
|
|
|
|
Base::initialize(realm);
|
2024-03-16 13:13:08 +01:00
|
|
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(History);
|
2023-01-10 06:28:20 -05:00
|
|
|
|
}
|
|
|
|
|
|
2022-09-02 13:50:24 +02:00
|
|
|
|
void History::visit_edges(Cell::Visitor& visitor)
|
|
|
|
|
{
|
|
|
|
|
Base::visit_edges(visitor);
|
2023-11-19 16:18:00 +13:00
|
|
|
|
visitor.visit(m_associated_document);
|
2023-09-27 22:39:44 -06:00
|
|
|
|
visitor.visit(m_state);
|
2022-09-02 13:50:24 +02:00
|
|
|
|
}
|
|
|
|
|
|
2021-09-11 23:43:34 +01:00
|
|
|
|
// https://html.spec.whatwg.org/multipage/history.html#dom-history-pushstate
|
2023-09-23 23:04:24 +02:00
|
|
|
|
// The pushState(data, unused, url) method steps are to run the shared history push/replace state steps given this, data, url, and "push".
|
2023-08-26 17:03:52 +12:00
|
|
|
|
WebIDL::ExceptionOr<void> History::push_state(JS::Value data, String const&, Optional<String> const& url)
|
2021-09-11 23:43:34 +01:00
|
|
|
|
{
|
2023-09-23 23:04:24 +02:00
|
|
|
|
return shared_history_push_replace_state(data, url, HistoryHandlingBehavior::Push);
|
2021-09-11 23:43:34 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// https://html.spec.whatwg.org/multipage/history.html#dom-history-replacestate
|
2023-09-23 23:04:24 +02:00
|
|
|
|
// The replaceState(data, unused, url) method steps are to run the shared history push/replace state steps given this, data, url, and "replace".
|
2023-08-26 17:03:52 +12:00
|
|
|
|
WebIDL::ExceptionOr<void> History::replace_state(JS::Value data, String const&, Optional<String> const& url)
|
2021-09-11 23:43:34 +01:00
|
|
|
|
{
|
2023-09-23 23:04:24 +02:00
|
|
|
|
return shared_history_push_replace_state(data, url, HistoryHandlingBehavior::Replace);
|
2021-09-11 23:43:34 +01:00
|
|
|
|
}
|
|
|
|
|
|
2022-10-13 22:43:04 +08:00
|
|
|
|
// https://html.spec.whatwg.org/multipage/history.html#dom-history-length
|
|
|
|
|
WebIDL::ExceptionOr<u64> History::length() const
|
|
|
|
|
{
|
2023-09-23 22:57:04 +02:00
|
|
|
|
// 1. If this's relevant global object's associated Document is not fully active, then throw a "SecurityError" DOMException.
|
2022-10-13 22:43:04 +08:00
|
|
|
|
if (!m_associated_document->is_fully_active())
|
2023-09-06 16:03:01 +12:00
|
|
|
|
return WebIDL::SecurityError::create(realm(), "Cannot perform length on a document that isn't fully active."_fly_string);
|
2022-10-13 22:43:04 +08:00
|
|
|
|
|
2023-09-23 22:57:04 +02:00
|
|
|
|
// 2. Return this's length.
|
|
|
|
|
return m_length;
|
2022-10-13 22:43:04 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-09-27 22:39:44 -06:00
|
|
|
|
// https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-history-state
|
|
|
|
|
WebIDL::ExceptionOr<JS::Value> History::state() const
|
|
|
|
|
{
|
|
|
|
|
// 1. If this's relevant global object's associated Document is not fully active, then throw a "SecurityError" DOMException.
|
|
|
|
|
if (!m_associated_document->is_fully_active())
|
|
|
|
|
return WebIDL::SecurityError::create(realm(), "Cannot perform state on a document that isn't fully active."_fly_string);
|
|
|
|
|
|
|
|
|
|
// 2. Return this's state.
|
|
|
|
|
return m_state;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-10 21:25:31 -07:00
|
|
|
|
JS::Value History::unsafe_state() const
|
|
|
|
|
{
|
|
|
|
|
return m_state;
|
|
|
|
|
}
|
|
|
|
|
|
2022-10-13 22:43:04 +08:00
|
|
|
|
// https://html.spec.whatwg.org/multipage/history.html#dom-history-go
|
2024-02-26 18:54:36 +01:00
|
|
|
|
WebIDL::ExceptionOr<void> History::go(WebIDL::Long delta = 0)
|
2022-10-13 22:43:04 +08:00
|
|
|
|
{
|
|
|
|
|
// 1. Let document be this's associated Document.
|
|
|
|
|
|
|
|
|
|
// 2. If document is not fully active, then throw a "SecurityError" DOMException.
|
|
|
|
|
if (!m_associated_document->is_fully_active())
|
2023-09-06 16:03:01 +12:00
|
|
|
|
return WebIDL::SecurityError::create(realm(), "Cannot perform go on a document that isn't fully active."_fly_string);
|
2022-10-13 22:43:04 +08:00
|
|
|
|
|
2023-08-24 23:30:21 +02:00
|
|
|
|
VERIFY(m_associated_document->navigable());
|
|
|
|
|
|
|
|
|
|
// 3. If delta is 0, then reload document's node navigable.
|
2024-04-10 20:31:31 +02:00
|
|
|
|
if (delta == 0)
|
|
|
|
|
m_associated_document->navigable()->reload();
|
2023-08-24 23:30:21 +02:00
|
|
|
|
|
|
|
|
|
// 4. Traverse the history by a delta given document's node navigable's traversable navigable, delta, and with sourceDocument set to document.
|
|
|
|
|
auto traversable = m_associated_document->navigable()->traversable_navigable();
|
|
|
|
|
traversable->traverse_the_history_by_delta(delta);
|
2022-10-13 22:43:04 +08:00
|
|
|
|
|
|
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// https://html.spec.whatwg.org/multipage/history.html#dom-history-back
|
|
|
|
|
WebIDL::ExceptionOr<void> History::back()
|
|
|
|
|
{
|
|
|
|
|
// 1. Let document be this's associated Document.
|
|
|
|
|
// 2. If document is not fully active, then throw a "SecurityError" DOMException.
|
|
|
|
|
// NOTE: We already did this check in `go` method, so skip the fully active check here.
|
|
|
|
|
|
|
|
|
|
// 3. Traverse the history by a delta with −1 and document's browsing context.
|
|
|
|
|
return go(-1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// https://html.spec.whatwg.org/multipage/history.html#dom-history-forward
|
|
|
|
|
WebIDL::ExceptionOr<void> History::forward()
|
|
|
|
|
{
|
|
|
|
|
// 1. Let document be this's associated Document.
|
|
|
|
|
// 2. If document is not fully active, then throw a "SecurityError" DOMException.
|
|
|
|
|
// NOTE: We already did this check in `go` method, so skip the fully active check here.
|
|
|
|
|
|
|
|
|
|
// 3. Traverse the history by a delta with +1 and document's browsing context.
|
|
|
|
|
return go(1);
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-21 17:44:42 -06:00
|
|
|
|
// https://html.spec.whatwg.org/multipage/nav-history-apis.html#can-have-its-url-rewritten
|
2024-03-18 16:22:27 +13:00
|
|
|
|
bool can_have_its_url_rewritten(DOM::Document const& document, URL::URL const& target_url)
|
2023-08-21 17:44:42 -06:00
|
|
|
|
{
|
|
|
|
|
// 1. Let documentURL be document's URL.
|
|
|
|
|
auto document_url = document.url();
|
|
|
|
|
|
|
|
|
|
// 2. If targetURL and documentURL differ in their scheme, username, password, host, or port components,
|
|
|
|
|
// then return false.
|
|
|
|
|
if (target_url.scheme() != document_url.scheme()
|
2024-08-04 22:02:02 +12:00
|
|
|
|
|| target_url.username() != document_url.username()
|
|
|
|
|
|| target_url.password() != document_url.password()
|
2023-08-21 17:44:42 -06:00
|
|
|
|
|| target_url.host() != document_url.host()
|
|
|
|
|
|| target_url.port() != document_url.port())
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
// 3. If targetURL's scheme is an HTTP(S) scheme, then return true.
|
|
|
|
|
// (Differences in path, query, and fragment are allowed for http: and https: URLs.)
|
|
|
|
|
if (target_url.scheme() == "http"sv || target_url.scheme() == "https"sv)
|
|
|
|
|
return true;
|
|
|
|
|
|
2024-08-17 13:27:35 +01:00
|
|
|
|
// 4. If targetURL's scheme is "file", then:
|
|
|
|
|
// (Differences in query and fragment are allowed for file: URLs.)
|
2024-08-06 13:31:21 +02:00
|
|
|
|
if (target_url.scheme() == "file"sv) {
|
2024-08-17 13:27:35 +01:00
|
|
|
|
// 1. If targetURL and documentURL differ in their path component, then return false.
|
|
|
|
|
if (target_url.paths() != document_url.paths())
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
// 2. Return true.
|
|
|
|
|
return true;
|
2024-08-06 13:31:21 +02:00
|
|
|
|
}
|
2023-08-21 17:44:42 -06:00
|
|
|
|
|
|
|
|
|
// 5. If targetURL and documentURL differ in their path component or query components, then return false.
|
|
|
|
|
// (Only differences in fragment are allowed for other types of URLs.)
|
2024-08-17 13:27:35 +01:00
|
|
|
|
if (target_url.paths() != document_url.paths() || target_url.query() != document_url.query())
|
2023-08-21 17:44:42 -06:00
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
// 6. Return true.
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-11 23:43:34 +01:00
|
|
|
|
// https://html.spec.whatwg.org/multipage/history.html#shared-history-push/replace-state-steps
|
2023-09-27 22:59:57 -06:00
|
|
|
|
WebIDL::ExceptionOr<void> History::shared_history_push_replace_state(JS::Value data, Optional<String> const& url, HistoryHandlingBehavior history_handling)
|
2021-09-11 23:43:34 +01:00
|
|
|
|
{
|
2023-09-27 22:59:57 -06:00
|
|
|
|
auto& vm = this->vm();
|
|
|
|
|
|
2023-08-21 17:44:42 -06:00
|
|
|
|
// 1. Let document be history's associated Document.
|
|
|
|
|
auto& document = m_associated_document;
|
2021-09-11 23:43:34 +01:00
|
|
|
|
|
|
|
|
|
// 2. If document is not fully active, then throw a "SecurityError" DOMException.
|
2023-08-21 17:44:42 -06:00
|
|
|
|
if (!document->is_fully_active())
|
2023-09-06 16:03:01 +12:00
|
|
|
|
return WebIDL::SecurityError::create(realm(), "Cannot perform pushState or replaceState on a document that isn't fully active."_fly_string);
|
2021-09-11 23:43:34 +01:00
|
|
|
|
|
|
|
|
|
// 3. Optionally, return. (For example, the user agent might disallow calls to these methods that are invoked on a timer,
|
|
|
|
|
// or from event listeners that are not triggered in response to a clear user action, or that are invoked in rapid succession.)
|
2023-08-21 17:44:42 -06:00
|
|
|
|
|
|
|
|
|
// 4. Let serializedData be StructuredSerializeForStorage(data). Rethrow any exceptions.
|
|
|
|
|
// FIXME: Actually rethrow exceptions here once we start using the serialized data.
|
|
|
|
|
// Throwing here on data types we don't yet serialize will regress sites that use push/replaceState.
|
2023-09-27 22:59:57 -06:00
|
|
|
|
auto serialized_data_or_error = structured_serialize_for_storage(vm, data);
|
|
|
|
|
auto serialized_data = serialized_data_or_error.is_error() ? MUST(structured_serialize_for_storage(vm, JS::js_null())) : serialized_data_or_error.release_value();
|
2023-08-21 17:44:42 -06:00
|
|
|
|
|
|
|
|
|
// 5. Let newURL be document's URL.
|
|
|
|
|
auto new_url = document->url();
|
|
|
|
|
|
|
|
|
|
// 6. If url is not null or the empty string, then:
|
2023-08-26 17:03:52 +12:00
|
|
|
|
if (url.has_value() && !url->is_empty()) {
|
2023-08-21 17:44:42 -06:00
|
|
|
|
|
|
|
|
|
// 1. Parse url, relative to the relevant settings object of history.
|
2023-12-16 17:49:34 +03:30
|
|
|
|
auto parsed_url = relevant_settings_object(*this).parse_url(url->to_byte_string());
|
2023-08-21 17:44:42 -06:00
|
|
|
|
|
|
|
|
|
// 2. If that fails, then throw a "SecurityError" DOMException.
|
|
|
|
|
if (!parsed_url.is_valid())
|
2023-09-06 16:03:01 +12:00
|
|
|
|
return WebIDL::SecurityError::create(realm(), "Cannot pushState or replaceState to incompatible URL"_fly_string);
|
2023-08-21 17:44:42 -06:00
|
|
|
|
|
|
|
|
|
// 3. Set newURL to the resulting URL record.
|
|
|
|
|
new_url = parsed_url;
|
|
|
|
|
|
|
|
|
|
// 4. If document cannot have its URL rewritten to newURL, then throw a "SecurityError" DOMException.
|
|
|
|
|
if (!can_have_its_url_rewritten(document, new_url))
|
2023-09-06 16:03:01 +12:00
|
|
|
|
return WebIDL::SecurityError::create(realm(), "Cannot pushState or replaceState to incompatible URL"_fly_string);
|
2023-08-21 17:44:42 -06:00
|
|
|
|
}
|
|
|
|
|
|
2024-08-06 14:18:40 +02:00
|
|
|
|
// 7. Let navigation be history's relevant global object's navigation API.
|
|
|
|
|
auto navigation = verify_cast<Window>(relevant_global_object(*this)).navigation();
|
|
|
|
|
|
|
|
|
|
// 8. Let continue be the result of firing a push/replace/reload navigate event at navigation
|
|
|
|
|
// with navigationType set to historyHandling, isSameDocument set to true, destinationURL set to newURL,
|
|
|
|
|
// and classicHistoryAPIState set to serializedData.
|
|
|
|
|
auto navigation_type = history_handling == HistoryHandlingBehavior::Push ? Bindings::NavigationType::Push : Bindings::NavigationType::Replace;
|
|
|
|
|
auto continue_ = navigation->fire_a_push_replace_reload_navigate_event(navigation_type, new_url, true, UserNavigationInvolvement::None, {}, {}, serialized_data);
|
|
|
|
|
// 9. If continue is false, then return.
|
|
|
|
|
if (!continue_)
|
|
|
|
|
return {};
|
2023-08-21 17:44:42 -06:00
|
|
|
|
|
2023-09-23 23:04:24 +02:00
|
|
|
|
// 10. Run the URL and history update steps given document and newURL, with serializedData set to
|
|
|
|
|
// serializedData and historyHandling set to historyHandling.
|
2023-09-27 22:59:57 -06:00
|
|
|
|
perform_url_and_history_update_steps(document, new_url, serialized_data, history_handling);
|
2023-09-23 23:04:24 +02:00
|
|
|
|
|
2021-09-11 23:43:34 +01:00
|
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|