Data sanitizer for PHP with built-in Laravel support.
composer require kalfheim/sanitizer
use Alfheim\Sanitizer\Sanitizer;
// Create a new sanitizer instance by passing an array of rules to the `Sanitizer::make` method...
$sanitizer = Sanitizer::make([
'email' => 'trim',
]);
// Simulate some user input...
$input = [
'email' => '[email protected] ', // Notice the space.
];
// Now we will sanitize some data by passing an array to the `sanitize` method...
var_dump($sanitizer->sanitize($input)); // ['email' => '[email protected]']
// It is also possible to pass the data by reference using the `sanitizeByRef` method...
$sanitizer->sanitizeByRef($input);
var_dump($input); // ['email' => '[email protected]']
// Wildcard example...
$input = [
'name' => 'Ola nordmann',
'email' => '[email protected] ',
];
$sanitizer = Sanitizer::make([
'*' => 'trim', // `*` is a wildcard which will apply to all fields.
'name' => 'ucwords', // Uppercase first char of each word in the name field.
'email' => 'mb_strtolower', // Lowercase each letter in the email field.
]);
var_dump($sanitizer->sanitize($input));
// ['name' => 'Ola Nordmann', 'email' => '[email protected]']
// Multiple rules and arguments...
$sanitizer = Sanitizer::make([
'name' => 'trim|ucwords', // Trim, then uppercase first char of each word.
'email' => 'preg_replace:/\ \w /::{{ VALUE }}',
]);
// The `email` rule might be a handful, but it is really quite simple.
// The rule translates to `$sanitizedValue = preg_replace('/\ \w /', '', $value)`.
// It will sanitize an email like `name [email protected]` to `[email protected]`.
// The `{{ VALUE }}` string is a magic constant that the sanitizer will replace
// with the value currently being sanitized.
// By default, the value will be implicitly bound to the first argument in the list,
// however, you can place it where ever you need to satisfy the function being called.
$sanitizer = Sanitizer::make([
'foo' => 'mb_substr:0:1',
'bar' => 'mb_substr:{{ VALUE }}:0:1',
]);
// In the example above, both rules will achieve the same end result.
A registrar allows you to bind custom sanitizer functions to the sanitizer.
use Alfheim\Sanitizer\Sanitizer;
use Alfheim\Sanitizer\Registrar\BaseRegistrar;
// Create a new registrar instance...
$registrar = new BaseRegistrar;
// Add custom sanitation rules to the registrar...
$registrar->register('palindromify', function (string $value) {
return sprintf('%s%s', $value, strrev($value));
});
// Create a new sanitizer and bind the registrar...
$sanitizer = Sanitizer::make([
'number' => 'palindromify',
])->setRegistrar($registrar);
$input = $sanitizer->sanitize([
'number' => '123',
]);
var_dump($input); // ['number' => '123321']
Register the service provider in your config/app.php
as per usual...
Alfheim\Sanitizer\SanitizerServiceProvider::class,
This is where the package shines.
By extending the Alfheim\Sanitizer\Laravel\FormRequest
on your base App\Http\Requests\Request
class (instead of the default Illuminate\Foundation\Http\FormRequest
), you'll be able to define sanitation rules in a sanitize
method on the given form request, similar to how you define validation rules in the rules
method.
Let me show you in code...
// app/Http/Requests/Request.php
namespace App\Http\Requests;
use Alfheim\Sanitizer\Laravel\FormRequest;
// Instead of `Illuminate\Foundation\Http\FormRequest`
abstract class Request extends FormRequest
{
//
}
That's it! Now it's trivial to define sanitation rules on your form requests...
// app/Http/Requests/FooRequest.php
namespace App\Http\Requests;
class FooRequest extends Request
{
// Sanitation rules...
public function sanitize()
{
return [
'name' => 'trim|ucwords',
'email' => 'trim|mb_strtolower',
];
}
// And of course, validation is defined as per usual...
public function rules()
{
return [
'name' => 'required',
'email' => 'required|email',
];
}
}
For completeness, I'll show you the controller...
namespace App\Http\Controllers;
use App\Http\Requests\FooRequest;
class FooController extends Controller
{
public function create(FooRequest $request)
{
// At this point, the $request will be both sanitized and validated.
// You may go ahead and access the input as usual:
$request->all();
$request->input('name');
$request->only(['name', 'email']);
// etc...
}
}
This trait adds a sanitize
method on the class.
May be useful if you want to sanitize user input in a controller without setting up a custom request class (however, it can be used from anywhere.)
public function sanitize(Illuminate\Http\Request $request, array $ruleset): array
Example usage...
namespace App\Http\Controllers\FooController;
use Illuminate\Http\Request;
use Alfheim\Sanitizer\Laravel\SanitizesRequests;
class FooController extends Controller
{
use SanitizesRequests;
public function store(Request $request)
{
$input = $this->sanitize($request, [
'name' => 'trim|ucwords',
'email' => 'trim|mb_strtolower',
]);
// $input now contains the sanitized request input.
}
}
The service provider will register a shared Alfheim\Sanitizer\Registrar\RegsitrarInterface
instance with the IoC container, which will then be set on subsequent Alfheim\Sanitizer\Sanitizer
instances. This means you can easily register custom sanitizer functions...
use Alfheim\Sanitizer\Registrar\RegistrarInterface;
// Standalone...
app(RegistrarInterface::class)->register('yell', $callable);
// In a method resolved by the container, perhaps a service provider...
public function registerSanitizers(RegistrarInterface $registrar)
{
$registrar->register('yell', function (string $value) {
return mb_strtoupper($value);
});
}
// You may also resolve an object from the IoC container using `class@method` notation...
app(RegistrarInterface::class)->register('foo', 'some.service@sanitizerMethod');