-
Notifications
You must be signed in to change notification settings - Fork 1
/
electron-updater.ts
152 lines (138 loc) · 5.22 KB
/
electron-updater.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
'use strict';
import {app, dialog, shell, autoUpdater} from 'electron';
var _log: any, log = () => { _log = _log || require('electron-log'); return _log; };
var _Version: any, Version = () => { _Version = _Version || require('github-version-compare').Version; return _Version; };
var packagejson: any = require('./package.json');
var SIGNED = packagejson.build_status.signed == 'developer';
// progress
// 1. checking version.
// 2. found new latest version.
// 3. downloading new app.
// 4. new app downloaded.
// 5. update application.
class FnUpdater implements yubo.FnUpdater {
constructor() {}
checkForUpdates(): void {
this.checkAppVersion();
}
private checkAppVersion(): void {
const repository = 'taku-o/myukkurivoice';
const vobj: GithubVersionCompare.IVersion = new (Version())(repository, packagejson);
vobj.pull().then((version: GithubVersionCompare.IVersion) => {
if (version.hasLatestVersion()) {
this.showUpdateConfirmDialog(version);
} else {
this.showIsLatestAppDialog();
}
})
.catch((err: Error) => {
this.showProgressMessage(-1, 'バージョン情報の取得に失敗しました。');
this.showUpdaterErrorDialog('バージョン情報の取得に失敗しました。', err);
});
this.showProgressMessage(0.2, '最新バージョンがあるか確認しています (1/5)');
}
private showIsLatestAppDialog(): void {
const dialogOptions = {
type: 'info',
title: 'Application Version Check.',
message: 'アプリのバージョンは最新です。',
buttons: ['OK'],
defaultId: 0,
cancelId: 0,
};
dialog.showMessageBox(dialogOptions);
this.showProgressMessage(-1, 'アプリのバージョンは最新です。');
}
private showUpdateConfirmDialog(version: GithubVersionCompare.IVersion): void {
const buttons = SIGNED?
['Close', 'Show Download Page', 'Download And Install']:
['Close', 'Show Download Page'];
const dialogOptions = {
type: 'info',
title: 'Application Version Check.',
message: '新しいバージョンのアプリが見つかりました。',
buttons: buttons,
defaultId: 0,
cancelId: 0,
};
dialog.showMessageBox(dialogOptions)
.then((result) => {
const btnId: number = result.response;
if (btnId == 1) {
shell.openExternal(version.latestReleaseUrl);
}
if (btnId == 2) {
this.startAutoUpdaterEvents();
}
});
if (SIGNED) {
this.showProgressMessage(0.4, '新しいバージョンのアプリが見つかりました。(2/5)');
} else {
this.showProgressMessage(-1, '新しいバージョンのアプリが見つかりました。');
}
}
private startAutoUpdaterEvents(): void {
// register events
autoUpdater.on('update-downloaded', (event, releaseNotes, releaseName) => {
this.showQuitAndInstallDialog(releaseName);
});
autoUpdater.on('update-not-available', () => {
this.showUpdaterErrorDialog('最新版のアプリの取得に失敗しました。', null);
this.showProgressMessage(-1, '最新版のアプリの取得に失敗しました。');
});
autoUpdater.on('error', (err: Error) => {
this.showUpdaterErrorDialog('アプリのアップデート中にエラーが発生しました。', err);
this.showProgressMessage(-1, 'アプリのアップデート中にエラーが発生しました。');
});
// setup feed url
const server = 'https://update.electronjs.org';
const feed = `${server}/taku-o/myukkurivoice/${process.platform}-${process.arch}/${app.getVersion()}`;
autoUpdater.setFeedURL({
url: feed,
serverType: 'json',
});
// update
autoUpdater.checkForUpdates();
this.showProgressMessage(0.6, '最新版のアプリをダウンロードします。(3/5)');
}
private showQuitAndInstallDialog(releaseName: string): void {
const dialogOptions = {
type: 'info',
buttons: ['Restart', 'Later'],
title: 'Application Updated.',
message: releaseName,
detail: '新しいアプリのダウンロードが完了しました。アプリを再起動して更新を適用します。',
};
dialog.showMessageBox(dialogOptions)
.then((result) => {
const btnId: number = result.response;
if (btnId === 0) {
autoUpdater.quitAndInstall();
this.showProgressMessage(1.0, 'アプリを再起動して更新を適用します。(5/5)');
}
});
this.showProgressMessage(0.8, '新しいアプリのダウンロードが完了しました。(4/5)');
}
private showProgressMessage(progress: number, message: string): void {
const myApp = ((this as unknown) as yubo.IMYukkuriVoice);
if (myApp.mainWindow) {
myApp.mainWindow.webContents.send('info', message);
myApp.mainWindow.setProgressBar(progress);
}
}
private showUpdaterErrorDialog(message: string, err: Error): void {
if (err) {
log().error(err);
}
const dialogOptions = {
type: 'error',
title: 'Application Version Check Error.',
message: message,
buttons: ['OK'],
defaultId: 0,
cancelId: 0,
};
dialog.showMessageBox(dialogOptions);
}
}
export default FnUpdater;