Code Monkey home page Code Monkey logo

laravel-castable's Introduction

Build Status Total Downloads License Latest Stable Version

Laravel Castable

Laravel Castable package is a type converter, input filter or sanitizer. It is possible to do all of these operations. Supported POST, RAW DATA, GET requests methods. We started by inspiring the Laravel Eloquent data cast.

Requirements

PHP 5.6, 7.0+ Laravel 5.3 (LTS) or Laravel 5.4 (Current)

Get Started

Firstly, we install package:

$ composer require atayahmet/laravel-castable

and then we need add the service provider to the app.php

Castable\CastableServiceProvider::class

OK, we done.

Let's see how to use the laravel-castable.

Castable types

Types
string
integer
boolean
float
double
real
unset
array
object (stdClass)
collection

Create Castable Form Request class

We created new artisan command that inspired make:request from laravel built in command.

$ php artisan make:cast ContactRequest

New form of the form request class:

<?php

namespace App\Http\Requests;

use Castable\Castable;

class ContactRequest extends Castable
{
    protected $casts = [
        'json' => [
            //
        ],
        'post'  => [
            'name' => 'string',
            'age' => 'integer',
            'student' => 'boolean',
            'interests' => 'collection'
        ],
        'query' => [
            'save' => 'boolean'
        ]
    ];

    /**
     * Determine if the user is authorized to make this request.
     *
     * @return bool
     */
    public function authorize()
    {
        return false;
    }

    /**
     * Get the validation rules that apply to the request.
     *
     * @return array
     */
    public function rules()
    {
        return [
            //
        ];
    }
}

We added four inputs to casts property, status attibute added to query string parameters and age, student and interests attributes added to post parameters.

Raw and converted type of the attributes

Post:

Name Value Type Cast Type
name Ali string string
age 19 string integer
student true string boolean
interests books, computers array collection

Query String:

Name Value Type Cast Type
save true string boolean

To get the above result for:

<?php

ContactController extends Controller {

  public index(ContactRequest $contactRequest)
  {
      $contactRequest->cast()->input();
  }
}

Get a input:

$contactRequest->cast()->input('interests'); // collection

$contactRequest->cast()->input('student') // boolean (true)

$contactRequest->cast()->input('save') // boolean (true)

if request is post raw data:

$contactRequest->cast()->json();

$contactRequest->cast()->json('age');

Get original inputs:

$contactRequest->input();

Get original an input:

$contactRequest->input('student'); // string (true)

Original raw data:

$contactRequest->json();

Add presenter to the inputs

You can add presenter to the all post, query and json inputs. This feature gives you a chance to filter inputs.

Add presenter for post parameters:

public function PostNameAttribute($value, $original)
{
    return ucfirst($value);
}

Add presenter for query string parameters:

public function QuerySaveAttribute($value, $original)
{
    return $value === true ? 1 : 0;
}

Add presenter for json raw data parameters:

public function JsonSaveAttribute($value, $original)
{
    return ucfirst($name);
}

License

This package is open-source software licensed under the MIT license.

laravel-castable's People

Contributors

atayahmet avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.