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