emis-app/common/appUpdate/index.js

176 lines
4.6 KiB
JavaScript
Raw Normal View History

2024-09-02 07:55:35 +00:00
import {
confirmModal,
showLoading,
hideLoading,
showToast
} from "@/common/untool"
2024-06-16 03:54:33 +00:00
import * as apiService from "@/common/api"
2024-06-15 17:56:52 +00:00
2024-09-02 07:55:35 +00:00
export const getSystemInfo = () => {
2024-06-15 17:56:52 +00:00
let info = uni.getSystemInfoSync()
console.log('getSystemInfo=====', info)
return info
}
2024-09-02 07:55:35 +00:00
export const getCurrentAppInfo = () => {
return new Promise((resolve, reject) => {
2024-06-15 17:56:52 +00:00
// 保存 app 版本信息
// #ifdef APP-PLUS
2024-09-02 07:55:35 +00:00
plus.runtime.getProperty(plus.runtime.appid, (widgetInfo) => {
2024-06-15 17:56:52 +00:00
console.log('plus.runtime.appid=========', plus.runtime.appid);
2024-09-02 07:55:35 +00:00
console.log('widgetInfo=========', widgetInfo);
2024-06-15 17:56:52 +00:00
widgetInfo._appVersion = `${widgetInfo.version}.${widgetInfo.versionCode}`
resolve(widgetInfo)
2024-09-02 07:55:35 +00:00
});
2024-06-15 17:56:52 +00:00
// #endif
2024-09-02 07:55:35 +00:00
2024-06-19 07:57:49 +00:00
// #ifndef APP-PLUS
// TODO MOCK数据
resolve({})
// #endif
2024-06-15 17:56:52 +00:00
})
}
2024-09-02 07:55:35 +00:00
const installNewApk = (url) => {
2024-06-15 18:31:52 +00:00
console.log("installNewApk url===", url)
2024-09-02 07:55:35 +00:00
return new Promise((resolve, reject) => {
2024-06-16 01:48:22 +00:00
showLoading('正在下载资源文件,请稍等...')
2024-06-15 17:56:52 +00:00
let downInstance = uni.downloadFile({
url: url,
success: (downloadResult) => {
2024-06-15 18:31:52 +00:00
console.log("===downloadResult===", downloadResult)
2024-06-15 17:56:52 +00:00
hideLoading()
2024-09-02 07:55:35 +00:00
if (downloadResult.statusCode === 200) {
2024-06-15 17:56:52 +00:00
showLoading('正在安装...')
2024-09-02 07:55:35 +00:00
// #ifdef APP-PLUS
plus.runtime.install(downloadResult.tempFilePath, {
force: true
}, function() {
2024-06-15 17:56:52 +00:00
hideLoading()
2024-09-02 07:55:35 +00:00
console.log('install success...');
plus.runtime.restart();
2024-06-15 17:56:52 +00:00
resolve()
2024-09-02 07:55:35 +00:00
}, function(e) {
2024-06-15 17:56:52 +00:00
hideLoading()
2024-09-02 07:55:35 +00:00
console.error('install fail...');
2024-06-15 17:56:52 +00:00
reject()
2024-09-02 07:55:35 +00:00
});
// #endif
} else {
2024-06-15 18:31:52 +00:00
showToast(`文件下载失败, 错误码:${downloadResult.statusCode}`)
2024-06-15 17:56:52 +00:00
reject()
}
},
2024-09-02 07:55:35 +00:00
fail: (err) => {
2024-06-15 18:31:52 +00:00
console.log('download file err...', err);
showToast("文件下载失败")
2024-06-15 17:56:52 +00:00
hideLoading()
}
});
2024-09-02 07:55:35 +00:00
downInstance.onProgressUpdate((res) => {
let {
totalBytesExpectedToWrite,
totalBytesWritten
} = res
2024-06-15 17:56:52 +00:00
let percent = (totalBytesWritten / totalBytesExpectedToWrite) * 100
2024-06-16 01:48:22 +00:00
// showLoading(`下载进度:${parseInt(percent)}%`)
2024-09-02 07:55:35 +00:00
})
2024-06-15 17:56:52 +00:00
})
}
2024-09-02 07:55:35 +00:00
const getLastAppInfo = async (curAppInfo) => {
let {
version,
versionCode
} = curAppInfo
let {
deviceId
} = getSystemInfo()
let res = await apiService.getLastAppVersion({
version,
versionCode,
deviceId
})
2024-06-16 03:54:33 +00:00
console.log("getLastAppInfo res====", res)
// res.data = {
// version: '1.0.0',
// versionCode: 100,
// apkUrl: 'http://192.168.1.7:5173/static/t.apk',
// wgtUrl: 'http://192.168.1.7:5173/static/t.wgt',
// whiteDeviceIds: ['F9E778C90D0E9A8DA9D95AA97B00A3FB'],
// remark: '',
// }
return res.data
2024-06-15 17:56:52 +00:00
}
2024-09-02 07:55:35 +00:00
const compareInfo = (curAppInfo, lastAppInfo) => {
let hasNewVersion = false
2024-06-15 17:56:52 +00:00
let url = ''
// 强制更新app
2024-09-02 07:55:35 +00:00
if (lastAppInfo.version && curAppInfo.version != lastAppInfo.version) {
2024-06-15 17:56:52 +00:00
hasNewVersion = true
url = lastAppInfo.apkUrl
}
// 热更新
2024-09-02 07:55:35 +00:00
if (!url && lastAppInfo.versionCode && curAppInfo.versionCode != lastAppInfo.versionCode) {
2024-06-15 17:56:52 +00:00
hasNewVersion = true
url = lastAppInfo.wgtUrl
}
// 判断是否走白名单更新
2024-09-02 07:55:35 +00:00
if (url && lastAppInfo.whiteDeviceIds?.length > 0) {
2024-06-15 17:56:52 +00:00
let sysInfo = getSystemInfo()
hasNewVersion = lastAppInfo.whiteDeviceIds.indexOf(sysInfo?.deviceId) > -1
}
2024-09-02 07:55:35 +00:00
2024-06-15 17:56:52 +00:00
return {
hasNewVersion,
url,
lastAppInfo
}
}
2024-09-02 07:55:35 +00:00
export const getCompareVersion = async () => {
2024-06-15 17:56:52 +00:00
let curAppInfo = await getCurrentAppInfo()
let lastAppInfo = await getLastAppInfo(curAppInfo)
let cmpRes = await compareInfo(curAppInfo, lastAppInfo)
2024-06-15 18:31:52 +00:00
console.log("checkUpdate cmpRes ====", cmpRes)
2024-06-19 07:57:49 +00:00
return cmpRes
}
2024-09-02 07:55:35 +00:00
export const checkUpdate = async () => {
// app升级检测
// #ifdef APP-PLUS
2024-06-19 07:57:49 +00:00
let cmpRes = await getCompareVersion()
2024-09-02 07:55:35 +00:00
if (cmpRes.hasNewVersion) {
let fmBl = await confirmModal(
`app最新版本:${cmpRes.lastAppInfo.version}.${cmpRes.lastAppInfo.versionCode}, 是否更新?`)
if (fmBl) {
2024-06-15 17:56:52 +00:00
await installNewApk(cmpRes.url)
}
}
2024-06-16 03:54:33 +00:00
return cmpRes
2024-09-02 07:55:35 +00:00
// #endif
//微信小程序检测
// #ifdef MP-WEIXIN
if (wx.canIUse('getUpdateManager')) { //判断当前微信版本是否支持版本更新
const updateManager = wx.getUpdateManager();
updateManager.onCheckForUpdate(async function(res) {
if (res.hasUpdate) { // 请求完新版本信息的回调
updateManager.onUpdateReady(async function() {
let cbl = await confirmModal('新版本已经准备好,是否重启应用?')
if (cbl) { // 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
updateManager.applyUpdate()
}
});
updateManager.onUpdateFailed(function() {
showToast('新版本已经上线啦~,请您删除当前小程序,重新搜索打开哟~')
})
}
})
} else {
showToast('当前微信版本过低,无法使用新功能,请升级到最新微信版本后重试。')
}
// #endif
2024-06-15 17:56:52 +00:00
}