astproxy
Version:
Node.js proxy for Asterisk PBX
186 lines (162 loc) • 4.97 kB
JavaScript
/**
* @submodule plugins_command_13
*/
var action = require('../action');
var utilChannel13 = require('../proxy_logic_13/util_channel_13');
var AST_CHANNEL_STATE_2_STRING_ADAPTER = utilChannel13.AST_CHANNEL_STATE_2_STRING_ADAPTER;
/**
* The module identifier used by the logger.
*
* @property IDLOG
* @type string
* @private
* @final
* @readOnly
* @default [listChannels]
*/
var IDLOG = '[listChannels]';
(function() {
/**
* The logger. It must have at least three methods: _info, warn and error._
*
* @property logger
* @type object
* @private
* @default console
*/
var logger = console;
try {
/**
* Map associations between ActionID and callback to execute at the end
* of the command.
*
* @property map
* @type {object}
* @private
*/
var map = {};
/**
* List of all channels. The key is the channel identifier
* and the value is the _Channel_ object.
*
* @property list
* @type {object}
* @private
*/
var list = {};
/**
* Command plugin to get the list of all channels.
*
* Use it with _astproxy_ module as follow:
*
* ast_proxy.doCmd({ command: 'listChannels' }, function (res) {
* // some code
* });
*
* @class listChannels
* @static
*/
var listChannels = {
/**
* Execute asterisk action to get the list of all channels.
*
* @method execute
* @param {object} am Asterisk manager used to send the action
* @param {object} args The object containing optional parameters
* @param {function} cb The callback function
* @static
*/
execute: function(am, args, cb) {
try {
// action for asterisk
var act = {
Action: 'CoreShowChannels'
};
// set the action identifier
act.ActionID = action.getActionId('listChannels');
// add association ActionID-callback
map[act.ActionID] = cb;
// send action to asterisk
am.send(act);
} catch (err) {
logger.error(IDLOG, err.stack);
}
},
/**
* It's called from _astproxy_ component for each data received
* from asterisk and relative to this command.
*
* @method data
* @param {object} data The asterisk data for the current command.
* @static
*/
data: function(data) {
try {
// store new channel object
if (data.event === 'CoreShowChannel') {
// extract the extension name from the channel
var channelExten = utilChannel13.extractExtensionFromChannel(data.channel);
var obj = {
status: AST_CHANNEL_STATE_2_STRING_ADAPTER[data.channelstate],
channel: data.channel,
uniqueid: data.uniqueid,
callerNum: data.calleridnum,
callerName: data.calleridname,
bridgedNum: data.connectedlinenum,
bridgedName: data.connectedlinename,
inConference: data.application === 'MeetMe' ? true : false,
channelExten: channelExten,
linkedid: data.linkedid,
bridgeid: data.bridgeid
};
// add queue information
if (data.context === 'from-queue') {
obj.queue = data.exten;
}
list[data.channel] = obj;
} else if (map[data.actionid] && data.event === 'CoreShowChannelsComplete') {
map[data.actionid](null, list); // callback execution
}
if (data.event === 'CoreShowChannelsComplete') {
list = {}; // empty list
delete map[data.actionid]; // remove association ActionID-callback
}
} catch (err) {
logger.error(IDLOG, err.stack);
if (map[data.actionid]) {
map[data.actionid](err);
delete map[data.actionid]; // remove association ActionID-callback
}
}
},
/**
* Set the logger to be used.
*
* @method setLogger
* @param {object} log The logger object. It must have at least
* three methods: _info, warn and error_
* @static
*/
setLogger: function(log) {
try {
if (typeof log === 'object' &&
typeof log.info === 'function' &&
typeof log.warn === 'function' &&
typeof log.error === 'function') {
logger = log;
} else {
throw new Error('wrong logger object');
}
} catch (err) {
logger.error(IDLOG, err.stack);
}
}
};
// public interface
exports.data = listChannels.data;
exports.execute = listChannels.execute;
exports.setLogger = listChannels.setLogger;
} catch (err) {
logger.error(IDLOG, err.stack);
}
})();