zhangzengfei
2022-05-12 6e94b9863450718093ffb5dfc9f2bd418f3d4d4a
1
2
3
4
5
6
7
8
9
10
11
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
package bhomedbapi
 
import (
    "basic.com/valib/c_bhomebus.git/proto/source/bhome_msg"
    "encoding/json"
)
 
type DeviceCtlApi struct {
 
}
 
func (api DeviceCtlApi) DevAuthApply(targetIp string, fromDevId string, fromIp string, key string) (bool,interface{}) {
    url := DATA_URL_PREFIX + "/devAuth/apply"
    dest := &bhome_msg.BHAddress{
        Ip: []byte(targetIp),
    }
    netNode := append([]*bhome_msg.MsgQueryTopicReply_BHNodeAddress{}, &bhome_msg.MsgQueryTopicReply_BHNodeAddress{
        Addr: dest,
    })
 
    client := NewClient(WithNodes(netNode))
    paramBody := map[string]interface{} {
        "key":       key,
        "fromDevId": fromDevId,
        "fromIp":    fromIp,
    }
    body,err := client.DoPutRequest(url,CONTENT_TYPE_JSON, paramBody,nil)
    if err != nil {
        return false,nil
    }
 
    var res Result
    if err = json.Unmarshal(body, &res); err != nil {
        return false,nil
    }
 
    return res.Success,res.Data
}
 
func (api DeviceCtlApi) DevDetail(targetIp string, devId string) (bool, interface{}) {
    url := DATA_URL_PREFIX + "/device/detail"
 
    dest := &bhome_msg.BHAddress{
        Ip: []byte(targetIp),
    }
    netNode := append([]*bhome_msg.MsgQueryTopicReply_BHNodeAddress{}, &bhome_msg.MsgQueryTopicReply_BHNodeAddress{
        Addr: dest,
    })
 
    paramQuery := map[string]string {
        "devId": devId,
    }
    client := NewClient(WithNodes(netNode))
    body,err := client.DoGetRequest(url,paramQuery,nil)
    if err != nil {
        return false,nil
    }
 
    var res Result
    if err = json.Unmarshal(body, &res); err != nil {
        return false,nil
    }
 
    return res.Success,res.Data
}
 
//控制其他节点创建集群
func (api DeviceCtlApi) RemoteCreateCluster(devId string, ip string, paramBody map[string]interface{}) (bool, interface{}) {
    url := DATA_URL_PREFIX + "/cluster/createCluster"
    dest := &bhome_msg.BHAddress{
        Ip: []byte(ip),
    }
    netNode := append([]*bhome_msg.MsgQueryTopicReply_BHNodeAddress{}, &bhome_msg.MsgQueryTopicReply_BHNodeAddress{
        Addr: dest,
    })
 
    client := NewClient(WithNodes(netNode))
 
    body,err := client.DoPutRequest(url,CONTENT_TYPE_JSON, paramBody,nil)
    if err != nil {
        return false,nil
    }
 
    var res Result
    if err = json.Unmarshal(body, &res); err != nil {
        return false,nil
    }
 
    return res.Success,res.Data
}
 
//控制其他节点搜索集群
func (api DeviceCtlApi) RemoteSearchCluster(devId string, ip string, paramBody map[string]interface{}) (bool, interface{}) {
    url := DATA_URL_PREFIX + "/cluster/search"
    dest := &bhome_msg.BHAddress{
        Ip: []byte(ip),
    }
    netNode := append([]*bhome_msg.MsgQueryTopicReply_BHNodeAddress{}, &bhome_msg.MsgQueryTopicReply_BHNodeAddress{
        Addr: dest,
    })
 
    client := NewClient(WithNodes(netNode))
 
    body,err := client.DoPutRequest(url,CONTENT_TYPE_JSON, paramBody,nil)
    if err != nil {
        return false,nil
    }
 
    var res Result
    if err = json.Unmarshal(body, &res); err != nil {
        return false,nil
    }
 
    return res.Success,res.Data
}
 
//获取远程设备搜索到集群节点列表
func (api DeviceCtlApi) RemoteGetSearchNodes(devId string, ip string, paramBody map[string]interface{}) (bool, interface{}) {
    url := DATA_URL_PREFIX + "/cluster/getSearchNodes"
    dest := &bhome_msg.BHAddress{
        Ip: []byte(ip),
    }
    netNode := append([]*bhome_msg.MsgQueryTopicReply_BHNodeAddress{}, &bhome_msg.MsgQueryTopicReply_BHNodeAddress{
        Addr: dest,
    })
 
    client := NewClient(WithNodes(netNode))
 
    body,err := client.DoPutRequest(url,CONTENT_TYPE_JSON, paramBody,nil)
    if err != nil {
        return false,nil
    }
 
    var res Result
    if err = json.Unmarshal(body, &res); err != nil {
        return false,nil
    }
 
    return res.Success,res.Data
}
 
//控制其他节点设备加入集群
func (api DeviceCtlApi) RemoteJoinCluster(devId string, ip string, paramBody map[string]interface{}) (bool, interface{}) {
    url := DATA_URL_PREFIX + "/cluster/joinCluster"
    dest := &bhome_msg.BHAddress{
        Ip: []byte(ip),
    }
    netNode := append([]*bhome_msg.MsgQueryTopicReply_BHNodeAddress{}, &bhome_msg.MsgQueryTopicReply_BHNodeAddress{
        Addr: dest,
    })
 
    client := NewClient(WithNodes(netNode))
 
    body,err := client.DoPutRequest(url,CONTENT_TYPE_JSON, paramBody,nil)
    if err != nil {
        return false,nil
    }
 
    var res Result
    if err = json.Unmarshal(body, &res); err != nil {
        return false,nil
    }
 
    return res.Success,res.Data
}
 
//远程控制设备重启
func (api DeviceCtlApi) RemoteReboot(devId string, ip string) (bool, interface{}) {
    url := DATA_URL_PREFIX + "/sysset/reboot"
    dest := &bhome_msg.BHAddress{
        Ip: []byte(ip),
    }
    netNode := append([]*bhome_msg.MsgQueryTopicReply_BHNodeAddress{}, &bhome_msg.MsgQueryTopicReply_BHNodeAddress{
        Addr: dest,
    })
 
    client := NewClient(WithNodes(netNode))
    paramBody := map[string]interface{} {
 
    }
    body,err := client.DoPutRequest(url,CONTENT_TYPE_JSON, paramBody,nil)
    if err != nil {
        return false,nil
    }
 
    var res Result
    if err = json.Unmarshal(body, &res); err != nil {
        return false,nil
    }
 
    return res.Success,res.Data
}
 
//远程控制算法或应用卸载
func (api DeviceCtlApi) RemoteUninstall(devId string, ip string, id string) (bool, interface{}) {
    url := DATA_URL_PREFIX + "/sdk/remoteUninstall"
    dest := &bhome_msg.BHAddress{
        Ip: []byte(ip),
    }
    netNode := append([]*bhome_msg.MsgQueryTopicReply_BHNodeAddress{}, &bhome_msg.MsgQueryTopicReply_BHNodeAddress{
        Addr: dest,
    })
 
    client := NewClient(WithNodes(netNode))
    paramBody := map[string]interface{} {
        "id": id,
    }
    body,err := client.DoPostRequest(url,CONTENT_TYPE_JSON, paramBody, nil,nil)
    if err != nil {
        return false,nil
    }
 
    var res Result
    if err = json.Unmarshal(body, &res); err != nil {
        return false,nil
    }
 
    return res.Success,res.Data
}
 
//远程控制设备系统更新
func (api DeviceCtlApi) RemoteSysUpdate(devId string, ip string) (bool, interface{}) {
    url := DATA_URL_PREFIX + "/sysset/remoteSysUpdate"
    dest := &bhome_msg.BHAddress{
        Ip: []byte(ip),
    }
    netNode := append([]*bhome_msg.MsgQueryTopicReply_BHNodeAddress{}, &bhome_msg.MsgQueryTopicReply_BHNodeAddress{
        Addr: dest,
    })
 
    client := NewClient(WithNodes(netNode))
 
    body,err := client.DoPutRequest(url,CONTENT_TYPE_JSON, nil,nil)
    if err != nil {
        return false,nil
    }
 
    var res Result
    if err = json.Unmarshal(body, &res); err != nil {
        return false,nil
    }
 
    return res.Success,res.Data
}