Merge pull request #24367 from nextcloud/backport/24363/stable20
[stable20] Catch storage not available in versions expire command
This commit is contained in:
commit
ae9fd3e225
|
@ -28,6 +28,8 @@ namespace OCA\Files_Versions\Command;
|
||||||
use OC\Command\FileAccess;
|
use OC\Command\FileAccess;
|
||||||
use OCA\Files_Versions\Storage;
|
use OCA\Files_Versions\Storage;
|
||||||
use OCP\Command\ICommand;
|
use OCP\Command\ICommand;
|
||||||
|
use OCP\Files\StorageNotAvailableException;
|
||||||
|
use OCP\ILogger;
|
||||||
|
|
||||||
class Expire implements ICommand {
|
class Expire implements ICommand {
|
||||||
use FileAccess;
|
use FileAccess;
|
||||||
|
@ -59,6 +61,20 @@ class Expire implements ICommand {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
Storage::expire($this->fileName, $this->user);
|
Storage::expire($this->fileName, $this->user);
|
||||||
|
} catch (StorageNotAvailableException $e) {
|
||||||
|
// In case of external storage and session credentials, the expiration
|
||||||
|
// fails because the command does not have those credentials
|
||||||
|
|
||||||
|
/** @var ILogger $logger */
|
||||||
|
$logger = \OC::$server->get(ILogger::class);
|
||||||
|
|
||||||
|
$logger->logException($e, [
|
||||||
|
'level' => ILogger::WARN,
|
||||||
|
'uid' => $this->user,
|
||||||
|
'fileName' => $this->fileName,
|
||||||
|
]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue