mirror of
https://github.com/nextcloud/server.git
synced 2026-02-27 18:37:17 +01:00
normalize sftp path in read and write stream
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
@@ -82,6 +82,9 @@ class SFTPReadStream implements File {
|
||||
|
||||
public function stream_open($path, $mode, $options, &$opened_path) {
|
||||
[, $path] = explode('://', $path);
|
||||
$path = '/' . ltrim($path);
|
||||
$path = str_replace('//', '/', $path);
|
||||
|
||||
$this->loadContext('sftp');
|
||||
|
||||
if (!($this->sftp->bitmap & SSH2::MASK_LOGIN)) {
|
||||
|
||||
@@ -82,6 +82,9 @@ class SFTPWriteStream implements File {
|
||||
|
||||
public function stream_open($path, $mode, $options, &$opened_path) {
|
||||
[, $path] = explode('://', $path);
|
||||
$path = '/' . ltrim($path);
|
||||
$path = str_replace('//', '/', $path);
|
||||
|
||||
$this->loadContext('sftp');
|
||||
|
||||
if (!($this->sftp->bitmap & SSH2::MASK_LOGIN)) {
|
||||
|
||||
Reference in New Issue
Block a user