mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-06 07:02:26 +02:00
Instead of using a HashMap<ByteString, ByteString, CaseInsensitive...> everywhere, we now encapsulate this in a class. Even better, the new class also allows keeping track of multiple headers with the same name! This will make it possible for HTTP responses to actually retain all their headers on the perilous journey from RequestServer to LibWeb. (cherry picked from commit e636851481eabdf00953573a5eb459ee52feeacc) Updated various SerenityOS components to make it build. Fetch: Make sure we iterate over HeaderMap's headers() This fixes a build failure when built with CMake option '-DENABLE_ALL_THE_DEBUG_MACROS=ON'. (cherry picked from commit c51d01bea712d75f9b2cd700be942935044e49b4)
41 lines
1.1 KiB
C++
41 lines
1.1 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
* Copyright (c) 2022, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/ByteString.h>
|
|
#include <AK/HashMap.h>
|
|
#include <LibCore/NetworkResponse.h>
|
|
#include <LibHTTP/HeaderMap.h>
|
|
|
|
namespace HTTP {
|
|
|
|
class HttpResponse : public Core::NetworkResponse {
|
|
public:
|
|
virtual ~HttpResponse() override = default;
|
|
static NonnullRefPtr<HttpResponse> create(int code, HeaderMap&& headers, size_t downloaded_size)
|
|
{
|
|
return adopt_ref(*new HttpResponse(code, move(headers), downloaded_size));
|
|
}
|
|
|
|
int code() const { return m_code; }
|
|
size_t downloaded_size() const { return m_downloaded_size; }
|
|
StringView reason_phrase() const { return reason_phrase_for_code(m_code); }
|
|
HeaderMap const& headers() const { return m_headers; }
|
|
|
|
static StringView reason_phrase_for_code(int code);
|
|
|
|
private:
|
|
HttpResponse(int code, HeaderMap&&, size_t size);
|
|
|
|
int m_code { 0 };
|
|
HeaderMap m_headers;
|
|
size_t m_downloaded_size { 0 };
|
|
};
|
|
|
|
}
|