2022-01-12 20:02:10 +08:00
|
|
|
|
# Dlink协议
|
2022-03-09 19:16:40 +08:00
|
|
|
|
Dlink协议是针对物联网开发领域设计的一种数据交换规范,数据格式是JSON,用于设备端和物联网平台的双向通信,更便捷地实现和规范了设备端和物联网平台之间的业务数据交互。
|
2021-07-05 15:11:12 +08:00
|
|
|
|
|
2022-01-12 20:02:10 +08:00
|
|
|
|
## 协议框架
|
|
|
|
|
![dlink proctol.png](http://dgiot-1253666439.cos.ap-shanghai-fsi.myqcloud.com/shuwa_tech/zh/backend/dgiot/dlink%20proctol.png)
|
|
|
|
|
+ 设备层和用户层隔离,物理层和逻辑层隔离
|
|
|
|
|
+ 用户层mqtt权限与openApi权限保持一致性
|
|
|
|
|
+ 设备侧topic交互采用 {productId}/{deviceAddr}的组合来唯一标识设备, deviceAddr为设备物理地址
|
|
|
|
|
+ 用户侧topic交互采用{deviceId}来唯一标识设备,用{userId}来唯一标识用户,deviceId为设备虚拟地址
|
2021-07-05 15:11:12 +08:00
|
|
|
|
|
2022-01-29 14:44:38 +08:00
|
|
|
|
|
2022-01-12 20:02:10 +08:00
|
|
|
|
### 鉴权设计
|
|
|
|
|
+ %u 表示用Username做ACL规则
|
2022-01-24 17:47:17 +08:00
|
|
|
|
+ %c 表示用clientId做ACL规则
|
2022-03-09 19:16:40 +08:00
|
|
|
|
- 用户侧clientId用Token做ACL规则, Token是dgiot用户登录权限系统的token,与API权限一致
|
2022-05-07 17:45:58 +08:00
|
|
|
|
- 设备侧clientId为{productId}_{deviceAddr},或者 deviceAddr, 必须保证clientId的唯一性
|
2022-01-12 20:02:10 +08:00
|
|
|
|
|
|
|
|
|
| 客户端 | Username | Password | ClientId | 登录鉴权| 订阅ACL | 发布ACL|
|
|
|
|
|
| -------- | -------- | ------- | -------- |-------- | ------- | -------- |
|
2022-05-07 17:45:58 +08:00
|
|
|
|
| Device |{productId}|{productSecret}|clientId| 一型一密 | $dg/device/%u/# | $dg/thing/%u/# |
|
|
|
|
|
| Device |{productId}|{deviceSecret}|clientId| 一机一密 | $dg/device/%u/%d/# | $dg/thing/%u/%c/# |
|
|
|
|
|
| Device |{productId}|{productSecret}|clientId| 证书加密 | $dg/device/%u/# | $dg/thing/%u/# |
|
2022-01-24 17:47:17 +08:00
|
|
|
|
| User |{userId}|{Token}|{Token}| Token认证 | $dg/user/%c/# | $dg/thing/%c/# |
|
2022-01-12 20:02:10 +08:00
|
|
|
|
|
|
|
|
|
## topic设计
|
|
|
|
|
| 分类 | Topic | 发布者 | 订阅者 |
|
|
|
|
|
| -------- | -------- | ------- | -------- |
|
|
|
|
|
| 属性上报 |$dg/thing/{productId}/{deviceAddr}/properties/report|设备|平台|
|
2022-05-07 16:42:28 +08:00
|
|
|
|
| 告警上报 |$dg/alarm/{productId}/{deviceId}/properties/report|平台|用户|
|
2022-05-07 14:19:56 +08:00
|
|
|
|
| 组态消息 |$dg/user/{DeviceId}/konva/report|平台|用户|
|
|
|
|
|
| 卡片消息 |$dg/user/{DeviceId}/realtimecard/report|平台|用户|
|
2022-05-07 11:45:21 +08:00
|
|
|
|
| 子属性上报 |$dg/thing/{productId}/{deviceAddr}/gateway/sub_devices/properties/report|设备|平台|
|
|
|
|
|
| 子属性上报 |$dg/user/{deviceId}/gateway/sub_devices/properties/report|平台|用户|
|
|
|
|
|
| 属性设置 | $dg/thing/{deviceId}/properties/set/request_id={request_id}|用户|平台|
|
|
|
|
|
| 属性设置 | $dg/device/{productId}/{deviceAddr}/properties/set/request_id={request_id}|平台|设备|
|
|
|
|
|
| 属性设置 |$dg/thing/{productId}/{deviceAddr}/properties/set/request_id={request_id}|设备|平台|
|
|
|
|
|
| 属性设置 |$dg/user/{deviceId}/properties/set/request_id={request_id}|平台|用户|
|
|
|
|
|
| 属性获取 |$dg/thing/{deviceId}/properties/get/request_id={request_id}|用户|平台|
|
|
|
|
|
| 属性获取 |$dg/device/{productId}/{deviceAddr}/properties/get/response/request_id={request_id}|平台|设备|
|
|
|
|
|
| 属性获取 |$dg/thing/{productId}/{deviceAddr}/properties/get/response/request_id={request_id}|设备|平台|
|
|
|
|
|
| 属性获取|$dg/user/{deviceId}/properties/get/request_id={request_id}|平台|用户|
|
|
|
|
|
| 属性获取 |$dg/thing/{productId}/{deviceAddr}/shadow/get/request_id={request_id}|设备|平台|
|
|
|
|
|
| 属性获取 |$dg/device/{productId}/{deviceAddr}/shadow/get/request_id={request_id}|平台|设备|
|
2022-01-12 20:02:10 +08:00
|
|
|
|
| 事件上报 |$dg/thing/{productId}/{deviceAddr}/events|设备|平台|
|
|
|
|
|
| 事件上报 |$dg/user/{deviceId}/events|平台|用户|
|
2022-03-09 19:16:40 +08:00
|
|
|
|
| 通道消息 |$dg/channel/{channelId}/{productId}/{deviceId}|平台|用户|
|
|
|
|
|
| 通道设置 |$dg/channel/{channelId}/commands/request_id={request_id}|用户|平台|
|
|
|
|
|
| 通道设置 |$dg/channel/{channelId}/commands/response/request_id={request_id}|平台|用户|
|
|
|
|
|
| 大屏消息 |$dg/dashboard/{dashboardId}/{productId}/{deviceId}|平台|用户|
|
2022-03-21 17:05:24 +08:00
|
|
|
|
| 云云对接 |$dg/bridge/{bridgetopic}|平台|平台|
|
2022-01-12 20:02:10 +08:00
|
|
|
|
|
2022-05-07 14:19:56 +08:00
|
|
|
|
|
2022-01-12 20:02:10 +08:00
|
|
|
|
## payload设计
|
2022-05-07 11:45:21 +08:00
|
|
|
|
### 属性上报 ($dg/user/{deviceId}/properties/report)
|
2022-05-07 00:01:35 +08:00
|
|
|
|
+ dlink json格式
|
|
|
|
|
```json
|
|
|
|
|
{
|
|
|
|
|
"Power": "on",
|
|
|
|
|
"WF": 23.6
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
+ 透传/自定义
|
|
|
|
|
```
|
|
|
|
|
00002233441232013fa00000
|
|
|
|
|
```
|
|
|
|
|
### 事件上报 $dg/thing/{productId}/{deviceAddr}/events
|
|
|
|
|
```json
|
|
|
|
|
{
|
|
|
|
|
"Power": "on",
|
|
|
|
|
"WF": 23.6
|
|
|
|
|
}
|
|
|
|
|
```
|
2022-05-07 11:45:21 +08:00
|
|
|
|
|
2022-03-21 17:05:24 +08:00
|
|
|
|
## 通道接入
|
|
|
|
|
### http server
|
|
|
|
|
### http client
|
|
|
|
|
### mqtt client
|
|
|
|
|
### mqtt bridge
|
|
|
|
|
### tpc server
|
|
|
|
|
### tcp client
|
|
|
|
|
### udp server
|
|
|
|
|
### udp client
|
|
|
|
|
|
2022-01-29 14:44:38 +08:00
|
|
|
|
+ 支持grpc多语言编解码
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
Dlink RunTime Third-party Decode/Encode
|
|
|
|
|
+========================+ +========+==========+
|
2022-03-09 19:16:40 +08:00
|
|
|
|
| Dlink | | | |
|
2022-01-29 14:44:38 +08:00
|
|
|
|
| +----------------+ | gRPC | gRPC | User's |
|
|
|
|
|
| | gPRC Client | ------------------> | Server | Codes |
|
|
|
|
|
| +----------------+ | (HTTP/2) | | |
|
|
|
|
|
| | | | |
|
|
|
|
|
+========================+ +========+==========+
|
|
|
|
|
```
|
2022-01-29 21:08:28 +08:00
|
|
|
|
### gRPC
|
|
|
|
|
|
|
|
|
|
For instructions on how to use the language-specific gRPC runtime for a project,
|
|
|
|
|
please refer to these documents
|
|
|
|
|
|
|
|
|
|
- [C++](https://github.com/fastdgiot/grpc/tree/master/src/cpp): follow the instructions under the `src/cpp` directory
|
|
|
|
|
- [C#](https://github.com/fastdgiot/grpc/tree/master/src/csharp): NuGet package `Grpc`
|
|
|
|
|
- [Dart](https://github.com/grpc/grpc-dart): pub package `grpc`
|
|
|
|
|
- [Go](https://github.com/grpc/grpc-go): `go get google.golang.org/grpc`
|
|
|
|
|
- [Java](https://github.com/grpc/grpc-java): Use JARs from Maven Central
|
|
|
|
|
Repository
|
|
|
|
|
- [Kotlin](https://github.com/grpc/grpc-kotlin): Use JARs from Maven Central
|
|
|
|
|
Repository
|
|
|
|
|
- [Node](https://github.com/grpc/grpc-node): `npm install grpc`
|
|
|
|
|
- [Objective-C](https://github.com/fastdgiot/grpc/tree/master/src/objective-c): Add `gRPC-ProtoRPC` dependency to podspec
|
|
|
|
|
- [PHP](https://github.com/fastdgiot/grpc/tree/master/src/php): `pecl install grpc`
|
|
|
|
|
- [Python](https://github.com/fastdgiot/grpc/tree/master/src/python/grpcio): `pip install grpcio`
|
|
|
|
|
- [Ruby](https://github.com/fastdgiot/grpc/tree/master/src/ruby): `gem install grpc`
|
|
|
|
|
- [WebJS](https://github.com/grpc/grpc-web): follow the grpc-web instructions
|