handle forbidden exceptions in smb backend
This commit is contained in:
parent
9a2c517ca8
commit
edbe5d7b6d
|
@ -30,6 +30,7 @@
|
||||||
namespace OC\Files\Storage;
|
namespace OC\Files\Storage;
|
||||||
|
|
||||||
use Icewind\SMB\Exception\Exception;
|
use Icewind\SMB\Exception\Exception;
|
||||||
|
use Icewind\SMB\Exception\ForbiddenException;
|
||||||
use Icewind\SMB\Exception\NotFoundException;
|
use Icewind\SMB\Exception\NotFoundException;
|
||||||
use Icewind\SMB\NativeServer;
|
use Icewind\SMB\NativeServer;
|
||||||
use Icewind\SMB\Server;
|
use Icewind\SMB\Server;
|
||||||
|
@ -159,6 +160,8 @@ class SMB extends Common {
|
||||||
}
|
}
|
||||||
} catch (NotFoundException $e) {
|
} catch (NotFoundException $e) {
|
||||||
return false;
|
return false;
|
||||||
|
} catch (ForbiddenException $e) {
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -239,6 +242,8 @@ class SMB extends Common {
|
||||||
return false;
|
return false;
|
||||||
} catch (NotFoundException $e) {
|
} catch (NotFoundException $e) {
|
||||||
return false;
|
return false;
|
||||||
|
} catch (ForbiddenException $e) {
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -257,6 +262,8 @@ class SMB extends Common {
|
||||||
return true;
|
return true;
|
||||||
} catch (NotFoundException $e) {
|
} catch (NotFoundException $e) {
|
||||||
return false;
|
return false;
|
||||||
|
} catch (ForbiddenException $e) {
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -270,7 +277,13 @@ class SMB extends Common {
|
||||||
}
|
}
|
||||||
|
|
||||||
public function opendir($path) {
|
public function opendir($path) {
|
||||||
$files = $this->getFolderContents($path);
|
try {
|
||||||
|
$files = $this->getFolderContents($path);
|
||||||
|
} catch (NotFoundException $e) {
|
||||||
|
return false;
|
||||||
|
} catch (ForbiddenException $e) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
$names = array_map(function ($info) {
|
$names = array_map(function ($info) {
|
||||||
/** @var \Icewind\SMB\IFileInfo $info */
|
/** @var \Icewind\SMB\IFileInfo $info */
|
||||||
return $info->getName();
|
return $info->getName();
|
||||||
|
@ -283,6 +296,8 @@ class SMB extends Common {
|
||||||
return $this->getFileInfo($path)->isDirectory() ? 'dir' : 'file';
|
return $this->getFileInfo($path)->isDirectory() ? 'dir' : 'file';
|
||||||
} catch (NotFoundException $e) {
|
} catch (NotFoundException $e) {
|
||||||
return false;
|
return false;
|
||||||
|
} catch (ForbiddenException $e) {
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -302,6 +317,8 @@ class SMB extends Common {
|
||||||
return true;
|
return true;
|
||||||
} catch (NotFoundException $e) {
|
} catch (NotFoundException $e) {
|
||||||
return false;
|
return false;
|
||||||
|
} catch (ForbiddenException $e) {
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue