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.
|
|
|
|
|
|
|
|
#ifndef ATOM_BROWSER_API_ATOM_API_AUTO_UPDATER_H_
|
|
|
|
#define ATOM_BROWSER_API_ATOM_API_AUTO_UPDATER_H_
|
|
|
|
|
2014-03-16 09:13:06 +08:00
|
|
|
#include <string>
|
|
|
|
|
2014-04-17 17:26:21 +08:00
|
|
|
#include "atom/browser/api/event_emitter.h"
|
2015-10-23 15:40:56 +08:00
|
|
|
#include "atom/browser/auto_updater.h"
|
|
|
|
#include "atom/browser/window_list_observer.h"
|
2016-06-13 09:32:24 +09:00
|
|
|
#include "native_mate/arguments.h"
|
2014-04-17 17:26:21 +08:00
|
|
|
#include "native_mate/handle.h"
|
2013-06-03 17:57:37 +08:00
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
namespace api {
|
|
|
|
|
2016-04-25 10:17:54 +09:00
|
|
|
class AutoUpdater : public mate::EventEmitter<AutoUpdater>,
|
2015-10-23 15:40:56 +08:00
|
|
|
public auto_updater::Delegate,
|
|
|
|
public WindowListObserver {
|
2013-06-03 17:57:37 +08:00
|
|
|
public:
|
2014-04-17 17:26:21 +08:00
|
|
|
static mate::Handle<AutoUpdater> Create(v8::Isolate* isolate);
|
2013-06-03 17:57:37 +08:00
|
|
|
|
2016-04-25 10:17:54 +09:00
|
|
|
static void BuildPrototype(v8::Isolate* isolate,
|
2016-08-02 18:08:12 +09:00
|
|
|
v8::Local<v8::FunctionTemplate> prototype);
|
2016-04-25 10:17:54 +09:00
|
|
|
|
2013-06-03 17:57:37 +08:00
|
|
|
protected:
|
2016-04-25 10:17:54 +09:00
|
|
|
explicit AutoUpdater(v8::Isolate* isolate);
|
|
|
|
~AutoUpdater() override;
|
2013-06-03 17:57:37 +08:00
|
|
|
|
2015-10-23 15:40:56 +08:00
|
|
|
// Delegate implementations.
|
2015-01-09 17:24:36 -08:00
|
|
|
void OnError(const std::string& error) override;
|
2017-07-27 11:52:19 +10:00
|
|
|
void OnError(const std::string& message, const int code,
|
|
|
|
const std::string& domain);
|
2015-01-09 17:24:36 -08:00
|
|
|
void OnCheckingForUpdate() override;
|
|
|
|
void OnUpdateAvailable() override;
|
|
|
|
void OnUpdateNotAvailable() override;
|
2015-10-23 15:40:56 +08:00
|
|
|
void OnUpdateDownloaded(const std::string& release_notes,
|
|
|
|
const std::string& release_name,
|
|
|
|
const base::Time& release_date,
|
|
|
|
const std::string& update_url) override;
|
|
|
|
|
|
|
|
// WindowListObserver:
|
|
|
|
void OnWindowAllClosed() override;
|
2013-06-03 17:59:34 +08:00
|
|
|
|
2014-04-17 17:26:21 +08:00
|
|
|
private:
|
2016-07-15 00:04:48 +12:00
|
|
|
std::string GetFeedURL();
|
2016-06-13 09:32:24 +09:00
|
|
|
void SetFeedURL(const std::string& url, mate::Arguments* args);
|
2014-04-17 17:26:21 +08:00
|
|
|
void QuitAndInstall();
|
2013-06-03 17:59:34 +08:00
|
|
|
|
2013-06-03 17:57:37 +08:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(AutoUpdater);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace api
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
|
|
|
#endif // ATOM_BROWSER_API_ATOM_API_AUTO_UPDATER_H_
|