Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
flowagent
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
node-red
flowagent
Commits
793014f7
Commit
793014f7
authored
Dec 04, 2019
by
Chavee Issariyapat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove comment
parent
d176edea
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 additions
and
13 deletions
+1
-13
coordinator.js
+0
-13
mqttclient.js
+1
-0
No files found.
coordinator.js
View file @
793014f7
...
...
@@ -59,12 +59,6 @@ const Coordinator = function(param={}) {
this
.
localserver
.
on
(
'clientSubscribed'
,
function
(
packet
,
client
)
{
let
deviceid
=
client
.
id
.
split
(
':'
)[
0
];
// if client try to subscribe @msg/xxx/yyy --> flowagent subscribe @tap on a remote broker
// if (packet.topic.startsWith('@msg/')) {
// let msgpart = packet.topic.split('/').splice(3).join('/');
// outtopic = `@tap/msg/topic/${deviceid}:${client.token}/${msgpart}`;
// that.remoteclient.subscribe(outtopic);
// }
if
(
packet
.
topic
.
startsWith
(
'@local/msgin/'
))
{
let
msgpart
=
packet
.
topic
.
split
(
'/'
).
splice
(
4
).
join
(
'/'
);
outtopic
=
`@tap/msg/topic/
${
deviceid
}
:
${
client
.
token
}
/
${
msgpart
}
`
;
...
...
@@ -72,7 +66,6 @@ const Coordinator = function(param={}) {
}
else
{
}
});
this
.
localserver
.
on
(
'clientPublished'
,
function
(
packet
,
client
){
...
...
@@ -98,12 +91,6 @@ const Coordinator = function(param={}) {
that
.
remoteclient
.
publish
(
outtopic
,
outmsg
);
break
;
default
:
// if (packet.topic.startsWith('@msg/')) {
// let part = packet.topic.substr(5);
// outtopic = `@tap/msg/topic/${deviceid}:${client.token}/${part}`;
// outmsg = packet.payload.toString();
// that.remoteclient.publish(outtopic, outmsg);
// }
if
(
packet
.
topic
.
startsWith
(
'@local/msgout/'
))
{
let
part
=
packet
.
topic
.
substr
(
14
);
outtopic
=
`@tap/msg/topic/
${
deviceid
}
:
${
client
.
token
}
/
${
part
}
`
;
...
...
mqttclient.js
View file @
793014f7
...
...
@@ -39,6 +39,7 @@ MQTTClient.prototype.publish = function(topic, payload) {
this
.
client
.
publish
(
topic
,
payload
);
}
else
{
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment