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.
|
|
|
|
|
2020-02-04 12:19:40 -08:00
|
|
|
#ifndef SHELL_BROWSER_API_ELECTRON_API_AUTO_UPDATER_H_
|
|
|
|
#define SHELL_BROWSER_API_ELECTRON_API_AUTO_UPDATER_H_
|
2013-06-03 17:57:37 +08:00
|
|
|
|
2014-03-16 09:13:06 +08:00
|
|
|
#include <string>
|
|
|
|
|
2019-10-18 09:31:29 +09:00
|
|
|
#include "gin/handle.h"
|
2019-06-19 13:46:59 -07:00
|
|
|
#include "shell/browser/auto_updater.h"
|
|
|
|
#include "shell/browser/window_list_observer.h"
|
2019-10-21 16:05:40 +09:00
|
|
|
#include "shell/common/gin_helper/event_emitter.h"
|
2013-06-03 17:57:37 +08:00
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
namespace electron {
|
2013-06-03 17:57:37 +08:00
|
|
|
|
|
|
|
namespace api {
|
|
|
|
|
2019-10-25 22:03:28 +09:00
|
|
|
class AutoUpdater : public gin_helper::EventEmitter<AutoUpdater>,
|
|
|
|
public auto_updater::Delegate,
|
|
|
|
public WindowListObserver {
|
2013-06-03 17:57:37 +08:00
|
|
|
public:
|
2019-10-18 09:31:29 +09:00
|
|
|
static gin::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;
|
2018-04-17 21:44:10 -04:00
|
|
|
void OnError(const std::string& message,
|
|
|
|
const int code,
|
2018-04-17 16:03:51 -07:00
|
|
|
const std::string& domain) override;
|
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();
|
2019-10-18 09:31:29 +09:00
|
|
|
void SetFeedURL(gin_helper::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
|
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
} // namespace electron
|
2013-06-03 17:57:37 +08:00
|
|
|
|
2020-02-04 12:19:40 -08:00
|
|
|
#endif // SHELL_BROWSER_API_ELECTRON_API_AUTO_UPDATER_H_
|