2013-06-03 09:57:37 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "browser/api/atom_api_auto_updater.h"
|
|
|
|
|
2013-06-03 09:59:34 +00:00
|
|
|
#include "base/values.h"
|
2013-06-03 09:57:37 +00:00
|
|
|
#include "browser/auto_updater.h"
|
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
namespace api {
|
|
|
|
|
|
|
|
AutoUpdater::AutoUpdater(v8::Handle<v8::Object> wrapper)
|
|
|
|
: EventEmitter(wrapper) {
|
2013-06-03 09:59:34 +00:00
|
|
|
auto_updater::AutoUpdater::SetDelegate(this);
|
|
|
|
auto_updater::AutoUpdater::Init();
|
2013-06-03 09:57:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AutoUpdater::~AutoUpdater() {
|
2013-06-03 09:59:34 +00:00
|
|
|
auto_updater::AutoUpdater::SetDelegate(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void AutoUpdater::WillInstallUpdate(const std::string& version,
|
|
|
|
const base::Closure& install) {
|
2013-06-03 13:51:46 +00:00
|
|
|
continue_update_ = install;
|
|
|
|
|
2013-06-03 09:59:34 +00:00
|
|
|
base::ListValue args;
|
|
|
|
args.AppendString(version);
|
2013-06-03 10:21:13 +00:00
|
|
|
bool prevent_default = Emit("will-install-update-raw", &args);
|
2013-06-03 09:59:34 +00:00
|
|
|
|
2013-06-03 13:51:46 +00:00
|
|
|
if (!prevent_default)
|
2013-06-03 09:59:34 +00:00
|
|
|
install.Run();
|
|
|
|
}
|
|
|
|
|
2013-06-03 13:51:46 +00:00
|
|
|
void AutoUpdater::ReadyForUpdateOnQuit(const std::string& version,
|
|
|
|
const base::Closure& quit_and_install) {
|
|
|
|
quit_and_install_ = quit_and_install;
|
|
|
|
|
|
|
|
base::ListValue args;
|
|
|
|
args.AppendString(version);
|
|
|
|
Emit("ready-for-update-on-quit-raw", &args);
|
|
|
|
}
|
|
|
|
|
2013-06-03 09:59:34 +00:00
|
|
|
// static
|
|
|
|
v8::Handle<v8::Value> AutoUpdater::New(const v8::Arguments &args) {
|
|
|
|
v8::HandleScope scope;
|
|
|
|
|
|
|
|
if (!args.IsConstructCall())
|
|
|
|
return node::ThrowError("Require constructor call");
|
|
|
|
|
|
|
|
new AutoUpdater(args.This());
|
|
|
|
|
|
|
|
return args.This();
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
v8::Handle<v8::Value> AutoUpdater::SetFeedURL(const v8::Arguments &args) {
|
|
|
|
auto_updater::AutoUpdater::SetFeedURL(*v8::String::Utf8Value(args[0]));
|
|
|
|
return v8::Undefined();
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
v8::Handle<v8::Value> AutoUpdater::SetAutomaticallyChecksForUpdates(
|
|
|
|
const v8::Arguments &args) {
|
|
|
|
auto_updater::AutoUpdater::SetAutomaticallyChecksForUpdates(
|
|
|
|
args[0]->BooleanValue());
|
|
|
|
return v8::Undefined();
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
v8::Handle<v8::Value> AutoUpdater::SetAutomaticallyDownloadsUpdates(
|
|
|
|
const v8::Arguments &args) {
|
|
|
|
auto_updater::AutoUpdater::SetAutomaticallyDownloadsUpdates(
|
|
|
|
args[0]->BooleanValue());
|
|
|
|
return v8::Undefined();
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
v8::Handle<v8::Value> AutoUpdater::CheckForUpdates(const v8::Arguments &args) {
|
|
|
|
auto_updater::AutoUpdater::CheckForUpdates();
|
|
|
|
return v8::Undefined();
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
v8::Handle<v8::Value> AutoUpdater::CheckForUpdatesInBackground(
|
|
|
|
const v8::Arguments &args) {
|
|
|
|
auto_updater::AutoUpdater::CheckForUpdatesInBackground();
|
|
|
|
return v8::Undefined();
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
v8::Handle<v8::Value> AutoUpdater::ContinueUpdate(const v8::Arguments &args) {
|
|
|
|
AutoUpdater* self = AutoUpdater::Unwrap<AutoUpdater>(args.This());
|
|
|
|
self->continue_update_.Run();
|
|
|
|
return v8::Undefined();
|
2013-06-03 09:57:37 +00:00
|
|
|
}
|
|
|
|
|
2013-06-03 13:51:46 +00:00
|
|
|
// static
|
|
|
|
v8::Handle<v8::Value> AutoUpdater::QuitAndInstall(const v8::Arguments &args) {
|
|
|
|
AutoUpdater* self = AutoUpdater::Unwrap<AutoUpdater>(args.This());
|
|
|
|
self->quit_and_install_.Run();
|
|
|
|
return v8::Undefined();
|
|
|
|
}
|
|
|
|
|
2013-06-03 09:57:37 +00:00
|
|
|
// static
|
|
|
|
void AutoUpdater::Initialize(v8::Handle<v8::Object> target) {
|
|
|
|
v8::HandleScope scope;
|
2013-06-03 09:59:34 +00:00
|
|
|
|
|
|
|
v8::Local<v8::FunctionTemplate> t(
|
|
|
|
v8::FunctionTemplate::New(AutoUpdater::New));
|
|
|
|
t->InstanceTemplate()->SetInternalFieldCount(1);
|
|
|
|
t->SetClassName(v8::String::NewSymbol("AutoUpdater"));
|
|
|
|
|
|
|
|
NODE_SET_PROTOTYPE_METHOD(t, "setFeedUrl", SetFeedURL);
|
|
|
|
NODE_SET_PROTOTYPE_METHOD(t,
|
|
|
|
"setAutomaticallyChecksForUpdates",
|
|
|
|
SetAutomaticallyChecksForUpdates);
|
|
|
|
NODE_SET_PROTOTYPE_METHOD(t,
|
|
|
|
"setAutomaticallyDownloadsUpdates",
|
|
|
|
SetAutomaticallyDownloadsUpdates);
|
|
|
|
NODE_SET_PROTOTYPE_METHOD(t, "checkForUpdates", CheckForUpdates);
|
|
|
|
NODE_SET_PROTOTYPE_METHOD(t,
|
|
|
|
"checkForUpdatesInBackground",
|
|
|
|
CheckForUpdatesInBackground);
|
|
|
|
|
|
|
|
NODE_SET_PROTOTYPE_METHOD(t, "continueUpdate", ContinueUpdate);
|
2013-06-03 13:51:46 +00:00
|
|
|
NODE_SET_PROTOTYPE_METHOD(t, "quitAndInstall", QuitAndInstall);
|
2013-06-03 09:59:34 +00:00
|
|
|
|
|
|
|
target->Set(v8::String::NewSymbol("AutoUpdater"), t->GetFunction());
|
2013-06-03 09:57:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace api
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
|
|
|
NODE_MODULE(atom_browser_auto_updater, atom::api::AutoUpdater::Initialize)
|