1
0
mirror of https://gitlab.com/shimaore/esl.git synced 2020-06-03 18:46:13 +00:00
Go to file
2019-05-26 10:26:47 +02:00
examples doc updates 2014-09-30 19:13:02 +02:00
src resolve unhandled promise rejection, add ref for logging purposes 2019-05-26 10:16:41 +02:00
test resolve unhandled promise rejection, add ref for logging purposes 2019-05-26 10:16:41 +02:00
.gitignore Use simpler Docker usage. 2015-12-23 14:33:46 +01:00
.npmignore Introducing docco. 2015-02-23 13:35:30 +01:00
.travis.yml update travis-ci 2017-12-21 22:52:39 +01:00
package.json update urls 2019-05-26 10:26:47 +02:00
README.md update documentation a bit 2019-05-26 10:25:07 +02:00
TODO update 2014-09-24 23:55:38 +02:00
UNLICENSE UNLICENSE 2013-05-20 12:22:30 +02:00

This module is a promise-based, chainable, client ('inbound' event socket) and server ('outbound' event socket) for FreeSwitch, written entirely in Javascript with no dependencies on the libesl library. This module is actively maintained and used in production systems.

Build Status

Client Usage

The following code does the equivalent of fs_cli -x: it connects to the Event Socket, runs a single command, then disconnects.

FS = require('esl');

var fs_command = function(cmd) {

  var client = FS.client(function(){
    var res = await this.api(cmd)
    // res contains the headers and body of FreeSwitch's response.
    res.body.should.match(/\+OK/);
    await this.exit();
    client.end();
  });
  client.connect(8021,'127.0.0.1');

};

fs_command("reloadxml");

The API methods return promises.

The original example as CoffeeScript:

FS = require 'esl'

fs_command = (cmd) ->

  client = FS.client ->
    await @api cmd
    await @exit()
    client.end()

  client.connect 8021, '127.0.0.1'

fs_command 'reloadxml'

Server Usage

From the FreeSwitch XML dialplan, you can connect to an Event Socket server using for example:

<action application="set" data="socket_resume=true"/>
<action application="socket" data="127.0.0.1:7000 async full"/>
<action application="respond" data="500 socket failure"/>

Here is a simplistic event server:

var call_handler = function() {
  res = await this.command('play-file', 'voicemail/vm-hello')
  var foo = res.body.variable_foo;
  await this.hangup() // hang-up the call
  await this.exit()   // tell FreeSwitch we're disconnecting
};

require('esl').server(call_handler).listen(7000);

Message tracing

During development it is often useful to be able to see what messages are sent to FreeSwitch or received from FreeSwitch. This module uses the debug module for tracing; simply call your application with

DEBUG='esl:*,-esl:*:trace'

to see traces.

The names available are esl:response and esl:main.

Install

npm install esl

Examples and Documentation

The test suite in test/0001.coffee.md provides many examples.

The API provides a summary of usage.

The methods available inside the call-handler are those of the response object: api, bgapi, command, command_uuid, etc.

Overview

This module is modelled after Node.js' own httpServer and client, and uses an event-driven interface wrapper inside a promise-based API.

It offers two Event Socket handlers, client() and server().

Typically a client would be used to trigger calls asynchronously (for example in a click-to-dial application); this mode of operation is called "inbound" (to FreeSwitch) in the Event Socket FreeSwitch documentation.

A server will handle calls sent to it using the "socket" diaplan application (called "outbound" mode in the Event Socket Outbound FreeSwitch documentation). The server is available at a pre-defined port which the socket dialplan application will specify.

Support

Please use GitHub issues.

Client Notes

Note: Use call.event_json('CHANNEL_HANGUP_COMPLETE','DTMF') to start receiving event notifications.

Server Notes

For some applications you might want to capture channel events instead of using the command() / callback pattern:

var esl = require('esl'),
    util = require('util');

var call_handler = function() {

  # for debugging
  this.trace(true);

  # These are called asynchronously.
  this.onceAsync('CHANNEL_ANSWER').then( function () {
    util.log('Call was answered');
  });
  this.onceAsync('CHANNEL_HANGUP').then(  function () {
    util.log('Call hangup');
  });
  this.onceAsync('CHANNEL_HANGUP_COMPLETE').then(  function () {
    util.log('Call was disconnected');
  });
  # However note that `on` cannot use a Promise (since it only would
  # get resolved once).
  this.on('SOME_MESSAGE', function(call) {
    util.log('Got Some Message');
  });
  // Remember to accept the messages since we're using `all_events: false` below.
  this.event_json('CHANNEL_ANSWER','CHANNEL_HANGUP','CHANNEL_HANGUP_COMPLETE','SOME_MESSAGE');
};

var server = esl.server({all_events:false},call_handler)
server.listen(3232);

Migrating from earlier versions

  • once has been renamed to onceAsync; onceAsync(event) returns a Promise. once is now the regular event-emitter once(event,callback).
  • Promises are native Promises, not bluebird's.

Alternative

The present module should be more convenient if you've already coded for Node.js and are used to promises and events. If you are coming from the world of FreeSwitch and are used to the Event Socket Library API, you might want to try node-esl.