d663b4eaee
* chore: fix cpplint 'include_what_you_use' warnings Typically by including <memory>, <utility> etc. * chore: fix 'static/global string constant' warning Use C style strings instead of std::string. Style guide forbids non-trivial static / global variables. https://google.github.io/styleguide/cppguide.html#Static_and_Global_Variables /home/charles/electron/electron-gn/src/electron/script/cpplint.js * refactor: remove global string variables. Fix 'global string variables are not permitted' linter warnings by using the base::NoDestructor<> wrapper to make it explicit that these variables are never destroyed. The style guide's take on globals with nontrivial destructors: https://google.github.io/styleguide/cppguide.html#Static_and_Global_Variables * fix: initializer error introduced in last commit * fix: remove WIP file that was included by accident * fix: include order * fix: include order * fix: include order * fix: include order, again
57 lines
1.7 KiB
C++
57 lines
1.7 KiB
C++
// 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>
|
|
#include <string>
|
|
|
|
#include "atom/common/atom_constants.h"
|
|
#include "base/strings/utf_string_conversions.h"
|
|
#include "base/task_scheduler/post_task.h"
|
|
|
|
namespace atom {
|
|
|
|
URLRequestAsyncAsarJob::URLRequestAsyncAsarJob(
|
|
net::URLRequest* request,
|
|
net::NetworkDelegate* network_delegate)
|
|
: JsAsker<asar::URLRequestAsarJob>(request, network_delegate) {}
|
|
|
|
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()) {
|
|
NotifyStartError(net::URLRequestStatus(net::URLRequestStatus::FAILED,
|
|
net::ERR_NOT_IMPLEMENTED));
|
|
} else {
|
|
asar::URLRequestAsarJob::Initialize(
|
|
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();
|
|
}
|
|
}
|
|
|
|
void URLRequestAsyncAsarJob::GetResponseInfo(net::HttpResponseInfo* info) {
|
|
std::string status("HTTP/1.1 200 OK");
|
|
auto* headers = new net::HttpResponseHeaders(status);
|
|
|
|
headers->AddHeader(kCORSHeader);
|
|
info->headers = headers;
|
|
}
|
|
|
|
} // namespace atom
|