Merge pull request #22816 from owncloud/external-unavailable-recheck
allow availability recheck for external storages
This commit is contained in:
commit
b56dbd0607
3 changed files with 21 additions and 7 deletions
|
@ -23,6 +23,7 @@
|
|||
|
||||
namespace OCA\Files_External\Config;
|
||||
|
||||
use OC\Files\Storage\Wrapper\Availability;
|
||||
use OCA\Files_external\Migration\StorageMigrator;
|
||||
use OCP\Files\Storage;
|
||||
use OC\Files\Mount\MountPoint;
|
||||
|
@ -34,6 +35,7 @@ use OCA\Files_external\Service\UserStoragesService;
|
|||
use OCA\Files_External\Service\UserGlobalStoragesService;
|
||||
use OCA\Files_External\Lib\StorageConfig;
|
||||
use OCA\Files_External\Lib\FailedStorage;
|
||||
use OCP\Files\StorageNotAvailableException;
|
||||
|
||||
/**
|
||||
* Make the old files_external config work with the new public mount config api
|
||||
|
@ -132,8 +134,10 @@ class ConfigAdapter implements IMountProvider {
|
|||
|
||||
try {
|
||||
$availability = $impl->getAvailability();
|
||||
if (!$availability['available']) {
|
||||
$impl = new FailedStorage(['exception' => null]);
|
||||
if (!$availability['available'] && !Availability::shouldRecheck($availability)) {
|
||||
$impl = new FailedStorage([
|
||||
'exception' => new StorageNotAvailableException('Storage with mount id ' . $storage->getId() . ' is not available')
|
||||
]);
|
||||
}
|
||||
} catch (\Exception $e) {
|
||||
// propagate exception into filesystem
|
||||
|
|
|
@ -39,6 +39,9 @@ class FailedStorage extends Common {
|
|||
*/
|
||||
public function __construct($params) {
|
||||
$this->e = $params['exception'];
|
||||
if (!$this->e) {
|
||||
throw new \InvalidArgumentException('Missing "exception" argument in FailedStorage constructor');
|
||||
}
|
||||
}
|
||||
|
||||
public function getId() {
|
||||
|
|
|
@ -29,6 +29,16 @@ namespace OC\Files\Storage\Wrapper;
|
|||
class Availability extends Wrapper {
|
||||
const RECHECK_TTL_SEC = 600; // 10 minutes
|
||||
|
||||
public static function shouldRecheck($availability) {
|
||||
if (!$availability['available']) {
|
||||
// trigger a recheck if TTL reached
|
||||
if ((time() - $availability['last_checked']) > self::RECHECK_TTL_SEC) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return bool
|
||||
*/
|
||||
|
@ -47,11 +57,8 @@ class Availability extends Wrapper {
|
|||
*/
|
||||
private function isAvailable() {
|
||||
$availability = $this->getAvailability();
|
||||
if (!$availability['available']) {
|
||||
// trigger a recheck if TTL reached
|
||||
if ((time() - $availability['last_checked']) > self::RECHECK_TTL_SEC) {
|
||||
return $this->updateAvailability();
|
||||
}
|
||||
if (self::shouldRecheck($availability)) {
|
||||
return $this->updateAvailability();
|
||||
}
|
||||
return $availability['available'];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue