Xcapclient

Version 6 (Adrian Georgescu, 10/26/2008 02:08 pm)

1 1 Adrian Georgescu
== xcapclient ==
2 1 Adrian Georgescu
3 1 Adrian Georgescu
To use this script you must to have a valid [wiki:configuration_file configuration file].
4 1 Adrian Georgescu
5 1 Adrian Georgescu
6 1 Adrian Georgescu
=== Description ===
7 1 Adrian Georgescu
8 2 Adrian Georgescu
This client is part of python-xcaplib package provided by [http://openxcap.org OpenXCAP] server. If you have installed bash_completion.d/xcapclient  you can use TAB completion to browse through the content of the XCAP server documents/nodes/atributes. For more information read the documentation that comes with the package.
9 1 Adrian Georgescu
10 1 Adrian Georgescu
{{{
11 1 Adrian Georgescu
adigeo@ag-imac3:~$xcapclient -h
12 1 Adrian Georgescu
13 1 Adrian Georgescu
  xcapclient: Client for managing full or partial XML documents on XCAP servers (RFC 4825)
14 1 Adrian Georgescu
  xcapclient [OPTIONS] --app AUID ACTION [NODE-SELECTOR]
15 1 Adrian Georgescu
16 1 Adrian Georgescu
  ACTION is an operation to perform: get, replace, insert, put or delete.
17 1 Adrian Georgescu
  Presence of NODE-SELECTOR indicates that action is to be performed on an
18 1 Adrian Georgescu
  element or an attribute.
19 1 Adrian Georgescu
20 1 Adrian Georgescu
Options:
21 1 Adrian Georgescu
  -h, --help             show this help message and exit
22 1 Adrian Georgescu
  -a NAME, --account-name=NAME
23 1 Adrian Georgescu
                         the account name from which to read account settings.
24 1 Adrian Georgescu
                         Corresponds to section Account_NAME in the
25 1 Adrian Georgescu
                         configuration file. If not supplied, the section
26 1 Adrian Georgescu
                         [Account] will be read.
27 1 Adrian Georgescu
  --show-config          show options from the configuration file; use
28 1 Adrian Georgescu
                         together with --account-name
29 1 Adrian Georgescu
  --xcap-root=XCAP_ROOT  XCAP root, e.g. https://xcap.example.com/xcap-root
30 1 Adrian Georgescu
  --sip-address=SIP_ADDRESS
31 1 Adrian Georgescu
                         SIP address of the user in the form username@domain
32 1 Adrian Georgescu
  -p PASSWORD, --password=PASSWORD
33 1 Adrian Georgescu
                         password to use if authentication is required. If not
34 1 Adrian Georgescu
                         supplied will be asked interactively
35 1 Adrian Georgescu
  --app=AUID             Application Unique ID. There's no default value;
36 1 Adrian Georgescu
                         however, it may be guessed from NODE-SELECTOR or from
37 1 Adrian Georgescu
                         the input file. Known apps: watchers, pidf-
38 1 Adrian Georgescu
                         manipulation, rls-services, resource-lists, xcap-
39 1 Adrian Georgescu
                         caps, pres-rules, test-app
40 1 Adrian Georgescu
  --filename=FILENAME    
41 1 Adrian Georgescu
  -c CONTEXT, --context=CONTEXT
42 1 Adrian Georgescu
                         document context, users or global; default is users
43 1 Adrian Georgescu
                         for everything except xcap-caps
44 1 Adrian Georgescu
  --etag=ETAG            perform a conditional operation
45 1 Adrian Georgescu
  -i INPUT_FILENAME      source file for the PUT request; default is <stdin>
46 1 Adrian Georgescu
  -o OUTPUT_FILENAME     output file for the body of the server response
47 1 Adrian Georgescu
                         (successful or not); default is <stdout>
48 1 Adrian Georgescu
  -d, --dump             print HTTP traffic to stderr
49 2 Adrian Georgescu
}}}
50 2 Adrian Georgescu
51 2 Adrian Georgescu
52 6 Adrian Georgescu
== Example for XCAP server capabilities (xcap-caps)  == 
53 6 Adrian Georgescu
{{{
54 6 Adrian Georgescu
adigeo@ag-imac3:~$xcapclient -a alice --app rls-services DELETE
55 6 Adrian Georgescu
delete https://xcap.sipthor.net/xcap-root/rls-services/users/sip:alice@example.com/index
56 6 Adrian Georgescu
200 OK
57 6 Adrian Georgescu
content-type: application/rls-services+xml
58 6 Adrian Georgescu
adigeo@ag-imac3:~$xcapclient -a alice --app xcap-caps GET
59 6 Adrian Georgescu
get https://xcap.sipthor.net/xcap-root/xcap-caps/global/index
60 6 Adrian Georgescu
etag: "ab12efdd1aff88296deee1aa195b823e"
61 6 Adrian Georgescu
content-type: application/xcap-caps+xml
62 6 Adrian Georgescu
content-length: 826
63 6 Adrian Georgescu
<?xml version='1.0' encoding='UTF-8'?>
64 6 Adrian Georgescu
<xcap-caps xmlns='urn:ietf:params:xml:ns:xcap-caps'>
65 6 Adrian Georgescu
<auids>
66 6 Adrian Georgescu
<auid>watchers</auid>
67 6 Adrian Georgescu
<auid>org.openmobilealliance.pres-rules</auid>
68 6 Adrian Georgescu
<auid>rls-services</auid>
69 6 Adrian Georgescu
<auid>pidf-manipulation</auid>
70 6 Adrian Georgescu
<auid>xcap-caps</auid>
71 6 Adrian Georgescu
<auid>test-app</auid>
72 6 Adrian Georgescu
<auid>resource-lists</auid>
73 6 Adrian Georgescu
<auid>pres-rules</auid>
74 6 Adrian Georgescu
</auids>
75 6 Adrian Georgescu
<extensions>
76 6 Adrian Georgescu
</extensions>
77 6 Adrian Georgescu
<namespaces>
78 6 Adrian Georgescu
<namespace>http://openxcap.org/ns/watchers</namespace>
79 6 Adrian Georgescu
<namespace>urn:ietf:params:xml:ns:pres-rules</namespace>
80 6 Adrian Georgescu
<namespace>urn:ietf:params:xml:ns:rls-services</namespace>
81 6 Adrian Georgescu
<namespace>urn:ietf:params:xml:ns:pidf</namespace>
82 6 Adrian Georgescu
<namespace>urn:ietf:params:xml:ns:xcap-caps</namespace>
83 6 Adrian Georgescu
<namespace>test-app</namespace>
84 6 Adrian Georgescu
<namespace>urn:ietf:params:xml:ns:resource-lists</namespace>
85 6 Adrian Georgescu
<namespace>urn:ietf:params:xml:ns:pres-rules</namespace>
86 6 Adrian Georgescu
</namespaces>
87 6 Adrian Georgescu
</xcap-caps>
88 6 Adrian Georgescu
}}}
89 6 Adrian Georgescu
90 5 Adrian Georgescu
== Example for pres-rules XCAP document ==
91 1 Adrian Georgescu
92 3 Adrian Georgescu
=== PUT ===
93 3 Adrian Georgescu
94 2 Adrian Georgescu
{{{
95 2 Adrian Georgescu
adigeo@ag-imac3:~$xcapclient -a alice PUT -i work/python-xcaplib/examples/pres-rules.xml 
96 2 Adrian Georgescu
put https://xcap.sipthor.net/xcap-root/pres-rules/users/sip:alice@example.com/index
97 2 Adrian Georgescu
201 Created
98 2 Adrian Georgescu
etag: "345ba7c1ce125b2ff2438c19b25b4077"
99 2 Adrian Georgescu
content-type: application/auth-policy+xml
100 2 Adrian Georgescu
}}}
101 1 Adrian Georgescu
102 2 Adrian Georgescu
103 3 Adrian Georgescu
=== GET ===
104 2 Adrian Georgescu
105 2 Adrian Georgescu
{{{
106 2 Adrian Georgescu
adigeo@ag-imac3:~$xcapclient -a alice --app pres-rules get 
107 2 Adrian Georgescu
get https://xcap.sipthor.net/xcap-root/pres-rules/users/sip:alice@example.com/index
108 2 Adrian Georgescu
etag: "345ba7c1ce125b2ff2438c19b25b4077"
109 2 Adrian Georgescu
content-type: application/auth-policy+xml
110 2 Adrian Georgescu
content-length: 939
111 2 Adrian Georgescu
<?xml version="1.0" encoding="UTF-8"?>
112 2 Adrian Georgescu
<ruleset xmlns="urn:ietf:params:xml:ns:common-policy" xmlns:pr="urn:ietf:params:xml:ns:pres-rules" xmlns:cp="www.counterpath.com/privacy-lists">
113 2 Adrian Georgescu
<rule id="pres_whitelist">
114 2 Adrian Georgescu
<conditions>
115 2 Adrian Georgescu
<identity>
116 2 Adrian Georgescu
<one id="sip:bob@example.com"/>
117 2 Adrian Georgescu
<one id="sip:alice@example.com"/>
118 2 Adrian Georgescu
<many domain="ag-projects.com">
119 2 Adrian Georgescu
</many>
120 2 Adrian Georgescu
</identity>
121 2 Adrian Georgescu
</conditions>
122 2 Adrian Georgescu
<actions>
123 2 Adrian Georgescu
<pr:sub-handling>allow</pr:sub-handling>
124 2 Adrian Georgescu
</actions>
125 2 Adrian Georgescu
<transformations>
126 2 Adrian Georgescu
<pr:provide-services>
127 2 Adrian Georgescu
<pr:all-services/>
128 2 Adrian Georgescu
</pr:provide-services>
129 2 Adrian Georgescu
<pr:provide-persons>
130 2 Adrian Georgescu
<pr:all-persons/>
131 2 Adrian Georgescu
</pr:provide-persons>
132 2 Adrian Georgescu
<pr:provide-devices>
133 2 Adrian Georgescu
<pr:all-devices/>
134 2 Adrian Georgescu
</pr:provide-devices>
135 2 Adrian Georgescu
<pr:provide-all-attributes/>
136 2 Adrian Georgescu
</transformations>
137 2 Adrian Georgescu
</rule>
138 2 Adrian Georgescu
<rule id="pres_blacklist">
139 2 Adrian Georgescu
<conditions>
140 2 Adrian Georgescu
<identity>
141 2 Adrian Georgescu
<one id="sip:40316600024@abc.com"/>
142 2 Adrian Georgescu
</identity>
143 2 Adrian Georgescu
</conditions>
144 2 Adrian Georgescu
<actions>
145 2 Adrian Georgescu
<pr:sub-handling>block</pr:sub-handling>
146 2 Adrian Georgescu
</actions>
147 2 Adrian Georgescu
<transformations/>
148 2 Adrian Georgescu
</rule>
149 1 Adrian Georgescu
</ruleset>
150 2 Adrian Georgescu
}}}
151 2 Adrian Georgescu
152 3 Adrian Georgescu
=== DELETE ===
153 2 Adrian Georgescu
154 2 Adrian Georgescu
{{{
155 2 Adrian Georgescu
adigeo@ag-imac3:~$xcapclient -a alice --app pres-rules DELETE
156 1 Adrian Georgescu
delete https://xcap.sipthor.net/xcap-root/pres-rules/users/sip:alice@example.com/index
157 1 Adrian Georgescu
200 OK
158 1 Adrian Georgescu
content-type: application/auth-policy+xml
159 3 Adrian Georgescu
}}}
160 3 Adrian Georgescu
161 3 Adrian Georgescu
162 5 Adrian Georgescu
== Example for resource-lists XCAP document ==
163 3 Adrian Georgescu
164 3 Adrian Georgescu
=== PUT ===
165 3 Adrian Georgescu
166 3 Adrian Georgescu
{{{
167 3 Adrian Georgescu
adigeo@ag-imac3:~$xcapclient -a alice PUT -i work/python-xcaplib/examples/resource-lists.xml 
168 3 Adrian Georgescu
put https://xcap.sipthor.net/xcap-root/resource-lists/users/sip:alice@example.com/index
169 3 Adrian Georgescu
201 Created
170 3 Adrian Georgescu
etag: "f8c47352d61b5b256ee80d964e03efd6"
171 3 Adrian Georgescu
content-type: application/resource-lists+xml
172 3 Adrian Georgescu
}}}
173 3 Adrian Georgescu
174 3 Adrian Georgescu
=== GET ===
175 3 Adrian Georgescu
176 3 Adrian Georgescu
{{{
177 3 Adrian Georgescu
adigeo@ag-imac3:~$xcapclient -a alice --app resource-lists GET
178 3 Adrian Georgescu
get https://xcap.sipthor.net/xcap-root/resource-lists/users/sip:alice@example.com/index
179 3 Adrian Georgescu
etag: "f8c47352d61b5b256ee80d964e03efd6"
180 3 Adrian Georgescu
content-type: application/resource-lists+xml
181 3 Adrian Georgescu
content-length: 991
182 3 Adrian Georgescu
<?xml version="1.0" encoding="UTF-8"?>
183 3 Adrian Georgescu
   <resource-lists xmlns="urn:ietf:params:xml:ns:resource-lists"
184 3 Adrian Georgescu
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
185 3 Adrian Georgescu
    <list name="friends">
186 3 Adrian Georgescu
     <entry uri="sip:bill@example.com">
187 3 Adrian Georgescu
      <display-name>Bill Doe</display-name>
188 3 Adrian Georgescu
     </entry>
189 3 Adrian Georgescu
     <entry-ref ref="resource-lists/users/sip:bill@example.com/index/~~/resource-lists/list%5b@name=%22list1%22%5d/entry%5b@uri=%22sip:petri@example.com%22%5d"/>
190 3 Adrian Georgescu
     <list name="close-friends">
191 3 Adrian Georgescu
      <display-name>Close Friends</display-name>
192 3 Adrian Georgescu
      <entry uri="sip:joe@example.com">
193 3 Adrian Georgescu
       <display-name>Joe Smith</display-name>
194 3 Adrian Georgescu
      </entry>
195 3 Adrian Georgescu
      <entry uri="sip:nancy@example.com">
196 3 Adrian Georgescu
       <display-name>Nancy Gross</display-name>
197 3 Adrian Georgescu
      </entry>
198 3 Adrian Georgescu
      <external anchor="http://xcap.example.org/resource-lists/users/sip:a@example.org/index/~~/resource-lists/list%5b@name=%22mkting%22%5d">
199 3 Adrian Georgescu
        <display-name>Marketing</display-name>
200 3 Adrian Georgescu
       </external>
201 3 Adrian Georgescu
     </list>
202 3 Adrian Georgescu
    </list>
203 3 Adrian Georgescu
   </resource-lists>
204 3 Adrian Georgescu
}}}
205 3 Adrian Georgescu
206 3 Adrian Georgescu
=== DELETE ===
207 3 Adrian Georgescu
208 3 Adrian Georgescu
{{{
209 3 Adrian Georgescu
adigeo@ag-imac3:~$xcapclient -a alice --app resource-lists DELETE
210 3 Adrian Georgescu
delete https://xcap.sipthor.net/xcap-root/resource-lists/users/sip:alice@example.com/index
211 3 Adrian Georgescu
200 OK
212 3 Adrian Georgescu
content-type: application/resource-lists+xml
213 3 Adrian Georgescu
adigeo@ag-imac3:~$
214 1 Adrian Georgescu
}}}
215 4 Adrian Georgescu
216 5 Adrian Georgescu
== Example for rls-services XCAP document ==
217 4 Adrian Georgescu
218 4 Adrian Georgescu
=== PUT ===
219 4 Adrian Georgescu
220 4 Adrian Georgescu
{{{
221 4 Adrian Georgescu
adigeo@ag-imac3:~$xcapclient -a alice PUT -i work/python-xcaplib/examples/rls-services.xml 
222 4 Adrian Georgescu
put https://xcap.sipthor.net/xcap-root/rls-services/users/sip:alice@example.com/index
223 4 Adrian Georgescu
201 Created
224 4 Adrian Georgescu
etag: "44f5fca1b08352815ee12f1a0c32d812"
225 4 Adrian Georgescu
content-type: application/rls-services+xml
226 4 Adrian Georgescu
}}}
227 4 Adrian Georgescu
228 4 Adrian Georgescu
=== GET ===
229 4 Adrian Georgescu
230 4 Adrian Georgescu
{{{
231 4 Adrian Georgescu
adigeo@ag-imac3:~$xcapclient -a alice --app rls-services GET
232 4 Adrian Georgescu
get https://xcap.sipthor.net/xcap-root/rls-services/users/sip:alice@example.com/index
233 4 Adrian Georgescu
etag: "44f5fca1b08352815ee12f1a0c32d812"
234 4 Adrian Georgescu
content-type: application/rls-services+xml
235 4 Adrian Georgescu
content-length: 797
236 4 Adrian Georgescu
<?xml version="1.0" encoding="UTF-8"?>
237 4 Adrian Georgescu
   <rls-services xmlns="urn:ietf:params:xml:ns:rls-services"
238 4 Adrian Georgescu
      xmlns:rl="urn:ietf:params:xml:ns:resource-lists"
239 4 Adrian Georgescu
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
240 4 Adrian Georgescu
    <service uri="sip:mybuddies@example.com">
241 4 Adrian Georgescu
     <resource-list>https://xcap.example.com/xcap-root/resource-lists/users/sip:alice@example.com/index/~~/resource-lists/list%5b@name=%22l1%22%5d</resource-list>
242 4 Adrian Georgescu
     <packages>
243 4 Adrian Georgescu
      <package>presence</package>
244 4 Adrian Georgescu
     </packages>
245 4 Adrian Georgescu
    </service>
246 4 Adrian Georgescu
    <service uri="sip:marketing@example.com">
247 4 Adrian Georgescu
      <list name="marketing">
248 4 Adrian Georgescu
        <rl:entry uri="sip:joe@example.com"/>
249 4 Adrian Georgescu
        <rl:entry uri="sip:sudhir@example.com"/>
250 4 Adrian Georgescu
      </list>
251 4 Adrian Georgescu
      <packages>
252 4 Adrian Georgescu
        <package>presence</package>
253 4 Adrian Georgescu
      </packages>
254 4 Adrian Georgescu
    </service>
255 4 Adrian Georgescu
   </rls-services>
256 4 Adrian Georgescu
}}}
257 4 Adrian Georgescu
258 4 Adrian Georgescu
=== DELETE ===
259 4 Adrian Georgescu
260 4 Adrian Georgescu
{{{
261 4 Adrian Georgescu
adigeo@ag-imac3:~$xcapclient -a alice --app rls-services DELETE
262 4 Adrian Georgescu
delete https://xcap.sipthor.net/xcap-root/rls-services/users/sip:alice@example.com/index
263 4 Adrian Georgescu
200 OK
264 4 Adrian Georgescu
content-type: application/rls-services+xml
265 4 Adrian Georgescu
}}}