aboutsummaryrefslogtreecommitdiffstats
path: root/src/electron/ipc-api/autoUpdate.js
blob: 7bc193e2d69579114646f0bfdc8e71072a08fa2a (plain) (blame)
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
import { app, ipcMain } from 'electron';
import { autoUpdater } from 'electron-updater';

export default (params) => {
  if (process.platform === 'darwin' || process.platform === 'win32') {
    // autoUpdater.setFeedURL(updateUrl);
    ipcMain.on('autoUpdate', (event, args) => {
      try {
        autoUpdater.allowPrerelease = Boolean(params.settings.get('beta'));
        if (args.action === 'check') {
          autoUpdater.checkForUpdates();
        } else if (args.action === 'install') {
          console.log('install update');
          autoUpdater.quitAndInstall();
          // we need to send a quit event
          setTimeout(() => {
            app.quit();
          }, 20);
        }
      } catch (e) {
        console.error(e);
        event.sender.send('autoUpdate', { error: true });
      }
    });

    autoUpdater.on('update-not-available', () => {
      console.log('update-not-available');
      params.mainWindow.webContents.send('autoUpdate', { available: false });
    });

    autoUpdater.on('update-available', () => {
      console.log('update-available');
      params.mainWindow.webContents.send('autoUpdate', { available: true });
    });

    autoUpdater.on('download-progress', (progressObj) => {
      let logMessage = `Download speed: ${progressObj.bytesPerSecond}`;
      logMessage = `${logMessage} - Downloaded ${progressObj.percent}%`;
      logMessage = `${logMessage} (${progressObj.transferred}/${progressObj.total})`;

      console.log(logMessage);
    });

    autoUpdater.on('update-downloaded', () => {
      console.log('update-downloaded');
      params.mainWindow.webContents.send('autoUpdate', { downloaded: true });
    });

    autoUpdater.on('error', () => {
      console.log('update-error');
      params.mainWindow.webContents.send('autoUpdate', { error: true });
    });
  }
};