1
0
Fork 0
mirror of synced 2024-10-01 17:58:02 +13:00

update dictonary validator

This commit is contained in:
Damodar Lohani 2023-02-20 01:34:05 +00:00
parent 9e4f66cac4
commit 452ee5c086
4 changed files with 9 additions and 16 deletions

View file

@ -66,7 +66,7 @@ App::post('/v1/account')
->label('abuse-limit', 10)
->param('userId', '', new CustomId(), 'Unique Id. Choose your own unique ID or pass the string `ID.unique()` to auto generate it. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can\'t start with a special char. Max length is 36 chars.')
->param('email', '', new Email(), 'User email.')
->param('password', '', fn ($project, $passwordsDictionary) => new PasswordDictionary($passwordsDictionary, $project), 'New user password. Must be at least 8 chars.', false, ['project', 'passwordsDictionary'])
->param('password', '', fn ($project, $passwordsDictionary) => new PasswordDictionary($passwordsDictionary, $project->getAttribute('auths',[])['passwordDictionary']), 'New user password. Must be at least 8 chars.', false, ['project', 'passwordsDictionary'])
->param('name', '', new Text(128), 'User name. Max length: 128 chars.', true)
->inject('request')
->inject('response')
@ -1532,7 +1532,7 @@ App::patch('/v1/account/password')
->label('sdk.response.code', Response::STATUS_CODE_OK)
->label('sdk.response.type', Response::CONTENT_TYPE_JSON)
->label('sdk.response.model', Response::MODEL_ACCOUNT)
->param('password', '', fn ($project, $passwordsDictionary) => new PasswordDictionary($passwordsDictionary, $project), 'New user password. Must be at least 8 chars.', false, ['project', 'passwordsDictionary'])
->param('password', '', fn ($project, $passwordsDictionary) => new PasswordDictionary($passwordsDictionary, $project->getAttribute('auths',[])['passwordDictionary']), 'New user password. Must be at least 8 chars.', false, ['project', 'passwordsDictionary'])
->param('oldPassword', '', new Password(), 'Current user password. Must be at least 8 chars.', true)
->inject('response')
->inject('user')

View file

@ -106,7 +106,7 @@ App::post('/v1/users')
->param('userId', '', new CustomId(), 'User ID. Choose your own unique ID or pass the string `ID.unique()` to auto generate it. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can\'t start with a special char. Max length is 36 chars.')
->param('email', null, new Email(), 'User email.', true)
->param('phone', null, new Phone(), 'Phone number. Format this number with a leading \'+\' and a country code, e.g., +16175551212.', true)
->param('password', '', fn ($project, $passwordsDictionary) => new PasswordDictionary($passwordsDictionary, $project), 'Plain text user password. Must be at least 8 chars.', true, ['project', 'passwordsDictionary'])
->param('password', '', fn ($project, $passwordsDictionary) => new PasswordDictionary($passwordsDictionary, $project->getAttribute('auths',[])['passwordDictionary']), 'Plain text user password. Must be at least 8 chars.', true, ['project', 'passwordsDictionary'])
->param('name', '', new Text(128), 'User name. Max length: 128 chars.', true)
->inject('response')
->inject('project')
@ -793,7 +793,7 @@ App::patch('/v1/users/:userId/password')
->label('sdk.response.type', Response::CONTENT_TYPE_JSON)
->label('sdk.response.model', Response::MODEL_USER)
->param('userId', '', new UID(), 'User ID.')
->param('password', '', fn ($project, $passwordsDictionary) => new PasswordDictionary($passwordsDictionary, $project), 'New user password. Must be at least 8 chars.', false, ['project', 'passwordsDictionary'])
->param('password', '', fn ($project, $passwordsDictionary) => new PasswordDictionary($passwordsDictionary, $project->getAttribute('auths',[])['passwordDictionary']), 'New user password. Must be at least 8 chars.', false, ['project', 'passwordsDictionary'])
->inject('response')
->inject('project')
->inject('dbForProject')

View file

@ -12,12 +12,12 @@ use Utopia\Database\Document;
class PasswordDictionary extends Password
{
protected array $dictionary;
protected Document $project;
protected bool $enabled;
public function __construct(array $dictionary, Document $project)
public function __construct(array $dictionary, bool $enabled = false)
{
$this->dictionary = $dictionary;
$this->project = $project;
$this->enabled = $enabled;
}
/**
@ -45,8 +45,7 @@ class PasswordDictionary extends Password
return false;
}
$dictionaryEnabled = $this->project->getAttribute('auths', [])['passwordDictionary'] ?? false;
if ($dictionaryEnabled && array_key_exists($value, $this->dictionary)) {
if ($this->enabled && array_key_exists($value, $this->dictionary)) {
return false;
}
return true;

View file

@ -13,13 +13,7 @@ class PasswordDictionaryTest extends TestCase
public function setUp(): void
{
$this->object = new PasswordDictionary(
['password' => true, '123456' => true],
new Document([
'auths' => [
'passwordDictionary' => true
]
])
);
['password' => true, '123456' => true], true);
}
public function testValues(): void