Skip to content

Configuration engine and CDR backend for Asterisk with MongoDB

Notifications You must be signed in to change notification settings

cervajs/ast_mongo

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Configuration engine and CDR backend for Asterisk with MongoDB

This project provides the following plugins for Asterisk with MongoDB;

  1. MongoDB configuration engine,
  2. MongoDB CDR backend,

and the development and test environment as well.

Install, build and test it

  1. git clone https://github.com/minoruta/ast_mongo.git
  2. Launch the mongodb VM to make backend MongoDB service.
  3. Launch the asterisk VM to build and run Asterisk server.
  4. Launch the nodejs VM to execute function tests.
desktop$ git clone https://github.com/minoruta/ast_mongo.git
desktop$ cd ast_mongo
desktop$ cd mongodb                     ; select mongodb VM
desktop$ vagrant up                     ; launch it as MongoDB server with test data
...
desktop$ cd ../asterisk                 ; select asterisk VM
desktop$ vagrant up                     ; launch it and build and run Asterisk
...
desktop$ cd ../nodejs                   ; select nodejs VM
desktop$ vagrant up                     ; launch it and prepare an environment to test
desktop$ vagrant ssh                    ; login it
Welcome to Ubuntu 14.04.4 LTS (GNU/Linux 3.19.0-25-generic x86_64)
...

vagrant@nodejs:~$ cd nodejs/res_config_mongodb/
vagrant@nodejs:~/nodejs/res_config_mongodb$ npm test            ; start the test

> functionTest@0.1.0 test /vagrant/nodejs/res_config_mongodb
> make

  A PJSIP UAS managed by res_config_mongodb
    ✓ should be offline at first (227ms)
    ✓ with unknown user should get 401 (227ms)
    ✓ with invalid password should get 401 (40ms)
    ✓ with right account should be online (109ms)
    ✓ with invalidated account should get 401 (73ms)
    ✓ should be offline at last (74ms)

  6 passing (2s)

  CDR by cdr_mongodb
    ✓ should log a call transaction (95ms)

  1 passing (1s)

vagrant@nodejs:~/nodejs/res_config_mongodb$ 

VMs and the network

This project adds the three VMs in your local network;

VM Function Guest OS mDNS name
mongodb provides backend MongoDB service Ubuntu 14.04 mongodb.local
asterisk provides an evironment to build and run Asterisk Ubuntu 14.04 asterisk.local
nodejs provides an evironment to test Asterisk Ubuntu 14.04 nodejs.local

Requirements

This project is developed under the following environments;

Licenses and Copyright

  • Licenses:
    • The related programs for Asterisk:
      • GNU GENERAL PUBLIC LICENSE Version 2
    • Any other resources and files:
      • The MIT License (MIT)
  • Copyright: (C) 2016, KINOSHITA minoru

About

Configuration engine and CDR backend for Asterisk with MongoDB

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 63.5%
  • JavaScript 24.8%
  • Shell 8.5%
  • Ruby 3.0%
  • Makefile 0.2%