mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 04:12:43 +00:00 
			
		
		
		
	 4bb6345b2f
			
		
	
	
		4bb6345b2f
		
	
	
	
	
		
			
			These classes only needed Window to get at its realm. Pass a realm directly to construct Crypto, Encoding, HRT, IntersectionObserver, NavigationTiming, Page, RequestIdleCallback, Selection, Streams, URL, and XML classes.
		
			
				
	
	
		
			59 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/URL.h>
 | |
| #include <AK/Vector.h>
 | |
| #include <LibWeb/WebIDL/ExceptionOr.h>
 | |
| 
 | |
| namespace Web::URL {
 | |
| 
 | |
| struct QueryParam {
 | |
|     String name;
 | |
|     String value;
 | |
| };
 | |
| String url_encode(Vector<QueryParam> const&, AK::URL::PercentEncodeSet);
 | |
| Vector<QueryParam> url_decode(StringView);
 | |
| 
 | |
| class URLSearchParams : public Bindings::PlatformObject {
 | |
|     WEB_PLATFORM_OBJECT(URLSearchParams, Bindings::PlatformObject);
 | |
| 
 | |
| public:
 | |
|     static JS::NonnullGCPtr<URLSearchParams> create(JS::Realm&, Vector<QueryParam> list);
 | |
|     static WebIDL::ExceptionOr<JS::NonnullGCPtr<URLSearchParams>> construct_impl(JS::Realm&, Variant<Vector<Vector<String>>, OrderedHashMap<String, String>, String> const& init);
 | |
| 
 | |
|     virtual ~URLSearchParams() override;
 | |
| 
 | |
|     void append(String const& name, String const& value);
 | |
|     void delete_(String const& name);
 | |
|     String get(String const& name);
 | |
|     Vector<String> get_all(String const& name);
 | |
|     bool has(String const& name);
 | |
|     void set(String const& name, String const& value);
 | |
| 
 | |
|     void sort();
 | |
| 
 | |
|     String to_string() const;
 | |
| 
 | |
|     using ForEachCallback = Function<JS::ThrowCompletionOr<void>(String const&, String const&)>;
 | |
|     JS::ThrowCompletionOr<void> for_each(ForEachCallback);
 | |
| 
 | |
| private:
 | |
|     friend class URL;
 | |
|     friend class URLSearchParamsIterator;
 | |
| 
 | |
|     URLSearchParams(JS::Realm&, Vector<QueryParam> list);
 | |
| 
 | |
|     virtual void visit_edges(Cell::Visitor&) override;
 | |
| 
 | |
|     void update();
 | |
| 
 | |
|     Vector<QueryParam> m_list;
 | |
|     JS::GCPtr<URL> m_url;
 | |
| };
 | |
| 
 | |
| }
 |