Compare commits

...

2 commits

Author SHA1 Message Date
vlw
01cc1eea02 doc: add deprecation note to README (#19)
This plugin has been deprecated as of Reflect version 3.8.5

Reviewed-on: https://codeberg.org/reflect/rules-plugin/pulls/19
Co-authored-by: vlw <victor@vlw.se>
Co-committed-by: vlw <victor@vlw.se>
2025-04-04 06:00:01 +00:00
aa7d969350 feat: add return Ruleset instance to Ruleset->GET() and Ruleset->POST() (#17)
Quick PR that adds return values to `Ruleset->GET()` and `Ruleset->POST()` to allow for method chaining with for example `Ruleset->validate_or_exit()`. This can come handy for streamlining simple rulesets.

# Example
```php
$ruleset->GET(new Rules("something")->type(Type::STRING))->validate_or_exit();
```

Reviewed-on: https://codeberg.org/reflect/reflect-rules-plugin/pulls/17
2024-11-28 17:05:16 +00:00
2 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,6 @@
> [!IMPORTANT]
> This plugin has since [Reflect version 3.8.5](https://codeberg.org/reflect/reflect/releases/tag/2.8.5) been deprecated. Reflect now has built-in request validation which is enabled by default. The built-in validator is based on this plugin.
# Request validation plugin for the [Reflect API Framework](https://codeberg.org/reflect/reflect)
This request pre-processor adds request validation for an API written in the Reflect API Framework.

View file

@ -122,7 +122,7 @@
// ----
// Perform request processing on GET properties (search parameters)
public function GET(array $rules): void {
public function GET(array $rules): self {
// (Re)enable strict mode if property is null
if ($this->strict === null) {
$this->strict = true;
@ -133,10 +133,12 @@
$this->eval_rules($rule, Scope::GET);
}
return $this;
}
// Perform request processing on POST properties (request body)
public function POST(array $rules): void {
public function POST(array $rules): self {
// (Re)enable strict mode if property is null
if ($this->strict === null) {
$this->strict = true;
@ -147,6 +149,8 @@
$this->eval_rules($rule, Scope::POST);
}
return $this;
}
// ----