提交 7deb731a 编写于 作者: DCloud_JSON's avatar DCloud_JSON

发布1.0.4版

上级 84b5d237
...@@ -116,7 +116,7 @@ ...@@ -116,7 +116,7 @@
}, },
"usingComponents" : true, "usingComponents" : true,
"unipush" : { "unipush" : {
"enable" : true "enable" : false
} }
}, },
"mp-alipay" : { "mp-alipay" : {
......
## 1.0.4(2022-07-06) ## 1.0.4(2022-07-06)
- uni-id-co增加clientInfo字段类型校验 - uni-id-co增加clientInfo字段类型校验
- 监听token更新时机,同步客户端push_clientid至uni-id-device表,改为:同步客户端push_clientid至uni-id-device表和opendb-device表
## 1.0.3(2022-07-05) ## 1.0.3(2022-07-05)
新增监听token更新时机,同步客户端push_clientid至uni-id-device表 新增监听token更新时机,同步客户端push_clientid至uni-id-device表
## 1.0.2(2022-07-04) ## 1.0.2(2022-07-04)
......
...@@ -12,88 +12,88 @@ const { ...@@ -12,88 +12,88 @@ const {
export default async function() { export default async function() {
// 有打开调试模式的情况下 // 有打开调试模式的情况下
if (debug) { if (debug) {
// 1. 检查本地uni-id-pages中配置的登录方式,服务器端是否已经配置正确。否则提醒并引导去配置 // 1. 检查本地uni-id-pages中配置的登录方式,服务器端是否已经配置正确。否则提醒并引导去配置
//调用云对象,获取服务端已正确配置的登录方式 //调用云对象,获取服务端已正确配置的登录方式
let { let {
supportedLoginType supportedLoginType
} = await uniIdCo.getSupportedLoginType() } = await uniIdCo.getSupportedLoginType()
console.log("supportedLoginType: " + JSON.stringify(supportedLoginType)); console.log("supportedLoginType: " + JSON.stringify(supportedLoginType));
//登录方式,服务端和客户端的映射关系 //登录方式,服务端和客户端的映射关系
let data = { let data = {
smsCode: 'mobile-code', smsCode: 'mobile-code',
univerify: 'univerify', univerify: 'univerify',
username: 'username-password', username: 'username-password',
weixin: 'weixin', weixin: 'weixin',
qq: 'qq', qq: 'qq',
xiaomi: 'xiaomi', xiaomi: 'xiaomi',
sinaweibo: 'sinaweibo', sinaweibo: 'sinaweibo',
taobao: 'taobao', taobao: 'taobao',
facebook: 'facebook', facebook: 'facebook',
google: 'google', google: 'google',
alipay: 'alipay', alipay: 'alipay',
apple: "apple" apple: "apple"
}
//遍历客户端配置的登录方式,与服务端比对。并在错误时抛出错误提示
let list = loginTypes.filter(type => !supportedLoginType.includes(data[type]))
if (list.length) {
console.error(
`错误:前端启用的登录方式:${list.join('')};没有在服务端完成配置。配置文件路径:"/uni_modules/uni-config-center/uniCloud/cloudfunctions/common/uni-config-center/uni-id/config.json"`
);
}
} }
//遍历客户端配置的登录方式,与服务端比对。并在错误时抛出错误提示
// #ifdef APP-PLUS let list = loginTypes.filter(type => !supportedLoginType.includes(data[type]))
//如果uni-id-pages配置的登录功能有一键登录,有则执行预登录(异步) if (list.length) {
if (loginTypes.includes('univerify')) { console.error(
uni.preLogin({ `错误:前端启用的登录方式:${list.join('')};没有在服务端完成配置。配置文件路径:"/uni_modules/uni-config-center/uniCloud/cloudfunctions/common/uni-config-center/uni-id/config.json"`
provider: 'univerify', );
complete: e => {
console.log(e);
}
})
} }
// #endif }
// #ifdef APP-PLUS
//如果uni-id-pages配置的登录功能有一键登录,有则执行预登录(异步)
if (loginTypes.includes('univerify')) {
uni.preLogin({
provider: 'univerify',
complete: e => {
console.log(e);
}
})
}
// #endif
//3. 绑定clientDB错误事件 //3. 绑定clientDB错误事件
// clientDB对象 // clientDB对象
const db = uniCloud.database() const db = uniCloud.database()
db.on('error', onDBError) db.on('error', onDBError)
//clientDB的错误提示 //clientDB的错误提示
function onDBError({ function onDBError({
code, // 错误码详见https://uniapp.dcloud.net.cn/uniCloud/clientdb?id=returnvalue code, // 错误码详见https://uniapp.dcloud.net.cn/uniCloud/clientdb?id=returnvalue
message
}) {
console.error('onDBError', {
code,
message message
}) { });
console.error('onDBError', { }
code, // 解绑clientDB错误事件
message //db.off('error', onDBError)
});
}
// 解绑clientDB错误事件
//db.off('error', onDBError)
//4. 同步客户端push_clientid至device表
if (uniCloud.onRefreshToken) { //4. 同步客户端push_clientid至device表
uniCloud.onRefreshToken(() => { if (uniCloud.onRefreshToken) {
console.log('onRefreshToken'); uniCloud.onRefreshToken(() => {
if (uni.canIUse('getPushClientId')) { console.log('onRefreshToken');
uni.getPushClientId({ if (uni.getPushClientId) {
success: async function(e) { uni.getPushClientId({
console.log(e) success: async function(e) {
let pushClientId = e.cid console.log(e)
console.log(pushClientId); let pushClientId = e.cid
let res = await uniIdCo.setPushCid({ console.log(pushClientId);
pushClientId let res = await uniIdCo.setPushCid({
}) pushClientId
console.log(res); })
}, console.log('getPushClientId', res);
fail(e) { },
console.log(e) fail(e) {
} console.log(e)
}) }
} })
}) }
} })
}
} }
{
"bsonType": "object",
"required": [],
"permission": {
"read": false,
"create": false,
"update": false,
"delete": false
},
"properties": {
"_id": {
"description": "ID,系统自动生成"
},
"appid": {
"bsonType": "string",
"description": "DCloud appid"
},
"device_id": {
"bsonType": "string",
"description": "设备唯一标识"
},
"vendor": {
"bsonType": "string",
"description": "设备厂商"
},
"push_clientid": {
"bsonType": "string",
"description": "推送设备客户端标识"
},
"imei": {
"bsonType": "string",
"description": "国际移动设备识别码IMEI(International Mobile Equipment Identity)"
},
"oaid": {
"bsonType": "string",
"description": "移动智能设备标识公共服务平台提供的匿名设备标识符(OAID)"
},
"idfa": {
"bsonType": "string",
"description": "iOS平台配置应用使用广告标识(IDFA)"
},
"imsi": {
"bsonType": "string",
"description": "国际移动用户识别码(International Mobile Subscriber Identification Number)"
},
"model": {
"bsonType": "string",
"description": "设备型号"
},
"platform": {
"bsonType": "string",
"description": "平台类型"
},
"uni_platform": {
"bsonType": "string",
"description": "uni-app 运行平台,与条件编译平台相同。"
},
"os_name": {
"bsonType": "string",
"description": "ios|android|windows|mac|linux "
},
"os_version": {
"bsonType": "string",
"description": "操作系统版本号 "
},
"os_language": {
"bsonType": "string",
"description": "操作系统语言 "
},
"os_theme": {
"bsonType": "string",
"description": "操作系统主题 light|dark"
},
"pixel_ratio": {
"bsonType": "string",
"description": "设备像素比 "
},
"network_model": {
"bsonType": "string",
"description": "设备网络型号wifi/3G/4G/"
},
"window_width": {
"bsonType": "string",
"description": "设备窗口宽度 "
},
"window_height": {
"bsonType": "string",
"description": "设备窗口高度"
},
"screen_width": {
"bsonType": "string",
"description": "设备屏幕宽度"
},
"screen_height": {
"bsonType": "string",
"description": "设备屏幕高度"
},
"rom_name": {
"bsonType": "string",
"description": "rom 名称"
},
"rom_version": {
"bsonType": "string",
"description": "rom 版本"
},
"location_latitude": {
"bsonType": "double",
"description": "纬度"
},
"location_longitude": {
"bsonType": "double",
"description": "经度"
},
"location_country": {
"bsonType": "string",
"description": "国家"
},
"location_province": {
"bsonType": "string",
"description": "省份"
},
"location_city": {
"bsonType": "string",
"description": "城市"
},
"create_date": {
"bsonType": "timestamp",
"description": "创建时间",
"forceDefaultValue": {
"$env": "now"
}
},
"last_update_date": {
"bsonType": "timestamp",
"description": "最后一次修改时间",
"forceDefaultValue": {
"$env": "now"
}
}
},
"version": "0.0.1"
}
\ No newline at end of file
{
"bsonType": "object",
"required": [
"user_id"
],
"properties": {
"_id": {
"description": "ID,系统自动生成"
},
"user_id": {
"bsonType": "string",
"description": "用户id,参考uni-id-users表"
},
"ua": {
"bsonType": "string",
"description": "userAgent"
},
"uuid": {
"bsonType": "string",
"description": "设备唯一标识(需要加密存储)"
},
"os_name": {
"bsonType": "string",
"description": "ios|android|windows|mac|linux "
},
"os_version": {
"bsonType": "string",
"description": "操作系统版本号 "
},
"os_language": {
"bsonType": "string",
"description": "操作系统语言 "
},
"os_theme": {
"bsonType": "string",
"description": "操作系统主题 light|dark"
},
"vendor": {
"bsonType": "string",
"description": "设备厂商"
},
"push_clientid": {
"bsonType": "string",
"description": "推送设备客户端标识"
},
"imei": {
"bsonType": "string",
"description": "国际移动设备识别码IMEI(International Mobile Equipment Identity)"
},
"oaid": {
"bsonType": "string",
"description": "移动智能设备标识公共服务平台提供的匿名设备标识符(OAID)"
},
"idfa": {
"bsonType": "string",
"description": "iOS平台配置应用使用广告标识(IDFA)"
},
"model": {
"bsonType": "string",
"description": "设备型号"
},
"platform": {
"bsonType": "string",
"description": "平台类型"
},
"create_date": {
"bsonType": "timestamp",
"description": "创建时间",
"forceDefaultValue": {
"$env": "now"
}
},
"last_active_date": {
"bsonType": "timestamp",
"description": "最后登录时间"
},
"last_active_ip": {
"bsonType": "string",
"description": "最后登录IP"
}
},
"version": "0.0.1"
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册