SocketPacketWriteHandler.java 2.43 KB
Newer Older
1 2 3 4 5
/**
 * $RCSfile: SocketPacketWriteHandler.java,v $
 * $Revision: 3137 $
 * $Date: 2005-12-01 02:11:05 -0300 (Thu, 01 Dec 2005) $
 *
6
 * Copyright (C) 2007 Jive Software. All rights reserved.
7 8 9 10 11
 *
 * This software is published under the terms of the GNU Public License (GPL),
 * a copy of which is included in this distribution.
 */

12
package org.jivesoftware.openfire.net;
13

14 15
import org.jivesoftware.openfire.*;
import org.jivesoftware.openfire.auth.UnauthorizedException;
Gaston Dombiak's avatar
Gaston Dombiak committed
16 17
import org.jivesoftware.util.LocaleUtils;
import org.jivesoftware.util.Log;
18 19
import org.xmpp.packet.JID;
import org.xmpp.packet.Packet;
20
import org.xmpp.packet.Presence;
21 22 23 24 25 26 27 28 29 30 31 32

/**
 * This ChannelHandler writes packet data to connections.
 *
 * @author Iain Shigeoka
 * @see PacketRouter
 */
public class SocketPacketWriteHandler implements ChannelHandler {

    private XMPPServer server;
    private RoutingTable routingTable;

33
    public SocketPacketWriteHandler(RoutingTable routingTable) {
34 35 36 37 38 39 40 41 42
        this.routingTable = routingTable;
        this.server = XMPPServer.getInstance();
    }

     public void process(Packet packet) throws UnauthorizedException, PacketException {
        try {
            JID recipient = packet.getTo();
            // Check if the target domain belongs to a remote server or a component
            if (server.matchesComponent(recipient) || server.isRemote(recipient)) {
Gaston Dombiak's avatar
Gaston Dombiak committed
43
                routingTable.routePacket(recipient, packet, false);
44 45
            }
            // The target domain belongs to the local server
46
            else if (recipient == null || (recipient.getNode() == null && recipient.getResource() == null)) {
47
                // no TO was found so send back the packet to the sender
Gaston Dombiak's avatar
Gaston Dombiak committed
48
                routingTable.routePacket(packet.getFrom(), packet, false);
49
            }
50 51
            else if (recipient.getResource() != null || !(packet instanceof Presence)) {
                // JID is of the form <user@domain/resource>
Gaston Dombiak's avatar
Gaston Dombiak committed
52
                routingTable.routePacket(recipient, packet, false);
53
            }
54 55 56
            else {
                // JID is of the form <user@domain>
                for (JID route : routingTable.getRoutes(recipient)) {
Gaston Dombiak's avatar
Gaston Dombiak committed
57
                    routingTable.routePacket(route, packet, false);
58 59
                }
            }
60 61 62 63 64 65
        }
        catch (Exception e) {
            Log.error(LocaleUtils.getLocalizedString("admin.error.deliver") + "\n" + packet.toString(), e);
        }
    }
}