eric-adhearsion 0.7.999
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +3 -0
- data/LICENSE +456 -0
- data/Manifest.txt +149 -0
- data/README.txt +6 -0
- data/Rakefile +48 -0
- data/ahn_generators/component/USAGE +5 -0
- data/ahn_generators/component/component_generator.rb +57 -0
- data/ahn_generators/component/templates/configuration.rb +0 -0
- data/ahn_generators/component/templates/lib/lib.rb.erb +3 -0
- data/ahn_generators/component/templates/test/test.rb.erb +12 -0
- data/ahn_generators/component/templates/test/test_helper.rb +14 -0
- data/app_generators/ahn/USAGE +5 -0
- data/app_generators/ahn/ahn_generator.rb +76 -0
- data/app_generators/ahn/templates/.ahnrc +12 -0
- data/app_generators/ahn/templates/README +8 -0
- data/app_generators/ahn/templates/Rakefile +3 -0
- data/app_generators/ahn/templates/components/simon_game/configuration.rb +0 -0
- data/app_generators/ahn/templates/components/simon_game/lib/simon_game.rb +61 -0
- data/app_generators/ahn/templates/components/simon_game/test/test_helper.rb +14 -0
- data/app_generators/ahn/templates/components/simon_game/test/test_simon_game.rb +31 -0
- data/app_generators/ahn/templates/config/startup.rb +53 -0
- data/app_generators/ahn/templates/dialplan.rb +4 -0
- data/bin/ahn +28 -0
- data/bin/ahnctl +68 -0
- data/bin/jahn +32 -0
- data/lib/adhearsion/blank_slate.rb +5 -0
- data/lib/adhearsion/cli.rb +106 -0
- data/lib/adhearsion/component_manager.rb +277 -0
- data/lib/adhearsion/core_extensions/all.rb +9 -0
- data/lib/adhearsion/core_extensions/array.rb +0 -0
- data/lib/adhearsion/core_extensions/custom_daemonizer.rb +45 -0
- data/lib/adhearsion/core_extensions/global.rb +1 -0
- data/lib/adhearsion/core_extensions/guid.rb +5 -0
- data/lib/adhearsion/core_extensions/hash.rb +0 -0
- data/lib/adhearsion/core_extensions/metaprogramming.rb +17 -0
- data/lib/adhearsion/core_extensions/numeric.rb +4 -0
- data/lib/adhearsion/core_extensions/proc.rb +0 -0
- data/lib/adhearsion/core_extensions/pseudo_uuid.rb +11 -0
- data/lib/adhearsion/core_extensions/publishable.rb +73 -0
- data/lib/adhearsion/core_extensions/relationship_properties.rb +40 -0
- data/lib/adhearsion/core_extensions/string.rb +26 -0
- data/lib/adhearsion/core_extensions/thread.rb +13 -0
- data/lib/adhearsion/core_extensions/thread_safety.rb +7 -0
- data/lib/adhearsion/core_extensions/time.rb +0 -0
- data/lib/adhearsion/distributed/gateways/dbus_gateway.rb +0 -0
- data/lib/adhearsion/distributed/gateways/osa_gateway.rb +0 -0
- data/lib/adhearsion/distributed/gateways/rest_gateway.rb +9 -0
- data/lib/adhearsion/distributed/gateways/soap_gateway.rb +9 -0
- data/lib/adhearsion/distributed/gateways/xmlrpc_gateway.rb +9 -0
- data/lib/adhearsion/distributed/peer_finder.rb +0 -0
- data/lib/adhearsion/distributed/remote_cli.rb +0 -0
- data/lib/adhearsion/hooks.rb +57 -0
- data/lib/adhearsion/host_definitions.rb +63 -0
- data/lib/adhearsion/initializer/asterisk.rb +59 -0
- data/lib/adhearsion/initializer/configuration.rb +202 -0
- data/lib/adhearsion/initializer/database.rb +92 -0
- data/lib/adhearsion/initializer/drb.rb +25 -0
- data/lib/adhearsion/initializer/freeswitch.rb +22 -0
- data/lib/adhearsion/initializer/paths.rb +55 -0
- data/lib/adhearsion/initializer/rails.rb +40 -0
- data/lib/adhearsion/initializer.rb +217 -0
- data/lib/adhearsion/logging.rb +92 -0
- data/lib/adhearsion/services/scheduler.rb +5 -0
- data/lib/adhearsion/tasks/database.rb +5 -0
- data/lib/adhearsion/tasks/generating.rb +20 -0
- data/lib/adhearsion/tasks/lint.rb +4 -0
- data/lib/adhearsion/tasks/testing.rb +37 -0
- data/lib/adhearsion/tasks.rb +15 -0
- data/lib/adhearsion/version.rb +9 -0
- data/lib/adhearsion/voip/asterisk/agi_server.rb +78 -0
- data/lib/adhearsion/voip/asterisk/ami/actions.rb +238 -0
- data/lib/adhearsion/voip/asterisk/ami/machine.rb +871 -0
- data/lib/adhearsion/voip/asterisk/ami/machine.rl +109 -0
- data/lib/adhearsion/voip/asterisk/ami/parser.rb +262 -0
- data/lib/adhearsion/voip/asterisk/ami.rb +147 -0
- data/lib/adhearsion/voip/asterisk/commands.rb +1182 -0
- data/lib/adhearsion/voip/asterisk/config_generators/agents.conf.rb +140 -0
- data/lib/adhearsion/voip/asterisk/config_generators/config_generator.rb +101 -0
- data/lib/adhearsion/voip/asterisk/config_generators/queues.conf.rb +250 -0
- data/lib/adhearsion/voip/asterisk/config_generators/voicemail.conf.rb +240 -0
- data/lib/adhearsion/voip/asterisk/config_manager.rb +71 -0
- data/lib/adhearsion/voip/asterisk/special_dial_plan_managers.rb +80 -0
- data/lib/adhearsion/voip/asterisk.rb +4 -0
- data/lib/adhearsion/voip/call.rb +391 -0
- data/lib/adhearsion/voip/call_routing.rb +64 -0
- data/lib/adhearsion/voip/commands.rb +9 -0
- data/lib/adhearsion/voip/constants.rb +39 -0
- data/lib/adhearsion/voip/conveniences.rb +18 -0
- data/lib/adhearsion/voip/dial_plan.rb +205 -0
- data/lib/adhearsion/voip/dsl/dialing_dsl/dialing_dsl_monkey_patches.rb +37 -0
- data/lib/adhearsion/voip/dsl/dialing_dsl.rb +151 -0
- data/lib/adhearsion/voip/dsl/dialplan/control_passing_exception.rb +27 -0
- data/lib/adhearsion/voip/dsl/dialplan/dispatcher.rb +124 -0
- data/lib/adhearsion/voip/dsl/dialplan/parser.rb +75 -0
- data/lib/adhearsion/voip/dsl/dialplan/thread_mixin.rb +16 -0
- data/lib/adhearsion/voip/dsl/numerical_string.rb +117 -0
- data/lib/adhearsion/voip/freeswitch/basic_connection_manager.rb +48 -0
- data/lib/adhearsion/voip/freeswitch/event_handler.rb +58 -0
- data/lib/adhearsion/voip/freeswitch/freeswitch_dialplan_command_factory.rb +129 -0
- data/lib/adhearsion/voip/freeswitch/inbound_connection_manager.rb +38 -0
- data/lib/adhearsion/voip/freeswitch/oes_server.rb +195 -0
- data/lib/adhearsion/voip/menu_state_machine/calculated_match.rb +80 -0
- data/lib/adhearsion/voip/menu_state_machine/matchers.rb +123 -0
- data/lib/adhearsion/voip/menu_state_machine/menu_builder.rb +58 -0
- data/lib/adhearsion/voip/menu_state_machine/menu_class.rb +149 -0
- data/lib/adhearsion.rb +31 -0
- data/script/destroy +14 -0
- data/script/generate +14 -0
- data/spec/fixtures/dialplan.rb +3 -0
- data/spec/initializer/test_configuration.rb +267 -0
- data/spec/initializer/test_loading.rb +162 -0
- data/spec/initializer/test_paths.rb +43 -0
- data/spec/silence.rb +10 -0
- data/spec/test_ahn_command.rb +149 -0
- data/spec/test_code_quality.rb +87 -0
- data/spec/test_component_manager.rb +97 -0
- data/spec/test_constants.rb +8 -0
- data/spec/test_drb.rb +104 -0
- data/spec/test_helper.rb +94 -0
- data/spec/test_hooks.rb +37 -0
- data/spec/test_host_definitions.rb +79 -0
- data/spec/test_initialization.rb +105 -0
- data/spec/test_logging.rb +80 -0
- data/spec/test_relationship_properties.rb +54 -0
- data/spec/voip/asterisk/ami_response_definitions.rb +23 -0
- data/spec/voip/asterisk/config_file_generators/test_agents.rb +253 -0
- data/spec/voip/asterisk/config_file_generators/test_queues.rb +325 -0
- data/spec/voip/asterisk/config_file_generators/test_voicemail.rb +306 -0
- data/spec/voip/asterisk/menu_command/test_calculated_match.rb +111 -0
- data/spec/voip/asterisk/menu_command/test_matchers.rb +98 -0
- data/spec/voip/asterisk/mock_ami_server.rb +176 -0
- data/spec/voip/asterisk/test_agi_server.rb +451 -0
- data/spec/voip/asterisk/test_ami.rb +227 -0
- data/spec/voip/asterisk/test_commands.rb +2006 -0
- data/spec/voip/asterisk/test_config_manager.rb +129 -0
- data/spec/voip/dsl/dispatcher_spec_helper.rb +45 -0
- data/spec/voip/dsl/test_dialing_dsl.rb +268 -0
- data/spec/voip/dsl/test_dispatcher.rb +82 -0
- data/spec/voip/dsl/test_parser.rb +87 -0
- data/spec/voip/freeswitch/test_basic_connection_manager.rb +39 -0
- data/spec/voip/freeswitch/test_inbound_connection_manager.rb +39 -0
- data/spec/voip/freeswitch/test_oes_server.rb +9 -0
- data/spec/voip/test_call_routing.rb +127 -0
- data/spec/voip/test_dialplan_manager.rb +372 -0
- data/spec/voip/test_numerical_string.rb +48 -0
- data/spec/voip/test_phone_number.rb +36 -0
- data/test/test_ahn_generator.rb +59 -0
- data/test/test_component_generator.rb +52 -0
- data/test/test_generator_helper.rb +20 -0
- metadata +254 -0
@@ -0,0 +1,240 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), 'config_generator')
|
2
|
+
|
3
|
+
module Adhearsion
|
4
|
+
module VoIP
|
5
|
+
module Asterisk
|
6
|
+
module ConfigFileGenerators
|
7
|
+
class Voicemail < AsteriskConfigGenerator
|
8
|
+
|
9
|
+
DEFAULT_GENERAL_SECTION = {
|
10
|
+
:format => :wav
|
11
|
+
}
|
12
|
+
|
13
|
+
# Don't worry. These will be overridable soon.
|
14
|
+
STATIC_ZONEMESSAGES_CONTEXT = %{
|
15
|
+
[zonemessages]
|
16
|
+
eastern=America/New_York|'vm-received' Q 'digits/at' IMp
|
17
|
+
central=America/Chicago|'vm-received' Q 'digits/at' IMp
|
18
|
+
central24=America/Chicago|'vm-received' q 'digits/at' H N 'hours'
|
19
|
+
military=Zulu|'vm-received' q 'digits/at' H N 'hours' 'phonetic/z_p'
|
20
|
+
european=Europe/Copenhagen|'vm-received' a d b 'digits/at' HM
|
21
|
+
}.unindent
|
22
|
+
|
23
|
+
attr_reader :properties, :context_definitions
|
24
|
+
def initialize
|
25
|
+
@properties = DEFAULT_GENERAL_SECTION.clone
|
26
|
+
@mailboxes = {}
|
27
|
+
@context_definitions = []
|
28
|
+
super
|
29
|
+
end
|
30
|
+
|
31
|
+
def context(name)
|
32
|
+
raise ArgumentError, "Name cannot be 'general'!" if name.to_s.downcase == 'general'
|
33
|
+
raise ArgumentError, "A name can only be characters, numbers, and underscores!" if name.to_s !~ /^[\w_]+$/
|
34
|
+
|
35
|
+
returning ContextDefinition.new(name) do |context_definition|
|
36
|
+
yield context_definition
|
37
|
+
context_definitions << context_definition
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
def greeting_maximum(seconds)
|
42
|
+
int "maxgreet" => seconds
|
43
|
+
end
|
44
|
+
|
45
|
+
def execute_on_pin_change(command)
|
46
|
+
string "externpass" => command
|
47
|
+
end
|
48
|
+
|
49
|
+
def recordings
|
50
|
+
@recordings ||= RecordingDefinition.new
|
51
|
+
yield @recordings if block_given?
|
52
|
+
@recordings
|
53
|
+
end
|
54
|
+
|
55
|
+
def emails
|
56
|
+
@emails ||= EmailDefinition.new
|
57
|
+
if block_given?
|
58
|
+
yield @emails
|
59
|
+
else
|
60
|
+
@emails
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
def to_s
|
65
|
+
email_properties = @emails ? @emails.properties : {}
|
66
|
+
AsteriskConfigGenerator.warning_message +
|
67
|
+
"[general]\n" +
|
68
|
+
properties.merge(email_properties).map { |(key,value)| "#{key}=#{value}" }.sort.join("\n") + "\n\n" +
|
69
|
+
STATIC_ZONEMESSAGES_CONTEXT +
|
70
|
+
context_definitions.map(&:to_s).join("\n\n")
|
71
|
+
end
|
72
|
+
|
73
|
+
private
|
74
|
+
|
75
|
+
class ContextDefinition < AsteriskConfigGenerator
|
76
|
+
|
77
|
+
attr_reader :mailboxes
|
78
|
+
def initialize(name)
|
79
|
+
@name = name
|
80
|
+
@mailboxes = []
|
81
|
+
super()
|
82
|
+
end
|
83
|
+
|
84
|
+
# TODO: This will hold a lot of the methods from the [general] section!
|
85
|
+
|
86
|
+
def to_s
|
87
|
+
(%W[[#@name]] + mailboxes.map(&:to_s)).join "\n"
|
88
|
+
end
|
89
|
+
|
90
|
+
def mailbox(mailbox_number)
|
91
|
+
box = MailboxDefinition.new(mailbox_number)
|
92
|
+
yield box
|
93
|
+
mailboxes << box
|
94
|
+
end
|
95
|
+
|
96
|
+
private
|
97
|
+
|
98
|
+
def mailbox_entry(options)
|
99
|
+
returning MailboxDefinition.new do |mailbox|
|
100
|
+
yield mailbox if block_given?
|
101
|
+
mailboxes << definition
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
class MailboxDefinition
|
106
|
+
|
107
|
+
attr_reader :mailbox_number
|
108
|
+
def initialize(mailbox_number)
|
109
|
+
check_numeric mailbox_number
|
110
|
+
@mailbox_number = mailbox_number
|
111
|
+
@definition = {}
|
112
|
+
super()
|
113
|
+
end
|
114
|
+
|
115
|
+
def pin_number(number)
|
116
|
+
check_numeric number
|
117
|
+
@definition[:pin_number] = number
|
118
|
+
end
|
119
|
+
|
120
|
+
def name(str)
|
121
|
+
@definition[:name] = str
|
122
|
+
end
|
123
|
+
|
124
|
+
def email(str)
|
125
|
+
@definition[:email] = str
|
126
|
+
end
|
127
|
+
|
128
|
+
def to_hash
|
129
|
+
@definition
|
130
|
+
end
|
131
|
+
|
132
|
+
def to_s
|
133
|
+
%(#{mailbox_number} => #{@definition[:pin_number]},#{@definition[:name]},#{@definition[:email]})[/^(.+?),*$/,1]
|
134
|
+
end
|
135
|
+
|
136
|
+
private
|
137
|
+
|
138
|
+
def check_numeric(number)
|
139
|
+
raise ArgumentError, number.inspect + " is not numeric!" unless number.to_s =~ /^\d+$/
|
140
|
+
end
|
141
|
+
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
145
|
+
class EmailDefinition < AsteriskConfigGenerator
|
146
|
+
EMAIL_VARIABLE_CONVENIENCES = {
|
147
|
+
:name => '${VM_NAME}',
|
148
|
+
:duration => '${VM_DUR}',
|
149
|
+
:message_number => '${VM_MSGNUM}',
|
150
|
+
:mailbox => '${VM_MAILBOX}',
|
151
|
+
:caller_id => '${VM_CALLERID}',
|
152
|
+
:date => '${VM_DATE}',
|
153
|
+
:caller_id_number => '${VM_CIDNUM}',
|
154
|
+
:caller_id_name => '${VM_CIDNAME}'
|
155
|
+
}
|
156
|
+
|
157
|
+
attr_reader :properties
|
158
|
+
def initialize
|
159
|
+
@properties = {}
|
160
|
+
super
|
161
|
+
end
|
162
|
+
|
163
|
+
def [](email_variable)
|
164
|
+
if EMAIL_VARIABLE_CONVENIENCES.has_key? email_variable
|
165
|
+
EMAIL_VARIABLE_CONVENIENCES[email_variable]
|
166
|
+
else
|
167
|
+
raise ArgumentError, "Unrecognized variable #{email_variable.inspect}"
|
168
|
+
end
|
169
|
+
end
|
170
|
+
|
171
|
+
def disable!
|
172
|
+
raise NotImpementedError
|
173
|
+
end
|
174
|
+
|
175
|
+
def from(options)
|
176
|
+
name, email = options.values_at :name, :email
|
177
|
+
string :serveremail => email
|
178
|
+
string :fromstring => name
|
179
|
+
end
|
180
|
+
|
181
|
+
def attach_recordings(true_or_false)
|
182
|
+
boolean :attach => true_or_false
|
183
|
+
end
|
184
|
+
|
185
|
+
def attach_recordings?
|
186
|
+
properties[:attach] == 'yes'
|
187
|
+
end
|
188
|
+
|
189
|
+
def body(str)
|
190
|
+
str = str.gsub("\r", '').gsub("\n", '\n')
|
191
|
+
if str.length > 512
|
192
|
+
raise ArgumentError, "Asterisk has an email body limit of 512 characters! Your body is too long!\n" +
|
193
|
+
("-" * 10) + "\n" + str
|
194
|
+
end
|
195
|
+
string :emailbody => str
|
196
|
+
end
|
197
|
+
|
198
|
+
def subject(str)
|
199
|
+
string :emailsubject => str
|
200
|
+
end
|
201
|
+
|
202
|
+
def command(cmd)
|
203
|
+
string :mailcmd => cmd
|
204
|
+
end
|
205
|
+
|
206
|
+
end
|
207
|
+
|
208
|
+
class RecordingDefinition < AsteriskConfigGenerator
|
209
|
+
|
210
|
+
attr_reader :properties
|
211
|
+
def initialize
|
212
|
+
@properties = {}
|
213
|
+
super
|
214
|
+
end
|
215
|
+
|
216
|
+
def format(symbol)
|
217
|
+
one_of [:gsm, :wav49, :wav], :format => symbol
|
218
|
+
end
|
219
|
+
|
220
|
+
def allowed_length(seconds)
|
221
|
+
case seconds
|
222
|
+
when Fixnum
|
223
|
+
int :maxmessage => "value"
|
224
|
+
when Range
|
225
|
+
int :minmessage => seconds.first
|
226
|
+
int :maxmessage => seconds.last
|
227
|
+
else
|
228
|
+
raise ArgumentError, "Argument must be a Fixnum or Range!"
|
229
|
+
end
|
230
|
+
end
|
231
|
+
|
232
|
+
def maximum_silence(seconds)
|
233
|
+
int :maxsilence => seconds
|
234
|
+
end
|
235
|
+
end
|
236
|
+
end
|
237
|
+
end
|
238
|
+
end
|
239
|
+
end
|
240
|
+
end
|
@@ -0,0 +1,71 @@
|
|
1
|
+
require 'enumerator'
|
2
|
+
module Adhearsion
|
3
|
+
module VoIP
|
4
|
+
module Asterisk
|
5
|
+
class ConfigurationManager
|
6
|
+
|
7
|
+
class << self
|
8
|
+
def normalize_configuration(file_contents)
|
9
|
+
# cat sip.conf | sed -e 's/\s*;.*$//g' | sed -e '/^;.*$/d' | sed -e '/^\s*$/d'
|
10
|
+
file_contents.split(/\n+/).map do |line|
|
11
|
+
line.sub(/;.+$/, '').strip
|
12
|
+
end.join("\n").squeeze("\n")
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
attr_reader :filename
|
17
|
+
|
18
|
+
def initialize(filename)
|
19
|
+
@filename = filename
|
20
|
+
end
|
21
|
+
|
22
|
+
def sections
|
23
|
+
@sections ||= read_configuration
|
24
|
+
end
|
25
|
+
|
26
|
+
def [](section_name)
|
27
|
+
result = sections.find { |(name, *rest)| section_name == name }
|
28
|
+
result.last if result
|
29
|
+
end
|
30
|
+
|
31
|
+
def delete_section(section_name)
|
32
|
+
sections.reject! { |(name, *rest)| section_name == name }
|
33
|
+
end
|
34
|
+
|
35
|
+
def new_section(name, properties={})
|
36
|
+
sections << [name, properties]
|
37
|
+
end
|
38
|
+
|
39
|
+
private
|
40
|
+
|
41
|
+
def read_configuration
|
42
|
+
normalized_file = self.class.normalize_configuration execute(read_command)
|
43
|
+
normalized_file.split(/^\[([-_\w]+)\]$/)[1..-1].enum_slice(2).map do |(name,properties)|
|
44
|
+
[name, hash_from_properties(properties)]
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
def hash_from_properties(properties)
|
49
|
+
properties.split(/\n+/).inject({}) do |property_hash,property|
|
50
|
+
all, name, value = *property.match(/^\s*([^=]+?)\s*=\s*(.+)\s*$/)
|
51
|
+
next property_hash unless name && value
|
52
|
+
property_hash[name] = value
|
53
|
+
property_hash
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
def execute(command)
|
58
|
+
%x[command]
|
59
|
+
end
|
60
|
+
|
61
|
+
def read_command
|
62
|
+
"cat #{filename}"
|
63
|
+
end
|
64
|
+
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
# Read a file: cat a file
|
71
|
+
# Parse a file: separate into a two dimensional hash
|
@@ -0,0 +1,80 @@
|
|
1
|
+
module Adhearsion
|
2
|
+
class DialPlan
|
3
|
+
class ConfirmationManager
|
4
|
+
|
5
|
+
class << self
|
6
|
+
|
7
|
+
def encode_hash_for_dial_macro_argument(options)
|
8
|
+
options = options.clone
|
9
|
+
macro_name = options.delete :macro
|
10
|
+
options[:play] &&= options[:play].kind_of?(Array) ? options[:play].join('++') : options[:play]
|
11
|
+
encoded_options = URI.escape options.map { |key,value| "#{key}:#{value}" }.join('!')
|
12
|
+
returning "M(#{macro_name}^#{encoded_options})" do |str|
|
13
|
+
if str.rindex('^') != str.index('^')
|
14
|
+
raise ArgumentError, "You seem to have supplied a :confirm option with a caret (^) in it!" +
|
15
|
+
" Please remove it. This will blow Asterisk up."
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def handle(call)
|
21
|
+
new(call).handle
|
22
|
+
end
|
23
|
+
|
24
|
+
def confirmation_call?(call)
|
25
|
+
call.variables.has_key?(:network_script) && call.variables[:network_script].starts_with?('confirm!')
|
26
|
+
end
|
27
|
+
|
28
|
+
def decode_hash(encoded_hash)
|
29
|
+
encoded_hash = encoded_hash =~ /^M\((.+)\)$/ ? $1 : encoded_hash
|
30
|
+
encoded_hash = encoded_hash =~ /^([^:]+\^)?(.+)$/ ? $2 : encoded_hash # Remove the macro name if it's there
|
31
|
+
unencoded = URI.unescape(encoded_hash).split('!')
|
32
|
+
unencoded.shift unless unencoded.first.include?(':')
|
33
|
+
unencoded = unencoded.map { |pair| key, value = pair.split(':'); [key.to_sym ,value] }.flatten
|
34
|
+
returning Hash[*unencoded] do |hash|
|
35
|
+
hash[:timeout] &&= hash[:timeout].to_i
|
36
|
+
hash[:play] &&= hash[:play].split('++')
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
end
|
41
|
+
|
42
|
+
attr_reader :call
|
43
|
+
def initialize(call)
|
44
|
+
@call = call
|
45
|
+
extend Adhearsion::VoIP::Commands.for(call.originating_voip_platform)
|
46
|
+
end
|
47
|
+
|
48
|
+
def handle
|
49
|
+
variables = self.class.decode_hash call.variables[:network_script]
|
50
|
+
|
51
|
+
answer
|
52
|
+
loop do
|
53
|
+
response = interruptable_play(*variables[:play])
|
54
|
+
if response && response.to_s == variables[:key].to_s
|
55
|
+
# Don't set a variable to pass through to dial()
|
56
|
+
break
|
57
|
+
elsif response && response.to_s != variables[:key].to_s
|
58
|
+
next
|
59
|
+
else
|
60
|
+
response = wait_for_digit variables[:timeout]
|
61
|
+
if response
|
62
|
+
if response.to_s == variables[:key].to_s
|
63
|
+
# Don't set a variable to pass through to dial()
|
64
|
+
break
|
65
|
+
else
|
66
|
+
next
|
67
|
+
end
|
68
|
+
else
|
69
|
+
# By setting MACRO_RESULT to CONTINUE, we cancel the dial.
|
70
|
+
variable 'MACRO_RESULT' => "CONTINUE"
|
71
|
+
break
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
end
|
77
|
+
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|