Convert string booleans to real booleans

Legacy compatibility, from the days in stable8 when checkbox boolean
values were stored as the strings 'true' and 'false'.
This commit is contained in:
Robin McCorkell 2015-08-20 12:23:12 +01:00
parent 62d328525a
commit 643e3a5b6d
7 changed files with 76 additions and 17 deletions

View File

@ -154,22 +154,31 @@ class DefinitionParameter implements \JsonSerializable {
/** /**
* Validate a parameter value against this * Validate a parameter value against this
* Convert type as necessary
* *
* @param mixed $value Value to check * @param mixed $value Value to check
* @return bool success * @return bool success
*/ */
public function validateValue($value) { public function validateValue(&$value) {
if ($this->getFlags() & self::FLAG_OPTIONAL) { $optional = $this->getFlags() & self::FLAG_OPTIONAL;
return true;
}
switch ($this->getType()) { switch ($this->getType()) {
case self::VALUE_BOOLEAN: case self::VALUE_BOOLEAN:
if (!is_bool($value)) { if (!is_bool($value)) {
return false; switch ($value) {
case 'true':
$value = true;
break;
case 'false':
$value = false;
break;
default:
return false;
}
} }
break; break;
default: default:
if (empty($value)) { if (!$value && !$optional) {
return false; return false;
} }
break; break;

View File

@ -134,12 +134,12 @@ trait FrontendDefinitionTrait {
* @return bool * @return bool
*/ */
public function validateStorageDefinition(StorageConfig $storage) { public function validateStorageDefinition(StorageConfig $storage) {
$options = $storage->getBackendOptions();
foreach ($this->getParameters() as $name => $parameter) { foreach ($this->getParameters() as $name => $parameter) {
$value = isset($options[$name]) ? $options[$name] : null; $value = $storage->getBackendOption($name);
if (!$parameter->validateValue($value)) { if (!$parameter->validateValue($value)) {
return false; return false;
} }
$storage->setBackendOption($name, $value);
} }
return true; return true;
} }

View File

@ -45,11 +45,7 @@ class FTP extends \OC\Files\Storage\StreamWrapper{
$this->user=$params['user']; $this->user=$params['user'];
$this->password=$params['password']; $this->password=$params['password'];
if (isset($params['secure'])) { if (isset($params['secure'])) {
if (is_string($params['secure'])) { $this->secure = $params['secure'];
$this->secure = ($params['secure'] === 'true');
} else {
$this->secure = (bool)$params['secure'];
}
} else { } else {
$this->secure = false; $this->secure = false;
} }

View File

@ -118,6 +118,8 @@ abstract class StoragesService {
$applicableGroups[] = $applicable; $applicableGroups[] = $applicable;
$storageConfig->setApplicableGroups($applicableGroups); $storageConfig->setApplicableGroups($applicableGroups);
} }
return $storageConfig; return $storageConfig;
} }
@ -238,6 +240,12 @@ abstract class StoragesService {
$this->setRealStorageIds($storages, $storagesWithConfigHash); $this->setRealStorageIds($storages, $storagesWithConfigHash);
} }
// convert parameter values
foreach ($storages as $storage) {
$storage->getBackend()->validateStorageDefinition($storage);
$storage->getAuthMechanism()->validateStorageDefinition($storage);
}
return $storages; return $storages;
} }

View File

@ -49,6 +49,9 @@ class DefinitionParameterTest extends \Test\TestCase {
[Param::VALUE_BOOLEAN, Param::FLAG_NONE, false, true], [Param::VALUE_BOOLEAN, Param::FLAG_NONE, false, true],
[Param::VALUE_BOOLEAN, Param::FLAG_NONE, 123, false], [Param::VALUE_BOOLEAN, Param::FLAG_NONE, 123, false],
// conversion from string to boolean
[Param::VALUE_BOOLEAN, Param::FLAG_NONE, 'false', true, false],
[Param::VALUE_BOOLEAN, Param::FLAG_NONE, 'true', true, true],
[Param::VALUE_PASSWORD, Param::FLAG_NONE, 'foobar', true], [Param::VALUE_PASSWORD, Param::FLAG_NONE, 'foobar', true],
[Param::VALUE_PASSWORD, Param::FLAG_NONE, '', false], [Param::VALUE_PASSWORD, Param::FLAG_NONE, '', false],
@ -60,11 +63,14 @@ class DefinitionParameterTest extends \Test\TestCase {
/** /**
* @dataProvider validateValueProvider * @dataProvider validateValueProvider
*/ */
public function testValidateValue($type, $flags, $value, $success) { public function testValidateValue($type, $flags, $value, $success, $expectedValue = null) {
$param = new Param('foo', 'bar'); $param = new Param('foo', 'bar');
$param->setType($type); $param->setType($type);
$param->setFlags($flags); $param->setFlags($flags);
$this->assertEquals($success, $param->validateValue($value)); $this->assertEquals($success, $param->validateValue($value));
if (isset($expectedValue)) {
$this->assertEquals($expectedValue, $value);
}
} }
} }

View File

@ -70,9 +70,11 @@ class FrontendDefinitionTraitTest extends \Test\TestCase {
$storageConfig = $this->getMockBuilder('\OCA\Files_External\Lib\StorageConfig') $storageConfig = $this->getMockBuilder('\OCA\Files_External\Lib\StorageConfig')
->disableOriginalConstructor() ->disableOriginalConstructor()
->getMock(); ->getMock();
$storageConfig->expects($this->once()) $storageConfig->expects($this->any())
->method('getBackendOptions') ->method('getBackendOption')
->willReturn([]); ->willReturn(null);
$storageConfig->expects($this->any())
->method('setBackendOption');
$trait = $this->getMockForTrait('\OCA\Files_External\Lib\FrontendDefinitionTrait'); $trait = $this->getMockForTrait('\OCA\Files_External\Lib\FrontendDefinitionTrait');
$trait->setText('test'); $trait->setText('test');
@ -80,4 +82,35 @@ class FrontendDefinitionTraitTest extends \Test\TestCase {
$this->assertEquals($expectedSuccess, $trait->validateStorageDefinition($storageConfig)); $this->assertEquals($expectedSuccess, $trait->validateStorageDefinition($storageConfig));
} }
public function testValidateStorageSet() {
$param = $this->getMockBuilder('\OCA\Files_External\Lib\DefinitionParameter')
->disableOriginalConstructor()
->getMock();
$param->method('getName')
->willReturn('param');
$param->expects($this->once())
->method('validateValue')
->will($this->returnCallback(function(&$value) {
$value = 'foobar';
return true;
}));
$storageConfig = $this->getMockBuilder('\OCA\Files_External\Lib\StorageConfig')
->disableOriginalConstructor()
->getMock();
$storageConfig->expects($this->once())
->method('getBackendOption')
->with('param')
->willReturn('barfoo');
$storageConfig->expects($this->once())
->method('setBackendOption')
->with('param', 'foobar');
$trait = $this->getMockForTrait('\OCA\Files_External\Lib\FrontendDefinitionTrait');
$trait->setText('test');
$trait->addParameter($param);
$this->assertEquals(true, $trait->validateStorageDefinition($storageConfig));
}
} }

View File

@ -789,6 +789,13 @@ class GlobalStoragesServiceTest extends StoragesServiceTest {
file_put_contents($configFile, json_encode($json)); file_put_contents($configFile, json_encode($json));
$this->backendService->getBackend('identifier:\OCA\Files_External\Lib\Backend\SMB')
->expects($this->exactly(4))
->method('validateStorageDefinition');
$this->backendService->getAuthMechanism('identifier:\Auth\Mechanism')
->expects($this->exactly(4))
->method('validateStorageDefinition');
$allStorages = $this->service->getAllStorages(); $allStorages = $this->service->getAllStorages();
$this->assertCount(4, $allStorages); $this->assertCount(4, $allStorages);