Project

General

Profile

Sip subscribe winfo » History » Version 7

Adrian Georgescu, 11/06/2008 02:46 PM

1 7 Adrian Georgescu
= sip_subscribe_winfo =
2 1 Adrian Georgescu
3
To use this script you must to have a valid [wiki:configuration_file configuration file].
4
5 7 Adrian Georgescu
== Description ==
6 1 Adrian Georgescu
7 5 Adrian Georgescu
[[Image(http://www.openxcap.org/chrome/site/SIMPLE-Winfo.png, align=right, nolink)]]
8 6 Adrian Georgescu
Watchers are defined as entities that request (i.e., subscribe to)
9
information about a resource, using the SIP event framework, RFC 3265. There
10
is fairly complex state associated with these subscriptions.  This state
11
includes the identity of the subscriber, the state of the subscription, and 
12
so on. The union of the state for all subscriptions to a particular resource
13
is called the watcher information for that resource.  This state is dynamic,
14
changing as subscribers come and go.  As a result, it is possible, and
15
indeed useful, to subscribe to the watcher information for a particular
16
resource. An important application of this is the ability for a user to find
17
out the set of subscribers to their presentity. This would allow the user to
18
provide an authorization decision for the subscription.
19
20
This script implements SUBSCRIBE for the watcher info event package and
21
manipulation of the pres-rules document that holds the presence policy of
22
the subscribing user.
23 3 Adrian Georgescu
24 2 Adrian Georgescu
Source code: [source:scripts/sip_subscribe_winfo.py scripts/sip_subscribe_winfo.py]
25
26 1 Adrian Georgescu
{{{
27
adigeo@ag-imac3:~$sip_subscribe_winfo -h
28
Usage: sip_subscribe_winfo [options]
29
30
This example script will use the specified SIP account to SUBSCRIBE to the
31
presence.winfo event of itself and request action to be taken when a new
32
watcher is in 'pending'/'waiting' state. The program will un-SUBSCRIBE and
33
quit when CTRL+D is pressed.
34
35
Options:
36
  -h, --help            show this help message and exit
37
  -a NAME, --account-name=NAME
38
                        The account name from which to read account settings.
39
                        Corresponds to section Account_NAME in the
40
                        configuration file. If not supplied, the section
41
                        Account will be read.
42
  --sip-address=SIP_ADDRESS
43
                        SIP address of the user in the form user@domain
44
  -p PASSWORD, --password=PASSWORD
45
                        Password to use to authenticate the local account.
46
                        This overrides the setting from the config file.
47
  -n DISPLAY_NAME, --display-name=DISPLAY_NAME
48
                        Display name to use for the local account. This
49
                        overrides the setting from the config file.
50
  -e EXPIRES, --expires=EXPIRES
51
                        "Expires" value to set in SUBSCRIBE. Default is 300
52
                        seconds.
53
  -o IP[:PORT], --outbound-proxy=IP[:PORT]
54
                        Outbound SIP proxy to use. By default a lookup of the
55
                        domain is performed based on SRV and A records. This
56
                        overrides the setting from the config file.
57
  -x XCAP_ROOT, --xcap-root=XCAP_ROOT
58
                        The XCAP root to use to access the pres-rules document
59
                        for authorizing subscriptions to presence.
60
  -s, --trace-sip       Dump the raw contents of incoming and outgoing SIP
61
                        messages (disabled by default).
62
  -l, --log-pjsip       Print PJSIP logging output (disabled by default).
63
}}}
64
65
=== Example ===
66
67
{{{
68
adigeo@ag-imac3:~/work/pypjua$sip_subscribe_winfo
69
Accounts available: 'alice', 'bob', 'ew', 'mrg', 'pbx', 'tf', 'umts', 'unet', default
70
Using default account: 31208005169@ag-projects.com
71
Resolved DNS SRV record "_sip._udp.ag-projects.com" --> proxy.sipthor.net:5060
72
Resolved DNS A record "proxy.sipthor.net" --> 85.17.186.7, 81.23.228.150, 81.23.228.129
73
Retrieving current presence rules from https://xcap.sipthor.net/xcap-root/
74
Allowed list:
75
	sip:2233350608@sip2sip.info
76
	sip:31208005163@ag-projects.com
77
	sip:31208005166@ag-projects.com
78
	sip:31208005167@ag-projects.com
79
	sip:adi@umts.ro
80
	sip:alice@example.com
81
	sip:ruud@umts.ro
82
	sip:317105169@eurovoice.ro
83
Blocked list:
84
Polite-blocked list:
85
Subscribing to "31208005169@ag-projects.com" for the presence.winfo event, at 81.23.228.129:5060
86
Received NOTIFY:
87
----
88
Active watchers:
89
Terminated watchers:
90
Pending watchers:
91
  sip:bob@example.com
92
Waiting watchers:
93
----
94
pending watcher sip:bob@example.com wants to subscribe to your presence information. Press (a) to allow, (d) to deny, (p) to polite block:
95
Watcher sip:bob@example.com is now allowed
96
97
}}}