[Pkg-owncloud-commits] [owncloud] 69/121: add error message if user wants to rename a file which no longer exists
David Prévot
taffit at moszumanska.debian.org
Thu Aug 21 16:44:35 UTC 2014
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch master
in repository owncloud.
commit bc1848933d2fcd23a10ae5af0058ad86aedcf035
Author: Bjoern Schiessle <schiessle at owncloud.com>
Date: Fri Aug 8 16:11:07 2014 +0200
add error message if user wants to rename a file which no longer exists
---
apps/files/js/filelist.js | 4 ++++
apps/files/lib/app.php | 18 ++++++++++++++----
2 files changed, 18 insertions(+), 4 deletions(-)
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index 532ed46..4fd57cf 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -1322,6 +1322,10 @@
if (!result || result.status === 'error') {
OC.dialogs.alert(result.data.message, t('core', 'Could not rename file'));
fileInfo = oldFileInfo;
+ if (result.data.code === 'sourcenotfound') {
+ self.remove(result.data.newname, {updateSummary: true});
+ return;
+ }
}
else {
fileInfo = result.data;
diff --git a/apps/files/lib/app.php b/apps/files/lib/app.php
index e32225d..c21e44b 100644
--- a/apps/files/lib/app.php
+++ b/apps/files/lib/app.php
@@ -71,15 +71,25 @@ class App {
'data' => NULL
);
+ $normalizedOldPath = \OC\Files\Filesystem::normalizePath($dir . '/' . $oldname);
+ $normalizedNewPath = \OC\Files\Filesystem::normalizePath($dir . '/' . $newname);
+
// rename to non-existing folder is denied
- if (!$this->view->file_exists($dir)) {
+ if (!$this->view->file_exists($normalizedOldPath)) {
+ $result['data'] = array(
+ 'message' => $this->l10n->t('%s could not be renamed as it has been deleted', array($oldname)),
+ 'code' => 'sourcenotfound',
+ 'oldname' => $oldname,
+ 'newname' => $newname,
+ );
+ }else if (!$this->view->file_exists($dir)) {
$result['data'] = array('message' => (string)$this->l10n->t(
'The target folder has been moved or deleted.',
array($dir)),
'code' => 'targetnotfound'
);
// rename to existing file is denied
- } else if ($this->view->file_exists($dir . '/' . $newname)) {
+ } else if ($this->view->file_exists($normalizedNewPath)) {
$result['data'] = array(
'message' => $this->l10n->t(
@@ -90,10 +100,10 @@ class App {
// rename to "." is denied
$newname !== '.' and
// THEN try to rename
- $this->view->rename($dir . '/' . $oldname, $dir . '/' . $newname)
+ $this->view->rename($normalizedOldPath, $normalizedNewPath)
) {
// successful rename
- $meta = $this->view->getFileInfo($dir . '/' . $newname);
+ $meta = $this->view->getFileInfo($normalizedNewPath);
$fileinfo = \OCA\Files\Helper::formatFileInfo($meta);
$result['success'] = true;
$result['data'] = $fileinfo;
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git
More information about the Pkg-owncloud-commits
mailing list