2014-10-31 11:17:05 -07:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 17:49:37 +08:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-06-03 17:57:37 +08:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2020-02-04 12:19:40 -08:00
|
|
|
#include "shell/browser/api/electron_api_auto_updater.h"
|
2019-06-19 13:46:59 -07:00
|
|
|
|
2016-08-26 15:30:02 -07:00
|
|
|
#include "base/time/time.h"
|
2019-06-19 13:46:59 -07:00
|
|
|
#include "shell/browser/browser.h"
|
2020-07-28 11:04:34 -07:00
|
|
|
#include "shell/browser/javascript_environment.h"
|
2019-06-19 13:46:59 -07:00
|
|
|
#include "shell/browser/native_window.h"
|
|
|
|
#include "shell/browser/window_list.h"
|
2019-10-18 09:31:29 +09:00
|
|
|
#include "shell/common/gin_converters/callback_converter.h"
|
2020-05-07 13:31:26 -07:00
|
|
|
#include "shell/common/gin_converters/time_converter.h"
|
2019-10-18 09:31:29 +09:00
|
|
|
#include "shell/common/gin_helper/dictionary.h"
|
2019-09-06 14:52:54 +09:00
|
|
|
#include "shell/common/gin_helper/event_emitter_caller.h"
|
2019-10-18 09:31:29 +09:00
|
|
|
#include "shell/common/gin_helper/object_template_builder.h"
|
2019-06-19 13:46:59 -07:00
|
|
|
#include "shell/common/node_includes.h"
|
2013-12-11 15:48:19 +08:00
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
namespace electron {
|
2013-06-03 17:57:37 +08:00
|
|
|
|
|
|
|
namespace api {
|
|
|
|
|
2020-07-28 11:04:34 -07:00
|
|
|
gin::WrapperInfo AutoUpdater::kWrapperInfo = {gin::kEmbedderNativeGin};
|
|
|
|
|
|
|
|
AutoUpdater::AutoUpdater() {
|
2017-07-26 18:41:25 -07:00
|
|
|
auto_updater::AutoUpdater::SetDelegate(this);
|
2013-06-03 17:57:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
AutoUpdater::~AutoUpdater() {
|
2017-07-26 18:41:25 -07:00
|
|
|
auto_updater::AutoUpdater::SetDelegate(nullptr);
|
2013-06-03 17:59:34 +08:00
|
|
|
}
|
|
|
|
|
2015-10-23 14:36:36 +08:00
|
|
|
void AutoUpdater::OnError(const std::string& message) {
|
2020-07-28 11:04:34 -07:00
|
|
|
v8::Isolate* isolate = JavascriptEnvironment::GetIsolate();
|
|
|
|
v8::Locker locker(isolate);
|
|
|
|
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 22:50:46 +08:00
|
|
|
}
|
|
|
|
|
2017-07-26 18:29:10 -07:00
|
|
|
void AutoUpdater::OnError(const std::string& message,
|
2018-04-17 21:55:30 -04:00
|
|
|
const int code,
|
|
|
|
const std::string& domain) {
|
2020-07-28 11:04:34 -07:00
|
|
|
v8::Isolate* isolate = JavascriptEnvironment::GetIsolate();
|
|
|
|
v8::Locker locker(isolate);
|
|
|
|
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-26 17:33:32 -07:00
|
|
|
}
|
|
|
|
|
2014-01-31 16:11:11 -08:00
|
|
|
void AutoUpdater::OnCheckingForUpdate() {
|
2017-07-26 18:41:25 -07:00
|
|
|
Emit("checking-for-update");
|
2014-01-31 16:11:11 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
void AutoUpdater::OnUpdateAvailable() {
|
2017-07-26 18:41:25 -07:00
|
|
|
Emit("update-available");
|
2014-01-31 16:11:11 -08:00
|
|
|
}
|
|
|
|
|
2014-01-21 22:50:46 +08:00
|
|
|
void AutoUpdater::OnUpdateNotAvailable() {
|
2017-07-26 18:41:25 -07:00
|
|
|
Emit("update-not-available");
|
2014-01-21 22:50:46 +08:00
|
|
|
}
|
|
|
|
|
2014-01-21 22:13:34 +08:00
|
|
|
void AutoUpdater::OnUpdateDownloaded(const std::string& release_notes,
|
|
|
|
const std::string& release_name,
|
|
|
|
const base::Time& release_date,
|
2015-10-23 15:40:56 +08:00
|
|
|
const std::string& url) {
|
2017-07-27 11:52:19 +10:00
|
|
|
Emit("update-downloaded", release_notes, release_name, release_date, url,
|
|
|
|
// Keep compatibility with old APIs.
|
2019-04-24 11:29:59 -07:00
|
|
|
base::BindRepeating(&AutoUpdater::QuitAndInstall,
|
|
|
|
base::Unretained(this)));
|
2013-06-03 21:51:46 +08:00
|
|
|
}
|
|
|
|
|
2015-10-23 15:40:56 +08:00
|
|
|
void AutoUpdater::OnWindowAllClosed() {
|
2017-07-26 18:41:25 -07:00
|
|
|
QuitAndInstall();
|
2015-10-23 15:40:56 +08:00
|
|
|
}
|
|
|
|
|
2020-07-28 11:04:34 -07:00
|
|
|
void AutoUpdater::SetFeedURL(gin::Arguments* args) {
|
2018-02-15 13:58:59 +11:00
|
|
|
auto_updater::AutoUpdater::SetFeedURL(args);
|
2016-06-13 09:32:24 +09:00
|
|
|
}
|
|
|
|
|
2014-04-17 17:26:21 +08:00
|
|
|
void AutoUpdater::QuitAndInstall() {
|
2018-04-14 21:29:36 -04:00
|
|
|
Emit("before-quit-for-update");
|
|
|
|
|
2017-07-26 18:41:25 -07: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 17:59:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
2019-10-18 09:31:29 +09:00
|
|
|
gin::Handle<AutoUpdater> AutoUpdater::Create(v8::Isolate* isolate) {
|
2020-07-28 11:04:34 -07:00
|
|
|
return gin::CreateHandle(isolate, new AutoUpdater());
|
2016-04-25 10:17:54 +09:00
|
|
|
}
|
|
|
|
|
2020-07-28 11:04:34 -07:00
|
|
|
gin::ObjectTemplateBuilder AutoUpdater::GetObjectTemplateBuilder(
|
|
|
|
v8::Isolate* isolate) {
|
|
|
|
return gin_helper::EventEmitterMixin<AutoUpdater>::GetObjectTemplateBuilder(
|
|
|
|
isolate)
|
2017-07-27 11:52:19 +10:00
|
|
|
.SetMethod("checkForUpdates", &auto_updater::AutoUpdater::CheckForUpdates)
|
|
|
|
.SetMethod("getFeedURL", &auto_updater::AutoUpdater::GetFeedURL)
|
|
|
|
.SetMethod("setFeedURL", &AutoUpdater::SetFeedURL)
|
|
|
|
.SetMethod("quitAndInstall", &AutoUpdater::QuitAndInstall);
|
2013-06-03 17:59:34 +08:00
|
|
|
}
|
|
|
|
|
2020-07-28 11:04:34 -07:00
|
|
|
const char* AutoUpdater::GetTypeName() {
|
|
|
|
return "AutoUpdater";
|
|
|
|
}
|
|
|
|
|
2014-04-17 17:26:21 +08:00
|
|
|
} // namespace api
|
2014-02-17 14:56:23 +08:00
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
} // namespace electron
|
2013-06-03 21:51:46 +08:00
|
|
|
|
2014-04-17 17:26:21 +08:00
|
|
|
namespace {
|
2013-06-03 17:59:34 +08:00
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
using electron::api::AutoUpdater;
|
2016-08-02 20:38:35 +09:00
|
|
|
|
2018-04-17 21:55:30 -04:00
|
|
|
void Initialize(v8::Local<v8::Object> exports,
|
|
|
|
v8::Local<v8::Value> unused,
|
|
|
|
v8::Local<v8::Context> context,
|
|
|
|
void* priv) {
|
2017-07-26 18:41:25 -07:00
|
|
|
v8::Isolate* isolate = context->GetIsolate();
|
2019-10-18 09:31:29 +09:00
|
|
|
gin_helper::Dictionary dict(isolate, exports);
|
2017-07-26 18:41:25 -07:00
|
|
|
dict.Set("autoUpdater", AutoUpdater::Create(isolate));
|
2013-06-03 17:57:37 +08:00
|
|
|
}
|
|
|
|
|
2014-04-17 17:26:21 +08:00
|
|
|
} // namespace
|
2013-06-03 17:57:37 +08:00
|
|
|
|
2020-02-14 03:25:39 -08:00
|
|
|
NODE_LINKED_MODULE_CONTEXT_AWARE(electron_browser_auto_updater, Initialize)
|