2020-01-18 11:38:21 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
2021-05-24 00:31:16 +03:00
|
|
|
* Copyright (c) 2021, Max Wipfli <mail@maxwipfli.ch>
|
2020-01-18 11:38:21 +03:00
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 11:38:21 +03:00
|
|
|
*/
|
|
|
|
|
2019-08-10 18:27:56 +03:00
|
|
|
#pragma once
|
|
|
|
|
2019-09-06 16:34:26 +03:00
|
|
|
#include <AK/String.h>
|
2019-08-10 18:27:56 +03:00
|
|
|
#include <AK/StringView.h>
|
2021-11-10 13:05:21 +03:00
|
|
|
#include <AK/Vector.h>
|
2019-08-10 18:27:56 +03:00
|
|
|
|
|
|
|
namespace AK {
|
|
|
|
|
2021-05-25 22:32:20 +03:00
|
|
|
// NOTE: The member variables cannot contain any percent encoded sequences.
|
|
|
|
// The URL parser automatically decodes those sequences and the the serialize() method will re-encode them as necessary.
|
2019-08-10 18:27:56 +03:00
|
|
|
class URL {
|
2021-05-25 23:13:15 +03:00
|
|
|
friend class URLParser;
|
|
|
|
|
2019-08-10 18:27:56 +03:00
|
|
|
public:
|
2021-05-25 14:50:03 +03:00
|
|
|
enum class PercentEncodeSet {
|
|
|
|
C0Control,
|
|
|
|
Fragment,
|
|
|
|
Query,
|
|
|
|
SpecialQuery,
|
|
|
|
Path,
|
|
|
|
Userinfo,
|
|
|
|
Component,
|
|
|
|
ApplicationXWWWFormUrlencoded,
|
|
|
|
EncodeURI
|
|
|
|
};
|
|
|
|
|
2021-05-25 23:32:39 +03:00
|
|
|
enum class ExcludeFragment {
|
|
|
|
No,
|
|
|
|
Yes
|
|
|
|
};
|
|
|
|
|
2021-01-11 02:29:28 +03:00
|
|
|
URL() = default;
|
2021-11-11 02:55:02 +03:00
|
|
|
URL(StringView);
|
2021-06-01 11:58:27 +03:00
|
|
|
URL(char const* string)
|
2019-08-10 20:31:37 +03:00
|
|
|
: URL(StringView(string))
|
|
|
|
{
|
|
|
|
}
|
2021-06-01 11:58:27 +03:00
|
|
|
URL(String const& string)
|
2019-08-10 20:31:37 +03:00
|
|
|
: URL(string.view())
|
|
|
|
{
|
|
|
|
}
|
2019-08-10 18:27:56 +03:00
|
|
|
|
2021-09-13 22:42:48 +03:00
|
|
|
bool is_valid() const { return m_valid; }
|
2021-05-24 00:31:16 +03:00
|
|
|
|
2021-06-01 11:58:27 +03:00
|
|
|
String const& scheme() const { return m_scheme; }
|
|
|
|
String const& protocol() const { return m_scheme; }
|
|
|
|
String const& username() const { return m_username; }
|
|
|
|
String const& password() const { return m_password; }
|
|
|
|
String const& host() const { return m_host; }
|
|
|
|
Vector<String> const& paths() const { return m_paths; }
|
|
|
|
String const& query() const { return m_query; }
|
|
|
|
String const& fragment() const { return m_fragment; }
|
2021-09-13 23:12:16 +03:00
|
|
|
Optional<u16> port() const { return m_port; }
|
|
|
|
u16 port_or_default() const { return m_port.value_or(default_port_for_scheme(m_scheme)); }
|
2021-09-13 22:42:48 +03:00
|
|
|
bool cannot_be_a_base_url() const { return m_cannot_be_a_base_url; }
|
2021-09-13 22:46:31 +03:00
|
|
|
bool cannot_have_a_username_or_password_or_port() const { return m_host.is_null() || m_host.is_empty() || m_cannot_be_a_base_url || m_scheme == "file"sv; }
|
2019-08-10 18:27:56 +03:00
|
|
|
|
2021-05-25 23:05:01 +03:00
|
|
|
bool includes_credentials() const { return !m_username.is_empty() || !m_password.is_empty(); }
|
|
|
|
bool is_special() const { return is_special_scheme(m_scheme); }
|
|
|
|
|
2021-06-01 11:58:27 +03:00
|
|
|
void set_scheme(String);
|
|
|
|
void set_protocol(String protocol) { set_scheme(move(protocol)); }
|
|
|
|
void set_username(String);
|
|
|
|
void set_password(String);
|
|
|
|
void set_host(String);
|
2021-09-13 23:12:16 +03:00
|
|
|
void set_port(Optional<u16>);
|
2021-06-01 11:58:27 +03:00
|
|
|
void set_paths(Vector<String>);
|
|
|
|
void set_query(String);
|
|
|
|
void set_fragment(String);
|
|
|
|
void set_cannot_be_a_base_url(bool value) { m_cannot_be_a_base_url = value; }
|
2021-09-13 23:20:38 +03:00
|
|
|
void append_path(String path) { m_paths.append(move(path)); }
|
2019-10-05 11:14:42 +03:00
|
|
|
|
2021-05-25 22:32:20 +03:00
|
|
|
String path() const;
|
2020-05-06 00:56:35 +03:00
|
|
|
String basename() const;
|
2019-08-10 18:27:56 +03:00
|
|
|
|
2021-05-25 23:32:39 +03:00
|
|
|
String serialize(ExcludeFragment = ExcludeFragment::No) const;
|
|
|
|
String serialize_for_display() const;
|
2021-05-27 22:38:16 +03:00
|
|
|
String to_string() const { return serialize(); }
|
|
|
|
|
2021-09-13 22:18:14 +03:00
|
|
|
// HTML origin
|
|
|
|
String serialize_origin() const;
|
|
|
|
|
2021-06-01 11:58:27 +03:00
|
|
|
bool equals(URL const& other, ExcludeFragment = ExcludeFragment::No) const;
|
2021-05-27 22:38:16 +03:00
|
|
|
|
2021-06-01 11:58:27 +03:00
|
|
|
URL complete_url(String const&) const;
|
2019-11-19 00:04:39 +03:00
|
|
|
|
2020-04-26 23:48:54 +03:00
|
|
|
bool data_payload_is_base64() const { return m_data_payload_is_base64; }
|
2021-06-01 11:58:27 +03:00
|
|
|
String const& data_mime_type() const { return m_data_mime_type; }
|
|
|
|
String const& data_payload() const { return m_data_payload; }
|
2020-04-26 23:48:54 +03:00
|
|
|
|
2021-06-01 11:58:27 +03:00
|
|
|
static URL create_with_url_or_path(String const&);
|
|
|
|
static URL create_with_file_scheme(String const& path, String const& fragment = {}, String const& hostname = {});
|
|
|
|
static URL create_with_file_protocol(String const& path, String const& fragment = {}) { return create_with_file_scheme(path, fragment); }
|
|
|
|
static URL create_with_data(String mime_type, String payload, bool is_base64 = false) { return URL(move(mime_type), move(payload), is_base64); };
|
2021-05-25 23:05:01 +03:00
|
|
|
|
2021-11-11 02:55:02 +03:00
|
|
|
static bool scheme_requires_port(StringView);
|
|
|
|
static u16 default_port_for_scheme(StringView);
|
|
|
|
static bool is_special_scheme(StringView);
|
2020-04-18 23:02:04 +03:00
|
|
|
|
2021-11-11 02:55:02 +03:00
|
|
|
static String percent_encode(StringView input, PercentEncodeSet set = PercentEncodeSet::Userinfo);
|
|
|
|
static String percent_decode(StringView input);
|
2021-05-25 14:50:03 +03:00
|
|
|
|
2021-06-01 12:14:30 +03:00
|
|
|
bool operator==(URL const& other) const { return equals(other, ExcludeFragment::No); }
|
2020-06-01 22:50:07 +03:00
|
|
|
|
2019-08-10 18:27:56 +03:00
|
|
|
private:
|
2021-05-25 23:05:01 +03:00
|
|
|
URL(String&& data_mime_type, String&& data_payload, bool payload_is_base64)
|
|
|
|
: m_valid(true)
|
|
|
|
, m_scheme("data")
|
|
|
|
, m_data_payload_is_base64(payload_is_base64)
|
|
|
|
, m_data_mime_type(move(data_mime_type))
|
|
|
|
, m_data_payload(move(data_payload))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-04-12 00:07:23 +03:00
|
|
|
bool compute_validity() const;
|
2021-05-25 23:32:39 +03:00
|
|
|
String serialize_data_url() const;
|
2019-08-10 18:27:56 +03:00
|
|
|
|
2021-05-25 14:50:03 +03:00
|
|
|
static void append_percent_encoded_if_necessary(StringBuilder&, u32 code_point, PercentEncodeSet set = PercentEncodeSet::Userinfo);
|
|
|
|
static void append_percent_encoded(StringBuilder&, u32 code_point);
|
|
|
|
|
2019-08-10 18:27:56 +03:00
|
|
|
bool m_valid { false };
|
2021-05-25 22:32:20 +03:00
|
|
|
|
2021-05-24 00:31:16 +03:00
|
|
|
String m_scheme;
|
2021-05-25 22:32:20 +03:00
|
|
|
String m_username;
|
|
|
|
String m_password;
|
2019-08-10 18:27:56 +03:00
|
|
|
String m_host;
|
2021-09-13 23:12:16 +03:00
|
|
|
// NOTE: If the port is the default port for the scheme, m_port should be empty.
|
|
|
|
Optional<u16> m_port;
|
2019-08-10 18:27:56 +03:00
|
|
|
String m_path;
|
2021-05-25 22:32:20 +03:00
|
|
|
Vector<String> m_paths;
|
2019-11-25 23:20:03 +03:00
|
|
|
String m_query;
|
2020-04-12 01:38:13 +03:00
|
|
|
String m_fragment;
|
2021-05-25 22:32:20 +03:00
|
|
|
|
|
|
|
bool m_cannot_be_a_base_url { false };
|
|
|
|
|
|
|
|
bool m_data_payload_is_base64 { false };
|
2020-04-26 23:48:54 +03:00
|
|
|
String m_data_mime_type;
|
|
|
|
String m_data_payload;
|
2019-08-10 18:27:56 +03:00
|
|
|
};
|
|
|
|
|
2020-10-04 14:29:47 +03:00
|
|
|
template<>
|
|
|
|
struct Formatter<URL> : Formatter<StringView> {
|
2021-11-16 03:15:21 +03:00
|
|
|
ErrorOr<void> format(FormatBuilder& builder, URL const& value)
|
2020-10-04 14:29:47 +03:00
|
|
|
{
|
2021-11-16 03:15:21 +03:00
|
|
|
return Formatter<StringView>::format(builder, value.serialize());
|
2020-10-04 14:29:47 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-06-01 22:50:07 +03:00
|
|
|
template<>
|
|
|
|
struct Traits<URL> : public GenericTraits<URL> {
|
2021-06-01 11:58:27 +03:00
|
|
|
static unsigned hash(URL const& url) { return url.to_string().hash(); }
|
2020-06-01 22:50:07 +03:00
|
|
|
};
|
|
|
|
|
2020-05-16 20:35:39 +03:00
|
|
|
}
|