2022-09-25 19:36:30 +01:00
|
|
|
/*
|
2023-03-02 22:26:12 +00:00
|
|
|
* Copyright (c) 2022-2023, Linus Groh <linusg@serenityos.org>
|
2022-09-25 19:36:30 +01:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/Forward.h>
|
|
|
|
#include <LibJS/Forward.h>
|
2023-02-10 08:29:14 -05:00
|
|
|
#include <LibJS/Heap/GCPtr.h>
|
2022-09-25 19:36:30 +01:00
|
|
|
#include <LibWeb/Bindings/PlatformObject.h>
|
|
|
|
#include <LibWeb/Fetch/Body.h>
|
|
|
|
#include <LibWeb/Fetch/BodyInit.h>
|
|
|
|
#include <LibWeb/Fetch/Headers.h>
|
2022-10-04 23:45:47 +01:00
|
|
|
#include <LibWeb/Fetch/Infrastructure/HTTP/Responses.h>
|
2022-09-25 19:36:30 +01:00
|
|
|
#include <LibWeb/Forward.h>
|
|
|
|
|
|
|
|
namespace Web::Fetch {
|
|
|
|
|
|
|
|
// https://fetch.spec.whatwg.org/#responseinit
|
|
|
|
struct ResponseInit {
|
|
|
|
u16 status;
|
2023-03-02 22:26:12 +00:00
|
|
|
String status_text;
|
2022-09-25 19:36:30 +01:00
|
|
|
Optional<HeadersInit> headers;
|
|
|
|
};
|
|
|
|
|
|
|
|
// https://fetch.spec.whatwg.org/#response
|
|
|
|
class Response final
|
|
|
|
: public Bindings::PlatformObject
|
|
|
|
, public BodyMixin {
|
|
|
|
WEB_PLATFORM_OBJECT(Response, Bindings::PlatformObject);
|
|
|
|
|
|
|
|
public:
|
2023-02-19 17:49:52 +01:00
|
|
|
static WebIDL::ExceptionOr<JS::NonnullGCPtr<Response>> create(JS::Realm&, JS::NonnullGCPtr<Infrastructure::Response>, Headers::Guard);
|
2022-09-25 18:08:29 -06:00
|
|
|
static WebIDL::ExceptionOr<JS::NonnullGCPtr<Response>> construct_impl(JS::Realm&, Optional<BodyInit> const& body = {}, ResponseInit const& init = {});
|
2022-09-25 19:36:30 +01:00
|
|
|
|
|
|
|
virtual ~Response() override;
|
|
|
|
|
|
|
|
// ^BodyMixin
|
|
|
|
virtual Optional<MimeSniff::MimeType> mime_type_impl() const override;
|
|
|
|
virtual Optional<Infrastructure::Body&> body_impl() override;
|
|
|
|
virtual Optional<Infrastructure::Body const&> body_impl() const override;
|
|
|
|
|
2022-10-30 01:52:07 +00:00
|
|
|
[[nodiscard]] JS::NonnullGCPtr<Infrastructure::Response> response() const { return m_response; }
|
2022-09-25 19:36:30 +01:00
|
|
|
|
|
|
|
// JS API functions
|
2022-10-05 17:09:26 +01:00
|
|
|
[[nodiscard]] static JS::NonnullGCPtr<Response> error(JS::VM&);
|
2023-03-02 22:26:12 +00:00
|
|
|
static WebIDL::ExceptionOr<JS::NonnullGCPtr<Response>> redirect(JS::VM&, String const& url, u16 status);
|
|
|
|
static WebIDL::ExceptionOr<JS::NonnullGCPtr<Response>> json(JS::VM&, JS::Value data, ResponseInit const& init = {});
|
2022-09-25 19:36:30 +01:00
|
|
|
[[nodiscard]] Bindings::ResponseType type() const;
|
2023-03-02 22:26:12 +00:00
|
|
|
[[nodiscard]] WebIDL::ExceptionOr<String> url() const;
|
2022-09-25 19:36:30 +01:00
|
|
|
[[nodiscard]] bool redirected() const;
|
|
|
|
[[nodiscard]] u16 status() const;
|
|
|
|
[[nodiscard]] bool ok() const;
|
2023-03-02 22:26:12 +00:00
|
|
|
[[nodiscard]] WebIDL::ExceptionOr<String> status_text() const;
|
2022-09-25 19:36:30 +01:00
|
|
|
[[nodiscard]] JS::NonnullGCPtr<Headers> headers() const;
|
|
|
|
[[nodiscard]] WebIDL::ExceptionOr<JS::NonnullGCPtr<Response>> clone() const;
|
|
|
|
|
|
|
|
// Pull in json() from the BodyMixin, which gets lost due to the static json() above
|
|
|
|
using BodyMixin::json;
|
|
|
|
|
|
|
|
private:
|
2022-10-30 01:52:07 +00:00
|
|
|
Response(JS::Realm&, JS::NonnullGCPtr<Infrastructure::Response>);
|
2022-09-25 19:36:30 +01:00
|
|
|
|
2023-01-28 12:33:35 -05:00
|
|
|
virtual JS::ThrowCompletionOr<void> initialize(JS::Realm&) override;
|
2022-09-25 19:36:30 +01:00
|
|
|
virtual void visit_edges(Cell::Visitor&) override;
|
|
|
|
|
|
|
|
WebIDL::ExceptionOr<void> initialize_response(ResponseInit const&, Optional<Infrastructure::BodyWithType> const&);
|
|
|
|
|
|
|
|
// https://fetch.spec.whatwg.org/#concept-response-response
|
|
|
|
// A Response object has an associated response (a response).
|
2022-10-30 01:52:07 +00:00
|
|
|
JS::NonnullGCPtr<Infrastructure::Response> m_response;
|
2022-09-25 19:36:30 +01:00
|
|
|
|
|
|
|
// https://fetch.spec.whatwg.org/#response-headers
|
|
|
|
// A Response object also has an associated headers (null or a Headers object), initially null.
|
|
|
|
JS::GCPtr<Headers> m_headers;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|