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.
|
|
|
|
|
2021-11-22 08:34:31 +01:00
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_API_ELECTRON_API_AUTO_UPDATER_H_
|
|
|
|
#define ELECTRON_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>
|
|
|
|
|
2020-07-28 11:04:34 -07:00
|
|
|
#include "gin/wrappable.h"
|
2019-06-19 13:46:59 -07:00
|
|
|
#include "shell/browser/auto_updater.h"
|
2020-07-28 11:04:34 -07:00
|
|
|
#include "shell/browser/event_emitter_mixin.h"
|
2019-06-19 13:46:59 -07:00
|
|
|
#include "shell/browser/window_list_observer.h"
|
2013-06-03 17:57:37 +08:00
|
|
|
|
2024-07-29 12:42:57 -05:00
|
|
|
namespace gin {
|
|
|
|
template <typename T>
|
|
|
|
class Handle;
|
|
|
|
} // namespace gin
|
|
|
|
|
2022-06-29 12:55:47 -07:00
|
|
|
namespace electron::api {
|
2013-06-03 17:57:37 +08:00
|
|
|
|
2024-09-04 18:40:02 -05:00
|
|
|
class AutoUpdater final : public gin::Wrappable<AutoUpdater>,
|
|
|
|
public gin_helper::EventEmitterMixin<AutoUpdater>,
|
|
|
|
public auto_updater::Delegate,
|
|
|
|
private 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
|
|
|
|
2020-07-28 11:04:34 -07:00
|
|
|
// gin::Wrappable
|
|
|
|
static gin::WrapperInfo kWrapperInfo;
|
|
|
|
gin::ObjectTemplateBuilder GetObjectTemplateBuilder(
|
|
|
|
v8::Isolate* isolate) override;
|
|
|
|
const char* GetTypeName() override;
|
2016-04-25 10:17:54 +09:00
|
|
|
|
2021-11-03 12:41:45 +01:00
|
|
|
// disable copy
|
|
|
|
AutoUpdater(const AutoUpdater&) = delete;
|
|
|
|
AutoUpdater& operator=(const AutoUpdater&) = delete;
|
|
|
|
|
2013-06-03 17:57:37 +08:00
|
|
|
protected:
|
2020-07-28 11:04:34 -07:00
|
|
|
AutoUpdater();
|
2016-04-25 10:17:54 +09:00
|
|
|
~AutoUpdater() override;
|
2013-06-03 17:57:37 +08:00
|
|
|
|
2024-06-20 10:49:07 +02:00
|
|
|
// auto_updater::Delegate:
|
2021-05-31 18:46:25 -07:00
|
|
|
void OnError(const std::string& message) 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();
|
2014-04-17 17:26:21 +08:00
|
|
|
void QuitAndInstall();
|
2013-06-03 17:57:37 +08:00
|
|
|
};
|
|
|
|
|
2022-06-29 12:55:47 -07:00
|
|
|
} // namespace electron::api
|
2013-06-03 17:57:37 +08:00
|
|
|
|
2021-11-22 08:34:31 +01:00
|
|
|
#endif // ELECTRON_SHELL_BROWSER_API_ELECTRON_API_AUTO_UPDATER_H_
|