All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
net.sf.webdav.methods.DoMove Maven / Gradle / Ivy
/*
* Copyright 1999,2004 The Apache Software Foundation.
*
* 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 net.sf.webdav.methods;
import java.io.IOException;
import java.util.Hashtable;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import net.sf.webdav.ITransaction;
import net.sf.webdav.WebdavStatus;
import net.sf.webdav.exceptions.AccessDeniedException;
import net.sf.webdav.exceptions.LockFailedException;
import net.sf.webdav.exceptions.ObjectAlreadyExistsException;
import net.sf.webdav.exceptions.WebdavException;
import net.sf.webdav.locking.ResourceLocks;
public class DoMove extends AbstractMethod {
private static org.slf4j.Logger LOG = org.slf4j.LoggerFactory
.getLogger(DoMove.class);
private ResourceLocks _resourceLocks;
private DoDelete _doDelete;
private DoCopy _doCopy;
private boolean _readOnly;
public DoMove(ResourceLocks resourceLocks, DoDelete doDelete,
DoCopy doCopy, boolean readOnly) {
_resourceLocks = resourceLocks;
_doDelete = doDelete;
_doCopy = doCopy;
_readOnly = readOnly;
}
public void execute(ITransaction transaction, HttpServletRequest req,
HttpServletResponse resp) throws IOException, LockFailedException {
if (!_readOnly) {
LOG.trace("-- " + this.getClass().getName());
String sourcePath = getRelativePath(req);
Hashtable errorList = new Hashtable();
if (!checkLocks(transaction, req, resp, _resourceLocks, sourcePath)) {
errorList.put(sourcePath, WebdavStatus.SC_LOCKED);
sendReport(req, resp, errorList);
return;
}
String destinationPath = req.getHeader("Destination");
if (destinationPath == null) {
resp.sendError(WebdavStatus.SC_BAD_REQUEST);
return;
}
if (!checkLocks(transaction, req, resp, _resourceLocks,
destinationPath)) {
errorList.put(destinationPath, WebdavStatus.SC_LOCKED);
sendReport(req, resp, errorList);
return;
}
String tempLockOwner = "doMove" + System.currentTimeMillis()
+ req.toString();
if (_resourceLocks.lock(transaction, sourcePath, tempLockOwner,
false, 0, TEMP_TIMEOUT, TEMPORARY)) {
try {
if (_doCopy.copyResource(transaction, req, resp)) {
errorList = new Hashtable();
_doDelete.deleteResource(transaction, sourcePath,
errorList, req, resp);
if (!errorList.isEmpty()) {
sendReport(req, resp, errorList);
}
}
} catch (AccessDeniedException e) {
resp.sendError(WebdavStatus.SC_FORBIDDEN);
} catch (ObjectAlreadyExistsException e) {
resp.sendError(WebdavStatus.SC_NOT_FOUND, req
.getRequestURI());
} catch (WebdavException e) {
resp.sendError(WebdavStatus.SC_INTERNAL_SERVER_ERROR);
} finally {
_resourceLocks.unlockTemporaryLockedObjects(transaction,
sourcePath, tempLockOwner);
}
} else {
errorList.put(req.getHeader("Destination"),
WebdavStatus.SC_LOCKED);
sendReport(req, resp, errorList);
}
} else {
resp.sendError(WebdavStatus.SC_FORBIDDEN);
}
}
}