summaryrefslogtreecommitdiff
path: root/app/models/call.rb
diff options
context:
space:
mode:
authorPeter Kozak <spag@golwen.net>2013-03-13 06:49:40 -0400
committerPeter Kozak <spag@golwen.net>2013-03-13 06:49:40 -0400
commit1a9b4ef6d9ebbe77ba113d960d85c7097ae3368c (patch)
treef82015baf31fb1c945b703682f320dac951d96d9 /app/models/call.rb
parent56bf23a88b1397d8648a18a32770b32c084aa017 (diff)
transfer_blind method added
Diffstat (limited to 'app/models/call.rb')
-rw-r--r--app/models/call.rb26
1 files changed, 25 insertions, 1 deletions
diff --git a/app/models/call.rb b/app/models/call.rb
index 8f657fa..61d10ce 100644
--- a/app/models/call.rb
+++ b/app/models/call.rb
@@ -39,6 +39,30 @@ class Call < ActiveRecord::Base
return FreeswitchAPI.execute('uuid_kill', self.uuid, true);
end
+ def transfer_blind(destination, call_leg=:aleg, auth_account=nil)
+ if destination.blank?
+ return nil
+ end
+
+ if call_leg == :bleg
+ channel_uuid = self.b_uuid
+ else
+ channel_uuid = self.uuid
+ end
+
+ if channel_uuid.blank?
+ return nil
+ end
+
+ if auth_account
+ FreeswitchAPI.api('uuid_setvar', channel_uuid, 'gs_auth_account_type', auth_account.class.name)
+ FreeswitchAPI.api('uuid_setvar', channel_uuid, 'gs_auth_account_uuid', auth_account.uuid)
+ end
+
+ require 'freeswitch_event'
+ return FreeswitchAPI.api_result(FreeswitchAPI.api('uuid_transfer', channel_uuid, destination))
+ end
+
def get_variable_from_uuid(channel_uuid, variable_name)
if channel_uuid.blank?
return nil
@@ -61,5 +85,5 @@ class Call < ActiveRecord::Base
def get_variable_bleg(variable_name)
return get_variable_from_uuid(self.b_uuid, variable_name);
end
-
+
end