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
2022-12-04 21:02:33 +03:00
# include <AK/DeprecatedString.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
2022-09-25 21:54:06 +03: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 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.
2022-11-03 20:27:18 +03:00
// The URL parser automatically decodes those sequences and 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 ) ;
2022-12-04 21:02:33 +03:00
URL ( DeprecatedString 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
2022-12-04 21:02:33 +03:00
DeprecatedString const & scheme ( ) const { return m_scheme ; }
DeprecatedString const & username ( ) const { return m_username ; }
DeprecatedString const & password ( ) const { return m_password ; }
DeprecatedString const & host ( ) const { return m_host ; }
Vector < DeprecatedString > const & paths ( ) const { return m_paths ; }
DeprecatedString const & query ( ) const { return m_query ; }
DeprecatedString 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 ) ; }
2022-12-04 21:02:33 +03:00
void set_scheme ( DeprecatedString ) ;
void set_username ( DeprecatedString ) ;
void set_password ( DeprecatedString ) ;
void set_host ( DeprecatedString ) ;
2021-09-13 23:12:16 +03:00
void set_port ( Optional < u16 > ) ;
2022-12-04 21:02:33 +03:00
void set_paths ( Vector < DeprecatedString > ) ;
void set_query ( DeprecatedString ) ;
void set_fragment ( DeprecatedString ) ;
2021-06-01 11:58:27 +03:00
void set_cannot_be_a_base_url ( bool value ) { m_cannot_be_a_base_url = value ; }
2022-12-04 21:02:33 +03:00
void append_path ( DeprecatedString path ) { m_paths . append ( move ( path ) ) ; }
2019-10-05 11:14:42 +03:00
2022-12-04 21:02:33 +03:00
DeprecatedString path ( ) const ;
DeprecatedString basename ( ) const ;
2019-08-10 18:27:56 +03:00
2022-12-04 21:02:33 +03:00
DeprecatedString serialize ( ExcludeFragment = ExcludeFragment : : No ) const ;
DeprecatedString serialize_for_display ( ) const ;
2022-12-06 04:12:49 +03:00
DeprecatedString to_deprecated_string ( ) const { return serialize ( ) ; }
2021-05-27 22:38:16 +03:00
2021-09-13 22:18:14 +03:00
// HTML origin
2022-12-04 21:02:33 +03:00
DeprecatedString serialize_origin ( ) const ;
2021-09-13 22:18:14 +03:00
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
2022-12-04 21:02:33 +03:00
URL complete_url ( DeprecatedString 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 ; }
2022-12-04 21:02:33 +03:00
DeprecatedString const & data_mime_type ( ) const { return m_data_mime_type ; }
DeprecatedString const & data_payload ( ) const { return m_data_payload ; }
2020-04-26 23:48:54 +03:00
2022-12-04 21:02:33 +03: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 = { } ) ;
static URL create_with_data ( DeprecatedString mime_type , DeprecatedString 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
2022-04-09 19:34:49 +03:00
enum class SpaceAsPlus {
No ,
Yes ,
} ;
2022-12-04 21:02:33 +03:00
static DeprecatedString percent_encode ( StringView input , PercentEncodeSet set = PercentEncodeSet : : Userinfo , SpaceAsPlus = SpaceAsPlus : : No ) ;
static DeprecatedString 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
2022-04-10 01:48:15 +03:00
static bool code_point_is_in_percent_encode_set ( u32 code_point , URL : : PercentEncodeSet ) ;
2019-08-10 18:27:56 +03:00
private :
2022-12-04 21:02:33 +03:00
URL ( DeprecatedString & & data_mime_type , DeprecatedString & & data_payload , bool payload_is_base64 )
2021-05-25 23:05:01 +03:00
: 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 ;
2022-12-04 21:02:33 +03:00
DeprecatedString serialize_data_url ( ) const ;
2019-08-10 18:27:56 +03:00
2022-04-08 16:20:30 +03:00
static void append_percent_encoded_if_necessary ( StringBuilder & , u32 code_point , PercentEncodeSet set = PercentEncodeSet : : Userinfo ) ;
2021-05-25 14:50:03 +03:00
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
2022-12-04 21:02:33 +03:00
DeprecatedString m_scheme ;
DeprecatedString m_username ;
DeprecatedString m_password ;
DeprecatedString 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 ;
2022-12-04 21:02:33 +03:00
DeprecatedString m_path ;
Vector < DeprecatedString > m_paths ;
DeprecatedString m_query ;
DeprecatedString 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 } ;
2022-12-04 21:02:33 +03:00
DeprecatedString m_data_mime_type ;
DeprecatedString 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 > {
2022-12-06 04:12:49 +03:00
static unsigned hash ( URL const & url ) { return url . to_deprecated_string ( ) . hash ( ) ; }
2020-06-01 22:50:07 +03:00
} ;
2020-05-16 20:35:39 +03:00
}