[asterisk-bugs] [Asterisk 0014663]: [patch] Adding two variables for dynamic features (applicationmap)

Asterisk Bug Tracker noreply at bugs.digium.com
Wed Aug 26 18:13:58 CDT 2009


The following issue has been RESOLVED. 
====================================================================== 
https://issues.asterisk.org/view.php?id=14663 
====================================================================== 
Reported By:                tamiel
Assigned To:                jpeeler
====================================================================== 
Project:                    Asterisk
Issue ID:                   14663
Category:                   Resources/res_features
Reproducibility:            N/A
Severity:                   feature
Priority:                   normal
Status:                     resolved
Target Version:             1.6.x Version Tracker
Asterisk Version:           SVN 
Regression:                 No 
SVN Branch (only for SVN checkouts, not tarball releases):  trunk 
SVN Revision (number only!):  
Request Review:              
Resolution:                 fixed
Fixed in Version:           
====================================================================== 
Date Submitted:             2009-03-13 10:36 CDT
Last Modified:              2009-08-26 18:13 CDT
====================================================================== 
Summary:                    [patch] Adding two variables for dynamic features
(applicationmap)
Description: 
Sometimes, I need to know the bridged channel name on the other side (the
unique channel name) and the last triggered dynamic feature.

For example, if the last dynamic feature is set, I will play one sound to
caller and if not set I will play nothing and hangup caller.

So I have set two new variables :
DYNAMIC_FEATURENAME : the Last triggered dynamic feature
DYNAMIC_PEERNAME  : the unique channel name on the other side

This variables are available on both side (caller and callee).


For example :

In features.conf, I have this applicationmap feature :
test => **,peer/caller,Hangup,16

In extensions.conf, I have :
exten => 1234,1,Set(__DYNAMIC_FEATURES=test)
exten => 1234,n,Dial(SIP/10.68.4.144,20)
exten => 1234,n,Verbose(0|${DYNAMIC_FEATURENAME})
exten => 1234,n,GotoIf($["${DYNAMIC_FEATURENAME}" = "test"]?10:50)
exten => 1234,10,PlayBack(demo-thanks)
exten => 1234,50,Hangup()

If caller press '**' during dial, callee is disconnected and caller goto
priority 10 and demo-thanks is played.
If dynamic feature is not set or not applicationmap "test", caller is
disconnected.






====================================================================== 

---------------------------------------------------------------------- 
 (0109706) svnbot (reporter) - 2009-08-26 18:13
 https://issues.asterisk.org/view.php?id=14663#c109706 
---------------------------------------------------------------------- 
Repository: asterisk
Revision: 214309

U   trunk/CHANGES
U   trunk/main/features.c

------------------------------------------------------------------------
r214309 | jpeeler | 2009-08-26 18:13:57 -0500 (Wed, 26 Aug 2009) | 12
lines

Add two new dialplan variables when using features

Added DYNAMIC_FEATURENAME which holds the last triggered dynamic feature.
Added DYNAMIC_PEERNAME which holds the unique channel name on the other
side
and is set when a dynamic feature is triggered.

(closes issue https://issues.asterisk.org/view.php?id=14663)
Reported by: tamiel
Patches:
      20090313_features.diff uploaded by tamiel (license 712)
Tested by: tamiel

------------------------------------------------------------------------

http://svn.digium.com/view/asterisk?view=rev&revision=214309 

Issue History 
Date Modified    Username       Field                    Change               
====================================================================== 
2009-08-26 18:13 svnbot         Checkin                                      
2009-08-26 18:13 svnbot         Note Added: 0109706                          
2009-08-26 18:13 svnbot         Status                   new => assigned     
2009-08-26 18:13 svnbot         Assigned To               => jpeeler         
2009-08-26 18:13 svnbot         Status                   assigned => resolved
2009-08-26 18:13 svnbot         Resolution               open => fixed       
======================================================================




More information about the asterisk-bugs mailing list