mirror of
https://github.com/moodle/moodle.git
synced 2025-01-17 21:49:15 +01:00
MDL-32639 files: Removing '0' start folder in archives created with filemanager
This commit is contained in:
parent
4bd6f71bad
commit
697ade2850
@ -361,7 +361,7 @@ class zip_archive extends file_archive {
|
||||
if (!isset($this->za)) {
|
||||
return false;
|
||||
}
|
||||
$localname = ltrim($localname, '/'). '/';
|
||||
$localname = trim($localname, '/'). '/';
|
||||
$localname = $this->mangle_pathname($localname);
|
||||
|
||||
if ($localname === '/') {
|
||||
@ -369,10 +369,12 @@ class zip_archive extends file_archive {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!$this->za->addEmptyDir($localname)) {
|
||||
return false;
|
||||
if ($localname !== '') {
|
||||
if (!$this->za->addEmptyDir($localname)) {
|
||||
return false;
|
||||
}
|
||||
$this->modified = true;
|
||||
}
|
||||
$this->modified = true;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -219,8 +219,11 @@ switch ($action) {
|
||||
$file = $fs->get_file($user_context->id, 'user', 'draft', $draftid, $filepath, '.');
|
||||
|
||||
$parent_path = $file->get_parent_directory()->get_filepath();
|
||||
|
||||
$filepath = explode('/', trim($file->get_filepath(), '/'));
|
||||
$filepath = array_pop($filepath);
|
||||
|
||||
if ($newfile = $zipper->archive_to_storage(array($file), $user_context->id, 'user', 'draft', $draftid, $parent_path, $filepath.'.zip', $USER->id)) {
|
||||
if ($newfile = $zipper->archive_to_storage(array($filepath => $file), $user_context->id, 'user', 'draft', $draftid, $parent_path, $filepath.'.zip', $USER->id)) {
|
||||
$return = new stdClass();
|
||||
$return->filepath = $parent_path;
|
||||
echo json_encode($return);
|
||||
@ -251,7 +254,7 @@ switch ($action) {
|
||||
|
||||
// archive compressed file to an unused draft area
|
||||
$newdraftitemid = file_get_unused_draft_itemid();
|
||||
if ($newfile = $zipper->archive_to_storage(array($stored_file), $user_context->id, 'user', 'draft', $newdraftitemid, '/', $filename, $USER->id)) {
|
||||
if ($newfile = $zipper->archive_to_storage(array('/' => $stored_file), $user_context->id, 'user', 'draft', $newdraftitemid, '/', $filename, $USER->id)) {
|
||||
$return = new stdClass();
|
||||
$return->fileurl = moodle_url::make_draftfile_url($newdraftitemid, '/', $filename)->out();
|
||||
$return->filepath = $parent_path;
|
||||
|
@ -147,7 +147,7 @@ case 'downloaddir':
|
||||
$filename = get_string('files').'.zip';
|
||||
}
|
||||
|
||||
if ($newfile = $zipper->archive_to_storage(array($file), $user_context->id, 'user', 'draft', $itemid, $parent_path, $filename, $USER->id)) {
|
||||
if ($newfile = $zipper->archive_to_storage(array('/' => $file), $user_context->id, 'user', 'draft', $itemid, $parent_path, $filename, $USER->id)) {
|
||||
$fileurl = moodle_url::make_draftfile_url($itemid, '/', $filename)->out();
|
||||
header('Location: ' . $fileurl );
|
||||
} else {
|
||||
@ -161,14 +161,16 @@ case 'zip':
|
||||
$file = $fs->get_file($user_context->id, 'user', 'draft', $itemid, $draftpath, '.');
|
||||
if (!$file->get_parent_directory()) {
|
||||
$parent_path = '/';
|
||||
$filepath = '/';
|
||||
$filename = get_string('files').'.zip';
|
||||
} else {
|
||||
$parent_path = $file->get_parent_directory()->get_filepath();
|
||||
$filepath = explode('/', trim($file->get_filepath(), '/'));
|
||||
$filename = array_pop($filepath).'.zip';
|
||||
$filepath = array_pop($filepath);
|
||||
$filename = $filepath.'.zip';
|
||||
}
|
||||
|
||||
$newfile = $zipper->archive_to_storage(array($file), $user_context->id, 'user', 'draft', $itemid, $parent_path, $filename, $USER->id);
|
||||
$newfile = $zipper->archive_to_storage(array($filepath => $file), $user_context->id, 'user', 'draft', $itemid, $parent_path, $filename, $USER->id);
|
||||
|
||||
$home_url->param('action', 'browse');
|
||||
$home_url->param('draftpath', $parent_path);
|
||||
|
Loading…
x
Reference in New Issue
Block a user