-
Notifications
You must be signed in to change notification settings - Fork 4
/
server.js
64 lines (63 loc) · 1.39 KB
/
server.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
// Write your package code here!
mqtt = Npm.require("mqtt");
//var moment = Npm.require("moment");
// var mqttClient = {};
// var clients = {};
//
// MQTT = {
// connect: function(url, options){
// console.log("just checking");
// mqttClient = mqtt.connect(url, options);
// mqttClient.on("connect", publish);
// return mqttClient;
// }
// }
//
// MQTT.messages = new Meteor.Collection(null);
//
//
//
// function publish(){
// console.log("Publishing");
// Meteor.publish('messages', function(filter) {
// var self = this,
// ready = false;
// console.log("FILTER ", filter);
// mqttClient.on("message", function(topic, body) {
// console.log(topic + ": " + body);
// // build the object to store
// var msg = {
// message: body.toString(),
// topic: topic,
// ts: new Date()
// };
// // add the message to the collection (see below...)
// console.log("Message received and understood: ", msg);
// self.added("messages", new Date().toString(), msg);
// MQTT.messages.insert(msg);
// });
// self.ready();
// ready = true;
// });
// }
//
//
//
//
//
//
//
// Meteor.methods({
// MQTTconnect: function(url, options) {
//
// },
// MQTTsubscribe: function(topic){
// console.log("Client Subscription", topic);
// mqttClient.subscribe(topic);
//
// }
// });
//
// MQTT.connect = function(host) {
// console.log("I've been called");
// }