KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sslexplorer > networkplaces > store > webdav > WebDAVMount


1 /*
2  * SSL-Explorer
3  *
4  * Copyright (C) 2003-2006 3SP LTD. All Rights Reserved
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2 of
9  * the License, or (at your option) any later version.
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public
16  * License along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */

19             
20 package com.sslexplorer.networkplaces.store.webdav;
21
22 import java.io.IOException JavaDoc;
23
24 import org.apache.commons.logging.Log;
25 import org.apache.commons.logging.LogFactory;
26 import org.apache.commons.vfs.FileObject;
27 import org.apache.commons.vfs.FileSystemException;
28
29 import com.sslexplorer.networkplaces.AbstractNetworkPlaceMount;
30 import com.sslexplorer.policyframework.LaunchSession;
31 import com.sslexplorer.security.PasswordCredentials;
32 import com.sslexplorer.vfs.VFSStore;
33 import com.sslexplorer.vfs.utils.URI;
34 import com.sslexplorer.vfs.webdav.DAVAuthenticationRequiredException;
35 import com.sslexplorer.vfs.webdav.DAVUtilities;
36
37 public class WebDAVMount extends AbstractNetworkPlaceMount {
38
39     final static Log log = LogFactory.getLog(WebDAVMount.class);
40
41     public WebDAVMount(LaunchSession launchSession, VFSStore store) {
42         super(launchSession, store);
43     }
44
45     public FileObject createVFSFileObject(String JavaDoc path, PasswordCredentials credentials) throws IOException JavaDoc {
46         try {
47             URI uri = getRootVFSURI();
48             if (credentials != null) {
49                 uri.setUserinfo(DAVUtilities.encodeURIUserInfo(credentials.getUsername() + (credentials.getPassword() != null ? ":" + new String JavaDoc(credentials.getPassword()) : "")));
50             }
51             uri.setPath(uri.getPath() + (uri.getPath().endsWith("/") ? "" : "/") + DAVUtilities.encodePath(path));
52             FileObject fileObject = this.getStore().getRepository().getFileSystemManager().resolveFile(uri.toString());
53             return fileObject;
54         } catch (FileSystemException fse) {
55             if (fse.getCode().equals("vfs.provider.ftp/connect.error")) {
56                 throw new DAVAuthenticationRequiredException(getMountString(), true);
57             }
58             throw fse;
59         }
60     }
61 }
Popular Tags