appInit.js 10.7 KB
Newer Older
1
import uniStarterConfig from '@/uni-starter.config.js';
2
import store from '@/store'
DCloud_JSON's avatar
DCloud_JSON 已提交
3
//应用初始化页
4 5 6
// #ifdef APP-PLUS
import checkUpdate from '@/uni_modules/uni-upgrade-center-app/utils/check-update';
import callCheckVersion from '@/uni_modules/uni-upgrade-center-app/utils/call-check-version';
DCloud_JSON's avatar
321  
DCloud_JSON 已提交
7
import interceptorChooseImage from '@/uni_modules/json-interceptor-chooseImage/js_sdk/main.js';
8
// #endif
9
const db = uniCloud.database()
10 11
export default async function() {
	let loginConfig = uniStarterConfig.router.login
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
	// #ifdef APP-PLUS
	await new Promise((callBack)=>{
		plus.oauth.getServices(oauthServices => {
			loginConfig = loginConfig.filter(item=>{
				if(["univerify", "weixin", "apple"].includes(item)){
					let index = oauthServices.findIndex(e=>e.id==item)
					if(index==-1){
						return false
					}else{
						return oauthServices[index].nativeClient
					}
				}else{
					return true
				}
			})
			if(loginConfig.includes('univerify')){ //一键登录 功能预登录
				uni.preLogin({
					provider:'univerify',
					complete: e => {
						console.log(e);
					}
				})
			}
			callBack()
		}, err => {
			console.error('获取服务供应商失败:' + JSON.stringify(err));
		})
	})
	// #endif
	
43
	//非app移除:一键登录、苹果登陆;h5移除微信登陆,如果你做微信公众号登陆需要将此行移除
44 45 46 47 48 49 50 51 52 53 54
	// #ifndef APP-PLUS
		loginConfig = loginConfig.filter(item=>{
			return ![
				'univerify',
				'apple',
			// #ifdef H5
				'weixin'
			// #endif
			].includes(item)
		})
	// #endif
55

56
	uniStarterConfig.router.login = loginConfig
57

58
	// uniStarterConfig挂载到getApp().globalData.config
59
	setTimeout(()=>{
60
		getApp({allowDefault: true}).globalData.config = uniStarterConfig;
61
	},1)
62
	
63

64
	// 初始化appVersion(仅app生效)
DCloud_JSON's avatar
DCloud_JSON 已提交
65
	initAppVersion();
DCloud_JSON's avatar
321  
DCloud_JSON 已提交
66 67 68 69 70 71
	
	// #ifdef APP-PLUS
	// 实现,路由拦截。当应用无访问摄像头/相册权限,引导跳到设置界面
	interceptorChooseImage()
	// #endif

72 73 74 75 76 77

	//clientDB的错误提示
	function onDBError({
		code, // 错误码详见https://uniapp.dcloud.net.cn/uniCloud/clientdb?id=returnvalue
		message
	}) {
78
		console.log('onDBError');
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
		// 处理错误
		console.log(code,message);
		if([
			'TOKEN_INVALID_INVALID_CLIENTID',
			'TOKEN_INVALID',
			'TOKEN_INVALID_TOKEN_EXPIRED',
			'TOKEN_INVALID_WRONG_TOKEN',
			'TOKEN_INVALID_ANONYMOUS_USER',
		].includes(code)){
			uni.navigateTo({
				url:'/pages/ucenter/login-page/index/index'
			})
		}
	}
	// 绑定clientDB错误事件
	db.on('error', onDBError)
	
	// 解绑clientDB错误事件
	//db.off('error', onDBError)
	db.on('refreshToken', function({
		token,
		tokenExpired
	}) {
		console.log('监听到clientDB的refreshToken',{token,tokenExpired});
		store.commit('user/login', {
			token,
			tokenExpired
		})
	})

	const Debug = true;
	//拦截器封装callFunction
	let callFunctionOption;
	uniCloud.addInterceptor('callFunction',{
113 114 115 116 117 118 119 120 121
		async invoke(option){
			// #ifdef APP-PLUS
				// 判断如果是执行登陆(无论是哪种登陆方式),就记录用户的相关设备id
				if(option.name == 'uni-id-cf'&&(option.data.action == 'register' || option.data.action.slice(0,5) =='login')){
					let oaid =  await new Promise((callBack,fail)=>{
						if (uni.getSystemInfoSync().platform == "android") {
							plus.device.getOAID({
								success:function(e){
									callBack(e.oaid)
122
									// console.log('getOAID success: '+JSON.stringify(e));
123 124
								},
								fail:function(e){
125
									callBack()
126 127 128 129 130 131 132 133 134 135 136 137 138
									console.log('getOAID failed: '+JSON.stringify(e));
								}
							});
						}else{
							callBack()
						}
					})
					
					let imei =  await new Promise((callBack,fail)=>{
						if (uni.getSystemInfoSync().platform == "android") {
							plus.device.getInfo({
								success:function(e){
									callBack(e.imei)
139
									// console.log('getOAID success: '+JSON.stringify(e));
140 141
								},
								fail:function(e){
142
									callBack()
143 144 145 146 147 148 149
									console.log('getOAID failed: '+JSON.stringify(e));
								}
							});
						}else{
							callBack()
						}
					})
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
					
					let push_clientid = '',
					idfa = plus.storage.getItem('idfa')||'';//idfa有需要的用户在应用首次启动时自己获取存储到storage中
					
					try{
						push_clientid = plus.push.getClientInfo().clientid
					}catch(e){
						uni.showModal({
							content: '获取推送标识失败。如果你的应用不需要推送功能,请注释掉本代码块',
							showCancel: false,
							confirmText:"好的"
						});
						console.log(e)
					}
					
165
					let deviceInfo = {
166 167
						push_clientid,// 获取匿名设备标识符
						imei,oaid,idfa
168 169 170
					}
					console.log("重新登陆/注册,获取设备id",deviceInfo);
					option.data.deviceInfo = deviceInfo
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
					
					// #ifndef H5
						//注册可能不仅仅走register接口,还有登陆并注册的接口
						option.data.inviteCode = await new Promise((callBack)=>{
							uni.getClipboardData({
							    success: function (res) {
									if(res.data.slice(0,18) =='uniInvitationCode:'){
										let uniInvitationCode = res.data.slice(18,38)
										console.log('当前用户是其他用户推荐下载的,推荐者的code是:'+uniInvitationCode);
										// uni.showModal({
										// 	content: '当前用户是其他用户推荐下载的,推荐者的code是:'+uniInvitationCode,
										// 	showCancel: false
										// });
										callBack(uniInvitationCode)
										//当前用户是其他用户推荐下载的。这里登记他的推荐者id 为当前用户的myInviteCode。判断如果是注册
									}else{
										callBack(false)
									}
							    },
								fail() {
									callBack(false)
								}
							});
						})
					// #endif
196 197
				}
			// #endif
198
			// console.log(JSON.stringify(option));
199
			callFunctionOption = option
200 201 202 203 204 205 206
		},
		complete(e){
			// console.log(JSON.stringify(e));
		},
		fail(e) { // 失败回调拦截
			if(Debug){
				uni.showModal({
207
					content:JSON.stringify(e),
208 209
					showCancel: false
				});
210
				console.error(e);
211 212 213 214 215 216 217 218 219 220
			}else{
				uni.showModal({
					content: "系统错误请稍后再试!",
					showCancel: false,
					confirmText:"知道了"
				});
			}
			//如果执行错误,检查是否断网
			uni.getNetworkType({
				complete:res => {
221
					// console.log(res);
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
					if (res.networkType == 'none') {
						uni.showToast({
							title: '手机网络异常',
							icon: 'none'
						});
						console.log('手机网络异常');
						let callBack = res=>{
							console.log(res);
							if (res.isConnected) {
								uni.showToast({
									title: '恢复联网自动重新执行',
									icon: 'none'
								});
								console.log(res.networkType,"恢复联网自动重新执行");
								uni.offNetworkStatusChange(e=>{
									console.log("移除监听成功",e);
								})
								//恢复联网自动重新执行
								uniCloud.callFunction(callFunctionOption)
								uni.offNetworkStatusChange(callBack);
							}
						}
						uni.onNetworkStatusChange(callBack);
					}
				}
			});
		},
		success:(e)=>{
			console.log(e);
			const {token,tokenExpired} = e.result
			if (token && tokenExpired) {
				store.commit('user/login', {
					token,
					tokenExpired
				})
			}
			switch (e.result.code){
				case 403:
260 261 262 263 264 265 266 267
					uni.navigateTo({
						url: "/pages/ucenter/login-page/index/index"
					})
					break;
				case 30203:
					uni.navigateTo({
						url: "/pages/ucenter/login-page/index/index"
					})
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
					break;
				case 50101:
					uni.showToast({
						title: e.result.msg,
						icon: 'none',
						duration:2000
					});
					break;
				default:
					console.log('code的值是:'+e.result.code,'可以在这里插入,自动处理响应体');
					break;
			}
		}
	})

DCloud_JSON's avatar
DCloud_JSON 已提交
283
	//自定义路由拦截
DCloud_JSON's avatar
DCloud_JSON 已提交
284
	const {"router": {needLogin,login} } = uniStarterConfig //需要登录的页面
285
	let list = ["navigateTo", "redirectTo", "reLaunch", "switchTab"];
DCloud_JSON's avatar
DCloud_JSON 已提交
286
	list.forEach(item => { //用遍历的方式分别为,uni.navigateTo,uni.redirectTo,uni.reLaunch,uni.switchTab这4个路由方法添加拦截器
287 288
		uni.addInterceptor(item, {
			invoke(e) { // 调用前拦截
289
				// console.log(e);
DCloud_JSON's avatar
DCloud_JSON 已提交
290
				//获取用户的token
291
				const token = uni.getStorageSync('uni_id_token')
292
				//token是否已失效
293
				const tokenExpired = uni.getStorageSync('uni_id_token_expired') < Date.now()
DCloud_JSON's avatar
DCloud_JSON 已提交
294
				//获取当前页面路径(即url去掉"?"和"?"后的参数)
295
				const url = e.url.split('?')[0]
DCloud_JSON's avatar
DCloud_JSON 已提交
296
				//控制登录优先级
297
				let pages = getCurrentPages();
298
				if ( //判断当前窗口是否为登陆页面,如果是则不重定向路由
299 300 301 302
					url == '/pages/ucenter/login-page/index/index'
					&&
					pages[pages.length - 1].route.split('/')[2]!='login-page'
				) {
303 304 305
					
					console.log(9527777,login);
					
DCloud_JSON's avatar
DCloud_JSON 已提交
306
					//一键登录(univerify)、账号(username)、验证码登录(短信smsCode)
307
					if (login[0] == 'username') {
308
						e.url = "/pages/ucenter/login-page/pwd-login/pwd-login"
309 310 311
					}else{
						if(e.url == url) { e.url += '?' } //添加参数之前判断是否带了`?`号如果没有就补上,因为当开发场景本身有参数的情况下是已经带了`?`号
						e.url += "type="+login[0]
312
					}
DCloud_JSON's avatar
DCloud_JSON 已提交
313
				}else{
DCloud_JSON's avatar
DCloud_JSON 已提交
314
					//拦截强制登录页面
315
					if (needLogin.includes(url) && (token == ''||tokenExpired)) {
DCloud_JSON's avatar
DCloud_JSON 已提交
316
						uni.showToast({
DCloud_JSON's avatar
DCloud_JSON 已提交
317
							title: '请先登录',
DCloud_JSON's avatar
DCloud_JSON 已提交
318 319
							icon: 'none'
						})
320
						uni.navigateTo({
DCloud_JSON's avatar
DCloud_JSON 已提交
321 322
							url: "/pages/ucenter/login-page/index/index"
						})
323
						return false
DCloud_JSON's avatar
DCloud_JSON 已提交
324
					}
325 326 327 328
				}
			},
			fail(err) { // 失败回调拦截 
				console.log(err);
329 330 331 332 333 334 335
				if(Debug){
					console.log(err);
					uni.showModal({
						content: JSON.stringify(err),
						showCancel: false
					});
				}
336 337 338 339
			},
		})
	})
// #ifdef APP-PLUS
DCloud_JSON's avatar
DCloud_JSON 已提交
340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356
// 监听并提示设备网络状态变化
	uni.onNetworkStatusChange(res=> {
	    console.log(res.isConnected);
	    console.log(res.networkType);
		if(res.networkType!='none'){
			uni.showToast({
				title:'当前网络类型:'+res.networkType,
				icon:'none',
				duration:3000
			})
		}else{
			uni.showToast({
				title:'网络类型:'+res.networkType,
				icon:'none',
				duration:3000
			})
		}
357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
	});
// #endif

}
/**
 * // 初始化appVersion
 */
function initAppVersion() {
	// #ifdef APP-PLUS
	let appid = plus.runtime.appid;
	plus.runtime.getProperty(appid, (wgtInfo) => {
		let appVersion = plus.runtime;
		let currentVersion = appVersion.versionCode > wgtInfo.versionCode ? appVersion : wgtInfo;
		getApp({
			allowDefault: true
		}).appVersion = {
			...currentVersion,
			appid,
			hasNew: false
		}
		// 检查更新小红点
		callCheckVersion().then(res => {
DCloud_JSON's avatar
DCloud_JSON 已提交
379
			// console.log('检查是否有可以更新的版本', res);
380 381 382 383 384 385 386 387 388 389 390
			if (res.result.code > 0) {
				// 有新版本
				getApp({
					allowDefault: true
				}).appVersion.hasNew = true;
			}
		})
	});
	// 检查更新
	checkUpdate();
	// #endif
DCloud_JSON's avatar
DCloud_JSON 已提交
391
}