electron/atom/browser/net/url_request_async_asar_job.cc

58 lines
1.7 KiB
C++
Raw Normal View History

// 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"
#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"
#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
namespace atom {
2015-11-13 08:03:40 +00:00
URLRequestAsyncAsarJob::URLRequestAsyncAsarJob(
net::URLRequest* request,
net::NetworkDelegate* network_delegate)
2018-04-18 01:55:30 +00:00
: JsAsker<asar::URLRequestAsarJob>(request, network_delegate) {}
2016-05-23 01:59:39 +00:00
void URLRequestAsyncAsarJob::StartAsync(std::unique_ptr<base::Value> options) {
std::string file_path;
if (options->is_dict()) {
auto* path_value =
options->FindKeyOfType("path", base::Value::Type::STRING);
if (path_value)
file_path = path_value->GetString();
} else if (options->is_string()) {
file_path = options->GetString();
}
if (file_path.empty()) {
2018-04-18 01:55:30 +00:00
NotifyStartError(net::URLRequestStatus(net::URLRequestStatus::FAILED,
net::ERR_NOT_IMPLEMENTED));
} else {
asar::URLRequestAsarJob::Initialize(
2017-12-18 01:35:51 +00:00
base::CreateSequencedTaskRunnerWithTraits(
{base::MayBlock(), base::TaskPriority::USER_VISIBLE,
base::TaskShutdownBehavior::SKIP_ON_SHUTDOWN}),
#if defined(OS_WIN)
base::FilePath(base::UTF8ToWide(file_path)));
#else
base::FilePath(file_path));
#endif
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");
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;
}
} // namespace atom