Built motion from commit 1020cd7.|0.0.107
[motion.git] / server / api / fax_account / fax_account.controller.js
index d550303..6ea6bcb 100644 (file)
@@ -1,374 +1 @@
-'use strict';
-
-var _ = require('lodash');
-var util = require('util');
-var async = require('async');
-
-var Trunk = require('../../models').Trunk;
-var FaxAccount = require('../../models').FaxAccount;
-var FaxApplication = require('../../models').FaxApplication;
-var VoiceExtension = require('../../models').VoiceExtension;
-var sequelize = require('../../models').sequelize;
-
-// Get list of agents
-exports.index = function(req, res, next) {
-
-  var attributes = ['description', 'name', 'phone'];
-  var per_page = req.query.per_page ? parseInt(req.query.per_page, 10) : 100;
-  var page = req.query.page ? parseInt(req.query.page, 10) : 0;
-
-  var query = {
-    where: {},
-    limit: per_page,
-    offset: page * per_page
-  };
-
-  _.forIn(req.query, function(value, key) {
-    switch (key) {
-      case 'per_page':
-      case 'page':
-        break;
-      case 'sort_by':
-        query.order = util.format('%s %s', req.query.sort_by, req.query.sort_order || 'ASC') || null;
-        break;
-      case 'sort_order':
-        break;
-      case '$':
-        query.where.$or = [];
-        attributes.forEach(function(attribute) {
-          var tmp = {};
-          tmp[attribute] = {
-            $like: '%' + value + '%'
-          };
-
-          query.where.$or.push(tmp);
-        });
-        break;
-      default:
-        query.where[key] = {
-          $like: {}
-        };
-        query.where[key].$like = '%' + value + '%';
-    }
-  });
-
-  FaxAccount
-    .findAndCountAll(query)
-    .then(function(result) {
-
-      var total_pages = Math.ceil(result.count / per_page);
-      var next_page = total_pages > (query.offset + 1) ? util.format('%s://%s%s?page=%d', req.protocol, req.headers.host, req.baseUrl, page + 1) : null;
-      var previous_page = page > 0 ? util.format('%s://%s%s?page=%d', req.protocol, req.headers.host, req.baseUrl, page - 1) : null;
-
-      res.status(200).send({
-        count: result.count,
-        rows: result.rows,
-        next_page: next_page,
-        previous_page: previous_page,
-        total_pages: total_pages
-      });
-
-    })
-    .catch(function(err) {
-      res.status(500).send({
-        error: 'Something blew up!'
-      });
-    });
-};
-
-// Get a single faxAccount
-exports.show = function(req, res, next) {
-  FaxAccount
-    .findById(req.params.id)
-    .then(function(faxAccount) {
-      if (!faxAccount) {
-        return res.sendStatus(404);
-      }
-      return res.send(faxAccount);
-    })
-    .catch(function(err) {
-      return next(err);
-    });
-};
-
-// Creates a new faxAccount in the DB.
-exports.create = function(req, res, next) {
-  // console.log(req.body);
-  return sequelize
-    .transaction()
-    .then(function(t) {
-      async.waterfall([
-        function(callback) {
-          return FaxAccount
-            .create(req.body, {
-              transaction: t
-            })
-            .then(function(faxAccount) {
-              callback(null, faxAccount);
-            })
-            .catch(function(err) {
-              callback(err);
-            });
-        },
-        function(faxAccount, callback) {
-          return Trunk
-            .findById(req.body.TrunkId, {
-              transaction: t
-            })
-            .then(function(faxTrunk) {
-              callback(null, faxAccount, faxTrunk);
-            })
-            .catch(function(err) {
-              callback(err);
-            });
-        },
-        function(faxAccount, faxTrunk, callback) {
-          return VoiceExtension
-            .create({
-              context: faxTrunk.context,
-              exten: req.body.phone,
-              priority: 1,
-              app: 'Goto',
-              appdata: 'inbound-fax,s,1',
-              type: 'inbound-fax',
-              TrunkId: faxTrunk.id
-            }, {
-              transaction: t
-            })
-            .then(function(voiceExtension) {
-              callback(null, faxAccount);
-            })
-            .catch(function(err) {
-              callback(err);
-            });
-        }
-      ], function(err, faxAccount) {
-        if (err) {
-          console.log(err);
-          t.rollback();
-          return res.status(404).send(err);
-        } else {
-          console.log('ok');
-          t.commit();
-          return res.status(201).send(faxAccount);
-        }
-      })
-    });
-};
-
-// Updates an existing faxAccount in the DB.
-exports.update = function(req, res, next) {
-  // console.log(req.body);
-  // console.log(req.params);
-
-  if (req.body.id) {
-    delete req.body.id;
-  }
-
-  return sequelize
-    .transaction()
-    .then(function(t) {
-      async.waterfall([
-        function(callback) {
-          return FaxAccount
-            .findOne({
-              where: {
-                id: req.params.id
-              },
-              include: [{
-                model: Trunk
-              }]
-            }, {
-              transaction: t
-            })
-            .then(function(faxAccount) {
-              callback(null, faxAccount);
-            })
-            .catch(function(err) {
-              callback(err);
-            });
-        },
-        function(faxAccount, callback) {
-          return Trunk
-            .findById(req.body.TrunkId, {
-              transaction: t
-            })
-            .then(function(trunk) {
-              return faxAccount
-                .updateAttributes({
-                  TrunkId: trunk.id
-                }, {
-                  transaction: t
-                })
-                .then(function(data) {
-                  callback(null, faxAccount, trunk);
-                })
-                .catch(function(err) {
-                  callback(err);
-                });
-            })
-            .catch(function(err) {
-              callback(err);
-            });
-        },
-        function(faxAccount, trunk, callback) {
-          return VoiceExtension
-            .findOne({
-              where: {
-                priority: 1,
-                exten: faxAccount.phone,
-                context: faxAccount.Trunk.context
-              }
-            }, {
-              transaction: t
-            })
-            .then(function(voiceExtension) {
-              if (!voiceExtension) {
-                callback(null, faxAccount);
-              }
-              return voiceExtension
-                .updateAttributes({
-                  exten: req.body.phone,
-                  context: trunk.context,
-                  TrunkId: req.body.UserId
-                }, {
-                  transaction: t
-                })
-                .then(function() {
-                  console.log('voiceExtension edited');
-                  callback(null, faxAccount);
-                })
-                .catch(function(err) {
-                  callback(err);
-                });
-            })
-            .catch(function(err) {
-              callback(err);
-            });
-        },
-        function(faxAccount, callback) {
-          var updated = _.merge(faxAccount, req.body);
-          return updated.save({
-              transaction: t
-            })
-            .then(function() {
-              console.log('faxAccount saved');
-              callback(null, faxAccount);
-            })
-            .catch(function(err) {
-              callback(err);
-            });
-        }
-      ], function(err, faxAccount) {
-        if (err) {
-          console.log(err);
-          t.rollback();
-          return res.status(404).send(err);
-        } else {
-          console.log('ok');
-          t.commit();
-          return res.status(201).send(faxAccount);
-        }
-      })
-    });
-};
-
-// Deletes a faxAccount from the DB.
-exports.destroy = function(req, res, next) {
-  FaxAccount
-    .find({
-      where: {
-        id: req.params.id
-      }
-    })
-    .then(function(faxAccount) {
-      if (!faxAccount) {
-        return res.sendStatus(404);
-      }
-      faxAccount.destroy()
-        .then(function() {
-          return res.sendStatus(204);
-        })
-        .catch(function(err) {
-          next(err);
-        });
-    })
-    .catch(function(err) {
-      next(err);
-    });
-};
-
-exports.addApplications = function(req, res, next) {
-
-  FaxApplication
-    .findAll({
-      where: {
-        id: req.body.applications
-      }
-    })
-    .then(function(faxApplications) {
-      var tmpFaxApplications = faxApplications;
-
-      return sequelize.transaction(function(t) {
-        return FaxApplication.destroy({
-          where: {
-            id: req.body.applications
-          }
-        }, {
-          transaction: t
-        }).then(function() {
-
-          var sortedApplications = [];
-
-          for (var i = 0; i < req.body.applications.length; i++) {
-
-            var tmpFaxApplication = _.find(tmpFaxApplications, {
-              'id': req.body.applications[i]
-            });
-
-            if (tmpFaxApplication) {
-              tmpFaxApplication.priority = i + 1;
-              sortedApplications.push(tmpFaxApplication.dataValues);
-            }
-          }
-
-          return FaxApplication.bulkCreate(sortedApplications, {
-            transaction: t
-          }).then(function(data) {
-            return data;
-          });
-        });
-      }).then(function(result) {
-        return res.status(200).send(result);
-        // Transaction has been committed
-        // result is whatever the result of the promise chain returned to the transaction callback
-      }).catch(function(err) {
-        return handleError(res, err);
-        // Transaction has been rolled back
-        // err is whatever rejected the promise chain returned to the transaction callback
-      });
-    })
-    .catch(function(err) {
-      return next(err);
-    });
-};
-
-exports.bulkDestroy = function(req, res) {
-  FaxAccount
-    .destroy({
-      where: {
-        id: req.query.id
-      },
-      individualHooks: true
-    })
-    .then(function() {
-      return res.sendStatus(204);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-function handleError(res, err) {
-  return res.status(500).send(err);
-}
+var _0xd604=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x6C\x6F\x64\x61\x73\x68","\x2E\x2E\x2F\x2E\x2E\x2F\x63\x6F\x6E\x66\x69\x67\x2F\x75\x74\x69\x6C","\x73\x65\x71\x75\x65\x6C\x69\x7A\x65","\x2E\x2E\x2F\x2E\x2E\x2F\x6D\x6F\x64\x65\x6C\x73","\x46\x61\x78\x41\x63\x63\x6F\x75\x6E\x74","\x46\x61\x78\x52\x6F\x6F\x6D","\x46\x61\x78\x41\x70\x70\x6C\x69\x63\x61\x74\x69\x6F\x6E","\x46\x61\x78\x51\x75\x65\x75\x65","\x46\x61\x78\x44\x69\x73\x70\x6F\x73\x69\x74\x69\x6F\x6E","\x55\x73\x65\x72","\x73\x65\x6E\x64","\x73\x74\x61\x74\x75\x73","\x6A\x73\x6F\x6E","\x73\x65\x6E\x64\x53\x74\x61\x74\x75\x73","\x65\x6E\x64","\x74\x68\x65\x6E","\x75\x70\x64\x61\x74\x65\x41\x74\x74\x72\x69\x62\x75\x74\x65\x73","\x64\x65\x73\x74\x72\x6F\x79","\x69\x6E\x64\x65\x78","\x63\x61\x74\x63\x68","\x71\x75\x65\x72\x79","\x67\x65\x74\x51\x75\x65\x72\x79","\x66\x69\x6E\x64\x41\x6E\x64\x43\x6F\x75\x6E\x74\x41\x6C\x6C","\x73\x68\x6F\x77","\x69\x64","\x70\x61\x72\x61\x6D\x73","\x66\x69\x6E\x64\x42\x79\x49\x64","\x63\x72\x65\x61\x74\x65","\x68\x61\x6E\x64\x6C\x65\x55\x6E\x69\x71\x75\x65\x43\x6F\x6E\x73\x74\x72\x61\x69\x6E\x74\x45\x72\x72\x6F\x72","\x65\x72\x72\x6F\x72\x4D\x61\x6E\x61\x67\x65\x72","\x6D\x65\x73\x73\x61\x67\x65","\x45\x78\x74\x65\x6E\x73\x69\x6F\x6E\x2F\x63\x6F\x6E\x74\x65\x78\x74\x20\x63\x6F\x6D\x62\x69\x6E\x61\x74\x69\x6F\x6E\x20\x61\x6C\x72\x65\x61\x64\x79\x20\x65\x78\x69\x73\x74","\x74\x72\x61\x6E\x73\x6C\x61\x74\x65\x64\x4D\x65\x73\x73\x61\x67\x65","\x4D\x45\x53\x53\x41\x47\x45\x5F\x45\x58\x49\x53\x54\x5F\x52\x4F\x55\x54\x45","\x62\x6F\x64\x79","\x74\x72\x61\x6E\x73\x61\x63\x74\x69\x6F\x6E","\x75\x70\x64\x61\x74\x65","\x62\x75\x6C\x6B\x44\x65\x73\x74\x72\x6F\x79","\x69\x64\x73","\x73\x68\x6F\x77\x41\x70\x70\x6C\x69\x63\x61\x74\x69\x6F\x6E\x73","\x6C\x65\x6E\x67\x74\x68","\x6E\x61\x6D\x65","\x6F\x6E\x6C\x69\x6E\x65","\x6D\x65\x72\x67\x65","\x67\x65\x74\x46\x61\x78\x41\x70\x70\x6C\x69\x63\x61\x74\x69\x6F\x6E\x73","\x64\x65\x66\x61\x75\x6C\x74","\x73\x63\x6F\x70\x65","\x63\x72\x65\x61\x74\x65\x41\x70\x70\x6C\x69\x63\x61\x74\x69\x6F\x6E","\x70\x72\x69\x6F\x72\x69\x74\x79","\x46\x61\x78\x41\x63\x63\x6F\x75\x6E\x74\x49\x64","\x6D\x61\x78","\x62\x75\x6C\x6B\x44\x65\x73\x74\x72\x6F\x79\x41\x70\x70\x6C\x69\x63\x61\x74\x69\x6F\x6E\x73","\x64\x65\x73\x74\x72\x6F\x79\x41\x70\x70\x6C\x69\x63\x61\x74\x69\x6F\x6E","\x61\x70\x70\x49\x64","\x75\x70\x64\x61\x74\x65\x41\x70\x70\x6C\x69\x63\x61\x74\x69\x6F\x6E\x73","\x63\x72\x65\x61\x74\x65\x64\x41\x74","\x75\x70\x64\x61\x74\x65\x64\x41\x74","\x66\x6F\x72\x45\x61\x63\x68","\x62\x75\x6C\x6B\x43\x72\x65\x61\x74\x65","\x75\x70\x64\x61\x74\x65\x41\x70\x70\x6C\x69\x63\x61\x74\x69\x6F\x6E","\x73\x68\x6F\x77\x41\x70\x70\x6C\x69\x63\x61\x74\x69\x6F\x6E","\x67\x65\x74\x46\x61\x78\x52\x6F\x6F\x6D\x73","\x66\x72\x6F\x6D","\x64\x69\x73\x70\x6F\x73\x69\x74\x69\x6F\x6E","\x74\x61\x67\x73","\x6C\x61\x73\x74\x45\x76\x65\x6E\x74","\x69\x73\x41\x72\x72\x61\x79","\x25","\x70\x75\x73\x68","\x24\x61\x6E\x64","\x77\x68\x65\x72\x65","\x55\x4E\x4D\x41\x4E\x41\x47\x45\x44","\x69\x6E\x63\x6C\x75\x64\x65","\x75\x73\x65\x72","\x61\x67\x65\x6E\x74","\x72\x6F\x6C\x65","\x66\x69\x6E\x64\x41\x6C\x6C","\x67\x65\x74\x44\x69\x73\x70\x6F\x73\x69\x74\x69\x6F\x6E\x73","\x67\x65\x74\x46\x61\x78\x44\x69\x73\x70\x6F\x73\x69\x74\x69\x6F\x6E\x73","\x63\x72\x65\x61\x74\x65\x44\x69\x73\x70\x6F\x73\x69\x74\x69\x6F\x6E","\x75\x70\x64\x61\x74\x65\x44\x69\x73\x70\x6F\x73\x69\x74\x69\x6F\x6E","\x73\x61\x76\x65","\x64\x69\x73\x70\x49\x64","\x64\x65\x73\x74\x72\x6F\x79\x44\x69\x73\x70\x6F\x73\x69\x74\x69\x6F\x6E"];_0xd604[0];var _=require(_0xd604[1]);var Util=require(_0xd604[2]);var sequelize=require(_0xd604[4])[_0xd604[3]];var FaxAccount=require(_0xd604[4])[_0xd604[5]];var FaxRoom=require(_0xd604[4])[_0xd604[6]];var FaxApplication=require(_0xd604[4])[_0xd604[7]];var FaxQueue=require(_0xd604[4])[_0xd604[8]];var FaxDisposition=require(_0xd604[4])[_0xd604[9]];var User=require(_0xd604[4])[_0xd604[10]];function handleError(_0x8672xb,_0x8672xc){_0x8672xc=_0x8672xc||500;return function(_0x8672xd){_0x8672xb[_0xd604[12]](_0x8672xc)[_0xd604[11]](_0x8672xd)}}function responseWithResult(_0x8672xb,_0x8672xc){_0x8672xc=_0x8672xc||200;return function(_0x8672xf){if(_0x8672xf){_0x8672xb[_0xd604[12]](_0x8672xc)[_0xd604[13]](_0x8672xf)}}}function responseWithoutResult(_0x8672xb,_0x8672xc){_0x8672xc=_0x8672xc||204;return function(){_0x8672xb[_0xd604[14]](_0x8672xc)}}function handleEntityNotFound(_0x8672xb){return function(_0x8672xf){if(!_0x8672xf){_0x8672xb[_0xd604[12]](404)[_0xd604[15]]();return null};return _0x8672xf}}function saveUpdates(_0x8672x13){return function(_0x8672xf){return _0x8672xf[_0xd604[17]](_0x8672x13)[_0xd604[16]](function(_0x8672x14){return _0x8672x14})}}function removeEntity(_0x8672xb){return function(_0x8672xf){if(_0x8672xf){return _0x8672xf[_0xd604[18]]()[_0xd604[16]](function(){_0x8672xb[_0xd604[12]](204)[_0xd604[15]]()})}}}exports[_0xd604[19]]=function(_0x8672x16,_0x8672xb){return FaxAccount[_0xd604[23]](Util[_0xd604[22]](_0x8672x16[_0xd604[21]]))[_0xd604[16]](responseWithResult(_0x8672xb))[_0xd604[20]](handleError(_0x8672xb))};exports[_0xd604[24]]=function(_0x8672x16,_0x8672xb){return FaxAccount[_0xd604[27]](_0x8672x16[_0xd604[26]][_0xd604[25]])[_0xd604[16]](handleEntityNotFound(_0x8672xb))[_0xd604[16]](responseWithResult(_0x8672xb))[_0xd604[20]](handleError(_0x8672xb))};exports[_0xd604[28]]=function(_0x8672x16,_0x8672xb){return sequelize[_0xd604[36]](function(_0x8672x17){return FaxAccount[_0xd604[28]](_0x8672x16[_0xd604[35]],{transaction:_0x8672x17})})[_0xd604[16]](responseWithoutResult(_0x8672xb,201))[_0xd604[20]](sequelize.ValidationError,function(_0x8672xd){_0x8672xd[_0xd604[31]]=_0xd604[32];_0x8672xd[_0xd604[33]]=_0xd604[34];return _0x8672xb[_0xd604[12]](500)[_0xd604[11]](_0x8672xd)})[_0xd604[20]](sequelize.UniqueConstraintError,function(_0x8672xd){return Util[_0xd604[30]][_0xd604[29]](_0x8672xb,_0x8672xd)})[_0xd604[20]](handleError(_0x8672xb))};exports[_0xd604[37]]=function(_0x8672x16,_0x8672xb){if(_0x8672x16[_0xd604[35]][_0xd604[25]]){delete _0x8672x16[_0xd604[35]][_0xd604[25]]};return sequelize[_0xd604[36]](function(_0x8672x17){return FaxAccount[_0xd604[27]](_0x8672x16[_0xd604[26]][_0xd604[25]])[_0xd604[16]](handleEntityNotFound(_0x8672xb))[_0xd604[16]](function(_0x8672x18){return _0x8672x18[_0xd604[17]](_0x8672x16[_0xd604[35]],{transaction:_0x8672x17})})})[_0xd604[16]](responseWithoutResult(_0x8672xb))[_0xd604[20]](sequelize.ValidationError,function(_0x8672xd){_0x8672xd[_0xd604[31]]=_0xd604[32];_0x8672xd[_0xd604[33]]=_0xd604[34];return _0x8672xb[_0xd604[12]](500)[_0xd604[11]](_0x8672xd)})[_0xd604[20]](sequelize.UniqueConstraintError,function(_0x8672xd){return Util[_0xd604[30]][_0xd604[29]](_0x8672xb,_0x8672xd)})[_0xd604[20]](handleError(_0x8672xb))};exports[_0xd604[18]]=function(_0x8672x16,_0x8672xb){return sequelize[_0xd604[36]](function(_0x8672x17){return FaxAccount[_0xd604[27]](_0x8672x16[_0xd604[26]][_0xd604[25]])[_0xd604[16]](handleEntityNotFound(_0x8672xb))[_0xd604[16]](function(_0x8672x18){return _0x8672x18[_0xd604[18]]()})})[_0xd604[16]](function(){_0x8672xb[_0xd604[12]](204)[_0xd604[15]]()})[_0xd604[20]](handleError(_0x8672xb))};exports[_0xd604[38]]=function(_0x8672x16,_0x8672xb){return FaxAccount[_0xd604[18]]({where:{id:_0x8672x16[_0xd604[21]][_0xd604[39]]},individualHooks:true})[_0xd604[16]](responseWithoutResult(_0x8672xb))[_0xd604[20]](handleError(_0x8672xb))};exports[_0xd604[40]]=function(_0x8672x16,_0x8672xb,_0x8672x19){return FaxAccount[_0xd604[47]](_0xd604[46])[_0xd604[27]](_0x8672x16[_0xd604[26]][_0xd604[25]])[_0xd604[16]](handleEntityNotFound(_0x8672xb))[_0xd604[16]](function(_0x8672x18){return _0x8672x18[_0xd604[45]](_[_0xd604[44]](Util[_0xd604[22]](_0x8672x16[_0xd604[21]]),{include:[{model:FaxQueue,attributes:[_0xd604[25],_0xd604[42]]},{model:User,attributes:[_0xd604[25],_0xd604[42],_0xd604[43]]}]}))})[_0xd604[16]](function(_0x8672x1a){return _0x8672xb[_0xd604[11]]({count:_0x8672x1a[_0xd604[41]],rows:_0x8672x1a})})[_0xd604[20]](handleError(_0x8672xb))};exports[_0xd604[48]]=function(_0x8672x16,_0x8672xb,_0x8672x19){return FaxApplication[_0xd604[51]](_0xd604[49],{where:{FaxAccountId:_0x8672x16[_0xd604[26]][_0xd604[25]]}})[_0xd604[16]](function(_0x8672x1b){_0x8672x16[_0xd604[35]][_0xd604[49]]=_0x8672x1b?++_0x8672x1b:1;_0x8672x16[_0xd604[35]][_0xd604[50]]=_0x8672x16[_0xd604[26]][_0xd604[25]];return FaxApplication[_0xd604[28]](_0x8672x16[_0xd604[35]])})[_0xd604[16]](responseWithResult(_0x8672xb,201))[_0xd604[20]](handleError(_0x8672xb))};exports[_0xd604[52]]=function(_0x8672x16,_0x8672xb){return FaxApplication[_0xd604[18]]({where:{id:_0x8672x16[_0xd604[21]][_0xd604[39]]},individualHooks:true})[_0xd604[16]](responseWithoutResult(_0x8672xb))[_0xd604[20]](handleError(_0x8672xb))};exports[_0xd604[53]]=function(_0x8672x16,_0x8672xb,_0x8672x19){return FaxApplication[_0xd604[27]](_0x8672x16[_0xd604[26]][_0xd604[54]])[_0xd604[16]](handleEntityNotFound(_0x8672xb))[_0xd604[16]](removeEntity(_0x8672xb))[_0xd604[20]](handleError(_0x8672xb))};exports[_0xd604[55]]=function(_0x8672x16,_0x8672xb){var _0x8672x1c=0;var _0x8672x1d=_0x8672x16[_0xd604[35]];_0x8672x1d[_0xd604[58]](function(_0x8672x1e){delete _0x8672x1e[_0xd604[25]];delete _0x8672x1e[_0xd604[56]];delete _0x8672x1e[_0xd604[57]];_0x8672x1e[_0xd604[49]]= ++_0x8672x1c});return sequelize[_0xd604[36]](function(_0x8672x17){return FaxApplication[_0xd604[18]]({where:{FaxAccountId:_0x8672x16[_0xd604[26]][_0xd604[25]]},individualHooks:true,transaction:_0x8672x17})[_0xd604[16]](function(_0x8672x1f){return FaxApplication[_0xd604[59]](_0x8672x1d,{individualHooks:true,transaction:_0x8672x17})})})[_0xd604[16]](function(_0x8672x1a){return _0x8672xb[_0xd604[12]](200)[_0xd604[11]]({count:_0x8672x1a[_0xd604[41]],rows:_0x8672x1a})})[_0xd604[20]](handleError(_0x8672xb))};exports[_0xd604[60]]=function(_0x8672x16,_0x8672xb){if(_0x8672x16[_0xd604[35]][_0xd604[25]]){delete _0x8672x16[_0xd604[35]][_0xd604[25]]};return FaxApplication[_0xd604[27]](_0x8672x16[_0xd604[26]][_0xd604[54]])[_0xd604[16]](handleEntityNotFound(_0x8672xb))[_0xd604[16]](saveUpdates(_0x8672x16[_0xd604[35]]))[_0xd604[16]](responseWithResult(_0x8672xb))[_0xd604[20]](handleError(_0x8672xb))};exports[_0xd604[61]]=function(_0x8672x16,_0x8672xb){return FaxApplication[_0xd604[27]](_0x8672x16[_0xd604[26]][_0xd604[54]],{include:[{all:true}]})[_0xd604[16]](handleEntityNotFound(_0x8672xb))[_0xd604[16]](responseWithResult(_0x8672xb))[_0xd604[20]](handleError(_0x8672xb))};exports[_0xd604[62]]=function(_0x8672x16,_0x8672xb,_0x8672x19){var _0x8672x20={where:{FaxAccountId:_0x8672x16[_0xd604[26]][_0xd604[25]],$and:[]},attributes:[_0xd604[25],_0xd604[63],_0xd604[64],_0xd604[65],_0xd604[66],_0xd604[57]]};if(_0x8672x16[_0xd604[21]]){if(_0x8672x16[_0xd604[21]][_0xd604[65]]){if(_[_0xd604[67]](_0x8672x16[_0xd604[21]][_0xd604[65]])){for(var _0x8672x21=0;_0x8672x21<_0x8672x16[_0xd604[21]][_0xd604[65]][_0xd604[41]];_0x8672x21++){_0x8672x20[_0xd604[71]][_0xd604[70]][_0xd604[69]]({tags:{$like:_0xd604[68]+_0x8672x16[_0xd604[21]][_0xd604[65]][_0x8672x21]+_0xd604[68]}})}}else {_0x8672x20[_0xd604[71]][_0xd604[70]][_0xd604[69]]({tags:{$like:_0xd604[68]+_0x8672x16[_0xd604[21]][_0xd604[65]]+_0xd604[68]}})};delete _0x8672x16[_0xd604[21]][_0xd604[65]]};_[_0xd604[44]](_0x8672x20[_0xd604[71]],_0x8672x16[_0xd604[21]])};switch(_0x8672x16[_0xd604[74]][_0xd604[76]]){case _0xd604[75]:if(_0x8672x16[_0xd604[21]][_0xd604[12]]&&_0x8672x16[_0xd604[21]][_0xd604[12]]!==_0xd604[72]){_0x8672x20[_0xd604[73]]=[{model:User,where:{id:_0x8672x16[_0xd604[74]][_0xd604[25]]}}]};break;default:};return FaxRoom[_0xd604[77]](_0x8672x20)[_0xd604[16]](function(_0x8672x22){return _0x8672xb[_0xd604[12]](200)[_0xd604[11]](_0x8672x22)})[_0xd604[20]](handleError(_0x8672xb))};exports[_0xd604[78]]=function(_0x8672x16,_0x8672xb,_0x8672x19){return FaxAccount[_0xd604[27]](_0x8672x16[_0xd604[26]][_0xd604[25]])[_0xd604[16]](handleEntityNotFound(_0x8672xb))[_0xd604[16]](function(_0x8672x18){return _0x8672x18[_0xd604[79]]()})[_0xd604[16]](function(_0x8672x23){return _0x8672xb[_0xd604[12]](200)[_0xd604[11]]({rows:_0x8672x23,count:_0x8672x23[_0xd604[41]]})})[_0xd604[20]](handleError(_0x8672xb))};exports[_0xd604[80]]=function(_0x8672x16,_0x8672xb,_0x8672x19){_0x8672x16[_0xd604[35]][_0xd604[50]]=_0x8672x16[_0xd604[26]][_0xd604[25]];return FaxDisposition[_0xd604[28]](_0x8672x16[_0xd604[35]])[_0xd604[16]](responseWithResult(_0x8672xb,201))[_0xd604[20]](handleError(_0x8672xb))};exports[_0xd604[81]]=function(_0x8672x16,_0x8672xb){if(_0x8672x16[_0xd604[35]][_0xd604[25]]){delete _0x8672x16[_0xd604[35]][_0xd604[25]]};return FaxDisposition[_0xd604[27]](_0x8672x16[_0xd604[26]][_0xd604[83]])[_0xd604[16]](handleEntityNotFound(_0x8672xb))[_0xd604[16]](function(_0x8672x24){var _0x8672x14=_[_0xd604[44]](_0x8672x24,_0x8672x16[_0xd604[35]]);return _0x8672x14[_0xd604[82]]()})[_0xd604[16]](responseWithResult(_0x8672xb,200))[_0xd604[20]](handleError(_0x8672xb))};exports[_0xd604[84]]=function(_0x8672x16,_0x8672xb,_0x8672x19){return FaxDisposition[_0xd604[27]](_0x8672x16[_0xd604[26]][_0xd604[83]])[_0xd604[16]](handleEntityNotFound(_0x8672xb))[_0xd604[16]](function(_0x8672x25){return _0x8672x25[_0xd604[18]]()})[_0xd604[16]](responseWithoutResult(_0x8672xb,204))[_0xd604[20]](handleError(_0x8672xb))}
\ No newline at end of file