mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-06-28 12:10:28 +00:00
224 lines
8.8 KiB
C++
224 lines
8.8 KiB
C++
/*
|
||
* Copyright (c) 2025, Shannon Booth <shannon@serenityos.org>
|
||
*
|
||
* SPDX-License-Identifier: BSD-2-Clause
|
||
*/
|
||
|
||
#include <LibWeb/Bindings/Intrinsics.h>
|
||
#include <LibWeb/Bindings/URLPattern.h>
|
||
#include <LibWeb/URLPattern/URLPattern.h>
|
||
#include <LibWeb/WebIDL/ExceptionOr.h>
|
||
|
||
namespace Web::URLPattern {
|
||
|
||
GC_DEFINE_ALLOCATOR(URLPattern);
|
||
|
||
static URL::RustIntegration::URLPattern::Init to_internal_url_pattern_init(Bindings::URLPatternInit const& init)
|
||
{
|
||
return {
|
||
.protocol = init.protocol,
|
||
.username = init.username,
|
||
.password = init.password,
|
||
.hostname = init.hostname,
|
||
.port = init.port,
|
||
.pathname = init.pathname,
|
||
.search = init.search,
|
||
.hash = init.hash,
|
||
.base_url = init.base_url,
|
||
};
|
||
}
|
||
|
||
static Bindings::URLPatternInit to_bindings_url_pattern_init(URL::RustIntegration::URLPattern::Init const& init)
|
||
{
|
||
return {
|
||
.base_url = init.base_url,
|
||
.hash = init.hash,
|
||
.hostname = init.hostname,
|
||
.password = init.password,
|
||
.pathname = init.pathname,
|
||
.port = init.port,
|
||
.protocol = init.protocol,
|
||
.search = init.search,
|
||
.username = init.username,
|
||
};
|
||
}
|
||
|
||
static URL::RustIntegration::URLPattern::Input to_internal_url_pattern_input(URLPatternInput const& input)
|
||
{
|
||
return input.visit(
|
||
[](String const& input_string) -> URL::RustIntegration::URLPattern::Input { return input_string; },
|
||
[](Bindings::URLPatternInit const& input_init) -> URL::RustIntegration::URLPattern::Input { return to_internal_url_pattern_init(input_init); });
|
||
}
|
||
|
||
static Bindings::URLPatternComponentResult to_bindings_url_pattern_component_result(URL::RustIntegration::URLPattern::Component::Result const& result)
|
||
{
|
||
OrderedHashMap<String, Variant<String, Empty, Empty>> groups;
|
||
for (auto const& [key, value] : result.groups) {
|
||
groups.set(key, value.visit([](String const& string_value) -> Variant<String, Empty, Empty> { return string_value; }, [](Empty) -> Variant<String, Empty, Empty> { return Empty {}; }));
|
||
}
|
||
|
||
return {
|
||
.groups = move(groups),
|
||
.input = result.input,
|
||
};
|
||
}
|
||
|
||
static Bindings::URLPatternResult to_bindings_url_pattern_result(URL::RustIntegration::URLPattern::Result const& result)
|
||
{
|
||
Vector<Variant<String, Bindings::URLPatternInit>> inputs;
|
||
inputs.ensure_capacity(result.inputs.size());
|
||
for (auto const& input : result.inputs) {
|
||
inputs.unchecked_append(input.visit(
|
||
[](String const& string_value) -> Variant<String, Bindings::URLPatternInit> { return string_value; },
|
||
[](URL::RustIntegration::URLPattern::Init const& init_value) -> Variant<String, Bindings::URLPatternInit> { return to_bindings_url_pattern_init(init_value); }));
|
||
}
|
||
|
||
return {
|
||
.hash = to_bindings_url_pattern_component_result(result.hash),
|
||
.hostname = to_bindings_url_pattern_component_result(result.hostname),
|
||
.inputs = move(inputs),
|
||
.password = to_bindings_url_pattern_component_result(result.password),
|
||
.pathname = to_bindings_url_pattern_component_result(result.pathname),
|
||
.port = to_bindings_url_pattern_component_result(result.port),
|
||
.protocol = to_bindings_url_pattern_component_result(result.protocol),
|
||
.search = to_bindings_url_pattern_component_result(result.search),
|
||
.username = to_bindings_url_pattern_component_result(result.username),
|
||
};
|
||
}
|
||
|
||
URLPattern::URLPattern(JS::Realm& realm, URL::RustIntegration::URLPattern pattern)
|
||
: PlatformObject(realm)
|
||
, m_url_pattern(move(pattern))
|
||
{
|
||
}
|
||
|
||
URLPattern::~URLPattern() = default;
|
||
|
||
void URLPattern::initialize(JS::Realm& realm)
|
||
{
|
||
WEB_SET_PROTOTYPE_FOR_INTERFACE(URLPattern);
|
||
Base::initialize(realm);
|
||
}
|
||
|
||
// https://urlpattern.spec.whatwg.org/#dom-urlpattern-urlpattern
|
||
WebIDL::ExceptionOr<GC::Ref<URLPattern>> URLPattern::construct_impl(JS::Realm& realm, URLPatternInput const& input, String const& base_url, URLPatternOptions const& options)
|
||
{
|
||
// 1. Run initialize given this, input, baseURL, and options.
|
||
return create(realm, input, base_url, options);
|
||
}
|
||
|
||
// https://urlpattern.spec.whatwg.org/#dom-urlpattern-urlpattern-input-options
|
||
WebIDL::ExceptionOr<GC::Ref<URLPattern>> URLPattern::construct_impl(JS::Realm& realm, URLPatternInput const& input, URLPatternOptions const& options)
|
||
{
|
||
// 1. Run initialize given this, input, null, and options.
|
||
return create(realm, input, {}, options);
|
||
}
|
||
|
||
// https://urlpattern.spec.whatwg.org/#urlpattern-initialize
|
||
WebIDL::ExceptionOr<GC::Ref<URLPattern>> URLPattern::create(JS::Realm& realm, URLPatternInput const& input, Optional<String> const& base_url, URLPatternOptions const& options)
|
||
{
|
||
// 1. Set this’s associated URL pattern to the result of create given input, baseURL, and options.
|
||
auto pattern_or_error = URL::RustIntegration::URLPattern::create(to_internal_url_pattern_input(input), base_url, options.ignore_case ? URL::FFI::IgnoreCase::Yes : URL::FFI::IgnoreCase::No);
|
||
if (pattern_or_error.is_error())
|
||
return WebIDL::SimpleException { WebIDL::SimpleExceptionType::TypeError, pattern_or_error.error().message };
|
||
return realm.create<URLPattern>(realm, pattern_or_error.release_value());
|
||
}
|
||
|
||
// https://urlpattern.spec.whatwg.org/#dom-urlpattern-test
|
||
WebIDL::ExceptionOr<bool> URLPattern::test(URLPatternInput const& input, Optional<String> const& base_url) const
|
||
{
|
||
// 1. Let result be the result of match given this's associated URL pattern, input, and baseURL if given.
|
||
auto result_or_error = m_url_pattern.match(to_internal_url_pattern_input(input), base_url);
|
||
if (result_or_error.is_error())
|
||
return WebIDL::SimpleException { WebIDL::SimpleExceptionType::TypeError, result_or_error.error().message };
|
||
auto result = result_or_error.release_value();
|
||
|
||
// 2. If result is null, return false.
|
||
if (!result.has_value())
|
||
return false;
|
||
|
||
// 3. Return true.
|
||
return true;
|
||
}
|
||
|
||
// https://urlpattern.spec.whatwg.org/#dom-urlpattern-exec
|
||
WebIDL::ExceptionOr<Optional<URLPatternResult>> URLPattern::exec(URLPatternInput const& input, Optional<String> const& base_url) const
|
||
{
|
||
// 1. Return the result of match given this's associated URL pattern, input, and baseURL if given.
|
||
auto result_or_error = m_url_pattern.match(to_internal_url_pattern_input(input), base_url);
|
||
if (result_or_error.is_error())
|
||
return WebIDL::SimpleException { WebIDL::SimpleExceptionType::TypeError, result_or_error.error().message };
|
||
auto result = result_or_error.release_value();
|
||
if (!result.has_value())
|
||
return Optional<URLPatternResult> {};
|
||
return to_bindings_url_pattern_result(*result);
|
||
}
|
||
|
||
// https://urlpattern.spec.whatwg.org/#dom-urlpattern-protocol
|
||
String const& URLPattern::protocol() const
|
||
{
|
||
// 1. Return this's associated URL pattern's protocol component's pattern string.
|
||
return m_url_pattern.protocol_component().pattern_string;
|
||
}
|
||
|
||
// https://urlpattern.spec.whatwg.org/#dom-urlpattern-username
|
||
String const& URLPattern::username() const
|
||
{
|
||
// 1. Return this's associated URL pattern's username component's pattern string.
|
||
return m_url_pattern.username_component().pattern_string;
|
||
}
|
||
|
||
// https://urlpattern.spec.whatwg.org/#dom-urlpattern-password
|
||
String const& URLPattern::password() const
|
||
{
|
||
// 1. Return this's associated URL pattern's password component's pattern string.
|
||
return m_url_pattern.password_component().pattern_string;
|
||
}
|
||
|
||
// https://urlpattern.spec.whatwg.org/#dom-urlpattern-hostname
|
||
String const& URLPattern::hostname() const
|
||
{
|
||
// 1. Return this's associated URL pattern's hostname component's pattern string.
|
||
return m_url_pattern.hostname_component().pattern_string;
|
||
}
|
||
|
||
// https://urlpattern.spec.whatwg.org/#dom-urlpattern-port
|
||
String const& URLPattern::port() const
|
||
{
|
||
// 1. Return this's associated URL pattern's port component's pattern string.
|
||
return m_url_pattern.port_component().pattern_string;
|
||
}
|
||
|
||
// https://urlpattern.spec.whatwg.org/#dom-urlpattern-pathname
|
||
String const& URLPattern::pathname() const
|
||
{
|
||
// 1. Return this's associated URL pattern's pathname component's pattern string.
|
||
return m_url_pattern.pathname_component().pattern_string;
|
||
}
|
||
|
||
// https://urlpattern.spec.whatwg.org/#dom-urlpattern-search
|
||
String const& URLPattern::search() const
|
||
{
|
||
// 1. Return this's associated URL pattern's search component's pattern string.
|
||
return m_url_pattern.search_component().pattern_string;
|
||
}
|
||
|
||
// https://urlpattern.spec.whatwg.org/#dom-urlpattern-hash
|
||
String const& URLPattern::hash() const
|
||
{
|
||
// 1. Return this's associated URL pattern's hash component's pattern string.
|
||
return m_url_pattern.hash_component().pattern_string;
|
||
}
|
||
|
||
// https://urlpattern.spec.whatwg.org/#dom-urlpattern-hasregexpgroups
|
||
bool URLPattern::has_reg_exp_groups() const
|
||
{
|
||
// 1. If this's associated URL pattern's has regexp groups, then return true.
|
||
if (m_url_pattern.has_regexp_groups())
|
||
return true;
|
||
|
||
// 2. Return false.
|
||
return false;
|
||
}
|
||
|
||
}
|