orobogenius/laravel-model-statable

Add states to your laravel models.

1.0.0 2019-01-25 22:07 UTC

This package is auto-updated.

Last update: 2024-04-29 03:51:20 UTC


README

68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6f726f626f67656e6975732f6c61726176656c2d6d6f64656c2d7374617461626c652f6d61737465722e7376673f7374796c653d666c61742d737175617265 68747470733a2f2f706f7365722e707567782e6f72672f6f726f626f67656e6975732f6c61726176656c2d6d6f64656c2d7374617461626c652f762f737461626c653f666f726d61743d666c61742d737175617265 68747470733a2f2f696d672e736869656c64732e696f2f636f6465636f762f632f6769746875622f6f726f626f67656e6975732f6c61726176656c2d6d6f64656c2d7374617461626c652e7376673f7374796c653d666c61742d737175617265 68747470733a2f2f7374796c6563692e696f2f7265706f732f3136343239323139362f736869656c64 68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6f726f626f67656e6975732f6c61726176656c2d6d6f64656c2d7374617461626c652e7376673f7374796c653d666c61742d737175617265

This package lets you add predefined states to your laravel models. This allows you to define states that can be applied to your models at various points in your application. You can define all your states in one place and transition your model instances into different states. For example, you may define an admin state that transforms a user into an admin.

Contents

Installation

Composer

To install this package via composer, simply run:

$ composer require orobogenius/laravel-model-statable

or just add:

"orobogenius/laravel-model-statable": "~1.0"

to your composer.json file, then run composer install or composer udpate.

Usage

To add states to your laravel models, add the Orobogenius\Statable\Statable trait to the model.

<?php

use Orobogenius\Statable\Statable;

class User extends Model
{
    use Statable;
    //...
}

This trait lets you apply predefined states to your model instances. To tell the package about the states that can be applied to your models, you first have to define them. States are defined as methods on your models. To define a state, prefix the model method with state.

Defined states should always return an array that is keyed by attributes on your model.

<?php

use Illuminate\Database\Eloquent\Model;
use Orobogenius\Statable\Statable;

class User extends Model
{
    use Statable;
    
    public function stateAdmin()
    {
        return [
            'is_admin' => true
        ];
    }
}

Applying states

For states that has been defined on your model, you may call the states method on your model instances and pass the state(s) that should be applied to the model:

$user = User::find(1);
$user->states('admin');

// $user->is_admin: true

You can, of course, apply more than one state to a model by passing in an array of states to the states method:

use Illuminate\Database\Eloquent\Model;
use Orobogenius\Statable\Statable;

class User extends Model
{
    use Statable;
    
    public function stateAdmin()
    {
        return [
            'is_admin' => true
        ];
    }
    
    public function stateModerator()
    {
        return [
            'is_moderator' => true
        ];
    }
}
$user = User::find(1);
$user->states(['admin', 'moderator']);

// $user->is_admin: true
// $user->is_moderator: true

Closure attributes

You may add closure attributes to your model states definitions. The closure also receives the evaluated attributes of the enclosing states that define them:

<?php

use Illuminate\Database\Eloquent\Model;
use Orobogenius\Statable\Statable;

class User extends Model
{
    use Statable;
    
    public function stateSuperAdmin()
    {
        return [
            'is_super_admin' => function ($attributes) {
                return $this->is_admin && $this->is_moderator;
            }
        ];
    }
}

Relationships

You may specify relationships and states to apply to those relationships in a model's state definition. This lets you to update related models when you apply certain states to model instances. For example, setting all invoice items to processed when an invoice is in a paid state. To add relations to a model's state definition, add a with_relations key to the array that is being returned from the state defintion. The value should be an array that specifies the relationship as a key and the states to apply as the value:

Invoice

<?php

use Illuminate\Database\Eloquent\Model;
use Orobogenius\Statable\Statable;

class Invoice extends Model
{
    use Statable;
    
    public function items()
    {
        return $this->hasMany(InvoiceItem::class);
    }

    public function statePaid()
    {
        return [
            'status' => 'paid',
            'with_relations' => ['items' => 'processed']
        ];
    }
}

InvoiceItem

<?php

use Illuminate\Database\Eloquent\Model;
use Orobogenius\Statable\Statable;

class InvoiceItem extends Model
{
    use Statable;
    
    public function invoice()
    {
        return $this->belongsTo(Invoice::class);
    }

    public function stateProcessed()
    {
        return [
            'status' => 'processed'
        ];
    }
}
$invoice = Invoice::find(1);
$invoice->states('paid');

// $invoice->status: paid
// $invoice->items: (status) processed

The value of the relationship in the model definition can also be an array of states to be applied to the related models.

    public function statePaid()
    {
        return [
            'status' => 'paid',
            'with_relations' => ['items' => ['processed', 'valid']]
        ];
    }

Testing

$ composer test

License

MIT license (MIT) - Check out the License File for more.