Requests.cpp 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. /*
  2. * Copyright (c) 2022, Linus Groh <linusg@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <AK/Array.h>
  7. #include <LibWeb/Fetch/Infrastructure/HTTP/Requests.h>
  8. namespace Web::Fetch::Infrastructure {
  9. Request::Request()
  10. : m_header_list(make_ref_counted<HeaderList>())
  11. {
  12. }
  13. // https://fetch.spec.whatwg.org/#concept-request-url
  14. AK::URL const& Request::url() const
  15. {
  16. // A request has an associated URL (a URL).
  17. // NOTE: Implementations are encouraged to make this a pointer to the first URL in request’s URL list. It is provided as a distinct field solely for the convenience of other standards hooking into Fetch.
  18. VERIFY(!m_url_list.is_empty());
  19. return m_url_list.first();
  20. }
  21. // https://fetch.spec.whatwg.org/#concept-request-current-url
  22. AK::URL const& Request::current_url()
  23. {
  24. // A request has an associated current URL. It is a pointer to the last URL in request’s URL list.
  25. VERIFY(!m_url_list.is_empty());
  26. return m_url_list.last();
  27. }
  28. void Request::set_url(AK::URL url)
  29. {
  30. // Sometimes setting the URL and URL list are done as two distinct steps in the spec,
  31. // but since we know the URL is always the URL list's first item and doesn't change later
  32. // on, we can combine them.
  33. VERIFY(m_url_list.is_empty());
  34. m_url_list.append(move(url));
  35. }
  36. // https://fetch.spec.whatwg.org/#request-destination-script-like
  37. bool Request::destination_is_script_like() const
  38. {
  39. // A request’s destination is script-like if it is "audioworklet", "paintworklet", "script", "serviceworker", "sharedworker", or "worker".
  40. static constexpr Array script_like_destinations = {
  41. Destination::AudioWorklet,
  42. Destination::PaintWorklet,
  43. Destination::Script,
  44. Destination::ServiceWorker,
  45. Destination::SharedWorker,
  46. Destination::Worker,
  47. };
  48. return any_of(script_like_destinations, [this](auto destination) {
  49. return m_destination == destination;
  50. });
  51. }
  52. // https://fetch.spec.whatwg.org/#subresource-request
  53. bool Request::is_subresource_request() const
  54. {
  55. // A subresource request is a request whose destination is "audio", "audioworklet", "font", "image", "manifest", "paintworklet", "script", "style", "track", "video", "xslt", or the empty string.
  56. static constexpr Array subresource_request_destinations = {
  57. Destination::Audio,
  58. Destination::AudioWorklet,
  59. Destination::Font,
  60. Destination::Image,
  61. Destination::Manifest,
  62. Destination::PaintWorklet,
  63. Destination::Script,
  64. Destination::Style,
  65. Destination::Track,
  66. Destination::Video,
  67. Destination::XSLT,
  68. };
  69. return any_of(subresource_request_destinations, [this](auto destination) {
  70. return m_destination == destination;
  71. }) || !m_destination.has_value();
  72. }
  73. // https://fetch.spec.whatwg.org/#non-subresource-request
  74. bool Request::is_non_subresource_request() const
  75. {
  76. // A non-subresource request is a request whose destination is "document", "embed", "frame", "iframe", "object", "report", "serviceworker", "sharedworker", or "worker".
  77. static constexpr Array non_subresource_request_destinations = {
  78. Destination::Document,
  79. Destination::Embed,
  80. Destination::Frame,
  81. Destination::IFrame,
  82. Destination::Object,
  83. Destination::Report,
  84. Destination::ServiceWorker,
  85. Destination::SharedWorker,
  86. Destination::Worker,
  87. };
  88. return any_of(non_subresource_request_destinations, [this](auto destination) {
  89. return m_destination == destination;
  90. });
  91. }
  92. // https://fetch.spec.whatwg.org/#navigation-request
  93. bool Request::is_navigation_request() const
  94. {
  95. // A navigation request is a request whose destination is "document", "embed", "frame", "iframe", or "object".
  96. static constexpr Array navigation_request_destinations = {
  97. Destination::Document,
  98. Destination::Embed,
  99. Destination::Frame,
  100. Destination::IFrame,
  101. Destination::Object,
  102. };
  103. return any_of(navigation_request_destinations, [this](auto destination) {
  104. return m_destination == destination;
  105. });
  106. }
  107. // https://fetch.spec.whatwg.org/#concept-request-tainted-origin
  108. bool Request::has_redirect_tainted_origin() const
  109. {
  110. // A request request has a redirect-tainted origin if these steps return true:
  111. // 1. Let lastURL be null.
  112. Optional<AK::URL const&> last_url;
  113. // 2. For each url in request’s URL list:
  114. for (auto const& url : m_url_list) {
  115. // 1. If lastURL is null, then set lastURL to url and continue.
  116. if (!last_url.has_value()) {
  117. last_url = url;
  118. continue;
  119. }
  120. // 2. If url’s origin is not same origin with lastURL’s origin and request’s origin is not same origin with lastURL’s origin, then return true.
  121. // FIXME: Actually use the given origins once we have https://url.spec.whatwg.org/#concept-url-origin.
  122. if (!HTML::Origin().is_same_origin(HTML::Origin()) && HTML::Origin().is_same_origin(HTML::Origin()))
  123. return true;
  124. // 3. Set lastURL to url.
  125. last_url = url;
  126. }
  127. // 3. Return false.
  128. return false;
  129. }
  130. // https://fetch.spec.whatwg.org/#serializing-a-request-origin
  131. String Request::serialize_origin() const
  132. {
  133. // 1. If request has a redirect-tainted origin, then return "null".
  134. if (has_redirect_tainted_origin())
  135. return "null"sv;
  136. // 2. Return request’s origin, serialized.
  137. return m_origin.get<HTML::Origin>().serialize();
  138. }
  139. // https://fetch.spec.whatwg.org/#byte-serializing-a-request-origin
  140. ErrorOr<ByteBuffer> Request::byte_serialize_origin() const
  141. {
  142. // Byte-serializing a request origin, given a request request, is to return the result of serializing a request origin with request, isomorphic encoded.
  143. return ByteBuffer::copy(serialize_origin().bytes());
  144. }
  145. // https://fetch.spec.whatwg.org/#concept-request-clone
  146. WebIDL::ExceptionOr<NonnullOwnPtr<Request>> Request::clone() const
  147. {
  148. // To clone a request request, run these steps:
  149. // 1. Let newRequest be a copy of request, except for its body.
  150. BodyType tmp_body;
  151. swap(tmp_body, const_cast<BodyType&>(m_body));
  152. auto new_request = make<Infrastructure::Request>(*this);
  153. swap(tmp_body, const_cast<BodyType&>(m_body));
  154. // 2. If request’s body is non-null, set newRequest’s body to the result of cloning request’s body.
  155. if (auto const* body = m_body.get_pointer<Body>())
  156. new_request->set_body(TRY(body->clone()));
  157. // 3. Return newRequest.
  158. return new_request;
  159. }
  160. // https://fetch.spec.whatwg.org/#concept-request-add-range-header
  161. ErrorOr<void> Request::add_range_reader(u64 first, Optional<u64> const& last)
  162. {
  163. // To add a range header to a request request, with an integer first, and an optional integer last, run these steps:
  164. // 1. Assert: last is not given, or first is less than or equal to last.
  165. VERIFY(!last.has_value() || first <= last.value());
  166. // 2. Let rangeValue be `bytes=`.
  167. auto range_value = TRY(ByteBuffer::copy("bytes"sv.bytes()));
  168. // 3. Serialize and isomorphic encode first, and append the result to rangeValue.
  169. TRY(range_value.try_append(String::number(first).bytes()));
  170. // 4. Append 0x2D (-) to rangeValue.
  171. TRY(range_value.try_append('-'));
  172. // 5. If last is given, then serialize and isomorphic encode it, and append the result to rangeValue.
  173. if (last.has_value())
  174. TRY(range_value.try_append(String::number(*last).bytes()));
  175. // 6. Append (`Range`, rangeValue) to request’s header list.
  176. auto header = Header {
  177. .name = TRY(ByteBuffer::copy("Range"sv.bytes())),
  178. .value = move(range_value),
  179. };
  180. TRY(m_header_list->append(move(header)));
  181. return {};
  182. }
  183. // https://fetch.spec.whatwg.org/#cross-origin-embedder-policy-allows-credentials
  184. bool Request::cross_origin_embedder_policy_allows_credentials() const
  185. {
  186. // 1. If request’s mode is not "no-cors", then return true.
  187. if (m_mode != Mode::NoCORS)
  188. return true;
  189. // 2. If request’s client is null, then return true.
  190. if (m_client == nullptr)
  191. return true;
  192. // FIXME: 3. If request’s client’s policy container’s embedder policy’s value is not "credentialless", then return true.
  193. // 4. If request’s origin is same origin with request’s current URL’s origin and request does not have a redirect-tainted origin, then return true.
  194. // FIXME: Actually use the given origins once we have https://url.spec.whatwg.org/#concept-url-origin.
  195. if (HTML::Origin().is_same_origin(HTML::Origin()) && !has_redirect_tainted_origin())
  196. return true;
  197. // 5. Return false.
  198. return false;
  199. }
  200. }