Project

avaya

0.0
No commit activity in last 3 years
No release in over 3 years
If you are looking to talk to you Avaya Ip Office then this is the gem for you!
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.6
~> 0.1.0
~> 0
 Project Readme

Avaya Ip Office integration

Gem Version

This gem gives limted read only integration from your IPOFFICE (only tested on ip office 500v2)

Installation

Add this line to your application's Gemfile:

gem 'avaya'

or bleeding edge

gem 'avaya' , :git => 'git://github.com/freibuis/Avaya-IP-Office.git' ,branch: master

And then execute:

$ bundle

Or install it yourself as:

$ gem install avaya

For rails support just run the following command. This will create the initializer for you to edit

$ rails generate avaya:install

Usage

1st create the connection $ Avaya::Configuration.host = "ip_office_server_ipaddress"

Once you have set up the connection. you can use the helpers to get data out

Helper-ish

DirList: directory list

$ dir_list = Avaya::DirList.get

This returns an array of :name, :numbers

UserList: list of phone system users. if type is 3..7 then :ex_directory and :active is returned

   user_list = Avaya::UserList.get
   user_list = Avaya::UserList.get(2)
   user_list = Avaya::UserList.get(3)
   user_list = Avaya::UserList.get(4)

HunList: list of phone system groups.

   hunt_list = Avaya::HuntList.get

an array of :name,:ext,:queue,:voice_mails,:hunt_id is returned

Todo:

Currently user_info not working as I need to reverse engineer the values from the phone platform

Contributing

  1. Fork it ( https://github.com/freibuis/Avaya-IP-Office/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request