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.
|
|
|
|
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/browser/api/atom_api_auto_updater.h"
|
2013-06-03 09:57:37 +00:00
|
|
|
|
2014-01-21 14:13:34 +00:00
|
|
|
#include "base/time/time.h"
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/browser/auto_updater.h"
|
2014-05-07 03:32:06 +00:00
|
|
|
#include "atom/browser/browser.h"
|
2014-04-17 09:26:21 +00:00
|
|
|
#include "native_mate/dictionary.h"
|
|
|
|
#include "native_mate/object_template_builder.h"
|
2013-12-11 07:48:19 +00:00
|
|
|
|
2014-04-17 05:45:14 +00:00
|
|
|
#include "atom/common/node_includes.h"
|
2013-06-03 09:57:37 +00:00
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
namespace api {
|
|
|
|
|
2014-04-17 09:26:21 +00:00
|
|
|
AutoUpdater::AutoUpdater() {
|
2013-06-03 09:59:34 +00:00
|
|
|
auto_updater::AutoUpdater::SetDelegate(this);
|
2013-06-03 09:57:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AutoUpdater::~AutoUpdater() {
|
2013-06-03 09:59:34 +00:00
|
|
|
auto_updater::AutoUpdater::SetDelegate(NULL);
|
|
|
|
}
|
|
|
|
|
2014-01-21 14:50:46 +00:00
|
|
|
void AutoUpdater::OnError(const std::string& error) {
|
2015-01-15 01:51:54 +00:00
|
|
|
Emit("error", error);
|
2014-01-21 14:50:46 +00:00
|
|
|
}
|
|
|
|
|
2014-02-01 00:11:11 +00:00
|
|
|
void AutoUpdater::OnCheckingForUpdate() {
|
|
|
|
Emit("checking-for-update");
|
|
|
|
}
|
|
|
|
|
|
|
|
void AutoUpdater::OnUpdateAvailable() {
|
|
|
|
Emit("update-available");
|
|
|
|
}
|
|
|
|
|
2014-01-21 14:50:46 +00:00
|
|
|
void AutoUpdater::OnUpdateNotAvailable() {
|
|
|
|
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& update_url,
|
|
|
|
const base::Closure& quit_and_install) {
|
2013-06-03 13:51:46 +00:00
|
|
|
quit_and_install_ = quit_and_install;
|
2015-01-15 01:51:54 +00:00
|
|
|
Emit("update-downloaded-raw", release_notes, release_name,
|
|
|
|
release_date.ToJsTime(), update_url);
|
2013-06-03 13:51:46 +00:00
|
|
|
}
|
|
|
|
|
2014-04-17 09:26:21 +00:00
|
|
|
mate::ObjectTemplateBuilder AutoUpdater::GetObjectTemplateBuilder(
|
|
|
|
v8::Isolate* isolate) {
|
|
|
|
return mate::ObjectTemplateBuilder(isolate)
|
|
|
|
.SetMethod("setFeedUrl", &auto_updater::AutoUpdater::SetFeedURL)
|
|
|
|
.SetMethod("checkForUpdates", &auto_updater::AutoUpdater::CheckForUpdates)
|
2014-05-07 03:32:06 +00:00
|
|
|
.SetMethod("_quitAndInstall", &AutoUpdater::QuitAndInstall);
|
2013-06-03 09:59:34 +00:00
|
|
|
}
|
|
|
|
|
2014-04-17 09:26:21 +00:00
|
|
|
void AutoUpdater::QuitAndInstall() {
|
2014-05-07 03:32:06 +00:00
|
|
|
if (quit_and_install_.is_null())
|
|
|
|
Browser::Get()->Shutdown();
|
|
|
|
else
|
2014-04-17 09:26:21 +00:00
|
|
|
quit_and_install_.Run();
|
2013-06-03 09:59:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
2014-04-17 09:26:21 +00:00
|
|
|
mate::Handle<AutoUpdater> AutoUpdater::Create(v8::Isolate* isolate) {
|
|
|
|
return CreateHandle(isolate, new AutoUpdater);
|
2013-06-03 09:59:34 +00:00
|
|
|
}
|
|
|
|
|
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 atom
|
2013-06-03 13:51:46 +00:00
|
|
|
|
2013-06-03 09:59:34 +00:00
|
|
|
|
2014-04-17 09:26:21 +00:00
|
|
|
namespace {
|
2013-06-03 09:59:34 +00:00
|
|
|
|
2015-05-22 11:11:22 +00:00
|
|
|
void Initialize(v8::Local<v8::Object> exports, v8::Local<v8::Value> unused,
|
|
|
|
v8::Local<v8::Context> context, void* priv) {
|
2014-06-29 12:48:44 +00:00
|
|
|
v8::Isolate* isolate = context->GetIsolate();
|
2014-04-17 09:26:21 +00:00
|
|
|
mate::Dictionary dict(isolate, exports);
|
|
|
|
dict.Set("autoUpdater", atom::api::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
|
|
|
|
2014-06-29 12:48:44 +00:00
|
|
|
NODE_MODULE_CONTEXT_AWARE_BUILTIN(atom_browser_auto_updater, Initialize)
|