From: Daniele Cinti Date: Thu, 15 Sep 2016 10:54:51 +0000 (+0200) Subject: Built motion from commit 8d82216.|0.0.141 X-Git-Tag: 20/10/16~66 X-Git-Url: http://repos.xcallymotion.com/base/%22./banner.jpg//%22%7B%7Blicense.chat?a=commitdiff_plain;h=992b7c56474156a4101ef5b9f656d0765dcdf7ca;p=motion.git Built motion from commit 8d82216.|0.0.141 --- diff --git a/release-notes/changelog_0.0.141.txt b/release-notes/changelog_0.0.141.txt index bfc50d3..abae8cb 100644 --- a/release-notes/changelog_0.0.141.txt +++ b/release-notes/changelog_0.0.141.txt @@ -1,5 +1,7 @@ # xCALLY MOTION Changelog +- * db963f2 - 2016-09-15: fax update +- * e09e78d - 2016-09-15: ACW fix - * 9b767de - 2016-09-15: server side app.js update - * 611e8c8 - 2016-09-14: Fixed trunk update from td registry - * 805104c - 2016-09-14: update fax @@ -122,5 +124,4 @@ - * 07ca80a - 2016-09-08: Check pwd pattern only when securepassword is on; Added new reports and report fields in production seed; Moved Analytics and Modules population outside firstSetup check. - * 749890e - 2016-09-08: restore button in motion dialer - * 4a54072 - 2016-09-08: rename interval and time column with time interval (all channels) -- * 10b591b - 2016-09-08: Added NOT LIKE operator in reports conditions; Added quotes for report fields in case of simple table field( not custom or metric) diff --git a/server/config/ami/action.js b/server/config/ami/action.js index 205a934..cd3893a 100644 --- a/server/config/ami/action.js +++ b/server/config/ami/action.js @@ -6,6 +6,7 @@ const Promise = require('bluebird'); const config = require('../environment'); const Agent = require('../../models').User; +const ActionModel = require('../../models').Action; const Sequelize = require('../../models').sequelize; const VoiceQueue = require('../../models').VoiceQueue; const ReportMember = require('../../models').ReportMember; @@ -24,6 +25,10 @@ function Action(ami, io) { io.to(util.format('%s:%s', doc.role, doc.id)).emit('agent:save', doc); }); + ActionModel.afterCreate(function(doc, options) { + return onSave(doc, options, ami); + }); + process.on('message', function(data) { switch (data.evt) { case 'Action.afterCreate': diff --git a/server/config/ami/acw.js b/server/config/ami/acw.js index 2799028..fbda450 100644 --- a/server/config/ami/acw.js +++ b/server/config/ami/acw.js @@ -12,9 +12,9 @@ var _voiceQueues; var _agents; var activeAcw = {}; -function ACW(ami) { +function AfterCallWork() { console.log('ACW Initialization...'); - return VoiceQueue + VoiceQueue .findAll() .then(function(voiceQueues) { _voiceQueues = voiceQueues; @@ -29,7 +29,7 @@ function ACW(ami) { synchCollection(Agent, _agents, 'id'); - Action.afterDestroy(function(doc, options) { + Action.afterCreate(function(doc, options) { return onSave(doc, options); }); }) @@ -38,38 +38,7 @@ function ACW(ami) { }); } -function onSave(doc, options) { - var acwTime; - if ((doc.name === 'pause' || doc.name === 'unpause') && activeAcw[options.body.agent]) { - if (doc.name === 'unpause' && activeAcw[options.body.agent].unpause) { - acwTime = activeAcw[options.body.agent].acwTime; - } else { - clearTimeout(activeAcw[options.body.agent].timeout); - acwTime = moment.duration(moment() - activeAcw[options.body.agent].acwAt).asSeconds(); - } - return ReportAgent - .update({ - agentacw: true, - acwtime: acwTime - }, { - where: { - uniqueid: activeAcw[options.body.agent].uniqueid, - destuniqueid: activeAcw[options.body.agent].destuniqueid - }, - // transaction: options.transaction, - individualHooks: true, - raw: true - }) - .catch(function(err) { - console.log(err); - }) - .finally(function() { - delete activeAcw[options.body.agent]; - }); - } -} - -ACW.prototype.agentcomplete = function(evt) { +AfterCallWork.prototype.agentcomplete = function(evt) { var queueIsAcw = _.find(_voiceQueues, { name: evt.queue, acw: true @@ -130,20 +99,51 @@ ACW.prototype.agentcomplete = function(evt) { } } +function onSave(doc, options) { + var acwTime; + if ((doc.name === 'pause' || doc.name === 'unpause') && activeAcw[options.body.agent]) { + if (doc.name === 'unpause' && activeAcw[options.body.agent].unpause) { + acwTime = activeAcw[options.body.agent].acwTime; + } else { + clearTimeout(activeAcw[options.body.agent].timeout); + acwTime = moment.duration(moment() - activeAcw[options.body.agent].acwAt).asSeconds(); + } + return ReportAgent + .update({ + agentacw: true, + acwtime: acwTime + }, { + where: { + uniqueid: activeAcw[options.body.agent].uniqueid, + destuniqueid: activeAcw[options.body.agent].destuniqueid + }, + // transaction: options.transaction, + individualHooks: true, + raw: true + }) + .catch(function(err) { + console.log(err); + }) + .finally(function() { + delete activeAcw[options.body.agent]; + }); + } +} + function synchCollection(model, array, uniqueProperty) { var condition = {}; - model.addHook('afterCreate', function(doc, options) { + model.afterCreate(function(doc, options) { condition[uniqueProperty] = doc[uniqueProperty] updateCollection(array, doc, condition); }); - model.addHook('afterUpdate', function(doc, options) { + model.afterUpdate(function(doc, options) { condition[uniqueProperty] = doc[uniqueProperty] updateCollection(array, doc, condition); }); - model.addHook('afterDestroy', function(doc, options) { + model.afterDestroy(function(doc, options) { condition[uniqueProperty] = doc[uniqueProperty] _.remove(array, condition); }); @@ -159,4 +159,4 @@ function updateCollection(collection, doc, condition) { } } -module.exports = ACW; +module.exports = AfterCallWork; diff --git a/server/config/ami/ami.js b/server/config/ami/ami.js index 018573b..80ff101 100644 --- a/server/config/ami/ami.js +++ b/server/config/ami/ami.js @@ -11,7 +11,7 @@ var QueueMember = require('./queue_member'); var Recording = require('./recording'); var Trunk = require('./trunk'); var Context = require('./voice_context'); -var ACW = require('./acw'); +var AfterCallWork = require('./acw'); var User = require('./user'); var Transfer = require('./transfer'); var Network = require('./network'); @@ -52,14 +52,15 @@ var recording = new Recording(); var trunk = new Trunk(ami); var context = new Context(ami); var action = new Action(ami, io); -var acw = new ACW(ami); +var acw = new AfterCallWork(); var user = new User(); var tranfer = new Transfer(); var network = new Network(ami); -var fax = new Fax(ami); +var fax = new Fax(ami, io); var dial = new Dial(); var cleaner = new Cleaner(ami); + // Asterisk Status Connect // Raised when asterisk is connected @@ -110,7 +111,7 @@ ami.on('agentcomplete', function(evt) { delete evt.holdtime; recording.updateQueue(evt); - // acw.agentcomplete(evt); + acw.agentcomplete(evt); agent.complete(evt); member.inboundComplete(evt); queuecaller.complete(evt); diff --git a/server/config/ami/fax.js b/server/config/ami/fax.js index a903639..98ac717 100644 --- a/server/config/ami/fax.js +++ b/server/config/ami/fax.js @@ -25,7 +25,7 @@ var Util = require('../util'); var Scheduler = require('../routing/scheduler'); var faxaccounts; -function Fax(ami) { +function Fax(ami, io) { console.log('Fax Initialization...'); process.on('message', function(data) { @@ -383,7 +383,7 @@ Fax.prototype.receivefax = function(evt) { }; -function sendfax(message, ami, retry, opt) { +function sendfax(message, ami, retry, opt, io) { if (message.status === 'SENDING') { var _fRoom; var _fMessage = message; @@ -419,9 +419,9 @@ function sendfax(message, ami, retry, opt) { return; }) .then(function() { - return _fAccount; + return [_fAccount, _fMessage]; }) - .then(getFaxRoom(_fMessage)) + .spread(getFaxRoom()) .then(function(faxRoom) { _fRoom = faxRoom; return _fRoom.addFaxMessage(_fMessage.id); @@ -438,7 +438,8 @@ function sendfax(message, ami, retry, opt) { user: opt.user }); }) - .then(function() { + .then(function(data) { + // io.emit('fax_room:save', data); return _fRoom.addUser(_fMessage.UserId); }) .then(function() { @@ -490,11 +491,16 @@ function sendfax(message, ami, retry, opt) { }) .then(function() { fs.chmodSync(_convertedFile, 511); //511 is the decimal version of 777 - return _fMessage.updateAttributes({ - filename: _convertedFile, - localstationid: _fMessage.from, - retry: retry - }); + return FaxMessage + .update({ + filename: _convertedFile, + localstationid: _fMessage.from, + retry: retry + }, { + where: { + id: _fMessage.id + } + }); }) .then(function() { return Promise @@ -526,10 +532,16 @@ function sendfax(message, ami, retry, opt) { }) .catch(function(err) { console.log('Error sending fax', err); - return _fMessage.update({ + return FaxMessage + .update({ status: 'FAILED' + }, { + where: { + id: _fMessage.id + } }) - .then(function() { + .then(function(data) { + // io.emit('fax_message:save', data); if (_fRoom) { return _fRoom.updateAttributes({ lastEvent: 'FAILED' @@ -537,6 +549,11 @@ function sendfax(message, ami, retry, opt) { } return; }) + // .then(function(data) { + // if (data) { + // io.emit('fax_room:save', data); + // } + // }) .catch(function(err) { console.log('Error updating error status'); }); @@ -544,16 +561,16 @@ function sendfax(message, ami, retry, opt) { } } -function getFaxRoom(_fMessage) { - return function(account) { - if (_fMessage.FaxRoomId) { - return FaxRoom.findById(_fMessage.FaxRoomId) +function getFaxRoom() { + return function(account, faxMessage) { + if (faxMessage.FaxRoomId) { + return FaxRoom.findById(faxMessage.FaxRoomId); } else { return FaxRoom .findAll({ limit: 1, where: { - contact: _fMessage.to, + contact: faxMessage.to, FaxAccountId: account.id }, order: [ @@ -565,7 +582,7 @@ function getFaxRoom(_fMessage) { if (!room || room.status === 'CLOSED') { return FaxRoom .create({ - contact: _fMessage.to, + contact: faxMessage.to, account: account.name, status: 'PENDING', FaxAccountId: account.id, diff --git a/server/config/ami/index.js b/server/config/ami/index.js index c6ad67c..702287a 100644 --- a/server/config/ami/index.js +++ b/server/config/ami/index.js @@ -32,37 +32,45 @@ FaxMessage.afterCreate(function(doc, options) { var data = { message: 'FaxMessage.afterCreate', doc: doc.dataValues, - options: options + options: { + user: options.user || null + } }; cpAmi.send(data); }); FaxMessage.afterUpdate(function(doc, options) { - options.changed = doc.changed(); var data = { message: 'FaxMessage.afterUpdate', doc: doc.dataValues, - options: options + options: { + user: options.user || null, + changed: doc.changed() + } }; cpAmi.send(data); }); ReportFax.afterUpdate(function(doc, options) { - options.changed = doc.changed(); var data = { message: 'ReportFax.afterUpdate', doc: doc.dataValues, - options: options + options: { + user: options.user || null, + changed: doc.changed() + } }; cpAmi.send(data); }); FaxRoom.afterUpdate(function(doc, options) { - options.changed = doc.changed(); var data = { message: 'FaxRoom.afterUpdate', doc: doc.dataValues, - options: options + options: { + user: options.user || null, + changed: doc.changed() + } }; cpAmi.send(data); }); @@ -71,17 +79,21 @@ FaxAccount.afterCreate(function(doc, options) { var data = { message: 'FaxAccount.afterCreate', doc: doc.dataValues, - options: options + options: { + user: options.user || null + } }; cpAmi.send(data); }); FaxAccount.afterUpdate(function(doc, options) { - options.changed = doc.changed(); var data = { message: 'FaxAccount.afterUpdate', doc: doc.dataValues, - options: options + options: { + user: options.user || null, + changed: doc.changed() + } }; cpAmi.send(data); }); @@ -90,7 +102,9 @@ FaxAccount.afterDestroy(function(doc, options) { var data = { message: 'FaxAccount.afterDestroy', doc: doc.dataValues, - options: options + options: { + user: options.user || null + } }; cpAmi.send(data); });