serenity/AK/URL.h

156 lines
4.9 KiB
C
Raw Normal View History

/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
* Copyright (c) 2021, Max Wipfli <mail@maxwipfli.ch>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/String.h>
#include <AK/StringView.h>
namespace AK {
// 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.
class URL {
friend class URLParser;
public:
enum class PercentEncodeSet {
C0Control,
Fragment,
Query,
SpecialQuery,
Path,
Userinfo,
Component,
ApplicationXWWWFormUrlencoded,
EncodeURI
};
URL() = default;
URL(const StringView&);
2019-08-10 17:31:37 +00:00
URL(const char* string)
: URL(StringView(string))
{
}
URL(const String& string)
: URL(string.view())
{
}
bool is_valid() const { return m_valid; }
String scheme() const { return m_scheme; }
String protocol() const { return m_scheme; }
String username() const { return m_username; }
String password() const { return m_password; }
String host() const { return m_host; }
const Vector<String>& paths() const { return m_paths; }
String query() const { return m_query; }
2020-04-11 22:38:13 +00:00
String fragment() const { return m_fragment; }
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; }
bool includes_credentials() const { return !m_username.is_empty() || !m_password.is_empty(); }
bool is_special() const { return is_special_scheme(m_scheme); }
void set_scheme(const String&);
void set_protocol(const String& protocol) { set_scheme(protocol); }
void set_username(const String&);
void set_password(const String&);
void set_host(const String&);
void set_port(const u16);
void set_path(const String&);
void set_paths(const Vector<String>&);
void set_query(const String&);
void set_fragment(const String&);
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); }
String path() const;
2020-05-05 21:56:35 +00:00
String basename() const;
String to_string() const;
String to_string_encoded() const
{
return percent_encode(to_string(), PercentEncodeSet::EncodeURI);
}
URL complete_url(const String&) const;
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; }
static URL create_with_url_or_path(const String&);
static URL create_with_file_scheme(const String& path, const String& fragment = {});
static URL create_with_file_protocol(const String& path, const String& fragment = {}) { return create_with_file_scheme(path, fragment); }
static URL create_with_data(const StringView& mime_type, const StringView& payload, bool is_base64 = false);
static bool scheme_requires_port(const StringView&);
static u16 default_port_for_scheme(const StringView&);
static bool is_special_scheme(const StringView&);
static String percent_encode(const StringView& input, PercentEncodeSet set = PercentEncodeSet::Userinfo);
static String percent_decode(const StringView& input);
bool operator==(const URL& other) const
{
if (this == &other)
return true;
return to_string() == other.to_string();
}
private:
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))
{
}
bool parse(const StringView&);
bool compute_validity() const;
static void append_percent_encoded_if_necessary(StringBuilder&, u32 code_point, PercentEncodeSet set = PercentEncodeSet::Userinfo);
static void append_percent_encoded(StringBuilder&, u32 code_point);
bool m_valid { false };
String m_scheme;
String m_username;
String m_password;
String m_host;
// NOTE: If the port is the default port for the scheme, m_port should be 0.
u16 m_port { 0 };
String m_path;
Vector<String> m_paths;
String m_query;
2020-04-11 22:38:13 +00:00
String m_fragment;
bool m_cannot_be_a_base_url { false };
bool m_data_payload_is_base64 { false };
String m_data_mime_type;
String m_data_payload;
};
2020-10-04 11:29:47 +00:00
template<>
struct Formatter<URL> : Formatter<StringView> {
void format(FormatBuilder& builder, const URL& value)
2020-10-04 11:29:47 +00:00
{
Formatter<StringView>::format(builder, value.to_string());
2020-10-04 11:29:47 +00:00
}
};
template<>
struct Traits<URL> : public GenericTraits<URL> {
static unsigned hash(const URL& url) { return url.to_string().hash(); }
};
2020-05-16 17:35:39 +00:00
}