electron/shell/browser/api/electron_api_auto_updater.cc

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

166 lines
5.4 KiB
C++
Raw Normal View History

// Copyright (c) 2013 GitHub, Inc.
2014-04-25 09:49:37 +00:00
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#include "shell/browser/api/electron_api_auto_updater.h"
2016-08-26 22:30:02 +00:00
#include "base/time/time.h"
chore: more iwyu (#43063) * chore: iwyu shell/browser/electron_pdf_document_helper_client.h * chore: iwyu shell/browser/hid/electron_hid_delegate.h * chore: iwyu content/public/browser/web_contents.h * chore: iwyu shell/browser/usb/electron_usb_delegate.h * chore: iwyu shell/browser/browser_observer.h * chore: iwyu shell/browser/bluetooth/electron_bluetooth_delegate.h * chore: iwyu shell/browser/serial/electron_serial_delegate.h * chore: iwyu shell/browser/api/frame_subscriber.h * chore: iwyu mojo/public/cpp/bindings/ * chore: iwyu components/ * chore: iwyu extensions/ * chore: iwyu shell/common/gin_helper/ * chore: iwyu v8/ * chore: iwyu base/containers/linked_list.h * chore: iwyu shell/browser/native_window.h * chore: iwyu shell/browser/api/electron_api_base_window.h * chore: iwyu shell/common/node_includes.h * chore: iwyu gin/handle.h * chore: iwyu base/functional/callback.h * chore: iwyu ui/gfx/ * chore: iwyu content/public/browser/render_frame_host.h * fix: mac * fix: mac * fix: win * chore: iwyu base/files/file_path.h * chore: iwyu base/unguessable_token.h * chore: iwyu ui/display/screen.h * chore: iwyu chrome/browser/predictors/preconnect_manager.h * chore: iwyu base/observer_list_types.h * chore: iwyu content/public/browser/web_contents.h * chore: iwyu chrome/browser/devtools/devtools_eye_dropper.h * chore: iwyu shell/browser/ui/inspectable_web_contents.h * chore: iwyu content/public/browser/keyboard_event_processing_result.h * chore: iwyu net/cookies/canonical_cookie.h * chore: iwyu net/base/address_list.h * chore: iwyu net/cert/x509_certificate.h * chore: iwyu net/cookies/cookie_change_dispatcher.h * chore: iwyu net/dns/public/host_resolver_results.h * fix: mac * Revert "chore: iwyu net/cert/x509_certificate.h" This reverts commit 002896f71146e90f1e29e090a1d6eede48cee11e.
2024-07-29 17:42:57 +00:00
#include "gin/handle.h"
2020-07-28 18:04:34 +00:00
#include "shell/browser/javascript_environment.h"
#include "shell/browser/native_window.h"
#include "shell/browser/window_list.h"
#include "shell/common/gin_converters/callback_converter.h"
#include "shell/common/gin_converters/time_converter.h"
#include "shell/common/gin_helper/dictionary.h"
#include "shell/common/gin_helper/event_emitter_caller.h"
#include "shell/common/gin_helper/object_template_builder.h"
#include "shell/common/node_includes.h"
2022-06-29 19:55:47 +00:00
namespace electron::api {
2020-07-28 18:04:34 +00:00
gin::WrapperInfo AutoUpdater::kWrapperInfo = {gin::kEmbedderNativeGin};
AutoUpdater::AutoUpdater() {
2017-07-27 01:41:25 +00:00
auto_updater::AutoUpdater::SetDelegate(this);
}
AutoUpdater::~AutoUpdater() {
2017-07-27 01:41:25 +00:00
auto_updater::AutoUpdater::SetDelegate(nullptr);
2013-06-03 09:59:34 +00:00
}
2015-10-23 06:36:36 +00:00
void AutoUpdater::OnError(const std::string& message) {
2020-07-28 18:04:34 +00:00
v8::Isolate* isolate = JavascriptEnvironment::GetIsolate();
v8::HandleScope handle_scope(isolate);
v8::Local<v8::Object> wrapper;
// We do not use gin::EmitEvent here because we do not want to
// put this in its own CallbackScope and delegate to Node.js'
// specialized handling for Error objects.
2020-07-28 18:04:34 +00:00
if (GetWrapper(isolate).ToLocal(&wrapper)) {
auto error = v8::Exception::Error(gin::StringToV8(isolate, message));
std::vector<v8::Local<v8::Value>> args = {
gin::StringToV8(isolate, "error"),
gin::ConvertToV8(
isolate,
error->ToObject(isolate->GetCurrentContext()).ToLocalChecked()),
gin::StringToV8(isolate, message),
};
gin_helper::MicrotasksScope microtasks_scope{
isolate, wrapper->GetCreationContextChecked()->GetMicrotaskQueue(),
true, v8::MicrotasksScope::kRunMicrotasks};
node::MakeCallback(isolate, wrapper, "emit", args.size(), args.data(),
{0, 0});
2020-07-28 18:04:34 +00:00
}
}
2017-07-27 01:29:10 +00:00
void AutoUpdater::OnError(const std::string& message,
2018-04-18 01:55:30 +00:00
const int code,
const std::string& domain) {
2020-07-28 18:04:34 +00:00
v8::Isolate* isolate = JavascriptEnvironment::GetIsolate();
v8::HandleScope handle_scope(isolate);
v8::Local<v8::Object> wrapper;
if (GetWrapper(isolate).ToLocal(&wrapper)) {
auto error = v8::Exception::Error(gin::StringToV8(isolate, message));
auto errorObject =
error->ToObject(isolate->GetCurrentContext()).ToLocalChecked();
auto context = isolate->GetCurrentContext();
// add two new params for better error handling
errorObject
->Set(context, gin::StringToV8(isolate, "code"),
v8::Integer::New(isolate, code))
.Check();
errorObject
->Set(context, gin::StringToV8(isolate, "domain"),
gin::StringToV8(isolate, domain))
.Check();
gin_helper::EmitEvent(isolate, wrapper, "error", errorObject, message);
}
}
void AutoUpdater::OnCheckingForUpdate() {
2017-07-27 01:41:25 +00:00
Emit("checking-for-update");
}
void AutoUpdater::OnUpdateAvailable() {
2017-07-27 01:41:25 +00:00
Emit("update-available");
}
void AutoUpdater::OnUpdateNotAvailable() {
2017-07-27 01:41:25 +00:00
Emit("update-not-available");
}
2014-01-21 14:13:34 +00:00
void AutoUpdater::OnUpdateDownloaded(const std::string& release_notes,
const std::string& release_name,
const base::Time& release_date,
const std::string& url) {
2017-07-27 01:52:19 +00:00
Emit("update-downloaded", release_notes, release_name, release_date, url,
// Keep compatibility with old APIs.
base::BindRepeating(&AutoUpdater::QuitAndInstall,
base::Unretained(this)));
}
void AutoUpdater::OnWindowAllClosed() {
2017-07-27 01:41:25 +00:00
QuitAndInstall();
}
2014-04-17 09:26:21 +00:00
void AutoUpdater::QuitAndInstall() {
2018-04-15 01:29:36 +00:00
Emit("before-quit-for-update");
2017-07-27 01:41:25 +00:00
// If we don't have any window then quitAndInstall immediately.
if (WindowList::IsEmpty()) {
auto_updater::AutoUpdater::QuitAndInstall();
return;
}
// Otherwise do the restart after all windows have been closed.
WindowList::AddObserver(this);
WindowList::CloseAllWindows();
2013-06-03 09:59:34 +00:00
}
// static
gin::Handle<AutoUpdater> AutoUpdater::Create(v8::Isolate* isolate) {
2020-07-28 18:04:34 +00:00
return gin::CreateHandle(isolate, new AutoUpdater());
2016-04-25 01:17:54 +00:00
}
2020-07-28 18:04:34 +00:00
gin::ObjectTemplateBuilder AutoUpdater::GetObjectTemplateBuilder(
v8::Isolate* isolate) {
return gin_helper::EventEmitterMixin<AutoUpdater>::GetObjectTemplateBuilder(
isolate)
2017-07-27 01:52:19 +00:00
.SetMethod("checkForUpdates", &auto_updater::AutoUpdater::CheckForUpdates)
.SetMethod("getFeedURL", &auto_updater::AutoUpdater::GetFeedURL)
.SetMethod("setFeedURL", &auto_updater::AutoUpdater::SetFeedURL)
#if DCHECK_IS_ON()
.SetMethod("isVersionAllowedForUpdate",
&auto_updater::AutoUpdater::IsVersionAllowedForUpdate)
#endif
2017-07-27 01:52:19 +00:00
.SetMethod("quitAndInstall", &AutoUpdater::QuitAndInstall);
2013-06-03 09:59:34 +00:00
}
2020-07-28 18:04:34 +00:00
const char* AutoUpdater::GetTypeName() {
return "AutoUpdater";
}
2022-06-29 19:55:47 +00:00
} // namespace electron::api
2014-04-17 09:26:21 +00:00
namespace {
2013-06-03 09:59:34 +00:00
2016-08-02 11:38:35 +00:00
using electron::api::AutoUpdater;
2018-04-18 01:55:30 +00:00
void Initialize(v8::Local<v8::Object> exports,
v8::Local<v8::Value> unused,
v8::Local<v8::Context> context,
void* priv) {
2017-07-27 01:41:25 +00:00
v8::Isolate* isolate = context->GetIsolate();
gin_helper::Dictionary dict(isolate, exports);
2017-07-27 01:41:25 +00:00
dict.Set("autoUpdater", AutoUpdater::Create(isolate));
}
2014-04-17 09:26:21 +00:00
} // namespace
NODE_LINKED_BINDING_CONTEXT_AWARE(electron_browser_auto_updater, Initialize)