Built motion from commit 5e31ea4.|0.0.32
[motion.git] / server / api / report_mail / report_mail.socket.js
index 816ee4f..1fec069 100644 (file)
@@ -1 +1,35 @@
-var _0x392f=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x52\x65\x70\x6F\x72\x74\x4D\x61\x69\x6C","\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\x55\x70\x64\x61\x74\x65","\x61\x66\x74\x65\x72\x44\x65\x73\x74\x72\x6F\x79","\x6E\x61\x6D\x65","\x6D\x65\x6D\x62\x65\x72\x6E\x61\x6D\x65","\x72\x6F\x6C\x65","\x61\x64\x6D\x69\x6E","\x72\x65\x70\x6F\x72\x74\x5F\x6D\x61\x69\x6C\x3A\x73\x61\x76\x65","\x65\x6D\x69\x74","\x72\x65\x70\x6F\x72\x74\x5F\x6D\x61\x69\x6C\x3A\x75\x70\x64\x61\x74\x65","\x72\x65\x70\x6F\x72\x74\x5F\x6D\x61\x69\x6C\x3A\x72\x65\x6D\x6F\x76\x65"];_0x392f[0];var ReportMail=require(_0x392f[2])[_0x392f[1]];exports[_0x392f[3]]=function(_0xaafcx2){ReportMail[_0x392f[4]](function(_0xaafcx3){onSave(_0xaafcx2,_0xaafcx3)});ReportMail[_0x392f[5]](function(_0xaafcx3){onUpdate(_0xaafcx2,_0xaafcx3)});ReportMail[_0x392f[6]](function(_0xaafcx3){onRemove(_0xaafcx2,_0xaafcx3)});};function onSave(_0xaafcx2,_0xaafcx3,_0xaafcx5){if(_0xaafcx2[_0x392f[7]]===_0xaafcx3[_0x392f[8]]||_0xaafcx2[_0x392f[9]]===_0x392f[10]){_0xaafcx2[_0x392f[12]](_0x392f[11],_0xaafcx3)}}function onUpdate(_0xaafcx2,_0xaafcx3,_0xaafcx5){if(_0xaafcx2[_0x392f[7]]===_0xaafcx3[_0x392f[8]]||_0xaafcx2[_0x392f[9]]===_0x392f[10]){_0xaafcx2[_0x392f[12]](_0x392f[13],_0xaafcx3)}}function onRemove(_0xaafcx2,_0xaafcx3,_0xaafcx5){_0xaafcx2[_0x392f[12]](_0x392f[14],_0xaafcx3)}
\ No newline at end of file
+/**
+ * Broadcast updates to client when the model changes
+ */
+
+'use strict';
+
+var ReportMail = require('../../models').ReportMail;
+
+exports.register = function(socket) {
+  ReportMail.afterCreate(function(doc) {
+    onSave(socket, doc);
+  });
+  ReportMail.afterUpdate(function(doc) {
+    onUpdate(socket, doc);
+  });
+  ReportMail.afterDestroy(function(doc) {
+    onRemove(socket, doc);
+  });
+}
+
+function onSave(socket, doc, cb) {
+  if (socket.name === doc.membername || socket.role === 'admin') {
+    socket.emit('report_mail:save', doc);
+  }
+}
+
+function onUpdate(socket, doc, cb) {
+  if (socket.name === doc.membername || socket.role === 'admin') {
+    socket.emit('report_mail:update', doc);
+  }
+}
+
+function onRemove(socket, doc, cb) {
+  socket.emit('report_mail:remove', doc);
+}