2014-10-31 18:17:05 +00:00
|
|
|
// 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
|
2013-06-03 09:57:37 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/api/electron_api_auto_updater.h"
|
|
|
|
|
2016-08-26 22:30:02 +00:00
|
|
|
#include "base/time/time.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/browser.h"
|
2020-07-28 18:04:34 +00:00
|
|
|
#include "shell/browser/javascript_environment.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/native_window.h"
|
|
|
|
#include "shell/browser/window_list.h"
|
2019-10-18 00:31:29 +00:00
|
|
|
#include "shell/common/gin_converters/callback_converter.h"
|
2020-05-07 20:31:26 +00:00
|
|
|
#include "shell/common/gin_converters/time_converter.h"
|
2019-10-18 00:31:29 +00:00
|
|
|
#include "shell/common/gin_helper/dictionary.h"
|
2019-09-06 05:52:54 +00:00
|
|
|
#include "shell/common/gin_helper/event_emitter_caller.h"
|
2019-10-18 00:31:29 +00:00
|
|
|
#include "shell/common/gin_helper/object_template_builder.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/common/node_includes.h"
|
2013-12-11 07:48:19 +00:00
|
|
|
|
2013-06-03 09:57:37 +00:00
|
|
|
namespace electron {
|
|
|
|
|
|
|
|
namespace 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);
|
2013-06-03 09:57:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
if (GetWrapper(isolate).ToLocal(&wrapper)) {
|
|
|
|
auto error = v8::Exception::Error(gin::StringToV8(isolate, message));
|
|
|
|
gin_helper::EmitEvent(
|
|
|
|
isolate, wrapper, "error",
|
|
|
|
error->ToObject(isolate->GetCurrentContext()).ToLocalChecked(),
|
|
|
|
// Message is also emitted to keep compatibility with old code.
|
|
|
|
message);
|
|
|
|
}
|
2014-01-21 14:50:46 +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);
|
|
|
|
}
|
2017-07-27 00:33:32 +00:00
|
|
|
}
|
|
|
|
|
2014-02-01 00:11:11 +00:00
|
|
|
void AutoUpdater::OnCheckingForUpdate() {
|
2017-07-27 01:41:25 +00:00
|
|
|
Emit("checking-for-update");
|
2014-02-01 00:11:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void AutoUpdater::OnUpdateAvailable() {
|
2017-07-27 01:41:25 +00:00
|
|
|
Emit("update-available");
|
2014-02-01 00:11:11 +00:00
|
|
|
}
|
|
|
|
|
2014-01-21 14:50:46 +00:00
|
|
|
void AutoUpdater::OnUpdateNotAvailable() {
|
2017-07-27 01:41:25 +00:00
|
|
|
Emit("update-not-available");
|
2014-01-21 14:50:46 +00:00
|
|
|
}
|
|
|
|
|
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,
|
2015-10-23 07:40:56 +00:00
|
|
|
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.
|
2019-04-24 18:29:59 +00:00
|
|
|
base::BindRepeating(&AutoUpdater::QuitAndInstall,
|
|
|
|
base::Unretained(this)));
|
2013-06-03 13:51:46 +00:00
|
|
|
}
|
|
|
|
|
2015-10-23 07:40:56 +00:00
|
|
|
void AutoUpdater::OnWindowAllClosed() {
|
2017-07-27 01:41:25 +00:00
|
|
|
QuitAndInstall();
|
2015-10-23 07:40:56 +00:00
|
|
|
}
|
|
|
|
|
2020-07-28 18:04:34 +00:00
|
|
|
void AutoUpdater::SetFeedURL(gin::Arguments* args) {
|
2018-02-15 02:58:59 +00:00
|
|
|
auto_updater::AutoUpdater::SetFeedURL(args);
|
2016-06-13 00:32:24 +00:00
|
|
|
}
|
|
|
|
|
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
|
2019-10-18 00:31:29 +00:00
|
|
|
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", &AutoUpdater::SetFeedURL)
|
|
|
|
.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";
|
|
|
|
}
|
|
|
|
|
2014-04-17 09:26:21 +00:00
|
|
|
} // namespace api
|
2014-02-17 06:56:23 +00:00
|
|
|
|
2014-04-17 09:26:21 +00:00
|
|
|
} // namespace electron
|
2013-06-03 13:51:46 +00:00
|
|
|
|
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();
|
2019-10-18 00:31:29 +00:00
|
|
|
gin_helper::Dictionary dict(isolate, exports);
|
2017-07-27 01:41:25 +00:00
|
|
|
dict.Set("autoUpdater", AutoUpdater::Create(isolate));
|
2013-06-03 09:57:37 +00:00
|
|
|
}
|
|
|
|
|
2014-04-17 09:26:21 +00:00
|
|
|
} // namespace
|
2013-06-03 09:57:37 +00:00
|
|
|
|
2020-02-14 11:25:39 +00:00
|
|
|
NODE_LINKED_MODULE_CONTEXT_AWARE(electron_browser_auto_updater, Initialize)
|