-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
97 lines (84 loc) · 2.54 KB
/
index.js
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
const Koa = require('koa');
const bodyParser = require('koa-body');
const path = require('path');
const render = require('koa-ejs');
const mqtt = require('mqtt');
const url = require('url');
const Router = require('koa-router');
const app = module.exports = new Koa();
const router = new Router();
// Koa related stuff.
app.use(bodyParser());
render(app, {
root: path.join(__dirname, 'views'),
layout: 'layout',
viewExt: 'html',
cache: false,
debug: false
});
// All MQTT stuff begins here. Parse URL to get params
var mqtt_url = url.parse(process.env.CLOUDMQTT_URL || 'mqtt://ntqxchaq:[email protected]:12004');
//console.log(mqtt_url);
var auth = (mqtt_url.auth || ':').split(':');
// Create a client connection
var client = mqtt.connect(mqtt_url, {
port: mqtt_url.port,
hostname: mqtt_url.hostname,
username: auth[0],
password: auth[1]
});
client.stream.on('error', function (error) {
console.error('Connection error:', error);
});
client.on('connect', function() { // When connected
// subscribe to host topic to listen
client.subscribe('bonjour/host', function() {
});
// publish a message to a topic
client.publish('hallo/amsterdam', 'This is Sparta!!!', function() {
console.log("Message is published");
// client.end(); // Close the connection when published
});
client.on('message', function(topic, message, packet) {
//console.log("Received '" + message + "' on '" + topic + "'");
if(topic == 'bonjour/host'){
console.log("Received '" + message + "' on '" + topic + "'");
}
});
});
// Home Route
router.get('/', async ctx => {
await ctx.render('index');
});
//Download Route (for the workshop)
router.get('/mqtt', async ctx => {
await ctx.render('mqtt', {
mqttDetails: mqtt_url,
userDetails: auth
});
})
//Workshop steps to do
router.get('/workshop', async ctx => {
await ctx.render('workshop');
})
// Ping Route
router.get('/send', async (ctx,next) => {
// publish a message to a topic
client.publish('hallo/amsterdam', 'This is YeurDreamin!!!', function() {
console.log("Message is published1");
});
// Stay on Page
ctx.status = 204;
});
router.post('/send', async (ctx,next) => {
// publish a message to a topic
client.publish('hallo/amsterdam', 'This is YeurDreamin!!!', function() {
console.log('Message is published2');
});
ctx.status = 201;
ctx.message = 'Post Successful';
});
const PORT = process.env.PORT || 5001;
app.use(router.routes());
app.use(router.allowedMethods());
app.listen(PORT, console.log(`Server started on port ${PORT}`));