|
Resources -> Documentation -> CookBooks -> Scripting variables v1.5.xThis documentation is valid for OpenSIPS v1.5.x. Table of Content (hide)
OpenSIPS provides multiple type of variables to be used in the routing script. The difference between the types of variables comes from (1) the visibility of the variable (when it is visible), (2) what the variable is attached to (where the variable resides), (3) read-write status of the variable (some types of the variables are read-only and (4) how multipe values (for the same variable are handled). The OpenSIPS variables can be easily identified in the script as all their names (or notations) starts with the $ sign. Types of variables:
1. Script variablesNaming: **$var(name)** Hints:
Example of usage:
$var(a) = 2; # sets the value of variable 'a' to integer '2'
$var(a) = "2"; # sets the value of variable 'a' to string '2'
$var(a) = 3 + (7&(~2)); # arithmetic and bitwise operation
$var(a) = "sip:" + $au + "@" + $fd; # compose a value from authentication username and From URI domain
# using a script variable for tests
if( [ $var(a) & 4 ] ) {
xlog("var a has third bit set\n");
}
Setting a variable to NULL is actually initializing the value to integer '0'. Script variables don't have NULL value. 2. AVP variablesNaming: **$avp(id)** or **$(avp(id)[N])** The 'id' can be:
When using the index "N" you can force the AVP to return a certain value (the N-th value). If no index is given, the first value will be returned. Hints:
Example of usage:
# enable avps in onreply route
modparam("tm", "onreply_avp_mode", 1)
# define "tmp" as alias for "i:17"
avp_aliases="tmp=i:17"
...
route{
...
$avp(tmp) = $Ts ; # store the current time (at request processing)
...
t_onreply("1");
t_relay();
...
}
onreply_route[1] {
if (t_check_status("200")) {
# calculate the setup time
$var(setup_time) = $Ts - $avp(tmp);
}
}
$avp(i:17) = "one";
# we have a sigle value
$avp(i:17) = "two";
# we have two values ("two","one")
$avp(i:17) = "three";
# we have three values ("three","two","one")
xlog("accessing values with no index: $avp(i:17)\n");
# this will print the first value, which is the last added value -> "three"
xlog("accessing values with no index: $(avp(i:17)[2])\n");
# this will print the index 2 value (third one), -> "one"
# remove the last value of the avp; if there is only one value, the AVP itself will be destroyed
$avp(i:17) = NULL;
# delete all values and destroy the AVP
avp_delete("$avp(i:17)/g");
The AVPOPS module provides a lot of useful functions to operate AVPs (like checking values, pushing values into different other locations, deleting AVPs, etc). 3. Pseudo VariablesNaming: $name Hints:
Predefined (provided by core) PVs are listed in alphabetical order. 3.1 URI in SIP Request's P-Asserted-Identity header$ai - reference to URI in request's P-Asserted-Identity header (see RFC 3325) 3.2 Authentication Digest URI$adu - URI from Authorization or Proxy-Authorization header. This URI is used when calculating the HTTP Digest Response. 3.3 Authentication realm$ar - realm from Authorization or Proxy-Authorization header 3.4 Auth username user$au - user part of username from Authorization or Proxy-Authorization header 3.5 Auth username domain$ad - domain part of username from Authorization or Proxy-Authorization header 3.6 Auth whole username$aU - whole username from Authorization or Proxy-Authorization header 3.7 Acc username$Au - username for accounting purposes. It's a selective pseudo variable (inherited from acc module). It returns $au if exits or From username otherwise. 3.8 Request's first branch$br - reference to request's first branch It is R/W variable (you can assign values to it from routing logic) 3.9 Request's all branches$bR - reference to request's all branches 3.10 Branch flags$bf - reference to branch flags of branch 0 (RURI) - decimal output It is R/W variable (you can assign values to it from routing logic) 3.11 Branch flags$bF - reference to branch flags of branch 0 (RURI) - hexa output It is R/W variable (you can assign values to it from routing logic) 3.12 Call-Id$ci - reference to body of call-id header 3.13 Content-Length$cl - reference to body of content-length header 3.14 CSeq number$cs - reference to cseq number from cseq header 3.15 Contact header$ct - reference to body of contact header 3.16 Content-Type$cT - reference to body of content-type header 3.17 Domain of destination URI$dd - reference to domain of destination uri 3.18 Diversion header URI$di - reference to Diversion header URI 3.19 Diversion "privacy" parameter$dip - reference to Diversion header "privacy" parameter value 3.20 Diversion "reason" parameter$dir - reference to Diversion header "reason" parameter value 3.21 Port of destination URI$dp - reference to port of destination uri 3.22 Transport protocol of destination URI$dP - reference to transport protocol of destination uri 3.23 Destination set$ds - reference to destination set 3.24 Destination URI$du - reference to destination uri (outbound proxy to be used for sending the request) If loose_route() returns TRUE a destination uri is set according to the first Route header. It is R/W variable (you can assign values to it from routing logic) 3.25 Error class$err.class - the class of error (now is '1' for parsing errors) 3.26 Error level$err.level - severity level for the error 3.27 Error info$err.info - text describing the error 3.28 Error reply code$err.rcode - recommended reply code 3.29 Error reply reason$err.rreason - recommended reply reason phrase 3.30 From URI domain$fd - reference to domain in URI of 'From' header 3.31 From display name$fn - reference to display name of 'From' header 3.32 Forced socket$fs - reference to the forced socket for message sending (if any) in the form proto:ip:port It is R/W variable (you can assign values to it routing script) 3.33 From tag$ft - reference to tag parameter of 'From' header 3.34 From URI$fu - reference to URI of 'From' header 3.35 From URI username$fU - reference to username in URI of 'From' header 3.36 SIP message buffer$mb - reference to SIP message buffer 3.37 Message Flags$mf - reference to message/transaction flags set for current SIP request It is R/W variable (you can assign values to it from routing logic) 3.38 Message Flags in hexadecimal$mF -reference to message/transaction flags set for current SIP request in hexa It is R/W variable (you can assign values to it from routing logic) 3.39 SIP message ID$mi - reference to SIP message id 3.40 SIP message length$ml - reference to SIP message length 3.41 Domain in SIP Request's original URI$od - reference to domain in request's original R-URI 3.42 Port of SIP request's original URI$op - reference to port of original R-URI 3.43 Transport protocol of SIP request original URI$oP - reference to transport protocol of original R-URI 3.44 SIP Request's original URI$ou - reference to request's original URI 3.45 Username in SIP Request's original URI$oU - reference to username in request's original URI 3.46 Domain in SIP Request's P-Preferred-Identity header URI$pd - reference to domain in request's P-Preferred-Identity header URI (see RFC 3325) 3.47 Display Name in SIP Request's P-Preferred-Identity header$pn - reference to Display Name in request's P-Preferred-Identity header (see RFC 3325) 3.48 Process id$pp - reference to process id (pid) 3.49 Protocol of received message$pr or $proto - protocol of received message (UDP, TCP, TLS, SCTP) 3.50 User in SIP Request's P-Preferred-Identity header URI$pU - reference to user in request's P-Preferred-Identity header URI (see RFC 3325) 3.51 URI in SIP Request's P-Preferred-Identity header$pu - reference to URI in request's P-Preferred-Identity header (see RFC 3325) 3.52 Domain in SIP Request's URI$rd - reference to domain in request's URI It is R/W variable (you can assign values to it routing script) 3.53 Body of request/reply$rb - reference to message body 3.54 Returned code$rc - reference to returned code by last invoked function $retcode - same as **$rc** 3.55 Remote-Party-ID header URI$re - reference to Remote-Party-ID header URI 3.56 SIP request's method$rm - reference to request's method 3.57 SIP request's port$rp - reference to port of R-URI It is R/W variable (you can assign values to it routing script) 3.58 Transport protocol of SIP request URI$rP - reference to transport protocol of R-URI 3.59 SIP reply's reason$rr - reference to reply's reason 3.60 SIP reply's status$rs - reference to reply's status 3.61 Refer-to URI$rt - reference to URI of refer-to header 3.62 SIP Request's URI$ru - reference to request's URI It is R/W variable (you can assign values to it routing script) 3.63 Username in SIP Request's URI$rU - reference to username in request's URI It is R/W variable (you can assign values to it routing script) 3.64 Received IP address$Ri - reference to IP address of the interface where the request has been received 3.65 Received port$Rp - reference to the port where the message was received 3.66 Script flags$sf - reference to script flags - decimal output It is R/W variable (you can assign values to it from routing logic) 3.67 Script flags$sF - reference to script flags - hexa output It is R/W variable (you can assign values to it from routing logic) 3.68 IP source address$si - reference to IP source address of the message 3.69 Source port$sp - reference to the source port of the message 3.70 To URI Domain$td - reference to domain in URI of 'To' header 3.71 To display name$tn - reference to display name of 'To' header 3.72 To tag$tt - reference to tag parameter of 'To' header 3.73 To URI$tu - reference to URI of 'To' header 3.74 To URI Username$tU - reference to username in URI of 'To' header 3.75 Branch index$T_branch_idx - the index (starting with 1 for the first branch) of the branch for which is executed the branch_route[]. If used outside of branch_route[] block, the value is '0'. This is exported by TM module. 3.76 String formatted time$Tf - reference string formatted time 3.77 Unix time stamp$Ts - reference to unix time stamp 3.78 User agent header$ua - reference to user agent header field 3.79 SIP Headers$(hdr(name)[N]) - represents the body of the N-th header identified by 'name'. If [N] is omitted then the body of the first header is printed. The first header is got when N=0, for the second N=1, a.s.o. To print the last header of that type, use -1, no other negative values are supported now. No white spaces are allowed inside the specifier (before }, before or after {, [, ] symbols). When N='*', all headers of that type are printed. The module should identify most of compact header names (the ones recognized by OpenSIPS which should be all at this moment), if not, the compact form has to be specified explicitly. It is recommended to use dedicated specifiers for headers (e.g., %ua for user agent header), if they are available -- they are faster. It is R/W variable (you can assign values to it routing script)
4. Escape SequencesThese sequences are exported, and mainly used, by xlog module to print messages in many colors (foreground and background) using escape sequences. 4.1 Foreground and background colors$C(xy) - reference to an escape sequence. ¿x¿ represents the foreground color and ¿y¿ represents the background color. Colors could be:
4.2 ExamplesA few examples of usage.
...
avp_aliases="uuid=I:50"
...
route {
...
$avp(uuid)="caller_id";
$avp(i:20)= $avp(uuid) + ": " + $fu;
xdbg("$(C(bg))avp(i:20)$(C(xx)) [$avp(i:20)] $(C(br))cseq$(C(xx))=[$hdr(cseq)]\n");
...
}
...
| News OpenSIPS Getting Started21st of April 2012
OpenSIPS Getting Started Video Tutorial about how to do an installation of OpenSIPS and OpenSIPS-CP... OpenSIPS Devel Course12th of April 2012
Learn about OpenSIPS internals both core and modules... OpenSIPS 1.8.022nd of March 2012
OpenSIPS 1.8.0 major release ready... Dynamic Routing20th of March 2012
Enhancements of DR engine... APT repository23nd of February 2012
New official APT repository for Debian & Ubuntu OpenSIPS 1.7.222nd of February 2012
OpenSIPS 1.7.2 minor release out... SIP Validation Support20th of February 2012
Prevent malformed SIP messages from propagating through your network DNS Caching Support13th of February 2012
Cache system for all types of DNS records Distributed Dialog Profiles9th of February 2012
Shared dialog profiles between multiple instances of OpenSIPS Configuration and Scripting Tool19th of January 2012
Graphical Configuration and Scripting Tool for OpenSIPS Cassandra driver05th of January 2012
Cassandra backend for OpenSIPS LUA integration05th of January 2012
Using LUA scripting with OpenSIPS OpenSIPS Pavilion @ ITExpo 201222th of December 2011
OpenSIPS Pavilion booth #535, 1-3 Feb 2012 OpenSIPS and HOMER14th of December 2011
Distributed SIPtracing and SIPcapturing OpenSIPS eBootcamp12th of December 2011
New Ebootcamp session starting on 15th of February 2012. OpenSIPS 1.7.123rd of November 2011
OpenSIPS 1.7.1 minor release out... Ratelimit3rd of November 2011
Dynamic and distributed support... OpenSIPS VM 1.7.01st of November 2011
Live Virtual Machine for OpenSIPS 1.7... MI via HTTP25th of October 2011
Bultin HTTP server for MI... Events via RabbitMQ12th of October 2011
Event Interface can push events via RabbitMQ... Key-Value Cache/DBs6th of October 2011
Script and module support for key-value oriented backend... GRUU support4th of October 2011
OpenSIPS registrar with GRUU / RFC5627... OpenSIPS 1.8.0 preview30th of September 2011
What is set to be done for OpenSIPS 1.8.0... OpenSIPS eBootcamp28th of July 2011
New Ebootcamp session starting on 19th of September. OpenSIPS 1.7.012nd of July 2011
OpenSIPS 1.7.0 major release ready... ClueCon 201111th of July 2011
Talks and one-day free training New in 1.7.06th of July 2011
What is new in OpenSIPS 1.7.0 SVN Freeze30th of June 2011
Testing phase started for 1.7 release Topology Hiding30th of June 2011
Topology Hiding based on dialog module New AVP naming23rd of June 2011
A simpler and more efficient way of naming AVPs DB Optimization22nd of June 2011
Multi-row DB insert operations. Event Notification Interface26th of May 2011
External interaction via the Event Interface. OpenSIPS eBootcamp28th of March 2011
New Ebootcamp session starting on 2nd of May. UAC_REGISTRANT module10th of March 2011
New module to allow OpenSIPS to UAC register. Performance degradation with complexity08th of March 2011
Tests to show how performance is affected with complexity. Load and performance monitoring22nd of February 2011
New statistics and traps for OpenSIPS monitoring. OpenSIPS 2.017th of February 2011
OpenSIPS 2.0 first code release. OpenSIPS Online Meeting15th of February 2011
OpenSIPS Online Monthly Meetings started. OpenSIPS Social Event24th of January 2011
OpenSIPS Social Event - Miami, 3rd of February. OpenSIPS eBootcamp17th of January 2011
New Ebootcamp session starting on 28th of February. OpenSIPS 1.6.420th of December 2010
OpenSIPS 1.6.4 major release ready... OpenSIPS media timeout16th of December 2010
Ghost call hunting with media timeout ... |