npmrun 2 years ago
parent
commit
91874ca195
  1. 51
      .hbuilderx/launch.json
  2. 13
      App.vue
  3. BIN
      files/enesoon123.keystore
  4. 2
      files/说明.txt
  5. 33
      manifest.json
  6. 10
      pages.json
  7. 51
      pages/Demo/Basic/Basic.vue
  8. 4
      pages/Sub/Socket/socket.js
  9. 70
      pages/index/index.vue
  10. 38
      pages/index/pages.js
  11. 22
      uniCloud-aliyun/cloudfunctions/testUniPush/index.js
  12. 7
      uniCloud-aliyun/cloudfunctions/testUniPush/package.json
  13. 142
      uniCloud-aliyun/database/opendb-device.schema.json
  14. 26
      uniCloud-aliyun/database/opendb-tempdata.schema.json
  15. 83
      uniCloud-aliyun/database/uni-id-device.schema.json
  16. 30
      uni_modules/niu-ui/components/niu-grid-item/niu-grid-item.vue
  17. 12
      uni_modules/niu-ui/components/niu-grid/niu-grid.vue
  18. 6
      uni_modules/uni-config-center/changelog.md
  19. 81
      uni_modules/uni-config-center/package.json
  20. 93
      uni_modules/uni-config-center/readme.md
  21. 1
      uni_modules/uni-config-center/uniCloud/cloudfunctions/common/uni-config-center/index.js
  22. 9
      uni_modules/uni-config-center/uniCloud/cloudfunctions/common/uni-config-center/package.json
  23. 32
      uni_modules/uni-id-common/changelog.md
  24. 84
      uni_modules/uni-id-common/package.json
  25. 3
      uni_modules/uni-id-common/readme.md
  26. 1
      uni_modules/uni-id-common/uniCloud/cloudfunctions/common/uni-id-common/index.js
  27. 16
      uni_modules/uni-id-common/uniCloud/cloudfunctions/common/uni-id-common/package.json

51
.hbuilderx/launch.json

@ -1,24 +1,31 @@
{ // launch.json configurations app-plus/h5/mp-weixin/mp-baidu/mp-alipay/mp-qq/mp-toutiao/mp-360/
// launchtypelocalremote, localremote
"version": "0.0",
"configurations": [{
"app-plus" :
{
"launchtype" : "local"
},
"default" :
{
"launchtype" : "local"
},
"h5" :
{
"launchtype" : "local"
},
"mp-weixin" :
{
"launchtype" : "local"
},
"type" : "uniCloud"
}
{
// launch.json configurations app-plus/h5/mp-weixin/mp-baidu/mp-alipay/mp-qq/mp-toutiao/mp-360/
// launchtypelocalremote, localremote
"version" : "0.0",
"configurations" : [
{
"app-plus" : {
"launchtype" : "local"
},
"default" : {
"launchtype" : "local"
},
"h5" : {
"launchtype" : "local"
},
"mp-weixin" : {
"launchtype" : "local"
},
"type" : "uniCloud"
},
{
"openVueDevtools" : true,
"playground" : "custom",
"type" : "uni-app:app-android"
},
{
"openVueDevtools" : true,
"type" : "uni-app:app-ios"
}
]
}

13
App.vue

@ -2,6 +2,17 @@
export default {
onLaunch: function() {
console.log('App Launch')
console.log('开始监听推送消息')
//
uni.onPushMessage((res) => {
console.log("收到推送消息:", res) //
// #ifdef APP-PLUS
uni.createPushMessage({
title: res.data.title,
content: res.data.content
})
// #endif
})
},
onShow: function() {
console.log('App Show')
@ -16,4 +27,4 @@
/*每个页面公共css */
@import '~@/assets/style/common.scss';
@import '~@/uni_modules/niu-ui/assets/style/common.scss'
</style>
</style>

BIN
files/enesoon123.keystore

Binary file not shown.

2
files/说明.txt

@ -0,0 +1,2 @@
别名:android.keystore
密码:enesoon123

33
manifest.json

@ -1,6 +1,6 @@
{
"name" : "niu-ui",
"appid" : "__UNI__84A7910",
"appid" : "__UNI__9005101",
"description" : "",
"versionName" : "1.0.0",
"versionCode" : "100",
@ -17,7 +17,9 @@
"delay" : 0
},
/* */
"modules" : {},
"modules" : {
"Push" : {}
},
/* */
"distribute" : {
/* android */
@ -38,13 +40,23 @@
"<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>",
"<uses-feature android:name=\"android.hardware.camera\"/>",
"<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"
]
],
"abiFilters" : [ "armeabi-v7a", "arm64-v8a", "x86" ]
},
/* ios */
"ios" : {},
"ios" : {
"idfa" : false,
"dSYMs" : false
},
/* SDK */
"sdkConfigs" : {
"ad" : {}
"ad" : {},
"push" : {
"unipush" : {
"version" : "2",
"offline" : false
}
}
}
}
},
@ -56,7 +68,10 @@
"setting" : {
"urlCheck" : false
},
"usingComponents" : true
"usingComponents" : true,
"unipush" : {
"enable" : true
}
},
"mp-alipay" : {
"usingComponents" : true
@ -70,9 +85,13 @@
"h5" : {
"devServer" : {
"disableHostCheck" : true
},
"unipush" : {
"enable" : true
}
},
"uniStatistics" : {
"enable" : false
}
},
"fallbackLocale" : "zh-Hans"
}

10
pages.json

@ -40,6 +40,16 @@
}
}
,{
"path" : "pages/Demo/Basic/Basic",
"style" :
{
"navigationStyle": "custom",
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",

51
pages/Demo/Basic/Basic.vue

@ -0,0 +1,51 @@
<template>
<niu-page>
<niu-navbar fixed color="white" middleLayout='left' bg="#39b54a">
Tabs
</niu-navbar>
<view class="">
<text style="font-size:12rpx;">sadsa</text>
<niu-image circle border="1px solid red" mode="aspectFill" inline rect="100rpx" preview
src="https://i.loli.net/2021/08/02/PEKnxSkbAHdtFfi.png"></niu-image>
</view>
<view style="margin: 24rpx;">
<niu-grid :num="4">
<niu-grid-item circle icon="https://i.loli.net/2021/08/02/PEKnxSkbAHdtFfi.png" text="1231"></niu-grid-item>
<niu-grid-item icon="https://i.loli.net/2021/08/02/PEKnxSkbAHdtFfi.png">阿三大苏打萨达萨达是阿萨大</niu-grid-item>
<niu-grid-item>11</niu-grid-item>
<niu-grid-item>11</niu-grid-item>
<niu-grid-item>11</niu-grid-item>
<niu-grid-item>11</niu-grid-item>
</niu-grid>
</view>
<view>{{$n.data.navbarTop}}px</view>
<view>{{$n.data.navbarTop }}</view>
<view :style="{backgroundColor: 'red', height: $n.data.navbarTop +'px'}"></view>
<view style="padding: 15rpx;background-color: white;">
<niu-input leftText="账号" arraw border closeable focus></niu-input>
<niu-input leftText="密码" border rightText="$" closeable></niu-input>
<niu-input leftText="验证码" @send="sendCode" sendcode closeable border sendcodeBorder></niu-input>
<niu-input border></niu-input>
<niu-input border></niu-input>
<niu-input border></niu-input>
<niu-input border></niu-input>
<niu-input border></niu-input>
<niu-input border></niu-input>
<niu-input border></niu-input>
</view>
</niu-page>
</template>
<script>
export default {
data() {
return {
};
}
}
</script>
<style lang="scss">
</style>

4
pages/Sub/Socket/socket.js

@ -120,7 +120,7 @@ class Sc {
this.#time = 0
this.#event.emit('onMessage', Msg.create("msg","客户端已连接",1))
this.#event.emit('onOpen', isReConnect)
// this.heartTime()
this.heartTime()
if(isReConnect){
this.send(Msg.create("reconnect",true,1))
}
@ -129,7 +129,7 @@ class Sc {
this.#isConnected = false
this.#isConnecting = false
this.#instance = null
// this.clearHeartTime()
this.clearHeartTime()
this.#event.off("onClose", onClose)
this.#event.off("onError", onError)
this.#event.off("onOpen", onOpen)

70
pages/index/index.vue

@ -6,69 +6,41 @@
asd
</template>
</niu-navbar>
<view class="title">
组件池
</view>
<view>
<Cell title="Tabs" content="选项卡切换" path="/pages/Sub/Tabs/Tabs"></Cell>
<!-- <Swiper></Swiper> -->
</view>
<view class="title">
模板池
</view>
<view>
<Cell title="Socket" content="socket测试" path="/pages/Sub/Socket/Socket"></Cell>
<Cell title="Canvas" content="海报绘制" path="/pages/Sub/Socket/Socket"></Cell>
</view>
<view class="title">
项目功能Demo
</view>
<view>
<Cell title="时间选择器" content="" path="/pages/Sub/Pro/SelectTime/SelectTime"></Cell>
</view>
<view class="">
<text style="font-size:12rpx;">sadsa</text>
<niu-image circle border="1px solid red" mode="aspectFill" inline rect="100rpx" preview
src="https://i.loli.net/2021/08/02/PEKnxSkbAHdtFfi.png"></niu-image>
</view>
<!-- <niu-grid :num="4">
<niu-grid-item rect="100px" icon="https://i.loli.net/2021/08/02/PEKnxSkbAHdtFfi.png" text="1231"></niu-grid-item>
<niu-grid-item>11</niu-grid-item>
<niu-grid-item>11</niu-grid-item>
<niu-grid-item>11</niu-grid-item>
<niu-grid-item>11</niu-grid-item>
<niu-grid-item>11</niu-grid-item>
</niu-grid> -->
<view>{{$n.data.navbarTop}}px</view>
<view>{{$n.data.navbarTop }}</view>
<view :style="{backgroundColor: 'red', height: $n.data.navbarTop +'px'}"></view>
<view style="padding: 15rpx;background-color: white;">
<niu-input leftText="账号" arraw border closeable focus></niu-input>
<niu-input leftText="密码" border rightText="$" closeable></niu-input>
<niu-input @send="sendCode" sendcode border sendcodeBorder></niu-input>
<niu-input border></niu-input>
<niu-input border></niu-input>
<niu-input border></niu-input>
<niu-input border></niu-input>
<niu-input border></niu-input>
<niu-input border></niu-input>
<niu-input border></niu-input>
</view>
<template v-for="(item,index) in pages">
<view class="title">
{{item.name}}
</view>
<template v-for="(child,childIndex) in item.children">
<Cell :title="child.name" :content="child.desc" :path="child.path"></Cell>
</template>
</template>
<button @click="click">获取推送标识</button>
<niu-tabbar></niu-tabbar>
</niu-page>
</template>
<script>
import { pages } from "./pages.js"
export default {
data() {
return {
text: ''
text: '',
pages
}
},
onReady() {
console.log(this.$n.data.navbarTop);
},
methods: {
click(){
uni.getPushClientId({
success(res) {
console.log(res);
},fail(err) {
console.error(err);
}
})
},
sendCode(done){
done(true)
},

38
pages/index/pages.js

@ -0,0 +1,38 @@
export const pages = [
{
name: "组件池",
children: [
{
name: "Tabs",
desc: "选项卡切换",
path: "/pages/Sub/Tabs/Tabs"
}
]
},
{
name: "模板池",
children: [
{
name: "Socket",
desc: "socket",
path: "/pages/Sub/Socket/Socket"
}
]
},
{
name: "项目功能Demo",
children: [
{
name: "基础示例",
desc: "",
path: "/pages/Demo/Basic/Basic"
},
{
name: "时间选择器",
desc: "",
path: "/pages/Sub/Pro/SelectTime/SelectTime"
}
]
}
]

22
uniCloud-aliyun/cloudfunctions/testUniPush/index.js

@ -0,0 +1,22 @@
'use strict';
const uniPush = uniCloud.getPushManager({
appId: "__UNI__9005101"
}) //注意这里需要传入你的应用appId
exports.main = async (event, context) => {
//event为客户端上传的参数
console.log('event : ', event)
//返回数据给客户端
return await uniPush.sendMessage({
"push_clientid": [
"9ec2345674b0f4fc05b42104ec300238",
"9cebd59e2219c5ba69426fa5df3f318f",
"60ffeb24c2cc2a6844aa59abbbc059d8"
], //填写上一步在uni-app客户端获取到的客户端推送标识push_clientid
"title": "通知栏显示的标题",
"content": "通知栏显示的内容",
"payload": {
"text": "体验一下uni-push2.0"
}
})
};

7
uniCloud-aliyun/cloudfunctions/testUniPush/package.json

@ -0,0 +1,7 @@
{
"name": "testUniPush",
"dependencies": {},
"extensions": {
"uni-cloud-push": {}
}
}

142
uniCloud-aliyun/database/opendb-device.schema.json

@ -0,0 +1,142 @@
{
"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"
}

26
uniCloud-aliyun/database/opendb-tempdata.schema.json

@ -0,0 +1,26 @@
{
"bsonType": "object",
"required": [
"value",
"expired"
],
"permission": {
"read": false,
"create": false,
"update": false,
"delete": false
},
"properties": {
"_id": {
"description": "ID,系统自动生成"
},
"value": {
"description": "值"
},
"expired": {
"description": "过期时间",
"bsonType": "timestamp"
}
},
"version": "0.0.1"
}

83
uniCloud-aliyun/database/uni-id-device.schema.json

@ -0,0 +1,83 @@
{
"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"
}

30
uni_modules/niu-ui/components/niu-grid-item/niu-grid-item.vue

@ -3,9 +3,10 @@
<view class="grid-item__wrapper">
<image :style="{width:rect,height:rect,}"
class="grid-item__icon"
:class="{circle}"
v-if="type=='icon'&&icon"
:src="icon" mode="aspectFill"></image>
<view class="grid-item__text" :style="{padding: top}" :class="{oneline}">
<view class="grid-item__text" :style="{padding: top}">
<text v-if="always">{{text}}</text>
<slot><text v-if="!always">{{text}}</text></slot>
</view>
@ -25,6 +26,10 @@
type: String,
default: '',
},
circle:{
type: Boolean,
default: false,
},
button:{
type: String,
default: '',
@ -41,10 +46,6 @@
type: String,
default: '15rpx 20rpx',
},
oneline:{
type: Boolean,
default: false
},
top: {
type: String,
default: '',
@ -70,13 +71,14 @@
},
mounted() {
let parent = this.$n.util.getParent('niu-grid',this);
console.log(parent);
if(parent){
this.num = parent.num;
this.rect = parent.rect;
this.type = parent.type;
this.hover = parent.hover;
this.center = parent.center;
//
parent.registerGridItem()
}
},
methods: {
@ -91,11 +93,15 @@
.grid-item{
display: inline-flex;
box-sizing: border-box;
height: 100%;
&.hover:active{
background-color: #f5f5f5;
}
&__icon{
margin-bottom: 12rpx;
&.circle{
border-radius: 50%;
}
}
.grid-item__wrapper{
margin: auto;
width: 100%;
@ -105,11 +111,9 @@
text-align: center;
position: relative;
.grid-item__text{
white-space: nowrap;
&.oneline{
width: 100%;
@include ellipsis(1);
}
// white-space: nowrap;
width: 100%;
@include ellipsis(2);
}
.button{
position: absolute;

12
uni_modules/niu-ui/components/niu-grid/niu-grid.vue

@ -34,15 +34,18 @@
type: String,
default: '80rpx'
},
},
methods: {
registerGridItem(){
console.log(222);
}
}
}
</script>
<style lang="scss" scoped>
.niu-grid{
box-sizing: border-box;
&.center{
display: flex;
align-items: center;
@ -51,5 +54,10 @@
margin: 0;
}
}
.niu-grid-item{
display: flex;
// align-items: center;
flex-wrap: wrap;
}
}
</style>

6
uni_modules/uni-config-center/changelog.md

@ -0,0 +1,6 @@
## 0.0.3(2022-11-11)
- 修复 config 方法获取根节点为数组格式配置时错误的转化为了对象的Bug
## 0.0.2(2021-04-16)
- 修改插件package信息
## 0.0.1(2021-03-15)
- 初始化项目

81
uni_modules/uni-config-center/package.json

@ -0,0 +1,81 @@
{
"id": "uni-config-center",
"displayName": "uni-config-center",
"version": "0.0.3",
"description": "uniCloud 配置中心",
"keywords": [
"配置",
"配置中心"
],
"repository": "",
"engines": {
"HBuilderX": "^3.1.0"
},
"dcloudext": {
"sale": {
"regular": {
"price": "0.00"
},
"sourcecode": {
"price": "0.00"
}
},
"contact": {
"qq": ""
},
"declaration": {
"ads": "无",
"data": "无",
"permissions": "无"
},
"npmurl": "",
"type": "unicloud-template-function"
},
"directories": {
"example": "../../../scripts/dist"
},
"uni_modules": {
"dependencies": [],
"encrypt": [],
"platforms": {
"cloud": {
"tcb": "y",
"aliyun": "y"
},
"client": {
"App": {
"app-vue": "u",
"app-nvue": "u"
},
"H5-mobile": {
"Safari": "u",
"Android Browser": "u",
"微信浏览器(Android)": "u",
"QQ浏览器(Android)": "u"
},
"H5-pc": {
"Chrome": "u",
"IE": "u",
"Edge": "u",
"Firefox": "u",
"Safari": "u"
},
"小程序": {
"微信": "u",
"阿里": "u",
"百度": "u",
"字节跳动": "u",
"QQ": "u"
},
"快应用": {
"华为": "u",
"联盟": "u"
},
"Vue": {
"vue2": "y",
"vue3": "u"
}
}
}
}
}

93
uni_modules/uni-config-center/readme.md

@ -0,0 +1,93 @@
# 为什么使用uni-config-center
实际开发中很多插件需要配置文件才可以正常运行,如果每个插件都单独进行配置的话就会产生下面这样的目录结构
```bash
cloudfunctions
└─────common 公共模块
├─plugin-a // 插件A对应的目录
│ ├─index.js
│ ├─config.json // plugin-a对应的配置文件
│ └─other-file.cert // plugin-a依赖的其他文件
└─plugin-b // plugin-b对应的目录
├─index.js
└─config.json // plugin-b对应的配置文件
```
假设插件作者要发布一个项目模板,里面使用了很多需要配置的插件,无论是作者发布还是用户使用都是一个大麻烦。
uni-config-center就是用了统一管理这些配置文件的,使用uni-config-center后的目录结构如下
```bash
cloudfunctions
└─────common 公共模块
├─plugin-a // 插件A对应的目录
│ └─index.js
├─plugin-b // plugin-b对应的目录
│ └─index.js
└─uni-config-center
├─index.js // config-center入口文件
├─plugin-a
│ ├─config.json // plugin-a对应的配置文件
│ └─other-file.cert // plugin-a依赖的其他文件
└─plugin-b
└─config.json // plugin-b对应的配置文件
```
使用uni-config-center后的优势
- 配置文件统一管理,分离插件主体和配置信息,更新插件更方便
- 支持对config.json设置schema,插件使用者在HBuilderX内编写config.json文件时会有更好的提示(后续HBuilderX会提供支持)
# 用法
在要使用uni-config-center的公共模块或云函数内引入uni-config-center依赖,请参考:[使用公共模块](https://uniapp.dcloud.net.cn/uniCloud/cf-common)
```js
const createConfig = require('uni-config-center')
const uniIdConfig = createConfig({
pluginId: 'uni-id', // 插件id
defaultConfig: { // 默认配置
tokenExpiresIn: 7200,
tokenExpiresThreshold: 600,
},
customMerge: function(defaultConfig, userConfig) { // 自定义默认配置和用户配置的合并规则,不设置的情况侠会对默认配置和用户配置进行深度合并
// defaudltConfig 默认配置
// userConfig 用户配置
return Object.assign(defaultConfig, userConfig)
}
})
// 以如下配置为例
// {
// "tokenExpiresIn": 7200,
// "passwordErrorLimit": 6,
// "bindTokenToDevice": false,
// "passwordErrorRetryTime": 3600,
// "app-plus": {
// "tokenExpiresIn": 2592000
// },
// "service": {
// "sms": {
// "codeExpiresIn": 300
// }
// }
// }
// 获取配置
uniIdConfig.config() // 获取全部配置,注意:uni-config-center内不存在对应插件目录时会返回空对象
uniIdConfig.config('tokenExpiresIn') // 指定键值获取配置,返回:7200
uniIdConfig.config('service.sms.codeExpiresIn') // 指定键值获取配置,返回:300
uniIdConfig.config('tokenExpiresThreshold', 600) // 指定键值获取配置,如果不存在则取传入的默认值,返回:600
// 获取文件绝对路径
uniIdConfig.resolve('custom-token.js') // 获取uni-config-center/uni-id/custom-token.js文件的路径
// 引用文件(require)
uniIDConfig.requireFile('custom-token.js') // 使用require方式引用uni-config-center/uni-id/custom-token.js文件。文件不存在时返回undefined,文件内有其他错误导致require失败时会抛出错误。
// 判断是否包含某文件
uniIDConfig.hasFile('custom-token.js') // 配置目录是否包含某文件,true: 文件存在,false: 文件不存在
```

1
uni_modules/uni-config-center/uniCloud/cloudfunctions/common/uni-config-center/index.js

File diff suppressed because one or more lines are too long

9
uni_modules/uni-config-center/uniCloud/cloudfunctions/common/uni-config-center/package.json

@ -0,0 +1,9 @@
{
"name": "uni-config-center",
"version": "0.0.3",
"description": "配置中心",
"main": "index.js",
"keywords": [],
"author": "DCloud",
"license": "Apache-2.0"
}

32
uni_modules/uni-id-common/changelog.md

@ -0,0 +1,32 @@
## 1.0.16(2023-04-25)
- 新增maxTokenLength配置,用于限制数据库用户记录token数组的最大长度
## 1.0.15(2023-04-06)
- 修复部分语言国际化出错的Bug
## 1.0.14(2023-03-07)
- 修复 admin用户包含其他角色时未包含在token的Bug
## 1.0.13(2022-07-21)
- 修复 创建token时未传角色权限信息生成的token不正确的bug
## 1.0.12(2022-07-15)
- 提升与旧版本uni-id的兼容性(补充读取配置文件时回退平台app-plus、h5),但是仍推荐使用新平台名进行配置(app、web)
## 1.0.11(2022-07-14)
- 修复 部分情况下报`read property 'reduce' of undefined`的错误
## 1.0.10(2022-07-11)
- 将token存储在用户表的token字段内,与旧版本uni-id保持一致
## 1.0.9(2022-07-01)
- checkToken兼容token内未缓存角色权限的情况,此时将查库获取角色权限
## 1.0.8(2022-07-01)
- 修复clientDB默认依赖时部分情况下获取不到uni-id配置的Bug
## 1.0.7(2022-06-30)
- 修复config文件不合法时未抛出具体错误的Bug
## 1.0.6(2022-06-28)
- 移除插件内的数据表schema
## 1.0.5(2022-06-27)
- 修复使用多应用配置时报`Cannot read property 'appId' of undefined`的Bug
## 1.0.4(2022-06-27)
- 修复使用自定义token内容功能报错的Bug [详情](https://ask.dcloud.net.cn/question/147945)
## 1.0.2(2022-06-23)
- 对齐旧版本uni-id默认配置
## 1.0.1(2022-06-22)
- 补充对uni-config-center的依赖
## 1.0.0(2022-06-21)
- 提供uni-id token创建、校验、刷新接口,简化旧版uni-id公共模块

84
uni_modules/uni-id-common/package.json

@ -0,0 +1,84 @@
{
"id": "uni-id-common",
"displayName": "uni-id-common",
"version": "1.0.16",
"description": "包含uni-id token生成、校验、刷新功能的云函数公共模块",
"keywords": [
"uni-id-common",
"uniCloud",
"token",
"权限"
],
"repository": "https://gitcode.net/dcloud/uni-id-common",
"engines": {
"HBuilderX": "^3.1.0"
},
"dcloudext": {
"sale": {
"regular": {
"price": "0.00"
},
"sourcecode": {
"price": "0.00"
}
},
"contact": {
"qq": ""
},
"declaration": {
"ads": "无",
"data": "无",
"permissions": "无"
},
"npmurl": "",
"type": "unicloud-template-function"
},
"uni_modules": {
"dependencies": ["uni-config-center"],
"encrypt": [],
"platforms": {
"cloud": {
"tcb": "y",
"aliyun": "y"
},
"client": {
"Vue": {
"vue2": "u",
"vue3": "u"
},
"App": {
"app-vue": "u",
"app-nvue": "u"
},
"H5-mobile": {
"Safari": "u",
"Android Browser": "u",
"微信浏览器(Android)": "u",
"QQ浏览器(Android)": "u"
},
"H5-pc": {
"Chrome": "u",
"IE": "u",
"Edge": "u",
"Firefox": "u",
"Safari": "u"
},
"小程序": {
"微信": "u",
"阿里": "u",
"百度": "u",
"字节跳动": "u",
"QQ": "u",
"钉钉": "u",
"快手": "u",
"飞书": "u",
"京东": "u"
},
"快应用": {
"华为": "u",
"联盟": "u"
}
}
}
}
}

3
uni_modules/uni-id-common/readme.md

@ -0,0 +1,3 @@
# uni-id-common
文档请参考:[uni-id-common](https://uniapp.dcloud.net.cn/uniCloud/uni-id-common.html)

1
uni_modules/uni-id-common/uniCloud/cloudfunctions/common/uni-id-common/index.js

File diff suppressed because one or more lines are too long

16
uni_modules/uni-id-common/uniCloud/cloudfunctions/common/uni-id-common/package.json

@ -0,0 +1,16 @@
{
"name": "uni-id-common",
"version": "1.0.16",
"description": "uni-id token生成、校验、刷新",
"main": "index.js",
"homepage": "https://uniapp.dcloud.io/uniCloud/uni-id-common.html",
"repository": {
"type": "git",
"url": "git+https://gitee.com/dcloud/uni-id-common.git"
},
"author": "DCloud",
"license": "Apache-2.0",
"dependencies": {
"uni-config-center": "file:../../../../../uni-config-center/uniCloud/cloudfunctions/common/uni-config-center"
}
}
Loading…
Cancel
Save