/* * Copyright (C) 1999-2008 Jive Software. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.jivesoftware.openfire.plugin.spark.manager; import org.jivesoftware.openfire.filetransfer.*; import org.jivesoftware.openfire.XMPPServer; import org.jivesoftware.util.JiveGlobals; /** */ public class FileTransferFilterManager { /** * The JiveProperty relating to whether or not file transfer is currently enabled. If file * transfer is disabled all known file transfer related packets are blocked, it also goes * with out saying that the file transfer proxy is then disabled. */ static final String JIVEPROPERTY_FILE_TRANSFER_ENABLED = "xmpp.filetransfer.enabled"; /** * Whether or not the file transfer is enabled by default. */ static final boolean DEFAULT_IS_FILE_TRANSFER_ENABLED = true; private org.jivesoftware.openfire.filetransfer.FileTransferManager manager; private TransferInterceptor transferInterceptor; public FileTransferFilterManager() { this.manager = XMPPServer.getInstance().getFileTransferManager(); this.transferInterceptor = new TransferInterceptor(); } public void start() { manager.addListener(transferInterceptor); } public void stop() { manager.removeListener(transferInterceptor); } public void enableFileTransfer(boolean isEnabled) { JiveGlobals.setProperty(JIVEPROPERTY_FILE_TRANSFER_ENABLED, Boolean.toString(isEnabled)); } public boolean isFileTransferEnabled() { return JiveGlobals.getBooleanProperty(JIVEPROPERTY_FILE_TRANSFER_ENABLED, DEFAULT_IS_FILE_TRANSFER_ENABLED); } private class TransferInterceptor implements FileTransferEventListener { @Override public void fileTransferStart( FileTransfer transfer, boolean isReady ) throws FileTransferRejectedException { if(!isFileTransferEnabled()) { throw new FileTransferRejectedException(); } } @Override public void fileTransferComplete( FileTransfer transfer, boolean wasSuccessful ) {} } }