/************************************************************************************** https://camel-extra.github.io This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. http://www.gnu.org/licenses/lgpl-3.0-standalone.html ***************************************************************************************/ package org.apacheextras.camel.component.jcifs; import java.net.URI; import org.apache.camel.component.file.GenericFileConfiguration; import org.apache.camel.util.ObjectHelper; public class SmbConfiguration extends GenericFileConfiguration { private static final String DOMAIN_SEPARATOR = ";"; private static final String USER_PASS_SEPARATOR = ":"; private String domain; private String username; private String password; private String host; private String path; private int port; private SmbApiFactory smbApiFactory; public SmbConfiguration(URI uri, SmbApiFactory smbApiFactory) { configure(uri); this.smbApiFactory = smbApiFactory; } @Override public void configure(URI uri) { super.configure(uri); String userInfo = uri.getUserInfo(); if (userInfo != null) { if (userInfo.contains(DOMAIN_SEPARATOR)) { setDomain(ObjectHelper.before(userInfo, DOMAIN_SEPARATOR)); userInfo = ObjectHelper.after(userInfo, DOMAIN_SEPARATOR); } if (userInfo.contains(USER_PASS_SEPARATOR)) { setUsername(ObjectHelper.before(userInfo, USER_PASS_SEPARATOR)); setPassword(ObjectHelper.after(userInfo, USER_PASS_SEPARATOR)); } else { setUsername(userInfo); } } setHost(uri.getHost()); setPort(uri.getPort()); setPath(uri.getPath()); } public String getSmbPath() { StringBuffer buffer = new StringBuffer(); buffer.append("smb://"); buffer.append(getHost()); if (getPort() > 0) { buffer.append(":").append(getPort()); } buffer.append(getPath()); return buffer.toString(); } public String getSmbHostPath() { StringBuffer buffer = new StringBuffer(); buffer.append("smb://"); buffer.append(getHost()); if (getPort() > 0) { buffer.append(":").append(getPort()); } buffer.append("/"); return buffer.toString(); } public String getDomain() { return domain; } public void setDomain(String domain) { this.domain = domain; } public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public String getHost() { return host; } public void setHost(String host) { this.host = host; } public int getPort() { return port; } public void setPort(int port) { this.port = port; } public void setPath(String path) { this.path = path; } public String getPath() { return path; } // TODO: give this dirty handling some thinking. @Override public String getDirectory() { String s = super.getDirectory(); s = s.replace('\\', '/'); // we always need / // this is a bit dirty return s; } public void setSmbApiFactory(SmbApiFactory smbApiFactory) { this.smbApiFactory = smbApiFactory; } public SmbApiFactory getSmbApiFactory() { return smbApiFactory; } }