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>
|
|
|
|
|
2015-12-01 08:21:15 +00:00
|
|
|
#include "atom/common/atom_constants.h"
|
2018-06-27 21:52:48 +00:00
|
|
|
#include "base/strings/utf_string_conversions.h"
|
2017-12-18 01:35:51 +00:00
|
|
|
#include "base/task_scheduler/post_task.h"
|
2015-12-01 08:21:15 +00:00
|
|
|
|
2015-08-12 07:18:31 +00:00
|
|
|
namespace atom {
|
|
|
|
|
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-04-18 01:55:30 +00:00
|
|
|
: JsAsker<asar::URLRequestAsarJob>(request, network_delegate) {}
|
2015-08-12 07:18:31 +00:00
|
|
|
|
2016-05-23 01:59:39 +00:00
|
|
|
void URLRequestAsyncAsarJob::StartAsync(std::unique_ptr<base::Value> options) {
|
2018-06-27 21:52:48 +00:00
|
|
|
std::string file_path;
|
2018-04-10 14:05:36 +00:00
|
|
|
if (options->is_dict()) {
|
2018-06-28 21:20:11 +00:00
|
|
|
auto* path_value =
|
|
|
|
options->FindKeyOfType("path", base::Value::Type::STRING);
|
2018-06-27 21:52:48 +00:00
|
|
|
if (path_value)
|
|
|
|
file_path = path_value->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
|
|
|
}
|
|
|
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-25 23:00:47 +00:00
|
|
|
void URLRequestAsyncAsarJob::GetResponseInfo(net::HttpResponseInfo* info) {
|
|
|
|
std::string status("HTTP/1.1 200 OK");
|
2016-07-10 11:09:55 +00:00
|
|
|
auto* headers = new net::HttpResponseHeaders(status);
|
2015-11-25 23:00:47 +00:00
|
|
|
|
2015-12-01 08:21:15 +00:00
|
|
|
headers->AddHeader(kCORSHeader);
|
2015-11-25 23:00:47 +00:00
|
|
|
info->headers = headers;
|
|
|
|
}
|
|
|
|
|
2015-08-12 07:18:31 +00:00
|
|
|
} // namespace atom
|