2019-04-07 12:36:10 +00:00
|
|
|
#include <LibGUI/GHttpNetworkJob.h>
|
|
|
|
#include <LibGUI/GHttpResponse.h>
|
|
|
|
#include <LibGUI/GTCPSocket.h>
|
|
|
|
#include <stdio.h>
|
2019-04-07 17:35:07 +00:00
|
|
|
#include <unistd.h>
|
2019-04-07 12:36:10 +00:00
|
|
|
|
|
|
|
GHttpNetworkJob::GHttpNetworkJob(const GHttpRequest& request)
|
|
|
|
: m_request(request)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
GHttpNetworkJob::~GHttpNetworkJob()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void GHttpNetworkJob::start()
|
|
|
|
{
|
|
|
|
ASSERT(!m_socket);
|
|
|
|
m_socket = new GTCPSocket(this);
|
|
|
|
int success = m_socket->connect(m_request.hostname(), m_request.port());
|
|
|
|
if (!success)
|
|
|
|
return did_fail(GNetworkJob::Error::ConnectionFailed);
|
|
|
|
|
|
|
|
auto raw_request = m_request.to_raw_request();
|
|
|
|
|
|
|
|
printf("raw_request:\n%s\n", raw_request.pointer());
|
|
|
|
|
|
|
|
success = m_socket->send(raw_request);
|
|
|
|
if (!success)
|
2019-04-07 17:35:07 +00:00
|
|
|
return deferred_invoke([this](auto&){ did_fail(GNetworkJob::Error::TransmissionFailed); });
|
2019-04-07 12:36:10 +00:00
|
|
|
|
|
|
|
Vector<byte> buffer;
|
|
|
|
while (m_socket->is_connected()) {
|
2019-04-07 17:35:07 +00:00
|
|
|
if (m_state == State::InStatus) {
|
|
|
|
while (!m_socket->can_read_line())
|
|
|
|
usleep(1);
|
|
|
|
ASSERT(m_socket->can_read_line());
|
|
|
|
auto line = m_socket->read_line(1024);
|
|
|
|
if (line.is_null()) {
|
|
|
|
printf("Expected HTTP status\n");
|
|
|
|
return deferred_invoke([this](auto&){ did_fail(GNetworkJob::Error::TransmissionFailed); });
|
|
|
|
}
|
|
|
|
auto parts = String::from_byte_buffer(line, Chomp).split(' ');
|
|
|
|
if (parts.size() < 3) {
|
|
|
|
printf("Expected 3-part HTTP status, got '%s'\n", line.pointer());
|
|
|
|
return deferred_invoke([this](auto&){ did_fail(GNetworkJob::Error::ProtocolFailed); });
|
|
|
|
}
|
|
|
|
bool ok;
|
|
|
|
m_code = parts[1].to_uint(ok);
|
|
|
|
if (!ok) {
|
|
|
|
printf("Expected numeric HTTP status\n");
|
|
|
|
return deferred_invoke([this](auto&){ did_fail(GNetworkJob::Error::ProtocolFailed); });
|
|
|
|
}
|
|
|
|
m_state = State::InHeaders;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (m_state == State::InHeaders) {
|
|
|
|
while (!m_socket->can_read_line())
|
|
|
|
usleep(1);
|
|
|
|
auto line = m_socket->read_line(1024);
|
|
|
|
if (line.is_null()) {
|
|
|
|
printf("Expected HTTP header\n");
|
|
|
|
return did_fail(GNetworkJob::Error::ProtocolFailed);
|
|
|
|
}
|
|
|
|
auto chomped_line = String::from_byte_buffer(line, Chomp);
|
|
|
|
if (chomped_line.is_empty()) {
|
|
|
|
m_state = State::InBody;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
auto parts = chomped_line.split(':');
|
|
|
|
if (parts.is_empty()) {
|
|
|
|
printf("Expected HTTP header with key/value\n");
|
|
|
|
return deferred_invoke([this](auto&){ did_fail(GNetworkJob::Error::ProtocolFailed); });
|
|
|
|
}
|
|
|
|
auto name = parts[0];
|
|
|
|
if (chomped_line.length() < name.length() + 2) {
|
|
|
|
printf("Malformed HTTP header\n");
|
|
|
|
return deferred_invoke([this](auto&){ did_fail(GNetworkJob::Error::ProtocolFailed); });
|
|
|
|
}
|
|
|
|
auto value = chomped_line.substring(name.length() + 2, line.size() - name.length() - 2);
|
|
|
|
m_headers.set(name, value);
|
|
|
|
printf("[%s] = '%s'\n", name.characters(), value.characters());
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
ASSERT(m_state == State::InBody);
|
2019-04-07 12:36:10 +00:00
|
|
|
auto payload = m_socket->receive(100000);
|
|
|
|
if (!payload) {
|
2019-04-07 17:35:07 +00:00
|
|
|
if (m_socket->eof()) {
|
|
|
|
m_state = State::Finished;
|
2019-04-07 12:36:10 +00:00
|
|
|
break;
|
2019-04-07 17:35:07 +00:00
|
|
|
}
|
|
|
|
return deferred_invoke([this](auto&){ did_fail(GNetworkJob::Error::ProtocolFailed); });
|
2019-04-07 12:36:10 +00:00
|
|
|
}
|
|
|
|
buffer.append(payload.pointer(), payload.size());
|
|
|
|
}
|
|
|
|
|
2019-04-07 17:35:07 +00:00
|
|
|
auto response = GHttpResponse::create(m_code, move(m_headers), ByteBuffer::copy(buffer.data(), buffer.size()));
|
2019-04-07 12:36:10 +00:00
|
|
|
deferred_invoke([this, response] (GObject&) {
|
|
|
|
printf("in the deferred invoke lambda\n");
|
|
|
|
did_finish(move(response));
|
|
|
|
});
|
|
|
|
}
|