summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibHTTP/HttpResponse.h
blob: d46e30c32a75fa567bb0bb5deac1775d3be03d59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
 * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/HashMap.h>
#include <AK/String.h>
#include <LibCore/NetworkResponse.h>

namespace HTTP {

class HttpResponse : public Core::NetworkResponse {
public:
    virtual ~HttpResponse() override;
    static NonnullRefPtr<HttpResponse> create(int code, HashMap<String, String, CaseInsensitiveStringTraits>&& headers)
    {
        return adopt(*new HttpResponse(code, move(headers)));
    }

    int code() const { return m_code; }
    const HashMap<String, String, CaseInsensitiveStringTraits>& headers() const { return m_headers; }

private:
    HttpResponse(int code, HashMap<String, String, CaseInsensitiveStringTraits>&&);

    int m_code { 0 };
    HashMap<String, String, CaseInsensitiveStringTraits> m_headers;
};

}