2017-11-03 20:03:14 +00:00
|
|
|
// Copyright (c) 2017 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2018-09-13 00:25:56 +00:00
|
|
|
#include "atom/browser/net/url_request_stream_job.h"
|
|
|
|
|
2017-11-03 20:03:14 +00:00
|
|
|
#include <algorithm>
|
2018-09-13 00:25:56 +00:00
|
|
|
#include <memory>
|
2017-11-03 20:03:14 +00:00
|
|
|
#include <ostream>
|
|
|
|
#include <string>
|
2018-09-13 00:25:56 +00:00
|
|
|
#include <utility>
|
2017-11-03 20:03:14 +00:00
|
|
|
|
|
|
|
#include "atom/common/api/event_emitter_caller.h"
|
|
|
|
#include "atom/common/atom_constants.h"
|
|
|
|
#include "atom/common/native_mate_converters/net_converter.h"
|
|
|
|
#include "atom/common/node_includes.h"
|
|
|
|
#include "base/strings/string_number_conversions.h"
|
|
|
|
#include "base/strings/string_util.h"
|
|
|
|
#include "base/time/time.h"
|
2018-10-04 14:13:09 +00:00
|
|
|
#include "net/base/net_errors.h"
|
2017-11-03 20:03:14 +00:00
|
|
|
#include "net/filter/gzip_source_stream.h"
|
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
URLRequestStreamJob::URLRequestStreamJob(net::URLRequest* request,
|
|
|
|
net::NetworkDelegate* network_delegate)
|
|
|
|
: JsAsker<net::URLRequestJob>(request, network_delegate),
|
2018-10-04 14:13:09 +00:00
|
|
|
pending_buf_(nullptr),
|
|
|
|
pending_buf_size_(0),
|
|
|
|
ended_(false),
|
|
|
|
has_error_(false),
|
|
|
|
response_headers_(nullptr),
|
2017-11-03 20:03:14 +00:00
|
|
|
weak_factory_(this) {}
|
|
|
|
|
2018-10-04 14:13:09 +00:00
|
|
|
URLRequestStreamJob::~URLRequestStreamJob() {
|
|
|
|
if (subscriber_) {
|
|
|
|
content::BrowserThread::DeleteSoon(content::BrowserThread::UI, FROM_HERE,
|
|
|
|
std::move(subscriber_));
|
|
|
|
}
|
|
|
|
}
|
2018-04-17 23:37:22 +00:00
|
|
|
|
2017-11-03 20:03:14 +00:00
|
|
|
void URLRequestStreamJob::BeforeStartInUI(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Value> value) {
|
|
|
|
if (value->IsNull() || value->IsUndefined() || !value->IsObject()) {
|
|
|
|
// Invalid opts.
|
|
|
|
ended_ = true;
|
2018-10-04 14:13:09 +00:00
|
|
|
has_error_ = true;
|
2017-11-03 20:03:14 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mate::Dictionary opts(isolate, v8::Local<v8::Object>::Cast(value));
|
|
|
|
int status_code;
|
|
|
|
if (!opts.Get("statusCode", &status_code)) {
|
|
|
|
// assume HTTP OK if statusCode is not passed.
|
|
|
|
status_code = 200;
|
|
|
|
}
|
|
|
|
std::string status("HTTP/1.1 ");
|
|
|
|
status.append(base::IntToString(status_code));
|
|
|
|
status.append(" ");
|
|
|
|
status.append(
|
|
|
|
net::GetHttpReasonPhrase(static_cast<net::HttpStatusCode>(status_code)));
|
|
|
|
status.append("\0\0", 2);
|
|
|
|
response_headers_ = new net::HttpResponseHeaders(status);
|
|
|
|
|
|
|
|
if (opts.Get("headers", &value)) {
|
|
|
|
mate::Converter<net::HttpResponseHeaders*>::FromV8(isolate, value,
|
|
|
|
response_headers_.get());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!opts.Get("data", &value)) {
|
|
|
|
// Assume the opts is already a stream
|
|
|
|
value = opts.GetHandle();
|
|
|
|
} else if (value->IsNullOrUndefined()) {
|
|
|
|
// "data" was explicitly passed as null or undefined, assume the user wants
|
|
|
|
// to send an empty body.
|
|
|
|
ended_ = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mate::Dictionary data(isolate, v8::Local<v8::Object>::Cast(value));
|
|
|
|
if (!data.Get("on", &value) || !value->IsFunction() ||
|
|
|
|
!data.Get("removeListener", &value) || !value->IsFunction()) {
|
|
|
|
// If data is passed but it is not a stream, signal an error.
|
|
|
|
ended_ = true;
|
2018-10-04 14:13:09 +00:00
|
|
|
has_error_ = true;
|
2017-11-03 20:03:14 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-10-04 14:13:09 +00:00
|
|
|
subscriber_.reset(new mate::StreamSubscriber(isolate, data.GetHandle(),
|
2018-10-05 15:38:27 +00:00
|
|
|
weak_factory_.GetWeakPtr()));
|
2017-11-03 20:03:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void URLRequestStreamJob::StartAsync(std::unique_ptr<base::Value> options) {
|
2018-10-04 14:13:09 +00:00
|
|
|
if (has_error_) {
|
|
|
|
OnError();
|
|
|
|
return;
|
|
|
|
}
|
2017-11-03 20:03:14 +00:00
|
|
|
NotifyHeadersComplete();
|
|
|
|
}
|
|
|
|
|
2018-10-04 14:13:09 +00:00
|
|
|
void URLRequestStreamJob::OnData(std::vector<char>&& buffer) { // NOLINT
|
|
|
|
if (write_buffer_.empty()) {
|
|
|
|
// Quick branch without copying.
|
|
|
|
write_buffer_ = std::move(buffer);
|
2017-11-03 20:03:14 +00:00
|
|
|
} else {
|
2018-10-04 14:13:09 +00:00
|
|
|
// write_buffer_ += buffer
|
|
|
|
size_t len = write_buffer_.size();
|
|
|
|
write_buffer_.resize(len + buffer.size());
|
|
|
|
std::copy(buffer.begin(), buffer.end(), write_buffer_.begin() + len);
|
2017-11-03 20:03:14 +00:00
|
|
|
}
|
2018-10-04 14:13:09 +00:00
|
|
|
|
|
|
|
// Copy to output.
|
|
|
|
if (pending_buf_) {
|
|
|
|
int len = BufferCopy(&write_buffer_, pending_buf_.get(), pending_buf_size_);
|
|
|
|
write_buffer_.erase(write_buffer_.begin(), write_buffer_.begin() + len);
|
|
|
|
ReadRawDataComplete(len);
|
2017-11-03 20:03:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-04 14:13:09 +00:00
|
|
|
void URLRequestStreamJob::OnEnd() {
|
2017-11-03 20:03:14 +00:00
|
|
|
ended_ = true;
|
2018-10-04 14:13:09 +00:00
|
|
|
ReadRawDataComplete(0);
|
2017-11-03 20:03:14 +00:00
|
|
|
}
|
|
|
|
|
2018-10-04 14:13:09 +00:00
|
|
|
void URLRequestStreamJob::OnError() {
|
2018-10-05 15:38:27 +00:00
|
|
|
NotifyStartError(
|
|
|
|
net::URLRequestStatus(net::URLRequestStatus::FAILED, net::ERR_FAILED));
|
2017-11-03 20:03:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int URLRequestStreamJob::ReadRawData(net::IOBuffer* dest, int dest_size) {
|
2018-10-04 14:13:09 +00:00
|
|
|
if (ended_)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// When write_buffer_ is empty, there is no data valable yet, we have to save
|
|
|
|
// the dest buffer util DataAvailable.
|
|
|
|
if (write_buffer_.empty()) {
|
|
|
|
pending_buf_ = dest;
|
|
|
|
pending_buf_size_ = dest_size;
|
|
|
|
return net::ERR_IO_PENDING;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read from the write buffer and clear them after reading.
|
|
|
|
int len = BufferCopy(&write_buffer_, dest, dest_size);
|
|
|
|
write_buffer_.erase(write_buffer_.begin(), write_buffer_.begin() + len);
|
|
|
|
return len;
|
2017-11-03 20:03:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void URLRequestStreamJob::DoneReading() {
|
2018-10-04 14:13:09 +00:00
|
|
|
content::BrowserThread::DeleteSoon(content::BrowserThread::UI, FROM_HERE,
|
|
|
|
std::move(subscriber_));
|
|
|
|
write_buffer_.clear();
|
2017-11-03 20:03:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void URLRequestStreamJob::DoneReadingRedirectResponse() {
|
|
|
|
DoneReading();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<net::SourceStream> URLRequestStreamJob::SetUpSourceStream() {
|
|
|
|
std::unique_ptr<net::SourceStream> source =
|
|
|
|
net::URLRequestJob::SetUpSourceStream();
|
|
|
|
size_t i = 0;
|
|
|
|
std::string type;
|
|
|
|
while (response_headers_->EnumerateHeader(&i, "Content-Encoding", &type)) {
|
|
|
|
if (base::LowerCaseEqualsASCII(type, "gzip") ||
|
|
|
|
base::LowerCaseEqualsASCII(type, "x-gzip")) {
|
|
|
|
return net::GzipSourceStream::Create(std::move(source),
|
|
|
|
net::SourceStream::TYPE_GZIP);
|
|
|
|
} else if (base::LowerCaseEqualsASCII(type, "deflate")) {
|
|
|
|
return net::GzipSourceStream::Create(std::move(source),
|
|
|
|
net::SourceStream::TYPE_DEFLATE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return source;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool URLRequestStreamJob::GetMimeType(std::string* mime_type) const {
|
|
|
|
return response_headers_->GetMimeType(mime_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
int URLRequestStreamJob::GetResponseCode() const {
|
|
|
|
return response_headers_->response_code();
|
|
|
|
}
|
|
|
|
|
|
|
|
void URLRequestStreamJob::GetResponseInfo(net::HttpResponseInfo* info) {
|
|
|
|
info->headers = response_headers_;
|
|
|
|
}
|
|
|
|
|
2018-10-04 14:13:09 +00:00
|
|
|
int URLRequestStreamJob::BufferCopy(std::vector<char>* source,
|
2018-10-05 15:38:27 +00:00
|
|
|
net::IOBuffer* target,
|
|
|
|
int target_size) {
|
2018-10-04 14:13:09 +00:00
|
|
|
int bytes_written = std::min(static_cast<int>(source->size()), target_size);
|
|
|
|
memcpy(target->data(), source->data(), bytes_written);
|
|
|
|
return bytes_written;
|
|
|
|
}
|
|
|
|
|
2017-11-03 20:03:14 +00:00
|
|
|
} // namespace atom
|