mtrudel-adhearsion 0.8.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (110) hide show
  1. data/CHANGELOG +26 -0
  2. data/EVENTS +11 -0
  3. data/LICENSE +456 -0
  4. data/Rakefile +127 -0
  5. data/adhearsion.gemspec +149 -0
  6. data/app_generators/ahn/USAGE +5 -0
  7. data/app_generators/ahn/ahn_generator.rb +91 -0
  8. data/app_generators/ahn/templates/.ahnrc +34 -0
  9. data/app_generators/ahn/templates/README +8 -0
  10. data/app_generators/ahn/templates/Rakefile +25 -0
  11. data/app_generators/ahn/templates/components/ami_remote/ami_remote.rb +15 -0
  12. data/app_generators/ahn/templates/components/disabled/HOW_TO_ENABLE +7 -0
  13. data/app_generators/ahn/templates/components/disabled/restful_rpc/README.markdown +11 -0
  14. data/app_generators/ahn/templates/components/disabled/restful_rpc/example-client.rb +48 -0
  15. data/app_generators/ahn/templates/components/disabled/restful_rpc/restful_rpc.rb +87 -0
  16. data/app_generators/ahn/templates/components/disabled/restful_rpc/restful_rpc.yml +34 -0
  17. data/app_generators/ahn/templates/components/disabled/restful_rpc/spec/restful_rpc_spec.rb +263 -0
  18. data/app_generators/ahn/templates/components/disabled/sandbox/sandbox.rb +104 -0
  19. data/app_generators/ahn/templates/components/disabled/sandbox/sandbox.yml +2 -0
  20. data/app_generators/ahn/templates/components/disabled/stomp_gateway/README.markdown +47 -0
  21. data/app_generators/ahn/templates/components/disabled/stomp_gateway/stomp_gateway.rb +34 -0
  22. data/app_generators/ahn/templates/components/disabled/stomp_gateway/stomp_gateway.yml +12 -0
  23. data/app_generators/ahn/templates/components/simon_game/simon_game.rb +56 -0
  24. data/app_generators/ahn/templates/config/startup.rb +50 -0
  25. data/app_generators/ahn/templates/dialplan.rb +3 -0
  26. data/app_generators/ahn/templates/events.rb +32 -0
  27. data/bin/ahn +28 -0
  28. data/bin/ahnctl +68 -0
  29. data/bin/jahn +42 -0
  30. data/examples/asterisk_manager_interface/standalone.rb +51 -0
  31. data/lib/adhearsion.rb +37 -0
  32. data/lib/adhearsion/cli.rb +223 -0
  33. data/lib/adhearsion/component_manager.rb +207 -0
  34. data/lib/adhearsion/component_manager/component_tester.rb +55 -0
  35. data/lib/adhearsion/component_manager/spec_framework.rb +24 -0
  36. data/lib/adhearsion/events_support.rb +84 -0
  37. data/lib/adhearsion/foundation/all.rb +9 -0
  38. data/lib/adhearsion/foundation/blank_slate.rb +5 -0
  39. data/lib/adhearsion/foundation/custom_daemonizer.rb +45 -0
  40. data/lib/adhearsion/foundation/event_socket.rb +203 -0
  41. data/lib/adhearsion/foundation/future_resource.rb +36 -0
  42. data/lib/adhearsion/foundation/global.rb +1 -0
  43. data/lib/adhearsion/foundation/metaprogramming.rb +17 -0
  44. data/lib/adhearsion/foundation/numeric.rb +13 -0
  45. data/lib/adhearsion/foundation/pseudo_guid.rb +10 -0
  46. data/lib/adhearsion/foundation/relationship_properties.rb +42 -0
  47. data/lib/adhearsion/foundation/string.rb +26 -0
  48. data/lib/adhearsion/foundation/synchronized_hash.rb +96 -0
  49. data/lib/adhearsion/foundation/thread_safety.rb +7 -0
  50. data/lib/adhearsion/host_definitions.rb +67 -0
  51. data/lib/adhearsion/initializer.rb +373 -0
  52. data/lib/adhearsion/initializer/asterisk.rb +81 -0
  53. data/lib/adhearsion/initializer/configuration.rb +254 -0
  54. data/lib/adhearsion/initializer/database.rb +50 -0
  55. data/lib/adhearsion/initializer/drb.rb +31 -0
  56. data/lib/adhearsion/initializer/freeswitch.rb +22 -0
  57. data/lib/adhearsion/initializer/rails.rb +41 -0
  58. data/lib/adhearsion/logging.rb +92 -0
  59. data/lib/adhearsion/tasks.rb +16 -0
  60. data/lib/adhearsion/tasks/database.rb +5 -0
  61. data/lib/adhearsion/tasks/deprecations.rb +59 -0
  62. data/lib/adhearsion/tasks/generating.rb +20 -0
  63. data/lib/adhearsion/tasks/lint.rb +4 -0
  64. data/lib/adhearsion/tasks/testing.rb +37 -0
  65. data/lib/adhearsion/version.rb +9 -0
  66. data/lib/adhearsion/voip/asterisk.rb +4 -0
  67. data/lib/adhearsion/voip/asterisk/agi_server.rb +84 -0
  68. data/lib/adhearsion/voip/asterisk/commands.rb +1314 -0
  69. data/lib/adhearsion/voip/asterisk/config_generators/agents.conf.rb +140 -0
  70. data/lib/adhearsion/voip/asterisk/config_generators/config_generator.rb +101 -0
  71. data/lib/adhearsion/voip/asterisk/config_generators/queues.conf.rb +250 -0
  72. data/lib/adhearsion/voip/asterisk/config_generators/voicemail.conf.rb +240 -0
  73. data/lib/adhearsion/voip/asterisk/config_manager.rb +71 -0
  74. data/lib/adhearsion/voip/asterisk/manager_interface.rb +597 -0
  75. data/lib/adhearsion/voip/asterisk/manager_interface/ami_lexer.rb +1589 -0
  76. data/lib/adhearsion/voip/asterisk/manager_interface/ami_lexer.rl.rb +286 -0
  77. data/lib/adhearsion/voip/asterisk/manager_interface/ami_messages.rb +78 -0
  78. data/lib/adhearsion/voip/asterisk/manager_interface/ami_protocol_lexer_machine.rl +87 -0
  79. data/lib/adhearsion/voip/asterisk/special_dial_plan_managers.rb +80 -0
  80. data/lib/adhearsion/voip/asterisk/super_manager.rb +19 -0
  81. data/lib/adhearsion/voip/call.rb +453 -0
  82. data/lib/adhearsion/voip/call_routing.rb +64 -0
  83. data/lib/adhearsion/voip/commands.rb +9 -0
  84. data/lib/adhearsion/voip/constants.rb +39 -0
  85. data/lib/adhearsion/voip/conveniences.rb +18 -0
  86. data/lib/adhearsion/voip/dial_plan.rb +218 -0
  87. data/lib/adhearsion/voip/dsl/dialing_dsl.rb +151 -0
  88. data/lib/adhearsion/voip/dsl/dialing_dsl/dialing_dsl_monkey_patches.rb +37 -0
  89. data/lib/adhearsion/voip/dsl/dialplan/control_passing_exception.rb +27 -0
  90. data/lib/adhearsion/voip/dsl/dialplan/dispatcher.rb +124 -0
  91. data/lib/adhearsion/voip/dsl/dialplan/parser.rb +71 -0
  92. data/lib/adhearsion/voip/dsl/dialplan/thread_mixin.rb +16 -0
  93. data/lib/adhearsion/voip/dsl/numerical_string.rb +117 -0
  94. data/lib/adhearsion/voip/freeswitch/basic_connection_manager.rb +48 -0
  95. data/lib/adhearsion/voip/freeswitch/event_handler.rb +58 -0
  96. data/lib/adhearsion/voip/freeswitch/freeswitch_dialplan_command_factory.rb +129 -0
  97. data/lib/adhearsion/voip/freeswitch/inbound_connection_manager.rb +38 -0
  98. data/lib/adhearsion/voip/freeswitch/oes_server.rb +195 -0
  99. data/lib/adhearsion/voip/menu_state_machine/calculated_match.rb +80 -0
  100. data/lib/adhearsion/voip/menu_state_machine/matchers.rb +123 -0
  101. data/lib/adhearsion/voip/menu_state_machine/menu_builder.rb +58 -0
  102. data/lib/adhearsion/voip/menu_state_machine/menu_class.rb +149 -0
  103. data/lib/theatre.rb +151 -0
  104. data/lib/theatre/README.markdown +64 -0
  105. data/lib/theatre/callback_definition_loader.rb +84 -0
  106. data/lib/theatre/guid.rb +23 -0
  107. data/lib/theatre/invocation.rb +121 -0
  108. data/lib/theatre/namespace_manager.rb +153 -0
  109. data/lib/theatre/version.rb +2 -0
  110. metadata +182 -0
@@ -0,0 +1,64 @@
1
+ module Adhearsion
2
+ module VoIP
3
+ module CallRouting
4
+ class Rule
5
+ attr_reader :patterns, :providers, :options
6
+
7
+ def initialize(*args, &block)
8
+ @options = args.pop
9
+ @patterns = Array(args)
10
+ @providers = Array(options[:to])
11
+ end
12
+ end
13
+
14
+ class RuleSet < Array
15
+ def [](index)
16
+ case index
17
+ when String
18
+ detect do |rule|
19
+ rule.patterns.any? do |pattern|
20
+ index =~ pattern
21
+ end
22
+ end
23
+ else
24
+ super
25
+ end
26
+ end
27
+ end
28
+
29
+ class Router
30
+ class << self
31
+ attr_accessor :rules
32
+
33
+ def define(&block)
34
+ returning new do |router|
35
+ router.define(&block)
36
+ rules.concat router.rules
37
+ end
38
+ end
39
+
40
+ def calculate_route_for(end_point)
41
+ if rule = rules[end_point.to_s]
42
+ rule.providers
43
+ end
44
+ end
45
+ end
46
+
47
+ self.rules ||= RuleSet.new
48
+
49
+ attr_reader :rules
50
+ def initialize
51
+ @rules = []
52
+ end
53
+
54
+ def define(&block)
55
+ instance_eval(&block)
56
+ end
57
+
58
+ def route(*args, &block)
59
+ rules << Rule.new(*args, &block)
60
+ end
61
+ end
62
+ end
63
+ end
64
+ end
@@ -0,0 +1,9 @@
1
+ module Adhearsion
2
+ module VoIP
3
+ module Commands
4
+ def self.for(platform_name)
5
+ Adhearsion::VoIP.const_get(platform_name.to_s.classify).const_get("Commands")
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,39 @@
1
+ # Adhearsion, open source collaboration framework
2
+ # Copyright (C) 2006,2007,2008 Jay Phillips
3
+ #
4
+ # This library is free software; you can redistribute it and/or
5
+ # modify it under the terms of the GNU Lesser General Public
6
+ # License as published by the Free Software Foundation; either
7
+ # version 2.1 of the License, or (at your option) any later version.
8
+ #
9
+ # This library is distributed in the hope that it will be useful,
10
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12
+ # Lesser General Public License for more details.
13
+ #
14
+ # You should have received a copy of the GNU Lesser General Public
15
+ # License along with this library; if not, write to the Free Software
16
+ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
+
18
+ module Adhearsion
19
+ module VoIP
20
+
21
+ # Please help adjust these if they may be inaccurate!
22
+ module Constants
23
+ US_LOCAL_NUMBER = /^[1-9]\d{6}$/
24
+ US_NATIONAL_NUMBER = /^1?[1-9]\d{2}[1-9]\d{6}$/
25
+ ISN = /^\d+\*\d+$/ # See http://freenum.org
26
+ SIP_URI = /^sip:[\w\._%+-]+@[\w\.-]+\.[a-zA-Z]{2,4}$/
27
+
28
+ # Type of Number definitions given over PRI. Taken from the Q.931-ITU spec, page 68.
29
+ Q931_TYPE_OF_NUMBER = Hash.new(:unknown).merge 0b001 => :international,
30
+ 0b010 => :national,
31
+ 0b011 => :network_specific,
32
+ 0b100 => :subscriber,
33
+ 0b110 => :abbreviated_number
34
+ end
35
+
36
+ include Constants
37
+
38
+ end
39
+ end
@@ -0,0 +1,18 @@
1
+ module Adhearsion
2
+ module VoIP
3
+ module Conveniences
4
+
5
+ # Compiles the provided Asterisk dialplan pattern into a Ruby regular
6
+ # expression. For more usage of Asterisk's pattern syntax, see
7
+ # http://www.voip-info.org/wiki/view/Asterisk+Dialplan+Patterns
8
+ def _(pattern)
9
+ # Uncomment the following code fragment for complete compatibility.
10
+ # The fragment handles the seldom-used hyphen number spacer with no
11
+ # meaning.
12
+ Regexp.new '^' << pattern.# gsub(/(?!\[[\w+-]+)-(?![\w-]+\])/,'').
13
+ gsub('X', '[0-9]').gsub('Z', '[1-9]').gsub('N','[2-9]').
14
+ gsub('.','.+').gsub('!','.*') << '$'
15
+ end
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,218 @@
1
+ # Hardcoding require for now since for some reason it's not being loaded
2
+ require 'adhearsion/voip/dsl/dialplan/control_passing_exception'
3
+
4
+ module Adhearsion
5
+ class DialPlan
6
+ attr_accessor :loader, :entry_points
7
+ def initialize(loader = Loader)
8
+ @loader = loader
9
+ @entry_points = @loader.load_dialplans.contexts
10
+ end
11
+
12
+ ##
13
+ # Lookup and return an entry point by context name
14
+ #
15
+ def lookup(context_name)
16
+ entry_points[context_name]
17
+ end
18
+
19
+ ##
20
+ # Executable environment for a dial plan in the scope of a call. This class has all the dialplan methods mixed into it.
21
+ #
22
+ class ExecutionEnvironment
23
+
24
+ class << self
25
+ def create(*args)
26
+ returning(new(*args)) { |instance| instance.stage! }
27
+ end
28
+ end
29
+
30
+ attr_reader :call
31
+ def initialize(call, entry_point)
32
+ @call, @entry_point = call, entry_point
33
+ end
34
+
35
+ ##
36
+ # Adds the methods to this ExecutionEnvironment which make it useful. e.g. dialplan-related methods, call variables,
37
+ # and component methods.
38
+ #
39
+ def stage!
40
+ extend_with_voip_commands!
41
+ extend_with_call_variables!
42
+ extend_with_dialplan_component_methods!
43
+ end
44
+
45
+ def run
46
+ raise "Cannot run ExecutionEnvironment without an entry point!" unless entry_point
47
+ current_context = entry_point
48
+ answer if AHN_CONFIG.automatically_answer_incoming_calls
49
+ begin
50
+ instance_eval(&current_context)
51
+ rescue Adhearsion::VoIP::DSL::Dialplan::ControlPassingException => exception
52
+ current_context = exception.target
53
+ retry
54
+ end
55
+ end
56
+
57
+ protected
58
+
59
+ attr_reader :entry_point
60
+ def extend_with_voip_commands!
61
+ extend Adhearsion::VoIP::Conveniences
62
+ extend Adhearsion::VoIP::Commands.for(call.originating_voip_platform)
63
+ end
64
+
65
+ def extend_with_call_variables!
66
+ call.define_variable_accessors self
67
+ end
68
+
69
+ def extend_with_dialplan_component_methods!
70
+ Components.component_manager.extend_object_with(self, :dialplan) if Components.component_manager
71
+ end
72
+
73
+ end
74
+
75
+ class Manager
76
+
77
+ class NoContextError < Exception; end
78
+
79
+ class << self
80
+ def handle(call)
81
+ new.handle(call)
82
+ end
83
+ end
84
+
85
+ attr_accessor :dial_plan, :context
86
+ def initialize
87
+ @dial_plan = DialPlan.new
88
+ end
89
+
90
+ def handle(call)
91
+ if call.failed_call?
92
+ environment = ExecutionEnvironment.create(call, nil)
93
+ call.extract_failed_reason_from environment
94
+ raise FailedExtensionCallException.new(environment)
95
+ end
96
+
97
+ if call.hungup_call?
98
+ raise HungupExtensionCallException.new(ExecutionEnvironment.new(call, nil))
99
+ end
100
+
101
+ starting_entry_point = entry_point_for call
102
+ raise NoContextError, "No dialplan entry point for call context '#{call.context}' -- Ignoring call!" unless starting_entry_point
103
+ @context = ExecutionEnvironment.create(call, starting_entry_point)
104
+ inject_context_names_into_environment @context
105
+ @context.run
106
+ end
107
+
108
+ # Find the dialplan by the context name from the call or from the
109
+ # first path entry in the AGI URL
110
+ def entry_point_for(call)
111
+ if (call.context.is_a? Symbol || !call.context.empty?) && entry_point = dial_plan.lookup(call.context.to_sym)
112
+ entry_point
113
+ elsif call.respond_to?(:request) && m = call.request.path.match(%r{/([^/]+)})
114
+ dial_plan.lookup(m[1].to_sym)
115
+ end
116
+ end
117
+
118
+ protected
119
+
120
+ def inject_context_names_into_environment(environment)
121
+ return unless dial_plan.entry_points
122
+ dial_plan.entry_points.each do |name, context|
123
+ environment.meta_def(name) { context }
124
+ end
125
+ end
126
+
127
+ end
128
+
129
+ class Loader
130
+ class << self
131
+ attr_accessor :default_dial_plan_file_name
132
+
133
+ def load(dial_plan_as_string)
134
+ string_io = StringIO.new dial_plan_as_string
135
+ def string_io.path
136
+ "(eval)"
137
+ end
138
+ load_dialplans string_io
139
+ end
140
+
141
+ def load_dialplans(*files)
142
+ files = Adhearsion::AHN_CONFIG.files_from_setting("paths", "dialplan") if files.empty?
143
+ files = Array files
144
+ files.map! do |file|
145
+ case file
146
+ when File, StringIO
147
+ file
148
+ when String
149
+ File.new file
150
+ else
151
+ raise ArgumentError, "Unrecognized type of file #{file.inspect}"
152
+ end
153
+ end
154
+ returning new do |loader|
155
+ files.each do |file|
156
+ loader.load file
157
+ end
158
+ end
159
+ end
160
+
161
+ end
162
+
163
+ self.default_dial_plan_file_name ||= 'dialplan.rb'
164
+
165
+ def initialize
166
+ @context_collector = ContextNameCollector.new
167
+ end
168
+
169
+ def contexts
170
+ @context_collector.contexts
171
+ end
172
+
173
+ def load(dialplan_file)
174
+ dialplan_code = dialplan_file.read
175
+ @context_collector.instance_eval(dialplan_code, dialplan_file.path)
176
+ nil
177
+ end
178
+
179
+ class ContextNameCollector# < ::BlankSlate
180
+
181
+ class << self
182
+
183
+ def const_missing(name)
184
+ super
185
+ rescue ArgumentError
186
+ raise NameError, %(undefined constant "#{name}")
187
+ end
188
+
189
+ end
190
+
191
+ attr_reader :contexts
192
+ def initialize
193
+ @contexts = {}
194
+ end
195
+
196
+ def method_missing(name, *args, &block)
197
+ super if !block_given? || args.any?
198
+ contexts[name] = DialplanContextProc.new(name, &block)
199
+ end
200
+
201
+ end
202
+ end
203
+ class DialplanContextProc < Proc
204
+
205
+ attr_reader :name
206
+
207
+ def initialize(name, &block)
208
+ super(&block)
209
+ @name = name
210
+ end
211
+
212
+ def +@
213
+ raise Adhearsion::VoIP::DSL::Dialplan::ControlPassingException.new(self)
214
+ end
215
+
216
+ end
217
+ end
218
+ end
@@ -0,0 +1,151 @@
1
+ # Adhearsion, open source collaboration framework
2
+ # Copyright (C) 2006,2007,2008 Jay Phillips
3
+ #
4
+ # This library is free software; you can redistribute it and/or
5
+ # modify it under the terms of the GNU Lesser General Public
6
+ # License as published by the Free Software Foundation; either
7
+ # version 2.1 of the License, or (at your option) any later version.
8
+ #
9
+ # This library is distributed in the hope that it will be useful,
10
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12
+ # Lesser General Public License for more details.
13
+ #
14
+ # You should have received a copy of the GNU Lesser General Public
15
+ # License along with this library; if not, write to the Free Software
16
+ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
+
18
+ require 'adhearsion/foundation/metaprogramming'
19
+ require 'adhearsion/voip/conveniences'
20
+ require 'adhearsion/voip/constants'
21
+ require 'adhearsion/voip/dsl/dialing_dsl/dialing_dsl_monkey_patches'
22
+
23
+ module Adhearsion
24
+ module VoIP
25
+ module DSL
26
+ class DialingDSL
27
+
28
+ extend Conveniences
29
+ include Constants
30
+
31
+ Regexp.class_eval do
32
+ include Adhearsion::VoIP::DSL::DialingDSL::MonkeyPatches::RegexpMonkeyPatch
33
+ end
34
+
35
+ def self.inherited(klass)
36
+ klass.class_eval do
37
+ [:@@providers, :@@routes].each do |var|
38
+ class_variable_set(var, [])
39
+ cattr_reader var.to_s.gsub('@@', '')
40
+ end
41
+ end
42
+ end
43
+
44
+ def self.calculate_routes_for(destination)
45
+ destination = destination.to_s
46
+ routes.select { |defined_route| defined_route === destination }.map &:providers
47
+ end
48
+
49
+ class ProviderDefinition < OpenStruct
50
+
51
+ def initialize(name)
52
+ super()
53
+ self.name = name.to_s.to_sym
54
+ end
55
+
56
+ def >>(other)
57
+ RouteRule.new :providers => [self, other]
58
+ end
59
+
60
+ def format_number_for_platform(number, platform=:asterisk)
61
+ case platform
62
+ when :asterisk
63
+ [protocol || "SIP", name || "default", number].join '/'
64
+ else
65
+ raise "Unsupported platform #{platform}!"
66
+ end
67
+ end
68
+
69
+ def format_number_for_platform(number, platform=:asterisk)
70
+ case platform
71
+ when :asterisk
72
+ [protocol || "SIP", name || "default", number].join '/'
73
+ else
74
+ raise "Unsupported platform #{platform}!"
75
+ end
76
+ end
77
+
78
+ def defined_properties_without_name
79
+ returning @table.clone do |copy|
80
+ copy.delete :name
81
+ end
82
+ end
83
+
84
+ end
85
+
86
+ protected
87
+
88
+ def self.provider(name, &block)
89
+ raise ArgumentError, "no block given" unless block_given?
90
+
91
+ options = ProviderDefinition.new name
92
+ yield options
93
+
94
+ providers << options
95
+ meta_def(name) { options }
96
+ end
97
+
98
+ def self.route(route)
99
+ routes << route
100
+ end
101
+
102
+ class RouteRule
103
+
104
+ attr_reader :patterns, :providers
105
+
106
+ def initialize(hash={})
107
+ @patterns = Array hash[:patterns]
108
+ @providers = Array hash[:providers]
109
+ end
110
+
111
+ def merge!(other)
112
+ providers.concat other.providers
113
+ patterns.concat other.patterns
114
+ self
115
+ end
116
+
117
+ def >>(other)
118
+ case other
119
+ when RouteRule: merge! other
120
+ when ProviderDefinition: providers << other
121
+ else raise RouteException, "Unrecognized object in route definition: #{other.inspect}"
122
+ end
123
+ self
124
+ end
125
+
126
+ def |(other)
127
+ case other
128
+ when RouteRule: merge! other
129
+ when Regexp
130
+ patterns << other
131
+ self
132
+ else raise other.inspect
133
+ end
134
+ end
135
+
136
+ def ===(other)
137
+ patterns.each { |pattern| return true if pattern === other }
138
+ false
139
+ end
140
+
141
+ def unshift_pattern(pattern)
142
+ patterns.unshift pattern
143
+ end
144
+
145
+ class RouteException < Exception; end
146
+
147
+ end
148
+ end
149
+ end
150
+ end
151
+ end