Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: Rules for Multiple validator #136

Merged
merged 6 commits into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
292 changes: 147 additions & 145 deletions composer.lock

Large diffs are not rendered by default.

86 changes: 86 additions & 0 deletions src/Http/Validator/AllOf.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
<?php

namespace Utopia\Http\Validator;

use Utopia\Http\Validator;

/**
* Ensure all of the validators from a list passed the check
*
* @package Utopia\Validator
*/
class AllOf extends Validator
{
protected ?Validator $failedRule = null;

/**
* @param array<Validator> $validators
*/
public function __construct(protected array $validators, protected string $type = self::TYPE_MIXED)
{
}

/**
* Get Description
*
* Returns validator description
*
* @return string
*/
public function getDescription(): string
{
if(!(\is_null($this->failedRule))) {
$description = $this->failedRule->getDescription();
} else {
$description = $this->validators[0]->getDescription();
}

return $description;
}

/**
* Is valid
*
* Validation will pass when all rules are valid if only one of the rules is invalid validation will fail.
*
* @param mixed $value
* @return bool
*/
public function isValid(mixed $value): bool
{
foreach ($this->validators as $rule) {
$valid = $rule->isValid($value);

if(!$valid) {
$this->failedRule = $rule;
return false;
}
}

return true;
}

/**
* Get Type
*
* Returns validator type.
*
* @return string
*/
public function getType(): string
{
return $this->type;
}

/**
* Is array
*
* Function will return true if object is array.
*
* @return bool
*/
public function isArray(): bool
{
return true;
}
}
87 changes: 87 additions & 0 deletions src/Http/Validator/AnyOf.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
<?php

namespace Utopia\Http\Validator;

use Utopia\Http\Validator;

/**
* Ensure at least one validator from a list passed the check
*
* @package Utopia\Validator
*/
class AnyOf extends Validator
{
protected ?Validator $failedRule = null;

/**
* @param array<Validator> $validators
*/
public function __construct(protected array $validators, protected string $type = self::TYPE_MIXED)
{
}

/**
* Get Description
*
* Returns validator description
*
* @return string
*/
public function getDescription(): string
{
if(!(\is_null($this->failedRule))) {
$description = $this->failedRule->getDescription();
} else {
$description = $this->validators[0]->getDescription();
}

return $description;
}

/**
* Is valid
*
* Validation will pass when all rules are valid if only one of the rules is invalid validation will fail.
*
* @param mixed $value
* @return bool
*/
public function isValid(mixed $value): bool
{
foreach ($this->validators as $rule) {
$valid = $rule->isValid($value);

$this->failedRule = $rule;

if($valid) {
return true;
}
}

return false;
}

/**
* Get Type
*
* Returns validator type.
*
* @return string
*/
public function getType(): string
{
return $this->type;
}

/**
* Is array
*
* Function will return true if object is array.
*
* @return bool
*/
public function isArray(): bool
{
return true;
}
}
115 changes: 0 additions & 115 deletions src/Http/Validator/Multiple.php

This file was deleted.

88 changes: 88 additions & 0 deletions src/Http/Validator/NoneOf.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
<?php

namespace Utopia\Http\Validator;

use Utopia\Http\Validator;

/**
* Ensure no validators from a list passed the check
*
* @package Utopia\Validator
*/
class NoneOf extends Validator
{
protected ?Validator $failedRule = null;

/**
* @param array<Validator> $validators
*/
public function __construct(protected array $validators, protected string $type = self::TYPE_MIXED)
{
}

/**
* Get Description
*
* Returns validator description
*
* @return string
*/
public function getDescription(): string
{
$description = '';

if(!(\is_null($this->failedRule))) {
$description = $this->failedRule->getDescription();
} else {
$description = $this->validators[0]->getDescription();
}

return $description;
}

/**
* Is valid
*
* Validation will pass when all rules are valid if only one of the rules is invalid validation will fail.
*
* @param mixed $value
* @return bool
*/
public function isValid(mixed $value): bool
{
foreach ($this->validators as $rule) {
$valid = $rule->isValid($value);

if($valid) {
$this->failedRule = $rule;
return false;
}
}

return true;
}

/**
* Get Type
*
* Returns validator type.
*
* @return string
*/
public function getType(): string
{
return $this->type;
}

/**
* Is array
*
* Function will return true if object is array.
*
* @return bool
*/
public function isArray(): bool
{
return true;
}
}
Loading
Loading