2017 © Pedro Peláez
 

library laravel-sequenceable

Facilitates the generation and autocompletion of a sequential value in the database

image

enea/laravel-sequenceable

Facilitates the generation and autocompletion of a sequential value in the database

  • Thursday, March 1, 2018
  • by enea.so
  • Repository
  • 2 Watchers
  • 0 Stars
  • 40 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 9 Versions
  • 18 % Grown

The README.md

Laravel Sequenceable Package

Build Status Software License, (*1)

Laravel Sequenceable is a library to generate and manage sequences for laravel models., (*2)

// simple sequence
Serie::lineal('document_number');

// sequence with scope
Serie::lineal('document_number')->scope('invoice');

// sequence with scope and fixed length
Serie::lineal('document_number')->scope('invoice')->length(8);

Installation

Laravel Sequenceable requires PHP 8.1., (*3)

To get the latest version, simply require the project using Composer:, (*4)

composer require enea/laravel-sequenceable

Once installed, if you are not using automatic package discovery, then you need to register the Enea\Sequenceable\SequenceableServiceProvider service provider in your config/app.php., (*5)

Now. Publish the configuration file., (*6)

php artisan vendor:publish --provider='Enea\Sequenceable\SequenceableServiceProvider'

And finally run migrations., (*7)

php artisan migrate

Basic Usage

Getting started with the library is as simple as using the Sequenceable trait and implementing the SequenceableContract interface, after that you only need to specify the sequences you want to generate., (*8)

<?php namespace App;

use Enea\Sequenceable\Contracts\SequenceableContract;
use Enea\Sequenceable\Sequenceable;
use Enea\Sequenceable\Serie;
use Illuminate\Database\Eloquent\Model;

class Document extends Model implements SequenceableContract
{
    use Sequenceable;

    public function sequencesSetup(): array
    {
      return [
          Serie::lineal('document_number')
      ];
    }
}

Advanced

We exemplify all the options to generate a sequence with the case of a payment document., (*9)

  • To start, we need a column to store the sequence, and for this we will use a column called number.
    public function sequencesSetup(): array
    {
        return [ Serie::lineal('document_number') ];
    }
  • Now that we have the column defined, we realize that we need to create a separate sequence for each type of document. For this problem, the library offers the possibility of adding an scope for the column.
    public function sequencesSetup(): array
    {
        return [ 
            Serie::lineal('document_number')->scope($this->type())
        ];
    }

    protected function type(): string
    {
        return $this->payment_document_type;
    }
  • Everything is fine, but now we want the sequences not to be saved in a numeric value, but instead to be a text string with a fixed length of 10.
    public function sequencesSetup(): array
    {
        return [ 
            Serie::lineal('document_number')->scope($this->type())->length(10)
        ];
    }
  • Concluding, we could also say that we do not want to use the default table for sequences and we need a special table to store the payment sequences, for this you have to create your own sequence table., (*10)

    We can wrap a block of sequences using the class Enea\Sequenceable\Wrap::create, (*11)

    public function sequencesSetup(): array
    {
        return [ 
            Wrap::create(PaymentSequence::class, 
                         fn(Wrap $wrap) => $wrap->column('document_number')->scope($this->type())->length(10))
        ];
    }

List

To retrieve all the sequences of a model, you can use the Enea\Sequenceable\Facades\Succession facade which is linked to the Enea\Sequenceable\Succession class., (*12)

$collection = Succession::from(Document::class);

This returns an instance of Enea\Sequenceable\SequenceCollection . With which you can do things like:, (*13)

// return all sequences
$collection->all();

// find sequence by name
$collection->find('document_number', 'invoice');

Config

You can change the default sequence model of config\sequenceable.php in the model key., (*14)

<?php
return [    
    /*
    |--------------------------------------------------------------------------
    | Sequence Model
    |--------------------------------------------------------------------------
    |
    | This key defines the base sequence model that will be used to generate the autoincrementable 
    | values, you can modify this key and define your own sequence model whenever 
    | you implement the SequenceContract interface or extend the base model
    */
   'model' => \Enea\Sequenceable\Model\Sequence::class,
];

Or explicitly specify the model you want to use with certain fields, you can achieve this from the configuration of the sequences in your model., (*15)

    public function sequencesSetup(): array
    {
        return [ 
             Wrap::create(CustomSequence::class, function(Wrap $wrap): void {
                $wrap->column('column-name');                
                $wrap->column('another-column-name');
                //..
            }),
        ];
    }

Customize

if you already have a model to store your sequences, you need to implement the Enea\Sequenceable\Contracts\SequenceContract interface, or extend the default model Enea\Sequenceable\Model\Sequence., (*16)

In case you have your own sequence model, there are some fields that you should store in its sequence table:, (*17)

  1. The column ID, and this is obtained by concatenating the column name and scope.
  2. The name of the table to which the sequence belongs.
  3. An integer type sequence.

Example

To better exemplify this, we will use the default Sequence model., (*18)

This model comes with a default configuration., (*19)

id sequence source column_id created_at updated_at
e4910d63 1 documents document_number.invoce 2020-07-03 18:40:44 2020-07-03 18:40:44

Migration

The table structure has the required fields, you can see the migration in CreateSequencesTable, (*20)

Column Description Required
id It is generated on the basis of the union of the table, column and scope :x:
sequence Stores the last value in the sequence :white_check_mark:
source Stores the table name :white_check_mark:
column_id Concatenated name and scope :white_check_mark:
created_at Indicates the date and time the sequence was created :x:
updated_at Indicates the last time the sequence is updated :x:

You can see another example of this in the test folder and look for the files CustomSequence.php and migrations/2017_04_23_200525_create_custom_sequences_table.php, (*21)

More documentation

You can find a lot of comments within the source code as well as the tests located in the tests directory., (*22)

The Versions

01/03 2018

dev-master

9999999-dev

Facilitates the generation and autocompletion of a sequential value in the database

  Sources   Download

MIT

The Requires

 

The Development Requires

by enea dhack

sequence autoincrement increment sequenceable enea succession

09/07 2017

dev-development

dev-development

Facilitates the generation and autocompletion of a sequential value in the database

  Sources   Download

MIT

The Requires

 

The Development Requires

by enea dhack

sequence autoincrement increment sequenceable enea succession

09/07 2017

dev-refactor-test/autofilling

dev-refactor-test/autofilling

Facilitates the generation and autocompletion of a sequential value in the database

  Sources   Download

MIT

The Requires

 

The Development Requires

by enea dhack

sequence autoincrement increment sequenceable enea succession

09/07 2017

0.2.2

0.2.2.0

Facilitates the generation and autocompletion of a sequential value in the database

  Sources   Download

MIT

The Requires

 

The Development Requires

by enea dhack

sequence autoincrement increment sequenceable enea succession

05/07 2017

0.2.1

0.2.1.0

Facilitates the generation and autocompletion of a sequential value in the database

  Sources   Download

MIT

The Requires

 

The Development Requires

by enea dhack

sequence autoincrement increment sequenceable enea succession

02/07 2017

0.2.0

0.2.0.0

Facilitates the generation and autocompletion of a sequential value in the database

  Sources   Download

MIT

The Requires

 

The Development Requires

by enea dhack

02/07 2017

dev-downgrade-php

dev-downgrade-php

Facilitates the generation and autocompletion of a sequential value in the database

  Sources   Download

MIT

The Requires

 

The Development Requires

by enea dhack

29/06 2017

0.1.1

0.1.1.0

Facilitates the generation and autocompletion of a sequential value in the database

  Sources   Download

MIT

The Requires

 

The Development Requires

by enea dhack

26/06 2017

0.0.1

0.0.1.0

Facilitates the generation and autocompletion of a sequential value in the database

  Sources   Download

MIT

The Requires

 

The Development Requires

by enea dhack