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"
|
|
|
|
|
2014-01-21 14:13:34 +00:00
|
|
|
#include "base/time/time.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"
|
2013-12-11 07:48:19 +00:00
|
|
|
#include "common/v8/native_type_conversions.h"
|
|
|
|
|
2013-12-17 06:01:40 +00:00
|
|
|
#include "common/v8/node_common.h"
|
2013-06-03 09:57:37 +00:00
|
|
|
|
|
|
|
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);
|
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: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;
|
|
|
|
|
|
|
|
base::ListValue args;
|
2014-01-21 14:13:34 +00:00
|
|
|
args.AppendString(release_notes);
|
|
|
|
args.AppendString(release_name);
|
|
|
|
args.AppendDouble(release_date.ToJsTime());
|
|
|
|
args.AppendString(update_url);
|
|
|
|
Emit("update-downloaded-raw", &args);
|
2013-06-03 13:51:46 +00:00
|
|
|
}
|
|
|
|
|
2013-06-03 09:59:34 +00:00
|
|
|
// static
|
2013-12-11 07:48:19 +00:00
|
|
|
void AutoUpdater::New(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
|
|
v8::HandleScope handle_scope(args.GetIsolate());
|
2013-06-03 09:59:34 +00:00
|
|
|
|
|
|
|
if (!args.IsConstructCall())
|
|
|
|
return node::ThrowError("Require constructor call");
|
|
|
|
|
|
|
|
new AutoUpdater(args.This());
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
2013-12-11 07:48:19 +00:00
|
|
|
void AutoUpdater::SetFeedURL(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
2013-09-24 01:41:54 +00:00
|
|
|
auto_updater::AutoUpdater::SetFeedURL(FromV8Value(args[0]));
|
2013-06-03 09:59:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
2013-12-11 07:48:19 +00:00
|
|
|
void AutoUpdater::CheckForUpdates(
|
|
|
|
const v8::FunctionCallbackInfo<v8::Value>& args) {
|
2013-06-03 09:59:34 +00:00
|
|
|
auto_updater::AutoUpdater::CheckForUpdates();
|
|
|
|
}
|
|
|
|
|
2013-06-03 13:51:46 +00:00
|
|
|
// static
|
2013-12-11 07:48:19 +00:00
|
|
|
void AutoUpdater::QuitAndInstall(
|
|
|
|
const v8::FunctionCallbackInfo<v8::Value>& args) {
|
2013-06-03 13:51:46 +00:00
|
|
|
AutoUpdater* self = AutoUpdater::Unwrap<AutoUpdater>(args.This());
|
|
|
|
self->quit_and_install_.Run();
|
|
|
|
}
|
|
|
|
|
2013-06-03 09:57:37 +00:00
|
|
|
// static
|
|
|
|
void AutoUpdater::Initialize(v8::Handle<v8::Object> target) {
|
2013-12-11 07:48:19 +00:00
|
|
|
v8::HandleScope handle_scope(v8::Isolate::GetCurrent());
|
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, "checkForUpdates", CheckForUpdates);
|
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)
|