+ All Categories
Home > Technology > VoIP Drupal: building sites that send SMS, answer phone calls, and more

VoIP Drupal: building sites that send SMS, answer phone calls, and more

Date post: 11-Jun-2015
Category:
Upload: leo-burd
View: 3,299 times
Download: 0 times
Share this document with a friend
Description:
Slides used as part of the VoIP Drupal webinar carried on March 7, 2012
Popular Tags:
35
VoIP Drupal building sites that answer calls, send SMS, and more Leo Burd MIT Center for Civic Media MIT – 2012.03.07
Transcript
Page 1: VoIP Drupal: building sites that send SMS, answer phone calls, and more

VoIP Drupalbuilding sites that answer calls,

send SMS, and more

Leo Burd MIT Center for Civic Media

MIT – 2012.03.07

Page 2: VoIP Drupal: building sites that send SMS, answer phone calls, and more
Page 3: VoIP Drupal: building sites that send SMS, answer phone calls, and more

Goals

• Help people understand what VoIP Drupal is

• Demonstrate examples of what it can do

• Highlight the benefits of the platform

• Invite you to join the fun – it takes a village to raise

a platform!

Page 4: VoIP Drupal: building sites that send SMS, answer phone calls, and more

Acknowledgements

VoIP Drupal DevelopmentBen Bunk*, Blair McNeib*, Kester Edmonds, Tamer Zoubi

VoIP Drupal UXAdam Kalsey*, Andy Oram*, Hector Iribarne, Keith Casey Jr.*, Konstantin Ordoulidis*, Lee Vodra*, Mark J. Pearrow*, Micky Metts*, Owen Barton*

Note: volunteers names are marked with (*)

Page 5: VoIP Drupal: building sites that send SMS, answer phone calls, and more

The future of the web rests on voice-enabled

apps accessible even from regular phones (1)

(1) http://www.fastcompany.com/1719453/tim-berners-lees-voice-enabled-internet-quest-in-africa

Page 6: VoIP Drupal: building sites that send SMS, answer phone calls, and more

6Photo: Leo Burd (2005)

Page 7: VoIP Drupal: building sites that send SMS, answer phone calls, and more

VoIP Drupal is…

A software platform that enables Drupal sites to

•Make and answer phone calls

•Play and record audio messages

•Send and receive SMS

•Organize conference calls

•Implement voice menus and call routing

•Run polls, surveys, and many more things

Page 8: VoIP Drupal: building sites that send SMS, answer phone calls, and more

VoIP Drupal modules

Page 9: VoIP Drupal: building sites that send SMS, answer phone calls, and more

How things work

Page 10: VoIP Drupal: building sites that send SMS, answer phone calls, and more

VoIP Drupal modules

Page 11: VoIP Drupal: building sites that send SMS, answer phone calls, and more

Dialplan scripting commands– Dial number– Say text or audio file– Record audio from phone– GetInput from keypad– JoinConference– RejectCall– Hangup– SendText number, message– RunIvrMenu options

– Goto label– GotoIf label, condition– Gosub script name

Page 12: VoIP Drupal: building sites that send SMS, answer phone calls, and more

$script = new VoipScript('hello_world');$script->addSay('hello world');$script->addHangup();

Hello world

Page 13: VoIP Drupal: building sites that send SMS, answer phone calls, and more

$script = new VoipScript('voipscript_small_office_ivr'); $script->addSay(t('Welcome to our office hotline.’)); $script->addLabel(‘office_menu’);$options_menu = t(‘For sales, dial 1. For customer support, dial 2. For hours of operation, dial 3. To hang up, dial the star key.’);$input_options = array( ‘1’ => ‘sales’, ‘2’ => ‘customer support’, ‘3’ => ‘hours’, ‘*’ => ‘hang up’, ‘I’ => ‘hang up’, ‘t’ => ‘hang up’);$invalid_msg = t(‘Invalid option selected.’);$script->addRunIvrMenu($options_menu, $input_options, $invalid_msg);$script->addGoto(‘%ivr_option_selected’); $script->addLabel(‘sales’);$script->addSay(‘Sales department’);$script->addGoto(‘hang up’); $script->addLabel(‘customer support’);$script->addSay(t(‘Customer support department’));$script->addGoto(‘hang up’); $script->addLabel(‘hours’);$script->addSay(t(‘Our office is open Monday to Friday from 9am to 5pm.’));$script->addGoto(‘office_menu’); $script->addLabel(‘hang up’);$script->addSay(t(‘Thanks so much for calling our office. Bye bye.'));$script->addHangup(); 

Office hotline

Page 14: VoIP Drupal: building sites that send SMS, answer phone calls, and more
Page 15: VoIP Drupal: building sites that send SMS, answer phone calls, and more
Page 16: VoIP Drupal: building sites that send SMS, answer phone calls, and more
Page 17: VoIP Drupal: building sites that send SMS, answer phone calls, and more
Page 18: VoIP Drupal: building sites that send SMS, answer phone calls, and more

SameBoat South Wood County, Wisconsin

Page 19: VoIP Drupal: building sites that send SMS, answer phone calls, and more

Potential Outreach

Population

45,803200 community organizations

Page 20: VoIP Drupal: building sites that send SMS, answer phone calls, and more
Page 21: VoIP Drupal: building sites that send SMS, answer phone calls, and more
Page 22: VoIP Drupal: building sites that send SMS, answer phone calls, and more
Page 23: VoIP Drupal: building sites that send SMS, answer phone calls, and more

Signs located at: Walmart Job Center Food Pantry

Page 24: VoIP Drupal: building sites that send SMS, answer phone calls, and more

PDF Bulletins: Buyers Guide Job Center Food Pantry

Page 25: VoIP Drupal: building sites that send SMS, answer phone calls, and more

Community Hotline715-952-9020

Page 26: VoIP Drupal: building sites that send SMS, answer phone calls, and more

Potential VoIP Drupal applications• Go Out to Vote campaigns• 2-1-1 and 3-1-1 community hotlines• Call centers• Phone- and SMS-based surveys• Group communication• Story recording / playback• Audio speed dating services• Language training• Audio tours• Adventure games

• Interactive community radio programs

• Emergency announcements

• And much more!

Page 27: VoIP Drupal: building sites that send SMS, answer phone calls, and more

Key benefits of the platform

• Facilitates the construction of unified communications systems integrating SMS, email, web, and voice

• Makes Drupal accessible from any phone – no data plan required!

• Enables the expansion of “community plumbing” beyond the web

• Is open source and free – you are in control

Page 28: VoIP Drupal: building sites that send SMS, answer phone calls, and more

Benefits for administrators

• Easy installation and configuration – no programming required

• Fully customizable – enable only the features you need

• Run as part of the Drupal system itself

– Enable access to VoIP Drupal features using roles and permissions

– Assign Rules, Actions and Triggers

• Enhance user interaction with ready-to-use audio blogs, click-to-call fields, phone recorders, audio announcements, etc.

Page 29: VoIP Drupal: building sites that send SMS, answer phone calls, and more

Benefits for developers

• Well defined API that can be extended to other VoIP services

• 20+ sample scripts that can be customized

• 20+ modules that already implement common functionality – no need to reinvent the wheel

• Simple, yet powerful PHP-like scripting language with a short learning curve

• Visual programming language for novice developers and fast prototyping

Page 30: VoIP Drupal: building sites that send SMS, answer phone calls, and more

Future directions

• VoIP Drupal 1.0

• What’s Up and other VoIP apps

• Drupal 7 port

• Visual VoIP Drupal

• Integration with Drupal Commons, CiviCRM, OpenScholar, Open

Atrium and other systems

• Expand beyond MIT

Page 31: VoIP Drupal: building sites that send SMS, answer phone calls, and more

Visual VoIP Drupal

Page 32: VoIP Drupal: building sites that send SMS, answer phone calls, and more

Ways to get involved

• Join http://groups.drupal.org/voip-drupal

• Play with script examples in the sandbox

• Create new modules; new sites

• Contribute code, documentation

• Organize meetups

• Help us spread the word!

Page 33: VoIP Drupal: building sites that send SMS, answer phone calls, and more

Key take-aways

Much better understanding of

• What VoIP Drupal is

• How VoIP Drupal expands the power of computing beyond the browser

• Its potential uses for non-profit and for-profit organizations

• How to get started and where to find resources

– Sandbox

– Discussion group

– VoIP Drupal’s project page

Page 34: VoIP Drupal: building sites that send SMS, answer phone calls, and more

Upcoming events

• 3/14 :: Impromptu hands-on session with Micky on how to set up VoIP Drupal and get it to say ‘hello‘

• 3/20-23 :: Drupal Con Denver

– Introductory and hands-on sessions (TBD)

– Twilio contest: http://bit.ly/xAlgpV

– Tropo hackaton: http://bit.ly/z9IrUs

• Biweekly web gatherings after that

Page 35: VoIP Drupal: building sites that send SMS, answer phone calls, and more

[email protected]

http://groups.drupal.org/voip-drupal

http://linkd.in/vIewAW

For additional information

Special thanks to


Recommended