-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxep-0462.xml
149 lines (124 loc) · 5.36 KB
/
xep-0462.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE xep SYSTEM 'xep.dtd' [
<!ENTITY % ents SYSTEM 'xep.ent'>
%ents;
]>
<?xml-stylesheet type='text/xsl' href='xep.xsl'?>
<xep>
<header>
<title>PubSub Type Filtering</title>
<abstract>This specification provides a way to filter PubSub nodes in a disco query.</abstract>
&LEGALNOTICE;
<number>0462</number>
<status>Experimental</status>
<type>Standards Track</type>
<sig>Standards</sig>
<approver>Council</approver>
<dependencies>
<spec>XEP-0004</spec>
<spec>XEP-0030</spec>
<spec>XEP-0060</spec>
</dependencies>
<supersedes/>
<supersededby/>
<shortname>NOT_YET_ASSIGNED</shortname>
&edhelas;
&pep.;
<revision>
<version>0.1.1</version>
<date>2022-04-22</date>
<initials>pep</initials>
<remark>Wording, typos.</remark>
</revision>
<revision>
<version>0.1.0</version>
<date>2022-03-08</date>
<initials>XEP Editor (jsc)</initials>
<remark>Accepted by vote of Council on 2022-02-09.</remark>
</revision>
<revision>
<version>0.0.1</version>
<date>2022-02-01</date>
<initials>edhelas, pep</initials>
<remark><p>First draft.</p></remark>
</revision>
</header>
<section1 anchor="intro" topic="Introduction">
<p>Implementations have been able to declare a <tt>pubsub#type</tt> attribute on PubSub nodes for about as long as &xep0060; has existed. This attribute doesn’t seem to be widely used in the community though, maybe due to the vagueness of its description, that has recently changed, or the lack of features associated with it.</p>
<p>This specification provides a way for implementations to allow filtering on this attribute when discovering nodes on a PubSub service.</p>
<p>Filtering is particularly useful for example combined with &xep0277; and comment nodes that are created on the same service. When listing content nodes of a service, one may want to filter out comment nodes.</p>
</section1>
<section1 anchor="reqs" topic="Requirements">
<ul>
<li>Allow querying only a subset of nodes in a disco items request, in the form of include/exclude</li>
</ul>
</section1>
<section1 anchor="usecases" topic="Use Cases">
<section2 anchor="support" topic="Discovering support">
<p>A service implementing this specification MUST advertize through &xep0030; a <tt>urn:xmpp:pubsub-filter:0</tt> feature.</p>
</section2>
<section2 anchor="sending-a-disco-request" topic="Sending a disco request">
<p>While requesting disco#items on a PubSub service, an entity might want to only get nodes of certain <tt>pubsub#type</tt>. To do so, it may add a filter child of namespace <tt>urn:xmpp:pubsub-filter:0</tt> to the query element, containing a &xep0004; form with FORM_TYPE set to <tt>urn:xmpp:pubsub-filter:0</tt> and an <tt>included-types</tt> or <tt>excluded-types</tt> list-multi type field containing the various types it wants to filter.</p>
<p>When <tt>included-types</tt> is specified, a PubSub service MUST return nodes of matching <tt>pubsub#type</tt> in its response.</p>
<p>When <tt>excluded-types</tt> is specified, a PubSub service MUST return every node but those of matching <tt>pubsub#types</tt> in its response.</p>
<p>Both included and excluded fields MAY contain an empty value to designate nodes with an empty <tt>pubsub#type</tt>.</p>
<example caption='Requesting disco#items with only nodes of the following types, including empty ones'><![CDATA[<iq type='get'
from='rosa@com.int/desktop'
to='news.commons.social'
id='disco1'>
<query xmlns='http://jabber.org/protocol/disco#items'>
<filter xmlns='urn:xmpp:pubsub-filter:0'>
<x xmlns='jabber:x:data' type='submit'>
<field var='FORM_TYPE' type='hidden'>
<value>urn:xmpp:pubsub-filter:0</value>
</field>
<field type='list-multi' var='included-types'>
<value>urn:xmpp:microblog:0</value>
<value/>
</field>
</x>
</filter>
</query>
</iq>]]></example>
<p>If both the included and excluded fields are specified, a service MUST return an error of type <tt>modify</tt> containing a <tt>bad-request</tt> element in the <tt>urn:ietf:params:xml:ns:xmpp-stanzas</tt> namespace.</p>
<example caption='Error returned when a requesting entity includes both fields'><![CDATA[<iq type='error'
from='news.com.int'
to='peter@commons.social/desktop'
id='error1'>
<error type='modify'>
<bad-request xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/>
</error>
</iq>]]></example>
</section2>
</section1>
<section1 anchor="iana" topic="IANA Considerations">
<p>None.</p>
</section1>
<section1 anchor="registrar" topic="XMPP Registrar Considerations">
<p>None.</p>
</section1>
<section1 anchor="schema" topic="XML Schema">
<section2 anchor="urnxmpppubsub-filter0" topic="urn:xmpp:pubsub-filter:0">
<code><![CDATA[<xs:schema
xmlns:xs='http://www.w3.org/2001/XMLSchema'
xmlns:xdata='jabber:x:data'
targetNamespace='urn:xmpp:pubsub-filter:0'
xmlns='urn:xmpp:pubsub-filter:0'
elementFormDefault='qualified'>
<xs:annotation>
<xs:documentation>
The protocol documented by this schema is defined in
XEP-XXXX: http://xmpp.org/extensions/xep-xxxx.html
</xs:documentation>
</xs:annotation>
<xs:element name='filter'>
<xs:complexType>
<xs:choice xmlns:xdata='jabber:x:data'>
<xs:element ref='xdata:x'/>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:schema>]]></code>
</section2>
</section1>
</xep>