mui app检查更新,支持整包和wgt检查更新

相关代码:

ApplicationUpdateTool.js

function ApplicationUpdateTool() {

	var appStoreId = "xxxx";

	// var appStoreURL_cn = "https://itunes.apple.com/cn/lookup?id=" + appStoreId;
	// var appStoreURL = "https://itunes.apple.com/lookup?id=" + appStoreId;

	var appStoreURL_cn = "https://itunes.apple.com/cn/lookup";
	var appStoreURL = "https://itunes.apple.com/lookup";
	
	var urls = new URLs();
	var portNumber = urls.getPortNumber(); 

	var apkURL = function(version) {
		return portNumber + "VersionUpdate?VersionCode=" + version;
	};

	var wgtURL = function(type, version) {
		return portNumber + "wdtVersionUpdate?type=" + type + "&VersionCode=" + version;
	};

	function ajaxData(url, success, error) {
		mui.ajax(url, {
			data:{id:appStoreId},
			dataType: 'json',
			type: 'post',
			timeout: 20000,
			success: function(data) {
				success(data);
			},
			error: function(xhr, type, errorThrown) {
				success(error);
			}
		});
	}

	/**
	 * 检查安装包
	 * CallBackWgtUpdate - 回调检查wgt更新,如果有安装包更新,就不会回调
	 */
	function examinationInstallationPackage(CallBackWgtUpdate) {
		function toNum(a) {
			var a = a.toString();
			var c = a.split('.');
			var num_place = ["", "0", "00", "000", "0000"],
				r = num_place.reverse();
			for (var i = 0; i < c.length; i++) {
				var len = c[i].length;
				c[i] = r[len] + c[i];
			}
			var res = c.join('');
			return res;
		}

		function cpr_version(newV, oldV) {
			var _a = toNum(newV),
				_b = toNum(oldV);
			if (_a > _b) {
				return true;
			} else {
				return false;
			}
		}
		var oldV = plus.runtime.version;
		if (plus.os.name == 'Android') {
			mui.ajax(apkURL(oldV), {
				dataType: 'text',
				type: 'get',
				timeout: 20000,
				success: function(data) {
					if (data != null && data.indexOf("apk") >= 0) {
						mui.confirm('发现android新版本', '检查更新', ['立即更新', '下次再说'], function(e) {
							if (e.index == 0) {
								data = data.replace(new RegExp("\"", 'g'), "");
								downWgtOrApk(data, false);
							} else {
								return;
							}
						})
					} else {
						CallBackWgtUpdate();
					}
				},
				error: function(xhr, type, errorThrown) {
					//console.log("error")
				}
			});
		} else if (plus.os.name == 'iOS') {
			var data_cn;
			ajaxData(appStoreURL_cn, function(data) {
				data_cn = data;
				ajaxData(appStoreURL, function(data) {
					
					var currentVersionReleaseDate_cn = "";
					var currentVersionReleaseDate = "";
					
					if (data_cn != null) {
						currentVersionReleaseDate_cn = data_cn.results[0].currentVersionReleaseDate;
						if (currentVersionReleaseDate_cn.indexOf('T') >= 0) {
							currentVersionReleaseDate_cn = currentVersionReleaseDate_cn.split('T')[0];
						}
					}
					if (data != null) {
						currentVersionReleaseDate = data.results[0].currentVersionReleaseDate;
						if (currentVersionReleaseDate.indexOf('T') >= 0) {
							currentVersionReleaseDate = currentVersionReleaseDate.split('T')[0];
						}
					}
					var date_cn = new Date(currentVersionReleaseDate_cn);
					var date = new Date(currentVersionReleaseDate_cn);
					var newData;
					if (data_cn > date) {
						newData = data_cn;
					} else {
						newData = data;
					}

					if (newData != null) {
						var newV = 0;
						try {
							newV = newData.results[0].version;
						} catch (e) {}
						
						if (cpr_version(newV, oldV)) {
							mui.confirm('发现ios新版本', '检查更新', ['立即更新', '下次再说'], function(e) {
								if (e.index == 0) {
									try {
										var trackViewUrl = newData.results[0].trackViewUrl;
										trackViewUrl = trackViewUrl.replace("https", "itms-apps");
										plus.runtime.openURL(trackViewUrl);
									} catch (e) {

									}
								} else {
									return;
								}
							});
						} else {
							CallBackWgtUpdate();
						}
					}

				}, function(err) {

				});
			}, function(err) {

			});
		}
	}

	function examinationWgt() {
		function updateWgt(url) {
			mui.ajax(url, {
				dataType: 'text',
				type: 'get',
				timeout: 20000,
				success: function(data) {
					if (data != null && data.indexOf("wgt") >= 0) {
						mui.confirm('发现在线升级资源', '检查更新', ['立即更新', '下次再说'], function(e) {
							if (e.index == 0) {
								data = data.replace(new RegExp("\"", 'g'), "");
								downWgtOrApk(data, true);
							} else {
								return;
							}
						})
					}
				},
				error: function(xhr, type, errorThrown) {
					
				}
			});
		}

		plus.runtime.getProperty(plus.runtime.appid, function(inf) {
			var type;
			if (plus.os.name == 'iOS') {
				type = 'iOS';
			} else if (plus.os.name == 'Android') {
				type = 'Android';
			}
			updateWgt(wgtURL(type, inf.version));
		});
	}

	function downWgtOrApk(url, isWgt) {
		console.log(url);
		var wgtWaiting = plus.nativeUI.showWaiting("下载文件...");
		var task = plus.downloader.createDownload(url, {
			filename: "_downloads/"
		}, function(d, status) {
			if (status == 200) {
				if (isWgt) {
					installWgt(d.filename); // 安装wgt包
				} else {
					installApk(d.filename); // 安装apk包
				}
			} else {
				mui.alert("下载失败!");
			}
			wgtWaiting.close();
		})

		task.addEventListener("statechanged", function(download, status) {
			switch (download.state) {
				case 2:
					//wgtWaiting.setTitle("已连接到服务器");
					break;
				case 3:
					setTimeout(function() {
						var percent = download.downloadedSize / download.totalSize * 100;
						wgtWaiting.setTitle("已下载 " + parseInt(percent) + "%");
					}, 0);
					break;
				case 4:
					//wgtWaiting.setTitle("下载完成");
					break;
			}
		});
		task.start();
	};

	// 更新应用资源
	function installWgt(path) {
		plus.nativeUI.showWaiting("安装wgt文件...");
		plus.runtime.install(path, {}, function() {
			plus.nativeUI.closeWaiting();
			plus.nativeUI.alert("应用资源更新完成!", function() {
				plus.runtime.restart();
			});
		}, function(e) {
			plus.nativeUI.closeWaiting();
			plus.nativeUI.alert("安装wgt文件失败[" + e.code + "]:" + e.message);
		});
	}

	function installApk(path) {
		plus.runtime.install(path, {}, function() {

		}, function(e) {
			plus.nativeUI.closeWaiting();
			plus.nativeUI.alert("安装apk文件失败[" + e.code + "]:" + e.message);
		});
	}

	this.start = function() {
		mui.plusReady(function() {
			examinationInstallationPackage(function() {
				examinationWgt();
			});
		});
	}
}

使用:

	<script type="text/javascript">
        new ApplicationUpdateTool().start();
	</script>

 

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值