Adding Label Routing to any Routing Script

From TBwiki
(Difference between revisions)
Jump to: navigation, search
(Applies to version(s): v2.5, v2.6.)
 
(3 intermediate revisions by one user not shown)
Line 10: Line 10:
  
  
2- Select the script that you wish to edit.
+
2- '''Edit''' your main script
 
+
 
+
[[Image:RoutingScript_1_A.png]]
+
 
+
 
+
The '''Script Editing''' Window is displayed.
+
  
  
Line 22: Line 16:
  
  
3- Add the following line at the very beginning of the script file:  
+
3- Add the 3 following lines to the script:  
  
<pre>require 'routesets_digit_analyzer'</pre>  
+
'''At the top of the page'''
 +
require 'routesets_digit_analyzer'
 +
'''Following your main class definition'''
 +
include RoutesetsDigitAnalyzer
 +
'''Add before filter in your main class'''
 +
before_filter :method => :routesets_digit_analyzer, :trie_order => :called
  
4- Include the module in your routing class:
 
  
<pre>class MyRoutingClass &lt; BaseRouting</pre>
+
4- Click 'Save'
1.
+
  
<br> '''include RoutesetsDigitAnalyzer'''  
+
== Example  ==
 +
<pre>
 +
require 'base_routing'
 +
require 'routesets_digit_analyzer'                                               # <- Add this line here
  
1.
+
class my_script < BaseRouting
 +
  include RoutesetsDigitAnalyzer                                                  # <- Add this line here
 +
 
 +
  before_filter :method => :routesets_digit_analyzer, :trie_order => :called      # <- Add this line here
 +
  route_match :call_field_name => :called
 +
  route_match :call_field_name => :calling
 +
  route_match :call_field_name => :nap
 +
  route_remap :call_field_name => :called, :route_field_name => :remapped_called
 +
  route_remap :call_field_name => :calling, :route_field_name => :remapped_calling
 +
  route_remap :call_field_name => :nap, :route_field_name => :remapped_nap
 +
end
  
<br> ...  
+
@@routing = my_script.new
  
1.  
+
def init_routes( routes )
 +
  @@routing.init routes
 +
end
  
<br> end
+
def route( call, nap_list )
 +
  @@routing.route call, nap_list
 +
end
 +
</pre>  
  
5- Add a before_filter with 'routesets_digit_analyzer' method: 
 
  
<pre>before_filter&nbsp;:method =&gt;&nbsp;:routesets_digit_analyzer,&nbsp;:trie_order =&gt;&nbsp;:called</pre>
+
== Related Action ==
=== <br>Complete Example  ===
+
[[How_to_Setup_Filters|How to Setup Filters]]
<pre>require 'base_routing'
+
require 'routesets_digit_analyzer'
+
 
+
class MyRoutingClass &lt; BaseRouting
+
include RoutesetsDigitAnalyzer
+
 
+
before_filter&nbsp;:method =&gt;&nbsp;:routesets_digit_analyzer,&nbsp;:trie_order =&gt;&nbsp;:called
+
 
+
route_match&nbsp;:call_field_name =&gt;&nbsp;:called
+
route_match&nbsp;:call_field_name =&gt;&nbsp;:calling
+
route_match&nbsp;:call_field_name =&gt;&nbsp;:nap
+
route_match&nbsp;:method =&gt;&nbsp;:match_nap_availability
+
route_remap&nbsp;:call_field_name =&gt;&nbsp;:called,&nbsp;:route_field_name =&gt;&nbsp;:remapped_called
+
route_remap&nbsp;:call_field_name =&gt;&nbsp;:calling,&nbsp;:route_field_name =&gt;&nbsp;:remapped_calling
+
route_remap&nbsp;:call_field_name =&gt;&nbsp;:nap,&nbsp;:route_field_name =&gt;&nbsp;:remapped_nap
+
end
+
 
+
</pre>
+
<br> Note: Other filter scripts can be added to the standard scripts to add further flexibility to the routing. For furtehr information, consult  [[How_to_Setup_Filters|How to Setup Filters]].<br>
+

Latest revision as of 15:48, 5 November 2012

Applies to version(s): v2.5, v2.6.

To implement label routing to any routing script, do the following:

1- Click Routing script in the navigation panel.


RoutingScript 0 A.png


2- Edit your main script


RoutingScript 2 A.png


3- Add the 3 following lines to the script:

At the top of the page

require 'routesets_digit_analyzer'

Following your main class definition

include RoutesetsDigitAnalyzer

Add before filter in your main class

before_filter :method => :routesets_digit_analyzer, :trie_order => :called


4- Click 'Save'

Example

require 'base_routing'
require 'routesets_digit_analyzer'                                                # <- Add this line here

class my_script < BaseRouting
  include RoutesetsDigitAnalyzer                                                  # <- Add this line here
  
  before_filter :method => :routesets_digit_analyzer, :trie_order => :called      # <- Add this line here
  route_match :call_field_name => :called
  route_match :call_field_name => :calling
  route_match :call_field_name => :nap
  route_remap :call_field_name => :called, :route_field_name => :remapped_called
  route_remap :call_field_name => :calling, :route_field_name => :remapped_calling
  route_remap :call_field_name => :nap, :route_field_name => :remapped_nap
end

@@routing = my_script.new

def init_routes( routes )
  @@routing.init routes
end

def route( call, nap_list )
  @@routing.route call, nap_list
end


Related Action

How to Setup Filters

Personal tools