Commit 52087e9d authored by Armando Jagucki's avatar Armando Jagucki Committed by ajagucki

PEP: Fixed bug when sending notification of item retractions.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/branches/pep@8903 b35dd754-fafc-0310-a699-88a17e54d16e
parent e3dcbd2d
...@@ -325,13 +325,15 @@ public class PEPService implements PubSubService { ...@@ -325,13 +325,15 @@ public class PEPService implements PubSubService {
} }
public void sendNotification(Node node, Message message, JID recipientJID) { public void sendNotification(Node node, Message message, JID recipientJID) {
message.setTo(recipientJID);
message.setFrom(getAddress()); message.setFrom(getAddress());
message.setID(node.getNodeID() + "__" + recipientJID.toBareJID() + "__" + StringUtils.randomString(5)); message.setID(node.getNodeID() + "__" + recipientJID.toBareJID() + "__" + StringUtils.randomString(5));
// If this PEPService can retrieve presence information for the recipient, // If the recipient subscribed with a bare JID and this PEPService can retrieve
// collect all of their full JIDs and send the notification to each below. // presence information for the recipient, collect all of their full JIDs and
// send the notification to each below.
Collection<JID> recipientFullJIDs = new ArrayList<JID>(); Collection<JID> recipientFullJIDs = new ArrayList<JID>();
if (XMPPServer.getInstance().isLocal(recipientJID)) { if (recipientJID.getResource() == null && XMPPServer.getInstance().isLocal(recipientJID)) {
for (ClientSession clientSession : SessionManager.getInstance().getSessions(recipientJID.getNode())) { for (ClientSession clientSession : SessionManager.getInstance().getSessions(recipientJID.getNode())) {
recipientFullJIDs.add(clientSession.getAddress()); recipientFullJIDs.add(clientSession.getAddress());
} }
...@@ -342,25 +344,48 @@ public class PEPService implements PubSubService { ...@@ -342,25 +344,48 @@ public class PEPService implements PubSubService {
}*/ }*/
if (recipientFullJIDs.isEmpty()) { if (recipientFullJIDs.isEmpty()) {
message.setTo(recipientJID);
router.route(message); router.route(message);
return; return;
} }
for (JID recipientFullJID : recipientFullJIDs) { for (JID recipientFullJID : recipientFullJIDs) {
message.setTo(recipientFullJID);
// Include an Extended Stanza Addressing "replyto" extension specifying the publishing // Include an Extended Stanza Addressing "replyto" extension specifying the publishing
// resource. However, only include the extension if the receiver has a presence subscription // resource. However, only include the extension if the receiver has a presence subscription
// to the service owner. // to the service owner.
try { try {
// Get the full JID of the item publisher from the node that was published to.
// This full JID will be used as the "replyto" address in the addressing extension.
JID publisher = null; JID publisher = null;
Element itemsElement = message.getElement().element("event").element("items"); // Get the nodeIDPublishedTo
String publishedItemID = itemsElement.element("item").attributeValue("id"); Element eventElement = message.getElement().element("event");
if (eventElement == null) {
router.route(message);
continue;
}
Element itemsElement = eventElement.element("items");
if (itemsElement == null) {
router.route(message);
continue;
}
String nodeIDPublishedTo = itemsElement.attributeValue("node"); String nodeIDPublishedTo = itemsElement.attributeValue("node");
// Get the itemID
String itemID = null;
Element retractElement = itemsElement.element("retract");
if (retractElement == null) {
Element itemElement = itemsElement.element("item");
if (itemElement == null) {
router.route(message);
continue;
}
itemID = itemElement.attributeValue("id");
}
else {
itemID = retractElement.attributeValue("id");
}
// Check if the recipientFullJID is interested in notifications for this node. // Check if the recipientFullJID is interested in notifications for this node.
// If the recipient has not yet requested any notification filtering, continue and send // If the recipient has not yet requested any notification filtering, continue and send
// the notification. // the notification.
...@@ -370,10 +395,19 @@ public class PEPService implements PubSubService { ...@@ -370,10 +395,19 @@ public class PEPService implements PubSubService {
return; return;
} }
// Get the full JID of the item publisher from the node that was published to.
// This full JID will be used as the "replyto" address in the addressing extension.
if (node.isCollectionNode()) { if (node.isCollectionNode()) {
for (Node leafNode : node.getNodes()) { for (Node leafNode : node.getNodes()) {
if (leafNode.getNodeID().equals(nodeIDPublishedTo)) { if (leafNode.getNodeID().equals(nodeIDPublishedTo)) {
publisher = leafNode.getPublishedItem(publishedItemID).getPublisher(); PublishedItem publishedItem = leafNode.getPublishedItem(itemID);
if (publishedItem != null) {
publisher = publishedItem.getPublisher();
}
else {
router.route(message);
break;
}
// Ensure the recipientJID has access to receive notifications for items published to the leaf node. // Ensure the recipientJID has access to receive notifications for items published to the leaf node.
AccessModel accessModel = leafNode.getAccessModel(); AccessModel accessModel = leafNode.getAccessModel();
...@@ -384,9 +418,19 @@ public class PEPService implements PubSubService { ...@@ -384,9 +418,19 @@ public class PEPService implements PubSubService {
break; break;
} }
} }
if (publisher == null) {
continue;
}
}
else {
PublishedItem publishedItem = node.getPublishedItem(itemID);
if (publishedItem != null) {
publisher = publishedItem.getPublisher();
} }
else { else {
publisher = node.getPublishedItem(publishedItemID).getPublisher(); router.route(message);
continue;
}
} }
// Ensure the recipient is subscribed to the service owner's (publisher's) presence. // Ensure the recipient is subscribed to the service owner's (publisher's) presence.
...@@ -402,7 +446,6 @@ public class PEPService implements PubSubService { ...@@ -402,7 +446,6 @@ public class PEPService implements PubSubService {
Message extendedMessage = message.createCopy(); Message extendedMessage = message.createCopy();
extendedMessage.addExtension(new PacketExtension(addresses)); extendedMessage.addExtension(new PacketExtension(addresses));
extendedMessage.setTo(recipientFullJID);
router.route(extendedMessage); router.route(extendedMessage);
} }
} }
...@@ -411,6 +454,9 @@ public class PEPService implements PubSubService { ...@@ -411,6 +454,9 @@ public class PEPService implements PubSubService {
} }
catch (UserNotFoundException e) { catch (UserNotFoundException e) {
// Do not add addressing extension to message. // Do not add addressing extension to message.
message.setTo(recipientJID);
router.route(message);
break;
} }
catch (NullPointerException e) { catch (NullPointerException e) {
// Do not add addressing extension to message. // Do not add addressing extension to message.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment