2020-01-18 08:38:21 +00:00
/*
* Copyright ( c ) 2018 - 2020 , Andreas Kling < kling @ serenityos . org >
2021-05-23 21:31:16 +00:00
* Copyright ( c ) 2021 , Max Wipfli < mail @ maxwipfli . ch >
2023-07-23 08:10:32 +00:00
* Copyright ( c ) 2023 , Shannon Booth < shannon @ serenityos . org >
2020-01-18 08:38:21 +00:00
*
2021-04-22 08:24:48 +00:00
* SPDX - License - Identifier : BSD - 2 - Clause
2020-01-18 08:38:21 +00:00
*/
2019-08-10 15:27:56 +00:00
# pragma once
2022-12-04 18:02:33 +00:00
# include <AK/DeprecatedString.h>
2023-02-28 20:35:41 +00:00
# include <AK/String.h>
2019-08-10 15:27:56 +00:00
# include <AK/StringView.h>
2021-11-10 10:05:21 +00:00
# include <AK/Vector.h>
2019-08-10 15:27:56 +00:00
2022-09-25 18:54:06 +00:00
// On Linux distros that use mlibc `basename` is defined as a macro that expands to `__mlibc_gnu_basename` or `__mlibc_gnu_basename_c`, so we undefine it.
# if defined(AK_OS_LINUX) && defined(basename)
# undef basename
# endif
2019-08-10 15:27:56 +00:00
namespace AK {
2023-07-23 08:10:32 +00:00
// https://url.spec.whatwg.org/#url-representation
// A URL is a struct that represents a universal identifier. To disambiguate from a valid URL string it can also be referred to as a URL record.
2019-08-10 15:27:56 +00:00
class URL {
2021-05-25 20:13:15 +00:00
friend class URLParser ;
2019-08-10 15:27:56 +00:00
public :
2021-05-25 11:50:03 +00:00
enum class PercentEncodeSet {
C0Control ,
Fragment ,
Query ,
SpecialQuery ,
Path ,
Userinfo ,
Component ,
ApplicationXWWWFormUrlencoded ,
EncodeURI
} ;
2021-05-25 20:32:39 +00:00
enum class ExcludeFragment {
No ,
Yes
} ;
2021-01-10 23:29:28 +00:00
URL ( ) = default ;
2021-11-10 23:55:02 +00:00
URL ( StringView ) ;
2022-12-04 18:02:33 +00:00
URL ( DeprecatedString const & string )
2019-08-10 17:31:37 +00:00
: URL ( string . view ( ) )
{
}
2023-02-28 20:35:41 +00:00
URL ( String const & string )
: URL ( string . bytes_as_string_view ( ) )
{
}
2019-08-10 15:27:56 +00:00
2023-07-26 08:49:49 +00:00
// https://url.spec.whatwg.org/#concept-ipv4
// An IPv4 address is a 32-bit unsigned integer that identifies a network address. [RFC791]
// FIXME: It would be nice if this were an AK::IPv4Address
using IPv4Address = u32 ;
// https://url.spec.whatwg.org/#concept-ipv6
// An IPv6 address is a 128-bit unsigned integer that identifies a network address. For the purposes of this standard
// it is represented as a list of eight 16-bit unsigned integers, also known as IPv6 pieces. [RFC4291]
// FIXME: It would be nice if this were an AK::IPv6Address
using IPv6Address = Array < u16 , 8 > ;
// https://url.spec.whatwg.org/#concept-host
// A host is a domain, an IP address, an opaque host, or an empty host. Typically a host serves as a network address,
// but it is sometimes used as opaque identifier in URLs where a network address is not necessary.
using Host = Variant < IPv4Address , IPv6Address , String , Empty > ;
2021-09-13 19:42:48 +00:00
bool is_valid ( ) const { return m_valid ; }
2021-05-23 21:31:16 +00:00
2023-04-13 22:06:58 +00:00
enum class ApplyPercentDecoding {
Yes ,
No
} ;
2022-12-04 18:02:33 +00:00
DeprecatedString const & scheme ( ) const { return m_scheme ; }
2023-08-12 04:52:38 +00:00
ErrorOr < String > username ( ) const ;
ErrorOr < String > password ( ) const ;
2023-07-27 09:40:41 +00:00
Host const & host ( ) const { return m_host ; }
ErrorOr < String > serialized_host ( ) const ;
2023-08-06 04:43:50 +00:00
DeprecatedString basename ( ) const ;
2023-08-12 07:28:19 +00:00
Optional < String > const & query ( ) const { return m_query ; }
2023-08-09 16:23:23 +00:00
// NOTE: fragment() is percent-decoded, raw_fragment() is not.
2023-08-06 04:43:50 +00:00
DeprecatedString fragment ( ) const ;
2023-08-09 16:23:23 +00:00
DeprecatedString raw_fragment ( ) const ;
2021-09-13 20:12:16 +00:00
Optional < u16 > port ( ) const { return m_port ; }
2023-08-06 04:43:50 +00:00
DeprecatedString path_segment_at_index ( size_t index ) const ;
2023-04-13 22:29:51 +00:00
size_t path_segment_count ( ) const { return m_paths . size ( ) ; }
2023-04-13 22:06:58 +00:00
2021-09-13 20:12:16 +00:00
u16 port_or_default ( ) const { return m_port . value_or ( default_port_for_scheme ( m_scheme ) ) ; }
2021-09-13 19:42:48 +00:00
bool cannot_be_a_base_url ( ) const { return m_cannot_be_a_base_url ; }
2023-07-26 08:54:36 +00:00
bool cannot_have_a_username_or_password_or_port ( ) const ;
2019-08-10 15:27:56 +00:00
2021-05-25 20:05:01 +00:00
bool includes_credentials ( ) const { return ! m_username . is_empty ( ) | | ! m_password . is_empty ( ) ; }
bool is_special ( ) const { return is_special_scheme ( m_scheme ) ; }
2022-12-04 18:02:33 +00:00
void set_scheme ( DeprecatedString ) ;
2023-08-12 04:52:38 +00:00
ErrorOr < void > set_username ( StringView ) ;
ErrorOr < void > set_password ( StringView ) ;
2023-07-27 09:40:41 +00:00
void set_host ( Host ) ;
2021-09-13 20:12:16 +00:00
void set_port ( Optional < u16 > ) ;
2023-08-06 04:32:44 +00:00
void set_paths ( Vector < DeprecatedString > const & ) ;
2023-08-12 07:28:19 +00:00
void set_query ( Optional < String > query ) { m_query = move ( query ) ; }
2023-08-06 04:32:44 +00:00
void set_fragment ( StringView fragment ) ;
2021-06-01 08:58:27 +00:00
void set_cannot_be_a_base_url ( bool value ) { m_cannot_be_a_base_url = value ; }
2023-08-06 04:32:44 +00:00
void append_path ( StringView ) ;
2023-04-09 13:21:00 +00:00
void append_slash ( )
{
// NOTE: To indicate that we want to end the path with a slash, we have to append an empty path segment.
2023-08-06 04:13:08 +00:00
m_paths . append ( " " ) ;
2023-04-09 13:21:00 +00:00
}
2019-10-05 08:14:42 +00:00
2023-08-06 04:43:50 +00:00
DeprecatedString serialize_path ( ) const ;
2022-12-04 18:02:33 +00:00
DeprecatedString serialize ( ExcludeFragment = ExcludeFragment : : No ) const ;
DeprecatedString serialize_for_display ( ) const ;
2022-12-06 01:12:49 +00:00
DeprecatedString to_deprecated_string ( ) const { return serialize ( ) ; }
2023-06-17 07:15:40 +00:00
ErrorOr < String > to_string ( ) const ;
2021-05-27 19:38:16 +00:00
2021-09-13 19:18:14 +00:00
// HTML origin
2022-12-04 18:02:33 +00:00
DeprecatedString serialize_origin ( ) const ;
2021-09-13 19:18:14 +00:00
2021-06-01 08:58:27 +00:00
bool equals ( URL const & other , ExcludeFragment = ExcludeFragment : : No ) const ;
2021-05-27 19:38:16 +00:00
2023-02-13 17:42:27 +00:00
URL complete_url ( StringView ) const ;
2019-11-18 21:04:39 +00:00
AK: Decode data URLs to separate class (and parse like every other URL)
Parsing 'data:' URLs took it's own route. It never set standard URL
fields like path, query or fragment (except for scheme) and instead
gave us separate methods called `data_payload()`, `data_mime_type()`,
and `data_payload_is_base64()`.
Because parsing 'data:' didn't use standard fields, running the
following JS code:
new URL('#a', 'data:text/plain,hello').toString()
not only cleared the path as URLParser doesn't check for data from
data_payload() function (making the result be 'data:#a'), but it also
crashes the program because we forbid having an empty MIME type when we
serialize to string.
With this change, 'data:' URLs will be parsed like every other URLs.
To decode the 'data:' URL contents, one needs to call process_data_url()
on a URL, which will return a struct containing MIME type with already
decoded data! :^)
2023-07-06 17:11:58 +00:00
struct DataURL {
String mime_type ;
ByteBuffer body ;
} ;
ErrorOr < DataURL > process_data_url ( ) const ;
2020-04-26 20:48:54 +00:00
2022-12-04 18:02:33 +00:00
static URL create_with_url_or_path ( DeprecatedString const & ) ;
static URL create_with_file_scheme ( DeprecatedString const & path , DeprecatedString const & fragment = { } , DeprecatedString const & hostname = { } ) ;
static URL create_with_help_scheme ( DeprecatedString const & path , DeprecatedString const & fragment = { } , DeprecatedString const & hostname = { } ) ;
AK: Decode data URLs to separate class (and parse like every other URL)
Parsing 'data:' URLs took it's own route. It never set standard URL
fields like path, query or fragment (except for scheme) and instead
gave us separate methods called `data_payload()`, `data_mime_type()`,
and `data_payload_is_base64()`.
Because parsing 'data:' didn't use standard fields, running the
following JS code:
new URL('#a', 'data:text/plain,hello').toString()
not only cleared the path as URLParser doesn't check for data from
data_payload() function (making the result be 'data:#a'), but it also
crashes the program because we forbid having an empty MIME type when we
serialize to string.
With this change, 'data:' URLs will be parsed like every other URLs.
To decode the 'data:' URL contents, one needs to call process_data_url()
on a URL, which will return a struct containing MIME type with already
decoded data! :^)
2023-07-06 17:11:58 +00:00
static URL create_with_data ( StringView mime_type , StringView payload , bool is_base64 = false ) ;
2021-05-25 20:05:01 +00:00
2021-11-10 23:55:02 +00:00
static u16 default_port_for_scheme ( StringView ) ;
static bool is_special_scheme ( StringView ) ;
2020-04-18 20:02:04 +00:00
2022-04-09 16:34:49 +00:00
enum class SpaceAsPlus {
No ,
Yes ,
} ;
2022-12-04 18:02:33 +00:00
static DeprecatedString percent_encode ( StringView input , PercentEncodeSet set = PercentEncodeSet : : Userinfo , SpaceAsPlus = SpaceAsPlus : : No ) ;
static DeprecatedString percent_decode ( StringView input ) ;
2021-05-25 11:50:03 +00:00
2021-06-01 09:14:30 +00:00
bool operator = = ( URL const & other ) const { return equals ( other , ExcludeFragment : : No ) ; }
2020-06-01 19:50:07 +00:00
2022-04-09 22:48:15 +00:00
static bool code_point_is_in_percent_encode_set ( u32 code_point , URL : : PercentEncodeSet ) ;
2023-08-12 04:52:38 +00:00
String const & raw_username ( ) const { return m_username ; }
String const & raw_password ( ) const { return m_password ; }
2019-08-10 15:27:56 +00:00
private :
2020-04-11 21:07:23 +00:00
bool compute_validity ( ) const ;
2019-08-10 15:27:56 +00:00
2022-04-08 13:20:30 +00:00
static void append_percent_encoded_if_necessary ( StringBuilder & , u32 code_point , PercentEncodeSet set = PercentEncodeSet : : Userinfo ) ;
2021-05-25 11:50:03 +00:00
static void append_percent_encoded ( StringBuilder & , u32 code_point ) ;
2019-08-10 15:27:56 +00:00
bool m_valid { false } ;
2021-05-25 19:32:20 +00:00
2023-07-23 08:10:32 +00:00
// A URL’ s scheme is an ASCII string that identifies the type of URL and can be used to dispatch a URL for further processing after parsing. It is initially the empty string.
2022-12-04 18:02:33 +00:00
DeprecatedString m_scheme ;
2023-07-23 08:10:32 +00:00
// A URL’ s username is an ASCII string identifying a username. It is initially the empty string.
2023-08-12 04:52:38 +00:00
String m_username ;
2023-07-23 08:10:32 +00:00
// A URL’ s password is an ASCII string identifying a password. It is initially the empty string.
2023-08-12 04:52:38 +00:00
String m_password ;
2023-07-23 08:10:32 +00:00
// A URL’ s host is null or a host. It is initially null.
2023-07-27 09:40:41 +00:00
Host m_host ;
2023-07-23 08:10:32 +00:00
// A URL’ s port is either null or a 16-bit unsigned integer that identifies a networking port. It is initially null.
2021-09-13 20:12:16 +00:00
Optional < u16 > m_port ;
2023-07-23 08:10:32 +00:00
// A URL’ s path is either a URL path segment or a list of zero or more URL path segments, usually identifying a location. It is initially « ».
// A URL path segment is an ASCII string. It commonly refers to a directory or a file, but has no predefined meaning.
2022-12-04 18:02:33 +00:00
Vector < DeprecatedString > m_paths ;
2023-07-23 08:10:32 +00:00
// A URL’ s query is either null or an ASCII string. It is initially null.
2023-08-12 07:28:19 +00:00
Optional < String > m_query ;
2023-07-23 08:10:32 +00:00
// A URL’ s fragment is either null or an ASCII string that can be used for further processing on the resource the URL’ s other components identify. It is initially null.
2022-12-04 18:02:33 +00:00
DeprecatedString m_fragment ;
2021-05-25 19:32:20 +00:00
bool m_cannot_be_a_base_url { false } ;
2019-08-10 15:27:56 +00:00
} ;
2020-10-04 11:29:47 +00:00
template < >
struct Formatter < URL > : Formatter < StringView > {
2021-11-16 00:15:21 +00:00
ErrorOr < void > format ( FormatBuilder & builder , URL const & value )
2020-10-04 11:29:47 +00:00
{
2021-11-16 00:15:21 +00:00
return Formatter < StringView > : : format ( builder , value . serialize ( ) ) ;
2020-10-04 11:29:47 +00:00
}
} ;
2020-06-01 19:50:07 +00:00
template < >
struct Traits < URL > : public GenericTraits < URL > {
2022-12-06 01:12:49 +00:00
static unsigned hash ( URL const & url ) { return url . to_deprecated_string ( ) . hash ( ) ; }
2020-06-01 19:50:07 +00:00
} ;
2020-05-16 17:35:39 +00:00
}