mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 21:32:44 +00:00 
			
		
		
		
	 a91c17c0eb
			
		
	
	
		a91c17c0eb
		
	
	
	
	
		
			
			It's missing query string parsing from new URLs, but you can set the query string programmatically, and it will be part of the URL when serialized through to_string().
		
			
				
	
	
		
			58 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <AK/String.h>
 | |
| #include <AK/StringView.h>
 | |
| 
 | |
| namespace AK {
 | |
| 
 | |
| // FIXME: URL needs query string parsing.
 | |
| 
 | |
| class URL {
 | |
| public:
 | |
|     URL() {}
 | |
|     URL(const StringView&);
 | |
|     URL(const char* string)
 | |
|         : URL(StringView(string))
 | |
|     {
 | |
|     }
 | |
|     URL(const String& string)
 | |
|         : URL(string.view())
 | |
|     {
 | |
|     }
 | |
| 
 | |
|     bool is_valid() const { return m_valid; }
 | |
|     String protocol() const { return m_protocol; }
 | |
|     String host() const { return m_host; }
 | |
|     String path() const { return m_path; }
 | |
|     String query() const { return m_query; }
 | |
|     u16 port() const { return m_port; }
 | |
| 
 | |
|     void set_protocol(const String& protocol) { m_protocol = protocol; }
 | |
|     void set_host(const String& host) { m_host = host; }
 | |
|     void set_path(const String& path) { m_path = path; }
 | |
|     void set_query(const String& query) { m_query = query; }
 | |
|     void set_port(u16 port) { m_port = port; }
 | |
| 
 | |
|     String to_string() const;
 | |
| 
 | |
|     URL complete_url(const String&) const;
 | |
| 
 | |
| private:
 | |
|     bool parse(const StringView&);
 | |
| 
 | |
|     bool m_valid { false };
 | |
|     u16 m_port { 80 };
 | |
|     String m_protocol;
 | |
|     String m_host;
 | |
|     String m_path;
 | |
|     String m_query;
 | |
| };
 | |
| 
 | |
| }
 | |
| 
 | |
| using AK::URL;
 | |
| 
 | |
| inline const LogStream& operator<<(const LogStream& stream, const URL& value)
 | |
| {
 | |
|     return stream << value.to_string();
 | |
| }
 |