|
Resources -> Documentation -> CookBooks -> Scripting variables - develThis documentation is valid for OpenSIPS v1.7.x / devel. 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. Syntax: $(<context>name(subname)[index]{transformation}) The fields written in green are optional. The fields meaning is:
Usage examples:
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)); # arithemetic 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 returne 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("aceesing values with no index: $avp(i:17)\n");
# this will print the first value, which is the last added value -> "three"
xlog("aceesing 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");
# delete the value located at a certain index
$(avp(i:17)[1]) = NULL;
#overwrite the value at a certain index
$(avp(i:17)[0]) = "zero";
The AVPOPS module provides a lot of usefull 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 nonce$an - the nonce from Authorization or Proxy-Authorization header 3.7 Auth response$ar - the authentication response from Authorization or Proxy-Authorization header 3.8 Auth whole username$aU - whole username from Authorization or Proxy-Authorization header 3.9 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.10 Branch$branch - this variable is used for creating new branches by writing into it the value of a SIP URI. Examples:
# creates a new branch
$branch = "sip:new@doamin.org";
# print its URI
xlog("last added branch has URI $(branch(uri)[-1]) \n");
3.11 Branch fields$branch() - this variable provides read/write access to all fields/attributes of an already existing branch (priorly created with append_branch() ). The fields of the branch are:
The variable accepts also index $(branch(uri)[1]) for accessing a specific branch (multiple branches can be defined at a moment). The index starts from 0 (first branch). If the index is negative, it is considered the n-th branch from the end ( index -1 means the last branch).
# creates the first branch
append_branch();
# creates the second branch
force_send_socket(udp:192.168.1.10:5060);
$du = "sip:192.168.2.10";
append_branch("sip:foo@bar.com","0.5");
# display branches
xlog("----- branch 0: $(branch(uri)[0]) , $(branch(q)[0]), $(branch(duri)[0]), $(branch(path)[0]), $(branch(flags)[0]), $(branch(socket)[0]) \n");
xlog("----- branch 1: $(branch(uri)[1]) , $(branch(q)[1]), $(branch(duri)[1]), $(branch(path)[1]), $(branch(flags)[1]), $(branch(socket)[1]) \n");
# do some changes over the branches
$branch(uri) = "sip:user@domain.ro"; # set URI for the first branch
$(branch(q)[0]) = 1000; # set to 1.00 for the first branch
$(branch(socket)[1]) = NULL; # reset the socket of the second branch
$branch(duri) = NULL; # reset the destination URI or the first branch
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$cs - reference to body of cseq header 3.15 Contact instance$ct - reference to contact instance/body from the contact header. A contact instance is display_name + URI + contact_params. As a Contact header may contain multiple Contact instances and a message may contain multiple Contact headers, an index was added to the $ct variable:
3.16 Fields of a contact instance$ct,fields() - reference to the fields of a contact instance/body (see above). Supported fields are:
Examples:
3.17 Content-Type$cT - reference to body of content-type header 3.18 Domain of destination URI$dd - reference to domain of destination uri 3.19 Diversion header URI$di - reference to Diversion header URI 3.20 Diversion "privacy" parameter$dip - reference to Diversion header "privacy" parameter value 3.21 Diversion "reason" parameter$dir - reference to Diversion header "reason" parameter value 3.22 Port of destination URI$dp - reference to port of destination uri 3.23 Transport protocol of destination URI$dP - reference to transport protocol of destination uri 3.24 Destination set$ds - reference to destination set 3.25 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.26 Error class$err.class - the class of error (now is '1' for parsing errors) 3.27 Error level$err.level - severity level for the error 3.28 Error info$err.info - text describing the error 3.29 Error reply code$err.rcode - recommended reply code 3.30 Error reply reason$err.rreason - recommended reply reason phrase 3.31 From URI domain$fd - reference to domain in URI of 'From' header 3.32 From display name$fn - reference to display name of 'From' header 3.33 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.34 From tag$ft - reference to tag parameter of 'From' header 3.35 From URI$fu - reference to URI of 'From' header 3.36 From URI username$fU - reference to username in URI of 'From' header 3.37 SIP message buffer$mb - reference to SIP message buffer 3.38 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.39 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.40 SIP message ID$mi - reference to SIP message id 3.41 SIP message length$ml - reference to SIP message length 3.42 Domain in SIP Request's original URI$od - reference to domain in request's original R-URI 3.43 Port of SIP request's original URI$op - reference to port of original R-URI 3.44 Transport protocol of SIP request original URI$oP - reference to transport protocol of original R-URI 3.45 SIP Request's original URI$ou - reference to request's original URI 3.46 Username in SIP Request's original URI$oU - reference to username in request's original URI 3.47 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.48 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.49 Process id$pp - reference to process id (pid) 3.50 Protocol of received message$pr or $proto - protocol of received message (UDP, TCP, TLS, SCTP) 3.51 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.52 URI in SIP Request's P-Preferred-Identity header$pu - reference to URI in request's P-Preferred-Identity header (see RFC 3325) 3.53 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.54 Body of request/reply$rb - reference to message body 3.55 Returned code$rc - reference to returned code by last invoked function $retcode - same as **$rc** 3.56 Remote-Party-ID header URI$re - reference to Remote-Party-ID header URI 3.57 SIP request's method$rm - reference to request's method 3.58 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.59 Transport protocol of SIP request URI$rP - reference to transport protocol of R-URI 3.60 SIP reply's reason$rr - reference to reply's reason 3.61 SIP reply's status$rs - reference to reply's status 3.62 Refer-to URI$rt - reference to URI of refer-to header 3.63 SIP Request's URI$ru - reference to request's URI It is R/W variable (you can assign values to it routing script) 3.64 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.65 Received IP address$Ri - reference to IP address of the interface where the request has been received 3.66 Received port$Rp - reference to the port where the message was received 3.67 Script flags$sf - reference to script flags - decimal output It is R/W variable (you can assign values to it from routing logic) 3.68 Script flags$sF - reference to script flags - hexa output It is R/W variable (you can assign values to it from routing logic) 3.69 IP source address$si - reference to IP source address of the message 3.70 Source port$sp - reference to the source port of the message 3.71 To URI Domain$td - reference to domain in URI of 'To' header 3.72 To display name$tn - reference to display name of 'To' header 3.73 To tag$tt - reference to tag parameter of 'To' header 3.74 To URI$tu - reference to URI of 'To' header 3.75 To URI Username$tU - reference to username in URI of 'To' header 3.76 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.77 String formatted time$Tf - reference string formatted time 3.78 Current unix time stamp$Ts - reference to current unix time stamp 3.79 Startup unix time stamp$TS - reference to startup unix time stamp 3.80 User agent header$ua - reference to user agent header field 3.81 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.
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 LiveDVD04th of August 2010
OpenSIPS Virtual Machine is now available ... OpenSIPS 1.6.302nd of August 2010
OpenSIPS 1.6.3 major release gets better... OpenSIPS @ ClueCon29th of July 2010
OpenSIPS 2.0 @ ClueCon 2010. OpenSIPS eBootcamp12th of July 2010
Remote OpenSIPS learning with Ebootcamp program. OpenSIPS @ Amoocon 20104th of May 2010
OpenSIPS had 2 papers at Amoocon 2010. SIMPLE Aggregation14th of April 2010
Presence and BLF state aggregation. OpenSIPS Certified Professional13th of April 2010
OpenSIPS certification program launched. OpenSIPS webinar30th of March 2010
Next webinars is Variables in OpenSIPS scripting OpenSIPS 1.6.211th of March 2010
OpenSIPS 1.6.2 is brings new features... OpenSIPS Control Panel 4.008th of March 2010
OpenSIPS CP 4.0 comes with user provisioning... Conference on "OpenSIPS 2.0"5th of March 2010
VoIP Users Conference will host an audio conference OpenSIPS webinar25th of February 2010
Next webinars is Explaining the default script OpenSIPS 2.0 Design15th of February 2010
Design of OpenSIPS 2.0 is unveiled OpenSIPS webinar28th of January 2010
Next OpenSIPS webinars is SIP Introduction Building Telephony Systems with OpenSIPS 1.621st of January 2010
New edition is available... OpenSIPS 1.6.1 is released21st of December 2009
OpenSIPS 1.6.1 minor release is out... OpenSIPS Development Course17th of December 2009
OpenSIPS Devel Course for 2010... OpenSIPS Bootcamps 201009th of December 2009
2010 Schedule for Bootcamp events... User Location is faster13th of November 2009
USRLOC is 3 time faster than before... OpenSIPS Control Panel 3.030th of October 2009
OpenSIPS CP 3.0 major release is out... OpenSIPS 1.6.0 is released16th of October 2009
OpenSIPS 1.6.0 major release is out... OpenSIPS VoIP Service21th of September 2009
OpenSIPS project offers free VoIP services... OpenSIPS & Astricon21th of September 2009
OpenSIPS talks and exhibits at Astricon 2009... SVN freeze17th of September 2009
SVN trunk gets frozen to prepare 1.6 release... New types of script routes10th of September 2009
New additions to configuration file routes... STUN server7th of September 2009
OpenSIPS has now a built-in STUN server... Pseudovariable implementation extended3rd of September 2009
Added new operations for pvars to give more power to the script writer... OpenSIPS Asterisk Integration30th of August 2009
Tutorial for realtime integration... OpenSIPS 1.5.3 is released27th of August 2009
OpenSIPS 1.5.3 minor release is out... AAA and RADIUS support18th of April 2009
New AAA API and RADIUS enhancements in OpenSIPS OpenSIPS webinar4th of April 2009
Next OpenSIPS webinars is Types of Routs in OpenSIPS B2BUA3rd of August 2009
A B2BUA signaling implementation in OpenSIPS DB virtual23th of July 2009
A DB conn mixer for failover, parallel and LB Codec manipulation23th of July 2009
SDP codecs and priorities manipulation Memcached interfacing16th of July 2009
memcached support for memory caching API OpenSIPS 1.5.2 is released15th of July 2009
OpenSIPS 1.5.2 minor release is out... OpenSIPS@ClueCon14th of July 2009
OpenSIPS talks at ClueCon OpenSIPS webinar30th of June 2009
Next OpenSIPS webinars is Routing in SIP REGISTRAR enhancements29th of June 2009
REGISTRAR module becomes more flexible OpenSIPS free webinars01st of June 2009
OpenSIPS webinars program was launched OpenSIPS-CP 2.0 is released13rd of April 2009
OpenSIPS Control Panel 2.0 major release is out... OpenSIPS 1.5.1 is released13rd of April 2009
OpenSIPS 1.5.1 minor release is out... OpenSIPS 1.5.0 is released23rd of March 2009
OpenSIPS 1.5.0 major release is out... OpenSIPS 1.4.5 is released23rd of March 2009
OpenSIPS 1.4.5 minor release is out... OpenSIPS as Load Balancer4th of March 2009 OpenSIPS at Amoocon (AsteriskTAG)24th of February 2009 |