2015-08-12 07:18:31 +00:00
|
|
|
// Copyright (c) 2014 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "atom/browser/net/url_request_async_asar_job.h"
|
|
|
|
|
2018-09-13 00:25:56 +00:00
|
|
|
#include <memory>
|
2015-12-01 02:12:00 +00:00
|
|
|
#include <string>
|
2018-10-05 20:29:57 +00:00
|
|
|
#include <utility>
|
2015-12-01 02:12:00 +00:00
|
|
|
|
2015-12-01 08:21:15 +00:00
|
|
|
#include "atom/common/atom_constants.h"
|
2018-10-05 20:29:57 +00:00
|
|
|
#include "atom/common/native_mate_converters/net_converter.h"
|
|
|
|
#include "atom/common/native_mate_converters/v8_value_converter.h"
|
2018-06-27 21:52:48 +00:00
|
|
|
#include "base/strings/utf_string_conversions.h"
|
2018-10-25 06:09:49 +00:00
|
|
|
#include "base/task/post_task.h"
|
2019-01-12 01:00:43 +00:00
|
|
|
#include "content/public/browser/browser_task_traits.h"
|
2018-10-05 20:29:57 +00:00
|
|
|
#include "content/public/browser/browser_thread.h"
|
2015-12-01 08:21:15 +00:00
|
|
|
|
2015-08-12 07:18:31 +00:00
|
|
|
namespace atom {
|
|
|
|
|
2018-10-05 20:29:57 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
void BeforeStartInUI(base::WeakPtr<URLRequestAsyncAsarJob> job,
|
|
|
|
mate::Arguments* args) {
|
|
|
|
v8::Local<v8::Value> value;
|
|
|
|
int error = net::OK;
|
|
|
|
std::unique_ptr<base::Value> request_options = nullptr;
|
|
|
|
|
|
|
|
if (args->GetNext(&value)) {
|
|
|
|
V8ValueConverter converter;
|
|
|
|
v8::Local<v8::Context> context = args->isolate()->GetCurrentContext();
|
2019-01-21 16:27:11 +00:00
|
|
|
request_options = converter.FromV8Value(value, context);
|
2018-10-05 20:29:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (request_options) {
|
|
|
|
JsAsker::IsErrorOptions(request_options.get(), &error);
|
|
|
|
} else {
|
|
|
|
error = net::ERR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
2019-01-12 01:00:43 +00:00
|
|
|
base::PostTaskWithTraits(
|
|
|
|
FROM_HERE, {content::BrowserThread::IO},
|
2018-10-05 20:29:57 +00:00
|
|
|
base::BindOnce(&URLRequestAsyncAsarJob::StartAsync, job,
|
|
|
|
std::move(request_options), error));
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2015-11-13 08:03:40 +00:00
|
|
|
URLRequestAsyncAsarJob::URLRequestAsyncAsarJob(
|
2015-08-12 07:18:31 +00:00
|
|
|
net::URLRequest* request,
|
2015-08-12 14:57:25 +00:00
|
|
|
net::NetworkDelegate* network_delegate)
|
2018-10-05 20:29:57 +00:00
|
|
|
: asar::URLRequestAsarJob(request, network_delegate), weak_factory_(this) {}
|
|
|
|
|
|
|
|
URLRequestAsyncAsarJob::~URLRequestAsyncAsarJob() = default;
|
|
|
|
|
|
|
|
void URLRequestAsyncAsarJob::Start() {
|
|
|
|
auto request_details = std::make_unique<base::DictionaryValue>();
|
|
|
|
FillRequestDetails(request_details.get(), request());
|
2019-01-12 01:00:43 +00:00
|
|
|
base::PostTaskWithTraits(
|
|
|
|
FROM_HERE, {content::BrowserThread::UI},
|
2018-10-05 20:29:57 +00:00
|
|
|
base::BindOnce(&JsAsker::AskForOptions, base::Unretained(isolate()),
|
|
|
|
handler(), std::move(request_details),
|
|
|
|
base::Bind(&BeforeStartInUI, weak_factory_.GetWeakPtr())));
|
|
|
|
}
|
|
|
|
|
|
|
|
void URLRequestAsyncAsarJob::StartAsync(std::unique_ptr<base::Value> options,
|
|
|
|
int error) {
|
|
|
|
if (error != net::OK) {
|
|
|
|
NotifyStartError(
|
|
|
|
net::URLRequestStatus(net::URLRequestStatus::FAILED, error));
|
|
|
|
return;
|
|
|
|
}
|
2015-08-12 07:18:31 +00:00
|
|
|
|
2018-06-27 21:52:48 +00:00
|
|
|
std::string file_path;
|
2018-12-19 06:17:02 +00:00
|
|
|
response_headers_ = new net::HttpResponseHeaders("HTTP/1.1 200 OK");
|
2018-04-10 14:05:36 +00:00
|
|
|
if (options->is_dict()) {
|
2018-12-19 06:17:02 +00:00
|
|
|
base::DictionaryValue* dict =
|
|
|
|
static_cast<base::DictionaryValue*>(options.get());
|
|
|
|
base::Value* pathValue =
|
|
|
|
dict->FindKeyOfType("path", base::Value::Type::STRING);
|
|
|
|
if (pathValue) {
|
|
|
|
file_path = pathValue->GetString();
|
|
|
|
}
|
|
|
|
base::Value* headersValue =
|
|
|
|
dict->FindKeyOfType("headers", base::Value::Type::DICTIONARY);
|
|
|
|
if (headersValue) {
|
|
|
|
for (const auto& iter : headersValue->DictItems()) {
|
|
|
|
response_headers_->AddHeader(iter.first + ": " +
|
|
|
|
iter.second.GetString());
|
|
|
|
}
|
|
|
|
}
|
2018-04-10 14:05:36 +00:00
|
|
|
} else if (options->is_string()) {
|
2018-06-27 21:52:48 +00:00
|
|
|
file_path = options->GetString();
|
2015-08-12 07:18:31 +00:00
|
|
|
}
|
2018-12-19 06:17:02 +00:00
|
|
|
response_headers_->AddHeader(kCORSHeader);
|
2015-08-12 07:18:31 +00:00
|
|
|
|
|
|
|
if (file_path.empty()) {
|
2018-04-18 01:55:30 +00:00
|
|
|
NotifyStartError(net::URLRequestStatus(net::URLRequestStatus::FAILED,
|
|
|
|
net::ERR_NOT_IMPLEMENTED));
|
2015-08-12 07:18:31 +00:00
|
|
|
} else {
|
|
|
|
asar::URLRequestAsarJob::Initialize(
|
2017-12-18 01:35:51 +00:00
|
|
|
base::CreateSequencedTaskRunnerWithTraits(
|
2017-12-24 14:01:39 +00:00
|
|
|
{base::MayBlock(), base::TaskPriority::USER_VISIBLE,
|
|
|
|
base::TaskShutdownBehavior::SKIP_ON_SHUTDOWN}),
|
2018-06-27 21:52:48 +00:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
base::FilePath(base::UTF8ToWide(file_path)));
|
|
|
|
#else
|
2015-08-12 07:18:31 +00:00
|
|
|
base::FilePath(file_path));
|
2018-06-27 21:52:48 +00:00
|
|
|
#endif
|
2015-08-12 07:18:31 +00:00
|
|
|
asar::URLRequestAsarJob::Start();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-05 20:29:57 +00:00
|
|
|
void URLRequestAsyncAsarJob::Kill() {
|
|
|
|
weak_factory_.InvalidateWeakPtrs();
|
|
|
|
URLRequestAsarJob::Kill();
|
|
|
|
}
|
|
|
|
|
2015-11-25 23:00:47 +00:00
|
|
|
void URLRequestAsyncAsarJob::GetResponseInfo(net::HttpResponseInfo* info) {
|
2018-12-19 06:17:02 +00:00
|
|
|
info->headers = response_headers_;
|
2015-11-25 23:00:47 +00:00
|
|
|
}
|
|
|
|
|
2015-08-12 07:18:31 +00:00
|
|
|
} // namespace atom
|