“6224e61fd94e6ad87f18c2808a76256b516fa3f3”上不存在“paddle/fluid/operators/mkldnn/sum_mkldnn_op.cc”
index.js 10.6 KB
Newer Older
1 2 3 4 5 6
'use strict';
let uniID = require('uni-id')
const uniCaptcha = require('uni-captcha')
const createConfig = require('uni-config-center')
const uniIdConfig = createConfig({
	pluginId: 'uni-id'
7
}).config()
8 9
const db = uniCloud.database()
const dbCmd = db.command
10
exports.main = async (event, context) => {
11
	//UNI_WYQ:这里的uniID换成新的,保证多人访问不会冲突
12 13 14 15 16 17 18 19 20 21 22 23
	uniID = uniID.createInstance({
		context
	})
	console.log('event : ' + JSON.stringify(event))
	/*
	1.event为客户端 uniCloud.callFunction填写的data的值,这里介绍一下其中的属性
	  action:表示要执行的任务名称、比如:登陆login、退出登陆 logout等
	  params:业务数据内容
	  uniIdToken:系统自动传递的token,数据来源客户端的 uni.getStorageSync('uni_id_token')
	*/
	const {
		action,
24 25
		uniIdToken,
		inviteCode
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
	} = event;
	const deviceInfo = event.deviceInfo || {};
	let params = event.params || {};
	/*
	2.在某些操作之前我们要对用户对身份进行校验(也就是要检查用户的token)再将得到的uid写入params.uid
	  校验用到的方法是uniID.checkToken 详情:https://uniapp.dcloud.io/uniCloud/uni-id?id=checktoken

	  讨论,我们假设一个这样的场景,代码如下。
	  如:
		uniCloud.callFunction({
			name:"xxx",
			data:{
				"params":{
					uid:"通过某种方式获取来的别人的uid"
				}
			}
		})
	  用户就这样轻易地伪造了他人的uid传递给服务端,有一句话叫:前端从来的数据是不可信任的
	  所以这里我们需要将uniID.checkToken返回的uid写入到params.uid
	*/
	let noCheckAction = ['register', 'checkToken', 'login', 'logout', 'sendSmsCode', 'createCaptcha',
		'verifyCaptcha', 'refreshCaptcha', 'inviteLogin', 'loginByWeixin', 'loginByUniverify',
		'loginByApple', 'loginBySms', 'resetPwdBySmsCode', 'registerAdmin'
	]
50 51 52 53 54 55 56 57 58 59 60 61
	if (!noCheckAction.includes(action)) {
		if (!uniIdToken) {
			return {
				code: 403,
				msg: '缺少token'
			}
		}
		let payload = await uniID.checkToken(uniIdToken)
		if (payload.code && payload.code > 0) {
			return payload
		}
		params.uid = payload.uid
62 63
	}
	
64 65 66 67 68 69 70 71 72
	//禁止前台用户传递角色
	if (action.slice(0,7) == "loginBy") {
		if (params.role) {
			return {
				code: 403,
				msg: '禁止前台用户传递角色'
			}
		}
	}
73 74

	//3.注册成功后创建新用户的积分表方法
75 76 77 78 79
	async function registerSuccess(uid) {
		//用户接受邀请
		if(inviteCode){
			await uniID.acceptInvite({inviteCode,uid});
		}
80 81 82 83 84
		//添加当前用户设备信息
		await db.collection('uni-id-device').add({
			...deviceInfo,
			user_id: uid
		})
85 86 87 88 89 90 91
		await db.collection('uni-id-scores').add({
			user_id: uid,
			score: 1,
			type: 1,
			balance: 1,
			comment: "",
			create_date: Date.now()
92
		})
93 94
	}
	//4.记录成功登录的日志方法
95 96 97 98
	const loginLog = async (res = {}) => {
		if(res.code != 0){
			return false
		}
99 100 101 102 103
		const now = Date.now()
		const uniIdLogCollection = db.collection('uni-id-log')
		let logData = {
			deviceId: params.deviceId || context.DEVICEID,
			ip: params.ip || context.CLIENTIP,
104
			type: res.type,
105 106 107 108 109 110 111 112 113 114 115
			ua: context.CLIENTUA,
			create_date: now
		};

		Object.assign(logData,
			res.code === 0 ? {
				user_id: res.uid,
				state: 1
			} : {
				state: 0
			})
116
		if (res.type == 'register') {
117
			await registerSuccess(res.uid)
118
		} else {
119 120
			if (Object.keys(deviceInfo).length) {
				console.log(979797,{deviceInfo,user_id: res});
121 122 123 124 125
				//更新当前用户设备信息
				await db.collection('uni-id-device').where({
					user_id: res.uid
				}).update(deviceInfo)
			}
126 127 128 129
		}
		return await uniIdLogCollection.add(logData)
	}

130 131
	let res = {}
	switch (action) { //根据action的值执行对应的操作
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
		case 'bind_mobile_by_univerify':
			let {
				appid, apiKey, apiSecret
			} = uniIdConfig.service.univerify
			let univerifyRes = await uniCloud.getPhoneNumber({
				provider: 'univerify',
				appid,
				apiKey,
				apiSecret,
				access_token: params.access_token,
				openid: params.openid
			})
			if (univerifyRes.code === 0) {
				res = await uniID.bindMobile({
					uid: params.uid,
					mobile: univerifyRes.phoneNumber
				})
				res.mobile = univerifyRes.phoneNumber
			}
			break;
		case 'bind_mobile_by_sms':
153 154 155 156 157
			// console.log({
			// 	uid: params.uid,
			// 	mobile: params.mobile,
			// 	code: params.code
			// });
158 159 160 161 162
			res = await uniID.bindMobile({
				uid: params.uid,
				mobile: params.mobile,
				code: params.code
			})
163
			// console.log(res);
164
			break;
165
		case 'register':
166
			var {username, password, nickname} = params
167 168 169 170 171 172 173 174 175 176 177 178
			if (/^1\d{10}$/.test(username)) {
				return {
					code: 401,
					msg: '用户名不能是手机号'
				}
			};
			if (/^(\w-*\.*)+@(\w-?)+(\.\w{2,})+$/.test(username)) {
				return {
					code: 401,
					msg: '用户名不能是邮箱'
				}
			}
179
			res = await uniID.register({username, password, nickname,inviteCode});
180 181 182 183
			if (res.code === 0) {
				await registerSuccess(res.uid)
			}
			break;
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
		case 'login':
			//防止黑客恶意破解登录,连续登录失败一定次数后,需要用户提供验证码
			const getNeedCaptcha = async () => {
				//当用户最近“2小时内(recordDate)”登录失败达到2次(recordSize)时。要求用户提交验证码
				const now = Date.now(),
					recordDate = 120 * 60 * 1000,
					recordSize = 2;
				const uniIdLogCollection = db.collection('uni-id-log')
				let recentRecord = await uniIdLogCollection.where({
						deviceId: params.deviceId || context.DEVICEID,
						create_date: dbCmd.gt(now - recordDate),
						type: 'login'
					})
					.orderBy('create_date', 'desc')
					.limit(recordSize)
					.get();
				return recentRecord.data.filter(item => item.state === 0).length === recordSize;
			}

203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
			let passed = false;
			let needCaptcha = await getNeedCaptcha();
			console.log('needCaptcha', needCaptcha);
			if (needCaptcha) {
				res = await uniCaptcha.verify({
					...params,
					scene: 'login'
				})
				if (res.code === 0) passed = true;
			}

			if (!needCaptcha || passed) {
				res = await uniID.login({
					...params,
					queryField: ['username', 'email', 'mobile']
218
				});
219
				await loginLog(res);
220 221 222 223 224
				needCaptcha = await getNeedCaptcha();
			}

			res.needCaptcha = needCaptcha;
			break;
225
		case 'loginByWeixin':
226
			res = await uniID.loginByWeixin(params);
227 228 229 230 231 232 233
			await uniID.updateUser({
				uid: res.uid,
				username: "微信用户"
			});
			res.userInfo.username = "微信用户"
			await loginLog(res)
			break;
234
		case 'loginByUniverify':
235
			res = await uniID.loginByUniverify(params)
236 237
			await loginLog(res)
			break;
238
		case 'loginByApple':
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
			res = await uniID.loginByApple(params)
			await loginLog(res)
			break;
		case 'checkToken':
			res = await uniID.checkToken(uniIdToken);
			break;
		case 'logout':
			res = await uniID.logout(uniIdToken)
			break;
		case 'sendSmsCode':
			// 测试期间短信统一用 123456 正式项目删除即可
			return uniID.setVerifyCode({
				mobile: params.mobile,
				code: '123456',
				type: params.type
			})
			// 简单限制一下客户端调用频率
256
			const ipLimit = await db.collection('opendb-verify-codes').where({
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
				ip: context.CLIENTIP,
				created_at: dbCmd.gt(Date.now() - 60000)
			}).get()
			if (ipLimit.data.length > 0) {
				return {
					code: 429,
					msg: '请求过于频繁'
				}
			}
			const templateId = '11753' // 替换为自己申请的模板id
			if (!templateId) {
				return {
					code: 500,
					msg: 'sendSmsCode需要传入自己的templateId,参考https://uniapp.dcloud.net.cn/uniCloud/uni-id?id=sendsmscode'
				}
			}
			const randomStr = '00000' + Math.floor(Math.random() * 1000000)
			const code = randomStr.substring(randomStr.length - 6)
			res = await uniID.sendSmsCode({
				mobile: params.mobile,
				code,
				type: params.type,
				templateId
			})
			break;
		case 'loginBySms':
			if (!params.code) {
				return {
					code: 500,
					msg: '请填写验证码'
				}
			}
			if (!/^1\d{10}$/.test(params.mobile)) {
				return {
					code: 500,
					msg: '手机号码填写错误'
				}
			}
			res = await uniID.loginBySms(params)
			await loginLog(res)
			break;
		case 'resetPwdBySmsCode':
			if (!params.code) {
				return {
					code: 500,
					msg: '请填写验证码'
				}
			}
			if (!/^1\d{10}$/.test(params.mobile)) {
				return {
					code: 500,
					msg: '手机号码填写错误'
				}
			}
			let loginBySmsRes = await uniID.loginBySms(params)
312
			// console.log(loginBySmsRes);
313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335
			if (loginBySmsRes.code === 0) {
				res = await uniID.resetPwd({
					password: params.password,
					"uid": loginBySmsRes.uid
				})
			} else {
				return loginBySmsRes
			}
			break;
		case 'getInviteCode':
			res = await uniID.getUserInfo({
				uid: params.uid,
				field: ['my_invite_code']
			})
			if (res.code === 0) {
				res.myInviteCode = res.userInfo.my_invite_code
				delete res.userInfo
			}
			break;
		case 'getInvitedUser':
			res = await uniID.getInvitedUser(params)
			break;
		case 'updatePwd':
336
			res = await uniID.updatePwd(params)
337 338 339 340 341 342 343
			break;
		case 'createCaptcha':
			res = await uniCaptcha.create(params)
			break;
		case 'refreshCaptcha':
			res = await uniCaptcha.refresh(params)
			break;
344 345 346 347 348 349 350 351 352 353 354 355 356
		case 'getUserInviteCode':
			res = await uniID.getUserInfo({
				uid: params.uid,
				field: ['my_invite_code']
			})
			if (!res.userInfo.my_invite_code) {
				res = await uniID.setUserInviteCode({
					uid: params.uid
				})
			}
			break;

			// -----------  admin api  -----------
357 358 359 360 361 362 363 364 365 366 367 368 369 370 371
		case 'registerAdmin':
			var {
				username, password
			} = params
			let {
				total
			} = await db.collection('uni-id-users').where({
				role: 'admin'
			}).count()
			if (total) {
				return {
					code: 10001,
					message: '超级管理员已存在,请登录...'
				}
			}
372
			return uniID.register({
373 374 375 376 377
				username,
				password,
				role: ["admin"]
			})
			break;
378 379 380 381
		case 'registerUser':
			const {
				userInfo
			} = await uniID.getUserInfo({
382
				uid: params.uid
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404
			})
			if (userInfo.role.indexOf('admin') === -1 && params.role.indexOf('admin') > -1) {
				res = {
					code: 403,
					message: '非法访问, 无权限注册超级管理员',
				}
			} else {
				res = await uniID.register({
					...params
				})
				if (res.code === 0) {
					delete res.token
					delete res.tokenExpired
				}
			}
			break;
		case 'getCurrentUserInfo':
			res = uniID.getUserInfo({
				uid: params.uid,
				...params
			})
			break;
405 406 407 408 409 410 411 412 413
		default:
			res = {
				code: 403,
				msg: '非法访问'
			}
			break;
	}
	//返回数据给客户端
	return res
414
}