Response.cpp 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. /*
  2. * Copyright (c) 2022, Linus Groh <linusg@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <AK/URLParser.h>
  7. #include <LibWeb/Bindings/Intrinsics.h>
  8. #include <LibWeb/Bindings/MainThreadVM.h>
  9. #include <LibWeb/Fetch/Enums.h>
  10. #include <LibWeb/Fetch/Infrastructure/HTTP/Bodies.h>
  11. #include <LibWeb/Fetch/Infrastructure/HTTP/Responses.h>
  12. #include <LibWeb/Fetch/Infrastructure/HTTP/Statuses.h>
  13. #include <LibWeb/Fetch/Response.h>
  14. #include <LibWeb/HTML/Scripting/Environments.h>
  15. #include <LibWeb/Infra/JSON.h>
  16. namespace Web::Fetch {
  17. Response::Response(JS::Realm& realm, NonnullOwnPtr<Infrastructure::Response> response)
  18. : PlatformObject(realm)
  19. , m_response(move(response))
  20. {
  21. set_prototype(&Bindings::cached_web_prototype(realm, "Response"));
  22. }
  23. Response::~Response() = default;
  24. void Response::visit_edges(Cell::Visitor& visitor)
  25. {
  26. Base::visit_edges(visitor);
  27. visitor.visit(m_headers);
  28. }
  29. // https://fetch.spec.whatwg.org/#concept-body-mime-type
  30. // https://fetch.spec.whatwg.org/#ref-for-concept-header-extract-mime-type%E2%91%A7
  31. Optional<MimeSniff::MimeType> Response::mime_type_impl() const
  32. {
  33. // Objects including the Body interface mixin need to define an associated MIME type algorithm which takes no arguments and returns failure or a MIME type.
  34. // A Response object’s MIME type is to return the result of extracting a MIME type from its response’s header list.
  35. return m_response->header_list()->extract_mime_type();
  36. }
  37. // https://fetch.spec.whatwg.org/#concept-body-body
  38. // https://fetch.spec.whatwg.org/#ref-for-concept-body-body%E2%91%A8
  39. Optional<Infrastructure::Body const&> Response::body_impl() const
  40. {
  41. // Objects including the Body interface mixin have an associated body (null or a body).
  42. // A Response object’s body is its response’s body.
  43. return m_response->body().has_value()
  44. ? m_response->body().value()
  45. : Optional<Infrastructure::Body const&> {};
  46. }
  47. // https://fetch.spec.whatwg.org/#concept-body-body
  48. // https://fetch.spec.whatwg.org/#ref-for-concept-body-body%E2%91%A8
  49. Optional<Infrastructure::Body&> Response::body_impl()
  50. {
  51. // Objects including the Body interface mixin have an associated body (null or a body).
  52. // A Response object’s body is its response’s body.
  53. return m_response->body().has_value()
  54. ? m_response->body().value()
  55. : Optional<Infrastructure::Body&> {};
  56. }
  57. // https://fetch.spec.whatwg.org/#response-create
  58. JS::NonnullGCPtr<Response> Response::create(NonnullOwnPtr<Infrastructure::Response> response, Headers::Guard guard, JS::Realm& realm)
  59. {
  60. // Copy a NonnullRefPtr to the response's header list before response is being move()'d.
  61. auto response_reader_list = response->header_list();
  62. // 1. Let responseObject be a new Response object with realm.
  63. // 2. Set responseObject’s response to response.
  64. auto* response_object = realm.heap().allocate<Response>(realm, realm, move(response));
  65. // 3. Set responseObject’s headers to a new Headers object with realm, whose headers list is response’s headers list and guard is guard.
  66. response_object->m_headers = realm.heap().allocate<Headers>(realm, realm);
  67. response_object->m_headers->set_header_list(move(response_reader_list));
  68. response_object->m_headers->set_guard(guard);
  69. // 4. Return responseObject.
  70. return JS::NonnullGCPtr { *response_object };
  71. }
  72. // https://fetch.spec.whatwg.org/#initialize-a-response
  73. WebIDL::ExceptionOr<void> Response::initialize_response(ResponseInit const& init, Optional<Infrastructure::BodyWithType> const& body)
  74. {
  75. // 1. If init["status"] is not in the range 200 to 599, inclusive, then throw a RangeError.
  76. if (init.status < 200 || init.status > 599)
  77. return WebIDL::SimpleException { WebIDL::SimpleExceptionType::RangeError, "Status must be in range 200-599"sv };
  78. // FIXME: 2. If init["statusText"] does not match the reason-phrase token production, then throw a TypeError.
  79. // 3. Set response’s response’s status to init["status"].
  80. m_response->set_status(init.status);
  81. // 4. Set response’s response’s status message to init["statusText"].
  82. m_response->set_status_message(TRY_OR_RETURN_OOM(realm(), ByteBuffer::copy(init.status_text.bytes())));
  83. // 5. If init["headers"] exists, then fill response’s headers with init["headers"].
  84. if (init.headers.has_value())
  85. m_headers->fill(*init.headers);
  86. // 6. If body was given, then:
  87. if (body.has_value()) {
  88. // 1. If response’s status is a null body status, then throw a TypeError.
  89. if (Infrastructure::is_null_body_status(m_response->status()))
  90. return WebIDL::SimpleException { WebIDL::SimpleExceptionType::TypeError, "Response with null body status cannot have a body"sv };
  91. // 2. Set response’s body to body’s body.
  92. m_response->set_body(body->body);
  93. // 3. If body’s type is non-null and response’s header list does not contain `Content-Type`, then append (`Content-Type`, body’s type) to response’s header list.
  94. if (body->type.has_value() && m_response->header_list()->contains("Content-Type"sv.bytes())) {
  95. auto header = Infrastructure::Header {
  96. .name = TRY_OR_RETURN_OOM(realm(), ByteBuffer::copy("Content-Type"sv.bytes())),
  97. .value = TRY_OR_RETURN_OOM(realm(), ByteBuffer::copy(body->type->span())),
  98. };
  99. TRY_OR_RETURN_OOM(realm(), m_response->header_list()->append(move(header)));
  100. }
  101. }
  102. return {};
  103. }
  104. // https://fetch.spec.whatwg.org/#dom-response
  105. WebIDL::ExceptionOr<JS::NonnullGCPtr<Response>> Response::construct_impl(JS::Realm& realm, Optional<BodyInit> const& body, ResponseInit const& init)
  106. {
  107. // Referred to as 'this' in the spec.
  108. auto response_object = JS::NonnullGCPtr { *realm.heap().allocate<Response>(realm, realm, make<Infrastructure::Response>()) };
  109. // 1. Set this’s response to a new response.
  110. // NOTE: This is done at the beginning as the 'this' value Response object
  111. // cannot exist with a null Infrastructure::Response.
  112. // 2. Set this’s headers to a new Headers object with this’s relevant Realm, whose header list is this’s response’s header list and guard is "response".
  113. response_object->m_headers = realm.heap().allocate<Headers>(realm, realm);
  114. response_object->m_headers->set_header_list(response_object->response().header_list());
  115. response_object->m_headers->set_guard(Headers::Guard::Response);
  116. // 3. Let bodyWithType be null.
  117. Optional<Infrastructure::BodyWithType> body_with_type;
  118. // 4. If body is non-null, then set bodyWithType to the result of extracting body.
  119. if (body.has_value())
  120. body_with_type = TRY(extract_body(realm, *body));
  121. // 5. Perform initialize a response given this, init, and bodyWithType.
  122. TRY(response_object->initialize_response(init, body_with_type));
  123. return response_object;
  124. }
  125. // https://fetch.spec.whatwg.org/#dom-response-error
  126. JS::NonnullGCPtr<Response> Response::error()
  127. {
  128. auto& vm = Bindings::main_thread_vm();
  129. // The static error() method steps are to return the result of creating a Response object, given a new network error, "immutable", and this’s relevant Realm.
  130. // FIXME: How can we reliably get 'this', i.e. the object the function was called on, in IDL-defined functions?
  131. return Response::create(Infrastructure::Response::network_error(), Headers::Guard::Immutable, *vm.current_realm());
  132. }
  133. // https://fetch.spec.whatwg.org/#dom-response-redirect
  134. WebIDL::ExceptionOr<JS::NonnullGCPtr<Response>> Response::redirect(String const& url, u16 status)
  135. {
  136. auto& realm = HTML::current_settings_object().realm();
  137. // 1. Let parsedURL be the result of parsing url with current settings object’s API base URL.
  138. auto api_base_url = HTML::current_settings_object().api_base_url();
  139. auto parsed_url = URLParser::parse(url, &api_base_url);
  140. // 2. If parsedURL is failure, then throw a TypeError.
  141. if (!parsed_url.is_valid())
  142. return WebIDL::SimpleException { WebIDL::SimpleExceptionType::TypeError, "Redirect URL is not valid"sv };
  143. // 3. If status is not a redirect status, then throw a RangeError.
  144. if (!Infrastructure::is_redirect_status(status))
  145. return WebIDL::SimpleException { WebIDL::SimpleExceptionType::RangeError, "Status must be one of 301, 302, 303, 307, or 308"sv };
  146. // 4. Let responseObject be the result of creating a Response object, given a new response, "immutable", and this’s relevant Realm.
  147. // FIXME: How can we reliably get 'this', i.e. the object the function was called on, in IDL-defined functions?
  148. auto response_object = Response::create(make<Infrastructure::Response>(), Headers::Guard::Immutable, realm);
  149. // 5. Set responseObject’s response’s status to status.
  150. response_object->response().set_status(status);
  151. // 6. Let value be parsedURL, serialized and isomorphic encoded.
  152. auto value = parsed_url.serialize();
  153. // 7. Append (`Location`, value) to responseObject’s response’s header list.
  154. auto header = Infrastructure::Header {
  155. .name = TRY_OR_RETURN_OOM(realm, ByteBuffer::copy("Location"sv.bytes())),
  156. .value = TRY_OR_RETURN_OOM(realm, ByteBuffer::copy(value.bytes())),
  157. };
  158. TRY_OR_RETURN_OOM(realm, response_object->response().header_list()->append(move(header)));
  159. // 8. Return responseObject.
  160. return response_object;
  161. }
  162. // https://fetch.spec.whatwg.org/#dom-response-json
  163. WebIDL::ExceptionOr<JS::NonnullGCPtr<Response>> Response::json(JS::Value data, ResponseInit const& init)
  164. {
  165. auto& vm = Bindings::main_thread_vm();
  166. auto& realm = *vm.current_realm();
  167. // 1. Let bytes the result of running serialize a JavaScript value to JSON bytes on data.
  168. auto bytes = TRY(Infra::serialize_javascript_value_to_json_bytes(vm, data));
  169. // 2. Let body be the result of extracting bytes.
  170. auto [body, _] = TRY(extract_body(realm, { bytes.bytes() }));
  171. // 3. Let responseObject be the result of creating a Response object, given a new response, "response", and this’s relevant Realm.
  172. // FIXME: How can we reliably get 'this', i.e. the object the function was called on, in IDL-defined functions?
  173. auto response_object = Response::create(make<Infrastructure::Response>(), Headers::Guard::Response, realm);
  174. // 4. Perform initialize a response given responseObject, init, and (body, "application/json").
  175. auto body_with_type = Infrastructure::BodyWithType {
  176. .body = move(body),
  177. .type = TRY_OR_RETURN_OOM(realm, ByteBuffer::copy("application/json"sv.bytes()))
  178. };
  179. TRY(response_object->initialize_response(init, move(body_with_type)));
  180. // 5. Return responseObject.
  181. return response_object;
  182. }
  183. // https://fetch.spec.whatwg.org/#dom-response-type
  184. Bindings::ResponseType Response::type() const
  185. {
  186. // The type getter steps are to return this’s response’s type.
  187. return to_bindings_enum(m_response->type());
  188. }
  189. // https://fetch.spec.whatwg.org/#dom-response-url
  190. String Response::url() const
  191. {
  192. // The url getter steps are to return the empty string if this’s response’s URL is null; otherwise this’s response’s URL, serialized with exclude fragment set to true.
  193. return !m_response->url().has_value()
  194. ? String::empty()
  195. : m_response->url()->serialize(AK::URL::ExcludeFragment::Yes);
  196. }
  197. // https://fetch.spec.whatwg.org/#dom-response-redirected
  198. bool Response::redirected() const
  199. {
  200. // The redirected getter steps are to return true if this’s response’s URL list has more than one item; otherwise false.
  201. return m_response->url_list().size() > 1;
  202. }
  203. // https://fetch.spec.whatwg.org/#dom-response-status
  204. u16 Response::status() const
  205. {
  206. // The status getter steps are to return this’s response’s status.
  207. return m_response->status();
  208. }
  209. // https://fetch.spec.whatwg.org/#dom-response-ok
  210. bool Response::ok() const
  211. {
  212. // The ok getter steps are to return true if this’s response’s status is an ok status; otherwise false.
  213. return Infrastructure::is_ok_status(m_response->status());
  214. }
  215. // https://fetch.spec.whatwg.org/#dom-response-statustext
  216. String Response::status_text() const
  217. {
  218. // The statusText getter steps are to return this’s response’s status message.
  219. return String::copy(m_response->status_message());
  220. }
  221. // https://fetch.spec.whatwg.org/#dom-response-headers
  222. JS::NonnullGCPtr<Headers> Response::headers() const
  223. {
  224. // The headers getter steps are to return this’s headers.
  225. return *m_headers;
  226. }
  227. // https://fetch.spec.whatwg.org/#dom-response-clone
  228. WebIDL::ExceptionOr<JS::NonnullGCPtr<Response>> Response::clone() const
  229. {
  230. // 1. If this is unusable, then throw a TypeError.
  231. if (is_unusable())
  232. return WebIDL::SimpleException { WebIDL::SimpleExceptionType::TypeError, "Response is unusable"sv };
  233. // 2. Let clonedResponse be the result of cloning this’s response.
  234. auto cloned_response = TRY(m_response->clone());
  235. // 3. Return the result of creating a Response object, given clonedResponse, this’s headers’s guard, and this’s relevant Realm.
  236. return Response::create(move(cloned_response), m_headers->guard(), HTML::relevant_realm(*this));
  237. }
  238. }