/* * Copyright (c) 2014 The APN-PROXY Project * * The APN-PROXY Project licenses this file to you 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 com.xx_dev.apn.proxy.remotechooser; import com.xx_dev.apn.proxy.config.ApnProxyAESRemoteRule; import com.xx_dev.apn.proxy.config.ApnProxyConfig; import com.xx_dev.apn.proxy.config.ApnProxyListenType; import com.xx_dev.apn.proxy.config.ApnProxyRemoteRule; import org.apache.commons.lang.StringUtils; import org.apache.log4j.Logger; /** * @author xmx * @version $Id: com.xx_dev.apn.proxy.remotechooser.ApnProxyRemoteChooser 14-1-8 16:13 (xmx) Exp $ */ public class ApnProxyRemoteChooser { @SuppressWarnings("unused") private static final Logger logger = Logger.getLogger(ApnProxyRemoteChooser.class); private static final Logger remoteChooseLogger = Logger.getLogger("REMOTE_CHOOSE_LOGGER"); public static ApnProxyRemote chooseRemoteAddr(String originalHost, int originalPort) { ApnProxyRemote apRemote = null; ApnProxyRemoteRule remoteRule = getApplyRemoteRule(originalHost); if (remoteRule != null) { if (remoteRule.getRemoteListenType() == ApnProxyListenType.SSL) { ApnProxyRemote apSslRemote = new ApnProxyRemote(); apSslRemote.setAppleyRemoteRule(true); apSslRemote.setRemoteListenType(ApnProxyListenType.SSL); apRemote = apSslRemote; } if (remoteRule.getRemoteListenType() == ApnProxyListenType.AES) { ApnProxyAESRemote apAESRemote = new ApnProxyAESRemote(); apAESRemote.setAppleyRemoteRule(true); apAESRemote.setRemoteListenType(ApnProxyListenType.AES); byte[] key = ((ApnProxyAESRemoteRule) remoteRule).getKey(); byte[] iv = ((ApnProxyAESRemoteRule) remoteRule).getIv(); apAESRemote.setKey(key); apAESRemote.setIv(iv); apRemote = apAESRemote; } if (remoteRule.getRemoteListenType() == ApnProxyListenType.PLAIN) { ApnProxyRemote apPlainRemote = new ApnProxyRemote(); apPlainRemote.setAppleyRemoteRule(true); apPlainRemote.setRemoteListenType(ApnProxyListenType.PLAIN); apRemote = apPlainRemote; } apRemote.setRemoteHost(remoteRule.getRemoteHost()); apRemote.setRemotePort(remoteRule.getRemotePort()); apRemote.setProxyUserName(remoteRule.getProxyUserName()); apRemote.setProxyPassword(remoteRule.getProxyPassword()); } else { apRemote = new ApnProxyRemote(); apRemote.setAppleyRemoteRule(false); apRemote.setRemoteHost(originalHost); apRemote.setRemotePort(originalPort); apRemote.setRemoteListenType(ApnProxyListenType.PLAIN); } if (remoteChooseLogger.isInfoEnabled()) { remoteChooseLogger.info("Original host: " + originalHost + ", Original port: " + originalPort + ", Remote: " + apRemote.getRemoteAddr() + ", Remote type: " + apRemote.getRemoteListenType()); } return apRemote; } private static ApnProxyRemoteRule getApplyRemoteRule(String host) { for (ApnProxyRemoteRule remoteRule : ApnProxyConfig.getConfig().getRemoteRuleList()) { for (String originalHost : remoteRule.getOriginalHostList()) { if (StringUtils.equals(originalHost, host) || StringUtils.endsWith(host, "." + originalHost)) { return remoteRule; } } } return null; } }