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>
|
|
|
|
|
|
|
|
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;
|
2019-08-10 18:27:56 +03:00
|
|
|
URL(const StringView&);
|
2019-08-10 20:31:37 +03:00
|
|
|
URL(const char* string)
|
|
|
|
: URL(StringView(string))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
URL(const String& string)
|
|
|
|
: URL(string.view())
|
|
|
|
{
|
|
|
|
}
|
2019-08-10 18:27:56 +03:00
|
|
|
|
|
|
|
bool is_valid() const { return m_valid; }
|
2021-05-24 00:31:16 +03:00
|
|
|
|
|
|
|
String scheme() const { return m_scheme; }
|
|
|
|
String protocol() const { return m_scheme; }
|
2021-05-25 22:32:20 +03:00
|
|
|
String username() const { return m_username; }
|
|
|
|
String password() const { return m_password; }
|
2019-08-10 18:27:56 +03:00
|
|
|
String host() const { return m_host; }
|
2021-05-25 22:32:20 +03:00
|
|
|
const Vector<String>& paths() const { return m_paths; }
|
2019-11-25 23:20:03 +03:00
|
|
|
String query() const { return m_query; }
|
2020-04-12 01:38:13 +03:00
|
|
|
String fragment() const { return m_fragment; }
|
2021-05-25 22:32:20 +03:00
|
|
|
u16 port() const { return m_port ? m_port : default_port_for_scheme(m_scheme); }
|
|
|
|
bool cannot_be_a_base_url() const { return m_cannot_be_a_base_url; }
|
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-05-24 00:31:16 +03:00
|
|
|
void set_scheme(const String&);
|
|
|
|
void set_protocol(const String& protocol) { set_scheme(protocol); }
|
2021-05-25 22:32:20 +03:00
|
|
|
void set_username(const String&);
|
|
|
|
void set_password(const String&);
|
2021-05-31 12:44:13 +03:00
|
|
|
void set_host(const String&);
|
|
|
|
void set_port(const u16);
|
2021-05-25 22:32:20 +03:00
|
|
|
void set_paths(const Vector<String>&);
|
2021-05-31 12:44:13 +03:00
|
|
|
void set_query(const String&);
|
|
|
|
void set_fragment(const String&);
|
2021-05-25 22:32:20 +03:00
|
|
|
void set_cannot_be_a_base_url(const bool value) { m_cannot_be_a_base_url = value; }
|
|
|
|
void append_path(const String& path) { m_paths.append(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(); }
|
|
|
|
String to_string_encoded() const { return serialize(); }
|
|
|
|
|
|
|
|
bool equals(const URL& other, ExcludeFragment = ExcludeFragment::No) const;
|
|
|
|
|
2019-11-19 00:04:39 +03:00
|
|
|
URL complete_url(const String&) const;
|
|
|
|
|
2020-04-26 23:48:54 +03:00
|
|
|
bool data_payload_is_base64() const { return m_data_payload_is_base64; }
|
|
|
|
const String& data_mime_type() const { return m_data_mime_type; }
|
|
|
|
const String& data_payload() const { return m_data_payload; }
|
|
|
|
|
2021-05-31 12:44:13 +03:00
|
|
|
static URL create_with_url_or_path(const String&);
|
2021-05-29 22:57:20 +03:00
|
|
|
static URL create_with_file_scheme(const String& path, const String& fragment = {}, const String& hostname = {});
|
2021-05-24 00:31:16 +03:00
|
|
|
static URL create_with_file_protocol(const String& path, const String& fragment = {}) { return create_with_file_scheme(path, fragment); }
|
2020-08-24 11:40:45 +03:00
|
|
|
static URL create_with_data(const StringView& mime_type, const StringView& payload, bool is_base64 = false);
|
2021-05-25 23:05:01 +03:00
|
|
|
|
2021-05-24 00:31:16 +03:00
|
|
|
static bool scheme_requires_port(const StringView&);
|
|
|
|
static u16 default_port_for_scheme(const StringView&);
|
2021-05-25 23:05:01 +03:00
|
|
|
static bool is_special_scheme(const StringView&);
|
2020-04-18 23:02:04 +03:00
|
|
|
|
2021-05-25 14:50:03 +03:00
|
|
|
static String percent_encode(const StringView& input, PercentEncodeSet set = PercentEncodeSet::Userinfo);
|
|
|
|
static String percent_decode(const StringView& input);
|
|
|
|
|
2020-06-01 22:50:07 +03:00
|
|
|
bool operator==(const URL& other) const
|
|
|
|
{
|
|
|
|
if (this == &other)
|
|
|
|
return true;
|
2021-05-27 22:38:16 +03:00
|
|
|
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-05-25 22:32:20 +03:00
|
|
|
// NOTE: If the port is the default port for the scheme, m_port should be 0.
|
|
|
|
u16 m_port { 0 };
|
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> {
|
2020-12-30 14:14:15 +03:00
|
|
|
void format(FormatBuilder& builder, const URL& value)
|
2020-10-04 14:29:47 +03:00
|
|
|
{
|
2021-05-27 22:38:16 +03:00
|
|
|
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> {
|
|
|
|
static unsigned hash(const URL& url) { return url.to_string().hash(); }
|
|
|
|
};
|
|
|
|
|
2020-05-16 20:35:39 +03:00
|
|
|
}
|