-
Notifications
You must be signed in to change notification settings - Fork 0
/
node_helper.js
47 lines (40 loc) · 1.34 KB
/
node_helper.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
/* MagicMirror²
* Node Helper: {{MODULE_NAME}}
*
* By {{AUTHOR_NAME}}
* {{LICENSE}} Licensed.
*/
var NodeHelper = require("node_helper");
module.exports = NodeHelper.create({
// Override socketNotificationReceived method.
/* socketNotificationReceived(notification, payload)
* This method is called when a socket notification arrives.
*
* argument notification string - The identifier of the noitication.
* argument payload mixed - The payload of the notification.
*/
socketNotificationReceived: function(notification, payload) {
if (notification === "{{MODULE_NAME}}-NOTIFICATION_TEST") {
console.log("Working notification system. Notification:", notification, "payload: ", payload);
// Send notification
this.sendNotificationTest(this.anotherFunction()); //Is possible send objects :)
}
},
// Example function send notification test
sendNotificationTest: function(payload) {
this.sendSocketNotification("{{MODULE_NAME}}-NOTIFICATION_TEST", payload);
},
// this you can create extra routes for your module
extraRoutes: function() {
var self = this;
this.expressApp.get("/{{MODULE_NAME}}/extra_route", function(req, res) {
// call another function
values = self.anotherFunction();
res.send(values);
});
},
// Test another function
anotherFunction: function() {
return {date: new Date(Date.now())};
}
});