2016-09-15 13:59:40 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "atom/browser/api/atom_api_url_request.h"
|
2016-09-19 09:21:09 +00:00
|
|
|
#include "atom/browser/api/atom_api_session.h"
|
|
|
|
|
|
|
|
#include "native_mate/dictionary.h"
|
|
|
|
#include "atom/browser/net/atom_url_request.h"
|
2016-09-21 07:23:00 +00:00
|
|
|
#include "atom/common/node_includes.h"
|
2016-09-21 15:35:03 +00:00
|
|
|
#include "atom/common/native_mate_converters/net_converter.h"
|
|
|
|
#include "atom/common/native_mate_converters/string16_converter.h"
|
|
|
|
#include "atom/common/native_mate_converters/callback.h"
|
2016-09-19 09:21:09 +00:00
|
|
|
|
2016-09-21 07:23:00 +00:00
|
|
|
namespace {
|
2016-09-15 13:59:40 +00:00
|
|
|
|
2016-09-21 07:23:00 +00:00
|
|
|
const char* const kResponse = "response";
|
|
|
|
const char* const kData = "data";
|
|
|
|
const char* const kEnd = "end";
|
|
|
|
|
|
|
|
}
|
|
|
|
namespace mate {
|
|
|
|
|
|
|
|
template<>
|
2016-09-21 15:35:03 +00:00
|
|
|
struct Converter<scoped_refptr<const net::HttpResponseHeaders>> {
|
2016-09-21 07:23:00 +00:00
|
|
|
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
|
2016-09-21 15:35:03 +00:00
|
|
|
scoped_refptr<const net::HttpResponseHeaders> val) {
|
2016-09-21 07:23:00 +00:00
|
|
|
|
|
|
|
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate);
|
|
|
|
if (val) {
|
|
|
|
size_t iter = 0;
|
|
|
|
std::string name;
|
|
|
|
std::string value;
|
|
|
|
while (val->EnumerateHeaderLines(&iter, &name, &value)) {
|
|
|
|
dict.Set(name, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return dict.GetHandle();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<>
|
2016-09-21 15:35:03 +00:00
|
|
|
struct Converter<scoped_refptr<const net::IOBufferWithSize>> {
|
2016-09-21 07:23:00 +00:00
|
|
|
static v8::Local<v8::Value> ToV8(
|
|
|
|
v8::Isolate* isolate,
|
2016-09-21 15:35:03 +00:00
|
|
|
scoped_refptr<const net::IOBufferWithSize> buffer) {
|
2016-09-21 07:23:00 +00:00
|
|
|
return node::Buffer::Copy(isolate, buffer->data(), buffer->size()).ToLocalChecked();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
2016-09-15 13:59:40 +00:00
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
namespace api {
|
2016-09-21 07:23:00 +00:00
|
|
|
|
2016-09-19 09:21:09 +00:00
|
|
|
URLRequest::URLRequest(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Object> wrapper)
|
|
|
|
: weak_ptr_factory_(this) {
|
|
|
|
InitWith(isolate, wrapper);
|
2016-09-15 13:59:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
URLRequest::~URLRequest() {
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
mate::WrappableBase* URLRequest::New(mate::Arguments* args) {
|
|
|
|
|
2016-09-19 09:21:09 +00:00
|
|
|
v8::Local<v8::Object> options;
|
|
|
|
args->GetNext(&options);
|
|
|
|
mate::Dictionary dict(args->isolate(), options);
|
|
|
|
std::string url;
|
|
|
|
dict.Get("url", &url);
|
|
|
|
std::string method;
|
|
|
|
dict.Get("method", &method);
|
|
|
|
std::string session_name;
|
|
|
|
dict.Get("session", &session_name);
|
|
|
|
|
|
|
|
auto session = Session::FromPartition(args->isolate(), session_name);
|
|
|
|
|
|
|
|
auto browser_context = session->browser_context();
|
|
|
|
|
2016-09-19 13:06:13 +00:00
|
|
|
|
2016-09-19 09:21:09 +00:00
|
|
|
auto api_url_request = new URLRequest(args->isolate(), args->GetThis());
|
|
|
|
auto weak_ptr = api_url_request->weak_ptr_factory_.GetWeakPtr();
|
2016-09-21 15:35:03 +00:00
|
|
|
auto atom_url_request = AtomURLRequest::Create(
|
|
|
|
browser_context,
|
|
|
|
method,
|
|
|
|
url,
|
|
|
|
weak_ptr);
|
2016-09-19 09:21:09 +00:00
|
|
|
|
2016-09-21 15:35:03 +00:00
|
|
|
api_url_request->atom_request_ = atom_url_request;
|
2016-09-19 09:21:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
return api_url_request;
|
2016-09-15 13:59:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// static
|
|
|
|
void URLRequest::BuildPrototype(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::FunctionTemplate> prototype) {
|
2016-09-19 09:21:09 +00:00
|
|
|
prototype->SetClassName(mate::StringToV8(isolate, "URLRequest"));
|
2016-09-15 13:59:40 +00:00
|
|
|
mate::ObjectTemplateBuilder(isolate, prototype->PrototypeTemplate())
|
2016-09-19 13:06:13 +00:00
|
|
|
// Request API
|
|
|
|
.MakeDestroyable()
|
2016-09-21 15:35:03 +00:00
|
|
|
.SetMethod("_write", &URLRequest::Write)
|
|
|
|
.SetMethod("_end", &URLRequest::End)
|
2016-09-19 13:06:13 +00:00
|
|
|
.SetMethod("abort", &URLRequest::Abort)
|
2016-09-21 15:35:03 +00:00
|
|
|
.SetMethod("_setHeader", &URLRequest::SetHeader)
|
|
|
|
.SetMethod("_getHeader", &URLRequest::GetHeader)
|
|
|
|
.SetMethod("_removaHeader", &URLRequest::RemoveHeader)
|
2016-09-19 13:06:13 +00:00
|
|
|
// Response APi
|
|
|
|
.SetProperty("statusCode", &URLRequest::StatusCode)
|
|
|
|
.SetProperty("statusMessage", &URLRequest::StatusMessage)
|
2016-09-21 07:23:00 +00:00
|
|
|
.SetProperty("rawResponseHeaders", &URLRequest::RawResponseHeaders)
|
|
|
|
.SetProperty("httpVersionMajor", &URLRequest::ResponseHttpVersionMajor)
|
|
|
|
.SetProperty("httpVersionMinor", &URLRequest::ResponseHttpVersionMinor);
|
|
|
|
|
|
|
|
|
2016-09-19 13:06:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void URLRequest::Write() {
|
2016-09-21 15:35:03 +00:00
|
|
|
atom_request_->Write();
|
2016-09-15 13:59:40 +00:00
|
|
|
}
|
|
|
|
|
2016-09-19 13:06:13 +00:00
|
|
|
void URLRequest::End() {
|
2016-09-19 09:21:09 +00:00
|
|
|
pin();
|
2016-09-21 15:35:03 +00:00
|
|
|
atom_request_->End();
|
2016-09-19 09:21:09 +00:00
|
|
|
}
|
|
|
|
|
2016-09-19 13:06:13 +00:00
|
|
|
void URLRequest::Abort() {
|
2016-09-21 15:35:03 +00:00
|
|
|
atom_request_->Abort();
|
2016-09-19 13:06:13 +00:00
|
|
|
}
|
2016-09-19 09:21:09 +00:00
|
|
|
|
2016-09-21 15:35:03 +00:00
|
|
|
void URLRequest::SetHeader(const std::string& name, const std::string& value) {
|
|
|
|
atom_request_->SetHeader(name, value);
|
2016-09-19 13:06:13 +00:00
|
|
|
}
|
2016-09-21 15:35:03 +00:00
|
|
|
std::string URLRequest::GetHeader(const std::string& name) {
|
|
|
|
return atom_request_->GetHeader(name);
|
2016-09-19 09:21:09 +00:00
|
|
|
}
|
2016-09-21 15:35:03 +00:00
|
|
|
void URLRequest::RemoveHeader(const std::string& name) {
|
|
|
|
atom_request_->RemoveHeader(name);
|
2016-09-19 13:06:13 +00:00
|
|
|
}
|
|
|
|
|
2016-09-21 15:35:03 +00:00
|
|
|
void URLRequest::OnAuthenticationRequired(
|
|
|
|
scoped_refptr<const net::AuthChallengeInfo> auth_info) {
|
|
|
|
EmitRequestEvent(
|
|
|
|
"login",
|
|
|
|
auth_info.get(),
|
|
|
|
base::Bind(&AtomURLRequest::PassLoginInformation, atom_request_));
|
|
|
|
}
|
|
|
|
|
2016-09-19 13:06:13 +00:00
|
|
|
|
2016-09-19 09:21:09 +00:00
|
|
|
void URLRequest::OnResponseStarted() {
|
2016-09-21 07:23:00 +00:00
|
|
|
EmitRequestEvent("response");
|
2016-09-19 13:06:13 +00:00
|
|
|
}
|
|
|
|
|
2016-09-21 15:35:03 +00:00
|
|
|
void URLRequest::OnResponseData(
|
|
|
|
scoped_refptr<const net::IOBufferWithSize> buffer) {
|
2016-09-21 07:23:00 +00:00
|
|
|
if (!buffer || !buffer->data() || !buffer->size()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
EmitResponseEvent("data", buffer);
|
2016-09-19 13:06:13 +00:00
|
|
|
}
|
|
|
|
|
2016-09-21 07:23:00 +00:00
|
|
|
void URLRequest::OnResponseCompleted() {
|
|
|
|
EmitResponseEvent("end");
|
2016-09-19 13:06:13 +00:00
|
|
|
}
|
|
|
|
|
2016-09-21 07:23:00 +00:00
|
|
|
|
2016-09-21 15:35:03 +00:00
|
|
|
int URLRequest::StatusCode() const {
|
|
|
|
if (auto response_headers = atom_request_->GetResponseHeaders()) {
|
2016-09-21 07:23:00 +00:00
|
|
|
return response_headers->response_code();
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-09-21 15:35:03 +00:00
|
|
|
std::string URLRequest::StatusMessage() const {
|
2016-09-21 07:23:00 +00:00
|
|
|
std::string result;
|
2016-09-21 15:35:03 +00:00
|
|
|
if (auto response_headers = atom_request_->GetResponseHeaders()) {
|
2016-09-21 07:23:00 +00:00
|
|
|
result = response_headers->GetStatusText();
|
|
|
|
}
|
|
|
|
return result;
|
2016-09-19 13:06:13 +00:00
|
|
|
}
|
|
|
|
|
2016-09-21 15:35:03 +00:00
|
|
|
scoped_refptr<const net::HttpResponseHeaders> URLRequest::RawResponseHeaders() const {
|
|
|
|
return atom_request_->GetResponseHeaders();
|
2016-09-19 13:06:13 +00:00
|
|
|
}
|
|
|
|
|
2016-09-21 15:35:03 +00:00
|
|
|
uint32_t URLRequest::ResponseHttpVersionMajor() const {
|
|
|
|
if (auto response_headers = atom_request_->GetResponseHeaders()) {
|
2016-09-21 07:23:00 +00:00
|
|
|
return response_headers->GetHttpVersion().major_value();
|
|
|
|
}
|
|
|
|
return 0;
|
2016-09-19 13:06:13 +00:00
|
|
|
}
|
|
|
|
|
2016-09-21 15:35:03 +00:00
|
|
|
uint32_t URLRequest::ResponseHttpVersionMinor() const {
|
|
|
|
if (auto response_headers = atom_request_->GetResponseHeaders()) {
|
2016-09-21 07:23:00 +00:00
|
|
|
return response_headers->GetHttpVersion().minor_value();
|
|
|
|
}
|
|
|
|
return 0;
|
2016-09-19 09:21:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void URLRequest::pin() {
|
|
|
|
if (wrapper_.IsEmpty()) {
|
|
|
|
wrapper_.Reset(isolate(), GetWrapper());
|
|
|
|
}
|
|
|
|
}
|
2016-09-15 13:59:40 +00:00
|
|
|
|
2016-09-19 09:21:09 +00:00
|
|
|
void URLRequest::unpin() {
|
|
|
|
wrapper_.Reset();
|
2016-09-15 13:59:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace mate
|
|
|
|
|
|
|
|
} // namepsace mate
|