2016-10-25 10:41:01 +00:00
|
|
|
// Copyright (c) 2016 GitHub, Inc.
|
2016-09-15 13:59:40 +00:00
|
|
|
// 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_net.h"
|
|
|
|
#include "atom/browser/api/atom_api_url_request.h"
|
|
|
|
#include "atom/common/node_includes.h"
|
2016-09-29 09:31:08 +00:00
|
|
|
#include "native_mate/dictionary.h"
|
2016-09-15 13:59:40 +00:00
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
namespace api {
|
|
|
|
|
|
|
|
Net::Net(v8::Isolate* isolate) {
|
|
|
|
Init(isolate);
|
|
|
|
}
|
|
|
|
|
2016-10-14 09:50:47 +00:00
|
|
|
Net::~Net() {}
|
2016-09-15 13:59:40 +00:00
|
|
|
|
|
|
|
// static
|
|
|
|
v8::Local<v8::Value> Net::Create(v8::Isolate* isolate) {
|
|
|
|
return mate::CreateHandle(isolate, new Net(isolate)).ToV8();
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
void Net::BuildPrototype(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::FunctionTemplate> prototype) {
|
|
|
|
prototype->SetClassName(mate::StringToV8(isolate, "Net"));
|
|
|
|
mate::ObjectTemplateBuilder(isolate, prototype->PrototypeTemplate())
|
2016-10-25 10:41:01 +00:00
|
|
|
.SetProperty("URLRequest", &Net::URLRequest);
|
2016-09-15 13:59:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
v8::Local<v8::Value> Net::URLRequest(v8::Isolate* isolate) {
|
2019-01-09 19:17:05 +00:00
|
|
|
return URLRequest::GetConstructor(isolate)
|
|
|
|
->GetFunction(isolate->GetCurrentContext())
|
|
|
|
.ToLocalChecked();
|
2016-09-15 13:59:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace api
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
using atom::api::Net;
|
|
|
|
using atom::api::URLRequest;
|
|
|
|
|
2016-10-14 09:50:47 +00:00
|
|
|
void Initialize(v8::Local<v8::Object> exports,
|
|
|
|
v8::Local<v8::Value> unused,
|
|
|
|
v8::Local<v8::Context> context,
|
|
|
|
void* priv) {
|
2016-09-15 13:59:40 +00:00
|
|
|
v8::Isolate* isolate = context->GetIsolate();
|
|
|
|
|
2019-04-24 18:29:59 +00:00
|
|
|
URLRequest::SetConstructor(isolate, base::BindRepeating(URLRequest::New));
|
2016-09-15 13:59:40 +00:00
|
|
|
|
|
|
|
mate::Dictionary dict(isolate, exports);
|
|
|
|
dict.Set("net", Net::Create(isolate));
|
2019-01-09 19:17:05 +00:00
|
|
|
dict.Set("Net",
|
|
|
|
Net::GetConstructor(isolate)->GetFunction(context).ToLocalChecked());
|
2016-09-15 13:59:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2019-03-08 18:29:52 +00:00
|
|
|
NODE_LINKED_MODULE_CONTEXT_AWARE(atom_browser_net, Initialize)
|