2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-06-03 09:57:37 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
#ifndef SHELL_BROWSER_API_ELECTRON_API_AUTO_UPDATER_H_
|
|
|
|
#define SHELL_BROWSER_API_ELECTRON_API_AUTO_UPDATER_H_
|
2013-06-03 09:57:37 +00:00
|
|
|
|
2014-03-16 01:13:06 +00:00
|
|
|
#include <string>
|
|
|
|
|
2019-10-18 00:31:29 +00:00
|
|
|
#include "gin/handle.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/auto_updater.h"
|
|
|
|
#include "shell/browser/window_list_observer.h"
|
2019-10-21 07:05:40 +00:00
|
|
|
#include "shell/common/gin_helper/event_emitter.h"
|
2013-06-03 09:57:37 +00:00
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2013-06-03 09:57:37 +00:00
|
|
|
|
|
|
|
namespace api {
|
|
|
|
|
2019-10-25 13:03:28 +00:00
|
|
|
class AutoUpdater : public gin_helper::EventEmitter<AutoUpdater>,
|
|
|
|
public auto_updater::Delegate,
|
|
|
|
public WindowListObserver {
|
2013-06-03 09:57:37 +00:00
|
|
|
public:
|
2019-10-18 00:31:29 +00:00
|
|
|
static gin::Handle<AutoUpdater> Create(v8::Isolate* isolate);
|
2013-06-03 09:57:37 +00:00
|
|
|
|
2016-04-25 01:17:54 +00:00
|
|
|
static void BuildPrototype(v8::Isolate* isolate,
|
2016-08-02 09:08:12 +00:00
|
|
|
v8::Local<v8::FunctionTemplate> prototype);
|
2016-04-25 01:17:54 +00:00
|
|
|
|
2013-06-03 09:57:37 +00:00
|
|
|
protected:
|
2016-04-25 01:17:54 +00:00
|
|
|
explicit AutoUpdater(v8::Isolate* isolate);
|
|
|
|
~AutoUpdater() override;
|
2013-06-03 09:57:37 +00:00
|
|
|
|
2015-10-23 07:40:56 +00:00
|
|
|
// Delegate implementations.
|
2015-01-10 01:24:36 +00:00
|
|
|
void OnError(const std::string& error) override;
|
2018-04-18 01:44:10 +00:00
|
|
|
void OnError(const std::string& message,
|
|
|
|
const int code,
|
2018-04-17 23:03:51 +00:00
|
|
|
const std::string& domain) override;
|
2015-01-10 01:24:36 +00:00
|
|
|
void OnCheckingForUpdate() override;
|
|
|
|
void OnUpdateAvailable() override;
|
|
|
|
void OnUpdateNotAvailable() override;
|
2015-10-23 07:40:56 +00: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 09:59:34 +00:00
|
|
|
|
2014-04-17 09:26:21 +00:00
|
|
|
private:
|
2016-07-14 12:04:48 +00:00
|
|
|
std::string GetFeedURL();
|
2019-10-18 00:31:29 +00:00
|
|
|
void SetFeedURL(gin_helper::Arguments* args);
|
2014-04-17 09:26:21 +00:00
|
|
|
void QuitAndInstall();
|
2013-06-03 09:59:34 +00:00
|
|
|
|
2013-06-03 09:57:37 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(AutoUpdater);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace api
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|
2013-06-03 09:57:37 +00:00
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
#endif // SHELL_BROWSER_API_ELECTRON_API_AUTO_UPDATER_H_
|