summaryrefslogtreecommitdiff
path: root/Userland/Services/RequestServer/HttpsRequest.cpp
diff options
context:
space:
mode:
authorDexesTTP <dexes.ttp@gmail.com>2021-04-23 22:45:52 +0200
committerLinus Groh <mail@linusgroh.de>2021-04-25 19:04:34 +0200
commit71d27abb97acc656256f3fef6d2a67878d520f12 (patch)
tree64fb2a7ee9df5398e3c09195ea2f388230feca91 /Userland/Services/RequestServer/HttpsRequest.cpp
parent22413ef729ffe995c5ef3a9f8fb69567ed913980 (diff)
downloadserenity-71d27abb97acc656256f3fef6d2a67878d520f12.zip
Services: Rename ProtocolServer to RequestServer
The current ProtocolServer was really only used for requests, and with the recent introduction of the WebSocket service, long-lasting connections with another server are not part of it. To better reflect this, this commit renames it to RequestServer. This commit also changes the existing 'protocol' portal to 'request', the existing 'protocol' user and group to 'request', and most mentions of the 'download' aspect of the request to 'request' when relevant, to make everything consistent across the system. Note that LibProtocol still exists as-is, but the more generic Client class and the more specific Download class have both been renamed to a more accurate RequestClient and Request to match the new names. This commit only change names, not behaviors.
Diffstat (limited to 'Userland/Services/RequestServer/HttpsRequest.cpp')
-rw-r--r--Userland/Services/RequestServer/HttpsRequest.cpp38
1 files changed, 38 insertions, 0 deletions
diff --git a/Userland/Services/RequestServer/HttpsRequest.cpp b/Userland/Services/RequestServer/HttpsRequest.cpp
new file mode 100644
index 0000000000..a115397049
--- /dev/null
+++ b/Userland/Services/RequestServer/HttpsRequest.cpp
@@ -0,0 +1,38 @@
+/*
+ * Copyright (c) 2020, The SerenityOS developers.
+ *
+ * SPDX-License-Identifier: BSD-2-Clause
+ */
+
+#include <LibHTTP/HttpsJob.h>
+#include <RequestServer/HttpCommon.h>
+#include <RequestServer/HttpsProtocol.h>
+#include <RequestServer/HttpsRequest.h>
+
+namespace RequestServer {
+
+HttpsRequest::HttpsRequest(ClientConnection& client, NonnullRefPtr<HTTP::HttpsJob> job, NonnullOwnPtr<OutputFileStream>&& output_stream)
+ : Request(client, move(output_stream))
+ , m_job(job)
+{
+ Detail::init(this, job);
+}
+
+void HttpsRequest::set_certificate(String certificate, String key)
+{
+ m_job->set_certificate(move(certificate), move(key));
+}
+
+HttpsRequest::~HttpsRequest()
+{
+ m_job->on_finish = nullptr;
+ m_job->on_progress = nullptr;
+ m_job->shutdown();
+}
+
+NonnullOwnPtr<HttpsRequest> HttpsRequest::create_with_job(Badge<HttpsProtocol>&&, ClientConnection& client, NonnullRefPtr<HTTP::HttpsJob> job, NonnullOwnPtr<OutputFileStream>&& output_stream)
+{
+ return adopt_own(*new HttpsRequest(client, move(job), move(output_stream)));
+}
+
+}