| 
									
										
										
										
											2025-04-08 14:33:01 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2025, Sam Atkins <sam@ladybird.org> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-06-02 17:56:11 -04:00
										 |  |  | #include <AK/FlyString.h>
 | 
					
						
							| 
									
										
										
										
											2025-04-08 14:33:01 +01:00
										 |  |  | #include <AK/String.h>
 | 
					
						
							| 
									
										
										
										
											2025-05-02 17:25:56 +01:00
										 |  |  | #include <AK/Vector.h>
 | 
					
						
							|  |  |  | #include <LibGC/Ptr.h>
 | 
					
						
							|  |  |  | #include <LibWeb/CSS/Enums.h>
 | 
					
						
							| 
									
										
										
										
											2025-04-08 14:33:01 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace Web::CSS { | 
					
						
							| 
									
										
										
										
											2025-05-13 07:06:33 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-05-02 17:25:56 +01:00
										 |  |  | // https://drafts.csswg.org/css-values-5/#request-url-modifiers
 | 
					
						
							|  |  |  | class RequestURLModifier { | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |     enum class Type : u8 { | 
					
						
							|  |  |  |         CrossOrigin, | 
					
						
							|  |  |  |         Integrity, | 
					
						
							|  |  |  |         ReferrerPolicy, | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     static RequestURLModifier create_cross_origin(CrossOriginModifierValue); | 
					
						
							|  |  |  |     static RequestURLModifier create_integrity(FlyString); | 
					
						
							|  |  |  |     static RequestURLModifier create_referrer_policy(ReferrerPolicyModifierValue); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ~RequestURLModifier() = default; | 
					
						
							|  |  |  |     void modify_request(GC::Ref<Fetch::Infrastructure::Request>) const; | 
					
						
							|  |  |  |     Type type() const { return m_type; } | 
					
						
							|  |  |  |     String to_string() const; | 
					
						
							|  |  |  |     bool operator==(RequestURLModifier const&) const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  |     using Value = Variant<CrossOriginModifierValue, ReferrerPolicyModifierValue, FlyString>; | 
					
						
							|  |  |  |     RequestURLModifier(Type, Value); | 
					
						
							| 
									
										
										
										
											2025-06-02 17:56:11 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-05-02 17:25:56 +01:00
										 |  |  |     Type m_type; | 
					
						
							|  |  |  |     Value m_value; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2025-04-08 14:33:01 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | // https://drafts.csswg.org/css-values-4/#urls
 | 
					
						
							|  |  |  | class URL { | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2025-06-09 17:20:04 +01:00
										 |  |  |     enum class Type : u8 { | 
					
						
							|  |  |  |         Url, | 
					
						
							|  |  |  |         Src, | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     URL(String url, Type = Type::Url, Vector<RequestURLModifier> = {}); | 
					
						
							| 
									
										
										
										
											2025-04-08 14:33:01 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     String const& url() const { return m_url; } | 
					
						
							| 
									
										
										
										
											2025-05-02 17:25:56 +01:00
										 |  |  |     Vector<RequestURLModifier> const& request_url_modifiers() const { return m_request_url_modifiers; } | 
					
						
							| 
									
										
										
										
											2025-04-08 14:33:01 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     String to_string() const; | 
					
						
							|  |  |  |     bool operator==(URL const&) const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							| 
									
										
										
										
											2025-06-09 17:20:04 +01:00
										 |  |  |     Type m_type; | 
					
						
							| 
									
										
										
										
											2025-04-08 14:33:01 +01:00
										 |  |  |     String m_url; | 
					
						
							| 
									
										
										
										
											2025-05-02 17:25:56 +01:00
										 |  |  |     Vector<RequestURLModifier> m_request_url_modifiers; | 
					
						
							| 
									
										
										
										
											2025-04-08 14:33:01 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2025-05-02 11:13:35 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | template<> | 
					
						
							|  |  |  | struct AK::Formatter<Web::CSS::URL> : AK::Formatter<StringView> { | 
					
						
							|  |  |  |     ErrorOr<void> format(FormatBuilder& builder, Web::CSS::URL const& value) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return Formatter<StringView>::format(builder, value.to_string()); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | }; |