Merge remote-tracking branch 'refs/remotes/electron/master'
[platform/framework/web/crosswalk-tizen.git] / atom / browser / api / atom_api_auto_updater.cc
1 // Copyright (c) 2013 GitHub, Inc.
2 // Use of this source code is governed by the MIT license that can be
3 // found in the LICENSE file.
4
5 #include "atom/browser/api/atom_api_auto_updater.h"
6
7 #include "base/time/time.h"
8 #include "atom/browser/browser.h"
9 #include "atom/browser/native_window.h"
10 #include "atom/browser/window_list.h"
11 #include "atom/common/native_mate_converters/callback.h"
12 #include "atom/common/node_includes.h"
13 #include "native_mate/dictionary.h"
14 #include "native_mate/object_template_builder.h"
15
16 namespace mate {
17
18 template<>
19 struct Converter<base::Time> {
20   static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
21                                    const base::Time& val) {
22     v8::MaybeLocal<v8::Value> date = v8::Date::New(
23         isolate->GetCurrentContext(), val.ToJsTime());
24     if (date.IsEmpty())
25       return v8::Null(isolate);
26     else
27       return date.ToLocalChecked();
28   }
29 };
30
31 }  // namespace mate
32
33 namespace atom {
34
35 namespace api {
36
37 AutoUpdater::AutoUpdater(v8::Isolate* isolate) {
38   auto_updater::AutoUpdater::SetDelegate(this);
39   Init(isolate);
40 }
41
42 AutoUpdater::~AutoUpdater() {
43   auto_updater::AutoUpdater::SetDelegate(nullptr);
44 }
45
46 void AutoUpdater::OnError(const std::string& message) {
47   v8::Locker locker(isolate());
48   v8::HandleScope handle_scope(isolate());
49   auto error = v8::Exception::Error(mate::StringToV8(isolate(), message));
50   EmitCustomEvent(
51       "error",
52       error->ToObject(isolate()->GetCurrentContext()).ToLocalChecked(),
53       // Message is also emitted to keep compatibility with old code.
54       message);
55 }
56
57 void AutoUpdater::OnCheckingForUpdate() {
58   Emit("checking-for-update");
59 }
60
61 void AutoUpdater::OnUpdateAvailable() {
62   Emit("update-available");
63 }
64
65 void AutoUpdater::OnUpdateNotAvailable() {
66   Emit("update-not-available");
67 }
68
69 void AutoUpdater::OnUpdateDownloaded(const std::string& release_notes,
70                                      const std::string& release_name,
71                                      const base::Time& release_date,
72                                      const std::string& url) {
73   Emit("update-downloaded", release_notes, release_name, release_date, url,
74        // Keep compatibility with old APIs.
75        base::Bind(&AutoUpdater::QuitAndInstall, base::Unretained(this)));
76 }
77
78 void AutoUpdater::OnWindowAllClosed() {
79   QuitAndInstall();
80 }
81
82 void AutoUpdater::QuitAndInstall() {
83   // If we don't have any window then quitAndInstall immediately.
84   WindowList* window_list = WindowList::GetInstance();
85   if (window_list->size() == 0) {
86     auto_updater::AutoUpdater::QuitAndInstall();
87     return;
88   }
89
90   // Otherwise do the restart after all windows have been closed.
91   window_list->AddObserver(this);
92   for (NativeWindow* window : *window_list)
93     window->Close();
94 }
95
96 // static
97 mate::Handle<AutoUpdater> AutoUpdater::Create(v8::Isolate* isolate) {
98   return mate::CreateHandle(isolate, new AutoUpdater(isolate));
99 }
100
101 // static
102 void AutoUpdater::BuildPrototype(
103     v8::Isolate* isolate, v8::Local<v8::ObjectTemplate> prototype) {
104   mate::ObjectTemplateBuilder(isolate, prototype)
105       .SetMethod("setFeedURL", &auto_updater::AutoUpdater::SetFeedURL)
106       .SetMethod("checkForUpdates", &auto_updater::AutoUpdater::CheckForUpdates)
107       .SetMethod("quitAndInstall", &AutoUpdater::QuitAndInstall);
108 }
109
110 }  // namespace api
111
112 }  // namespace atom
113
114
115 namespace {
116
117 void Initialize(v8::Local<v8::Object> exports, v8::Local<v8::Value> unused,
118                 v8::Local<v8::Context> context, void* priv) {
119   v8::Isolate* isolate = context->GetIsolate();
120   mate::Dictionary dict(isolate, exports);
121   dict.Set("autoUpdater", atom::api::AutoUpdater::Create(isolate));
122 }
123
124 }  // namespace
125
126 NODE_MODULE_CONTEXT_AWARE_BUILTIN(atom_browser_auto_updater, Initialize)