Skip to content

jsgoecke/skype_utils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Skype Utils

An Adhearsion component that provides a collection of methods for interacting with the Skype for Asterisk channel.

Features

- Provide an automatic translation betwen Skype Username and an Asterisk Extension for dialing in and out - Obtain all unique Skype Channel Variables when a Skype call arrives (a wealth of info here, see below) - Track all Skype buddy statuses in memory or in the database or both

- Statuses may be queried in the dialplan, in events or even over RPC (DRb, REST and STOMP)!

Requirements

- Adhearsion v0.8.x+ - Rails v2.2.2+ - Hobo v0.8.5+ - mislav-will_paginate v2.3.8+ (from Github) - sqlite3-ruby v1.2.4+ (or the gem for whichever database you would like to use)

Installation

In your ~ahn-project/components directory do:

git clone git://github.com/jsgoecke/skype_utils.git

Then cd to ~ahn-project/components/skype_utils/gui and do:

rake db:migrate RAILS_ENV=“production” script/server -e production (refer to Rails howtos for daemonizing as you wish)

Then login to http://yourserver:3000 and configure your users. Lastly, connect your Adhearsion
application to the Rails GUI by editing ~ahn-project/config/startup.rb:

config.enable_rails :path => ‘components/skype_utils/gui’, :env => :production

Dialplan.rb Example


    #Example of dialing an Asterisk extension and then converting to a 
    #Skype user to dial out over the Skype for Asterisk channel
    outbound_extension {
  
      skype_user = skype_user_translation({ :translate => 'to_skype', :value => extension })
      if skype_user
        dial "Skype/" + skype_user
      end
  
    }

    #Example of an inbound call from the Skype network that shows the Skype 
    #channel variables available, then translates to an Asterisk extension
    #based on the Skype username
    inbound_skype_call {
  
      #Get all of the relevant channel variables and log them
      skype_channel_variables = fetch_skype_channel_variables
      ahn_log.skype.info skype_channel_variables.inspect
  
      asterisk_extension = skype_user_translation({ :translate => 'to_asterisk', :value => callerid })
      if asterisk_user
        dial "SIP/" + asterisk_extension
      end 
      
      #Log the status of the Skype caller
      ahn_log.dialplan.info skype_user_status? callerid 

 	  #Log all statuses that are available
      ahn_log.diaplan.info skype_user_statuses
  
    }

Events.rb Example


  	# Standard statuses
  	# Online - user is online
  	# Skype Me - user is available and asking to be 'Skyped'
  	# Away - the user is away from their Skype client
  	# Not Available - the user is not available for a call
  	# Do Not Disturb - the user does not want to be disturbed
  	# Offline (Voicemail Enabled) - the user is offline and has voicemail
  	# Offline (Voicemail Disabled) - the user is offline and has no voicemail

#Drop this into your events.rb file to track Skype users statuses
events.asterisk.manager_interface.each do |event|
if event.name == ‘SkypeBuddyStatus’
skype_status_update(event)
end
end

Skype Channel Variables

Here is what is available:

- skype_languages – A space-separated list of language identifiers - skype_topic – A user-provided string that can identify the ‘topic’ - skype_token – Similar to skype_topic - skype_about – ‘about’ profile entry - skype_birthday – Birthday - skype_gender – Gender - skype_homepage – Home page URL - skype_homephone – Home phone number - skype_officephone – Office phone number - skype_mobilephone – Mobile phone number - skype_city – City name - skype_province – State/Province name - skype_country – Country name

And here is an example of what is returned with the component method ‘fetch_skype_channel_variables’:


INFO skype: {:skype_officephone=>"", :skype_about=>"Adhearsion (http://adhearsion.com)", :skype_mobilephone=>"", :skype_birthday=>"0", :skype_city=>"San Carlos", :skype_gender=>"1", :skype_province=>"CA", :skype_languages=>"en", :skype_homepage=>"http://blog.goecke.net", :skype_country=>"us", :skype_topic=>"", :skype_homephone=>"", :skype_token=>""}

License

The MIT License

Copyright © 2009 Jason Goecke

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the “Software”), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

About

Adhearsion component for the Skype for Asterisk Channel

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published