Built motion from commit 5e31ea4.|0.0.32
[motion.git] / server / api / automation / automation.socket.js
index 7d75202..2c55b60 100644 (file)
@@ -1 +1,24 @@
-var _0xb8db=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x41\x75\x74\x6F\x6D\x61\x74\x69\x6F\x6E","\x2E\x2E\x2F\x2E\x2E\x2F\x6D\x6F\x64\x65\x6C\x73","\x72\x65\x67\x69\x73\x74\x65\x72","\x61\x66\x74\x65\x72\x43\x72\x65\x61\x74\x65","\x61\x66\x74\x65\x72\x44\x65\x73\x74\x72\x6F\x79","\x61\x75\x74\x6F\x6D\x61\x74\x69\x6F\x6E\x3A\x73\x61\x76\x65","\x65\x6D\x69\x74","\x61\x75\x74\x6F\x6D\x61\x74\x69\x6F\x6E\x3A\x72\x65\x6D\x6F\x76\x65"];_0xb8db[0];var Automation=require(_0xb8db[2])[_0xb8db[1]];exports[_0xb8db[3]]=function(_0xe12bx2){Automation[_0xb8db[4]](function(_0xe12bx3){onSave(_0xe12bx2,_0xe12bx3)});Automation[_0xb8db[5]](function(_0xe12bx3){onRemove(_0xe12bx2,_0xe12bx3)});};function onSave(_0xe12bx2,_0xe12bx3,_0xe12bx5){_0xe12bx2[_0xb8db[7]](_0xb8db[6],_0xe12bx3)}function onRemove(_0xe12bx2,_0xe12bx3,_0xe12bx5){_0xe12bx2[_0xb8db[7]](_0xb8db[8],_0xe12bx3)}
\ No newline at end of file
+/**
+ * Broadcast updates to client when the model changes
+ */
+
+'use strict';
+
+var Automation = require('../../models').Automation;
+
+exports.register = function(socket) {
+  Automation.afterCreate(function(doc) {
+    onSave(socket, doc);
+  });
+  Automation.afterDestroy(function(doc) {
+    onRemove(socket, doc);
+  });
+}
+
+function onSave(socket, doc, cb) {
+  socket.emit('automation:save', doc);
+}
+
+function onRemove(socket, doc, cb) {
+  socket.emit('automation:remove', doc);
+}