cyvelnet / laravel5-inputpipe
A simple way to format user input for laravel 5
Requires
- php: >=5.5.9
- illuminate/support: 5.0.*|5.1.*
Requires (Dev)
- mockery/mockery: 0.9.4
- phpunit/phpunit: ~4.0
This package is auto-updated.
Last update: 2024-11-08 22:25:01 UTC
README
We all face the problems when user submit a form, and all these form data is a mess, sometime we even wanted to trim the inputs, cast them, and reformat them, in fact it is not the hardest thing in the world, but these small tasks really make our code look lengthy, and InputPipes comes into play.
$inputs = Pipe::make(Input::all(), ['email' => 'trim|lower', 'name' => 'trim|ucword'])->get();
This single line of code simply the time we spend on formatting input.
Require this package with composer with the following command:
composer require cyvelnet/laravel5-inputpipe
Add the ServiceProvider to the providers array in config/app.php
Cyvelnet\InputPipe\InputPipeServiceProvider::class
and register Facade
Cyvelnet\InputPipe\Facades\PipeFacade::class
Available Pipes
- trim
- snake (snake case)
- camel (camel case)
- lower (lower case)
- upper (upper case)
- ucword
- slug
- ... and more coming soon or a PR to add general pipes
Extend functionality
Sometime we wanted to add some logic which is currently not provided or not a general scope, no worry you can extend it to match you usage
Pipe::extend('sample', function ($data, $parameters) { return $data; });
The above scenario is perfectly fine, if only a small number of extra functionality to add on. When extensions get crowded, it is better to organize them into class.
class CustomPipes extends \Cyvelnet\InputPipe\Pipes { public function pipeFoo ($data, $parameters) { // process your logic; } public function pipeBar($data, $parameters) { // process another logic; } }
Then register you class with
Pipe::extra(function($data, $pipes) { return new CustomPipes($data, $pipes); });
Finally trigger your pipes
$inputs = Pipe::make(Input::only('foo', 'bar'), ['foo', 'bar'])->get();
To Do
- Laravel5 FormRequest like class to store the rules ?