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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
|
/*
* libjingle
* Copyright 2011, Google Inc.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "talk/xmpp/pubsubtasks.h"
#include <string>
#include <vector>
#include "talk/xmpp/constants.h"
#include "talk/xmpp/receivetask.h"
// An implementation of the tasks for XEP-0060
// (http://xmpp.org/extensions/xep-0060.html).
namespace buzz {
namespace {
bool IsPubSubEventItemsElem(const XmlElement* stanza,
const std::string& expected_node) {
if (stanza->Name() != QN_MESSAGE) {
return false;
}
const XmlElement* event_elem = stanza->FirstNamed(QN_PUBSUB_EVENT);
if (event_elem == NULL) {
return false;
}
const XmlElement* items_elem = event_elem->FirstNamed(QN_PUBSUB_EVENT_ITEMS);
if (items_elem == NULL) {
return false;
}
const std::string& actual_node = items_elem->Attr(QN_NODE);
return (actual_node == expected_node);
}
// Creates <pubsub node="node"><items></pubsub>
XmlElement* CreatePubSubItemsElem(const std::string& node) {
XmlElement* items_elem = new XmlElement(QN_PUBSUB_ITEMS, false);
items_elem->AddAttr(QN_NODE, node);
XmlElement* pubsub_elem = new XmlElement(QN_PUBSUB, false);
pubsub_elem->AddElement(items_elem);
return pubsub_elem;
}
// Creates <pubsub node="node"><publish><item id="itemid">payload</item>...
// Takes ownership of payload.
XmlElement* CreatePubSubPublishItemElem(
const std::string& node,
const std::string& itemid,
const std::vector<XmlElement*>& children) {
XmlElement* pubsub_elem = new XmlElement(QN_PUBSUB, true);
XmlElement* publish_elem = new XmlElement(QN_PUBSUB_PUBLISH, false);
publish_elem->AddAttr(QN_NODE, node);
XmlElement* item_elem = new XmlElement(QN_PUBSUB_ITEM, false);
item_elem->AddAttr(QN_ID, itemid);
for (std::vector<XmlElement*>::const_iterator child = children.begin();
child != children.end(); ++child) {
item_elem->AddElement(*child);
}
publish_elem->AddElement(item_elem);
pubsub_elem->AddElement(publish_elem);
return pubsub_elem;
}
// Creates <pubsub node="node"><publish><item id="itemid">payload</item>...
// Takes ownership of payload.
XmlElement* CreatePubSubRetractItemElem(const std::string& node,
const std::string& itemid) {
XmlElement* pubsub_elem = new XmlElement(QN_PUBSUB, true);
XmlElement* retract_elem = new XmlElement(QN_PUBSUB_RETRACT, false);
retract_elem->AddAttr(QN_NODE, node);
retract_elem->AddAttr(QN_NOTIFY, "true");
XmlElement* item_elem = new XmlElement(QN_PUBSUB_ITEM, false);
item_elem->AddAttr(QN_ID, itemid);
retract_elem->AddElement(item_elem);
pubsub_elem->AddElement(retract_elem);
return pubsub_elem;
}
void ParseItem(const XmlElement* item_elem,
std::vector<PubSubItem>* items) {
PubSubItem item;
item.itemid = item_elem->Attr(QN_ID);
item.elem = item_elem;
items->push_back(item);
}
// Right now, <retract>s are treated the same as items with empty
// payloads. We may want to change it in the future, but right now
// it's sufficient for our needs.
void ParseRetract(const XmlElement* retract_elem,
std::vector<PubSubItem>* items) {
ParseItem(retract_elem, items);
}
void ParseEventItemsElem(const XmlElement* stanza,
std::vector<PubSubItem>* items) {
const XmlElement* event_elem = stanza->FirstNamed(QN_PUBSUB_EVENT);
if (event_elem != NULL) {
const XmlElement* items_elem =
event_elem->FirstNamed(QN_PUBSUB_EVENT_ITEMS);
if (items_elem != NULL) {
for (const XmlElement* item_elem =
items_elem->FirstNamed(QN_PUBSUB_EVENT_ITEM);
item_elem != NULL;
item_elem = item_elem->NextNamed(QN_PUBSUB_EVENT_ITEM)) {
ParseItem(item_elem, items);
}
for (const XmlElement* retract_elem =
items_elem->FirstNamed(QN_PUBSUB_EVENT_RETRACT);
retract_elem != NULL;
retract_elem = retract_elem->NextNamed(QN_PUBSUB_EVENT_RETRACT)) {
ParseRetract(retract_elem, items);
}
}
}
}
void ParsePubSubItemsElem(const XmlElement* stanza,
std::vector<PubSubItem>* items) {
const XmlElement* pubsub_elem = stanza->FirstNamed(QN_PUBSUB);
if (pubsub_elem != NULL) {
const XmlElement* items_elem = pubsub_elem->FirstNamed(QN_PUBSUB_ITEMS);
if (items_elem != NULL) {
for (const XmlElement* item_elem = items_elem->FirstNamed(QN_PUBSUB_ITEM);
item_elem != NULL;
item_elem = item_elem->NextNamed(QN_PUBSUB_ITEM)) {
ParseItem(item_elem, items);
}
}
}
}
} // namespace
PubSubRequestTask::PubSubRequestTask(XmppTaskParentInterface* parent,
const Jid& pubsubjid,
const std::string& node)
: IqTask(parent, STR_GET, pubsubjid, CreatePubSubItemsElem(node)) {
}
void PubSubRequestTask::HandleResult(const XmlElement* stanza) {
std::vector<PubSubItem> items;
ParsePubSubItemsElem(stanza, &items);
SignalResult(this, items);
}
bool PubSubReceiveTask::WantsStanza(const XmlElement* stanza) {
return MatchStanzaFrom(stanza, pubsubjid_) &&
IsPubSubEventItemsElem(stanza, node_);
}
void PubSubReceiveTask::ReceiveStanza(const XmlElement* stanza) {
std::vector<PubSubItem> items;
ParseEventItemsElem(stanza, &items);
SignalUpdate(this, items);
}
PubSubPublishTask::PubSubPublishTask(XmppTaskParentInterface* parent,
const Jid& pubsubjid,
const std::string& node,
const std::string& itemid,
const std::vector<XmlElement*>& children)
: IqTask(parent, STR_SET, pubsubjid,
CreatePubSubPublishItemElem(node, itemid, children)),
itemid_(itemid) {
}
void PubSubPublishTask::HandleResult(const XmlElement* stanza) {
SignalResult(this);
}
PubSubRetractTask::PubSubRetractTask(XmppTaskParentInterface* parent,
const Jid& pubsubjid,
const std::string& node,
const std::string& itemid)
: IqTask(parent, STR_SET, pubsubjid,
CreatePubSubRetractItemElem(node, itemid)),
itemid_(itemid) {
}
void PubSubRetractTask::HandleResult(const XmlElement* stanza) {
SignalResult(this);
}
} // namespace buzz
|