// Copyright (c) 2019 GitHub, Inc. // Use of this source code is governed by the MIT license that can be // found in the LICENSE file. #ifndef ELECTRON_SHELL_COMMON_GIN_CONVERTERS_NET_CONVERTER_H_ #define ELECTRON_SHELL_COMMON_GIN_CONVERTERS_NET_CONVERTER_H_ #include #include #include #include "gin/converter.h" #include "services/network/public/mojom/fetch_api.mojom.h" #include "services/network/public/mojom/host_resolver.mojom.h" #include "services/network/public/mojom/url_request.mojom.h" #include "shell/browser/net/cert_verifier_client.h" namespace net { class AuthChallengeInfo; class X509Certificate; class HttpResponseHeaders; struct CertPrincipal; class HttpVersion; } // namespace net namespace network { struct ResourceRequest; } namespace gin { template <> struct Converter { static v8::Local ToV8(v8::Isolate* isolate, const net::AuthChallengeInfo& val); }; template <> struct Converter> { static v8::Local ToV8( v8::Isolate* isolate, const scoped_refptr& val); static bool FromV8(v8::Isolate* isolate, v8::Local val, scoped_refptr* out); }; template <> struct Converter { static v8::Local ToV8(v8::Isolate* isolate, const net::CertPrincipal& val); }; template <> struct Converter { static v8::Local ToV8(v8::Isolate* isolate, net::HttpResponseHeaders* headers); static bool FromV8(v8::Isolate* isolate, v8::Local val, net::HttpResponseHeaders* out); }; template <> struct Converter { static v8::Local ToV8(v8::Isolate* isolate, const net::HttpRequestHeaders& headers); static bool FromV8(v8::Isolate* isolate, v8::Local val, net::HttpRequestHeaders* out); }; template <> struct Converter { static v8::Local ToV8(v8::Isolate* isolate, const network::ResourceRequestBody& val); }; template <> struct Converter> { static v8::Local ToV8( v8::Isolate* isolate, const scoped_refptr& val); static bool FromV8(v8::Isolate* isolate, v8::Local val, scoped_refptr* out); }; template <> struct Converter { static v8::Local ToV8(v8::Isolate* isolate, const network::ResourceRequest& val); }; template <> struct Converter { static v8::Local ToV8(v8::Isolate* isolate, electron::VerifyRequestParams val); }; template <> struct Converter { static v8::Local ToV8(v8::Isolate* isolate, const net::HttpVersion& val); }; template <> struct Converter { static v8::Local ToV8(v8::Isolate* isolate, const net::RedirectInfo& val); }; template <> struct Converter { static v8::Local ToV8(v8::Isolate* isolate, const net::IPEndPoint& val); }; template <> struct Converter { static bool FromV8(v8::Isolate* isolate, v8::Local val, net::DnsQueryType* out); }; template <> struct Converter { static bool FromV8(v8::Isolate* isolate, v8::Local val, net::HostResolverSource* out); }; template <> struct Converter { static bool FromV8(v8::Isolate* isolate, v8::Local val, network::mojom::ResolveHostParameters::CacheUsage* out); }; template <> struct Converter { static bool FromV8(v8::Isolate* isolate, v8::Local val, network::mojom::SecureDnsPolicy* out); }; template <> struct Converter { static bool FromV8(v8::Isolate* isolate, v8::Local val, network::mojom::ResolveHostParametersPtr* out); }; template struct Converter>> { static bool FromV8(v8::Isolate* isolate, v8::Local value, std::vector>* out) { if (!value->IsObject()) return false; out->clear(); v8::Local context = isolate->GetCurrentContext(); v8::Local obj = value.As(); v8::Local keys = obj->GetPropertyNames(context).ToLocalChecked(); for (uint32_t i = 0; i < keys->Length(); ++i) { v8::Local v8key; if (!keys->Get(context, i).ToLocal(&v8key)) return false; v8::Local v8value; if (!obj->Get(context, v8key).ToLocal(&v8value)) return false; K key; V out_value; if (!ConvertFromV8(isolate, v8key, &key) || !ConvertFromV8(isolate, v8value, &out_value)) return false; (*out).emplace_back(std::move(key), std::move(out_value)); } return true; } }; } // namespace gin #endif // ELECTRON_SHELL_COMMON_GIN_CONVERTERS_NET_CONVERTER_H_