updater.js 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. import { LOAD_URL } from "./../config";
  2. import { app, ipcMain, BrowserWindow } from 'electron'
  3. import { autoUpdater } from 'electron-updater'
  4. import logger from '../log.js'
  5. const isdev = process.env.NODE_ENV == "development"
  6. const loadURL = isdev
  7. ? `${process.env.WEBPACK_DEV_SERVER_URL}#/update`
  8. : `${LOAD_URL}#update`;
  9. const iconSrc = __static + "/images/icon.ico";
  10. // 服务器地址
  11. const server = 'http://testadmin.xklr.net:8601'
  12. const url = isdev ? __dirname : `${server}/appupdatedoc/`
  13. console.log(15, url)
  14. let updateWin = null;
  15. // 自动检测更新
  16. export default function checkUpdate() {
  17. try {
  18. if (updateWin !== null) {
  19. return false
  20. }
  21. // 创建更新窗口
  22. async function createWindow() {
  23. updateWin = new BrowserWindow({
  24. title: '星空路人-更新',
  25. icon: iconSrc,
  26. height: 80,
  27. width: 250,
  28. show: true,
  29. titleBarStyle: "hiddenInset",
  30. frame: true,
  31. fullscreenable: false,
  32. minimizable: false,
  33. maximizable: false,
  34. transparent: false,
  35. skipTaskbar: false, // 任务栏中不显示窗口
  36. autoHideMenuBar: true,
  37. enableLargerThanScreen: false,
  38. resizable: isdev,
  39. closable: true,
  40. hasShadow: process.platform !== "darwin",
  41. alwaysOnTop: true,
  42. webPreferences: {
  43. devTools: false,//isdev
  44. contextIsolation: false,
  45. sandbox: false,
  46. nodeIntegration: true,
  47. enableRemoteModule: true,
  48. }
  49. })
  50. updateWin.loadURL(loadURL);
  51. if (process.env.WEBPACK_DEV_SERVER_URL) {
  52. updateWin.webContents.openDevTools();
  53. }
  54. }
  55. createWindow();
  56. autoUpdater.autoDownload = true
  57. ipcMain.on('sendurl', (e, option) => {
  58. console.log(1, option)
  59. if (!option.url) {
  60. updateWin.webContents.send('state1', 5)
  61. } else {
  62. autoUpdater.setFeedURL(option.url + '/appupdatedoc/')
  63. autoUpdater.checkForUpdates()
  64. }
  65. })
  66. //默认会自动下载新版本,如果不想自动下载,设置autoUpdater.autoDownload = false
  67. // if (process.platform == 'darwin') {
  68. // // 安装包放在了服务端`darwin`目录下
  69. // autoUpdater.setFeedURL(url)
  70. // // autoUpdater.setFeedURL('http://testadmin.xklr.net:8601/app') //设置要检测更新的路径
  71. // } else {
  72. // // 同理
  73. // autoUpdater.setFeedURL(url)
  74. // }
  75. // 检测是否有新版本
  76. logger.info('38:' + url)
  77. // !isdev ? autoUpdater.checkForUpdates() : ''
  78. // autoUpdater.checkForUpdates()
  79. autoUpdater.on('checking-for-update', res => {
  80. console.log("获取版本信息:" + res)
  81. logger.info('76:' + res)
  82. updateWin.webContents.send('state1', 0)
  83. })
  84. autoUpdater.on('update-not-available', res => {
  85. console.log("没有可更新版本:" + res)
  86. logger.info('82:' + res)
  87. updateWin.hide()
  88. updateWin.webContents.send('state1', 2)
  89. })
  90. //监听'update-available'事件,发现有新版本时触发
  91. autoUpdater.on('update-available', (res) => {
  92. logger.info('89:' + res)
  93. //自动下载
  94. // autoUpdater.downloadUpdate()
  95. updateWin.webContents.send('state1', 3)
  96. })
  97. // 下载进度
  98. autoUpdater.on('download-progress', res => {
  99. logger.info("下载监听:" + res)
  100. updateWin.webContents.send('downloadProgress', res)
  101. })
  102. //监听'update-downloaded'事件,新版本下载完成时触发
  103. autoUpdater.on('update-downloaded', () => {
  104. updateWin.webContents.send('state1', 4)
  105. updateWin.hide()
  106. autoUpdater.quitAndInstall()
  107. app.quit()
  108. // dialog.showMessageBox({
  109. // type: 'info',
  110. // title: '应用更新',
  111. // message: '发现新版本,是否更新?',
  112. // buttons: ['是', '否']
  113. // }).then((buttonIndex) => {
  114. // if (buttonIndex.response == 0) { //选择是,则退出程序,安装新版本
  115. // autoUpdater.quitAndInstall()
  116. // app.quit()
  117. // }
  118. // })
  119. })
  120. // 监听'error'事件
  121. autoUpdater.on('error', (err) => {
  122. logger.info('updater-118:' + err)
  123. updateWin.webContents.send('state1', 1)
  124. })
  125. } catch (error) {
  126. logger.info("报错116:" + error)
  127. }
  128. }