2017 © Pedro Peláez
 

library laravel-uuid

Laravel package to generate and to validate a UUID according to the RFC 4122 standard. UUID Versions 1, 3, 4 and 5 are supported.

image

novay/laravel-uuid

Laravel package to generate and to validate a UUID according to the RFC 4122 standard. UUID Versions 1, 3, 4 and 5 are supported.

  • Saturday, March 17, 2018
  • by novay
  • Repository
  • 1 Watchers
  • 0 Stars
  • 19 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 73 % Grown

The README.md

Laravel UUID (Universally Unique Identifier)

Total Downloads Build Status Latest Stable Version Latest Unstable Version License, (*1)

Laravel package to generate a UUID according to the RFC 4122 standard. UUID Versions 1, 3, 4 and 5 are supported. With MIT license., (*2)

About

Since Laravel 4.* and 5.* both rely on either OpenSSL or Mcrypt, the pseudo random byte generator now tries to use one of them. If both cannot be used (not a Laravel project?), the 'less random' mt_rand() function is used., (*3)

Requirements

Installation

Laravel 5.5 and above
  1. From your projects root folder in terminal run:
    composer require novay/laravel-uuid
  • Uses package auto discovery feature, no need to edit the config/app.php file.
Laravel 5.4 and below
  1. From your projects root folder in terminal run:
    composer require novay/laravel-uuid:2.0
  1. Register the package with laravel in config/app.php under aliases with the following:
    'aliases' => [
        'Uuid' => Novay\Uuid\Uuid::class,
    ];

Basic Usage

To quickly generate a UUID just do, (*4)

    Uuid::generate()
  • This will generate a version 1 with a random ganerated MAC address.

To echo out the generated Uuid cast it to a string, (*5)

(string) Uuid::generate()

or, (*6)

Uuid::generate()->string

Advanced Usage

UUID creation

UUID V1

Generate a version 1, time-based, UUID. You can set the optional node to the MAC address. If not supplied it will generate a random MAC address., (*7)

Uuid::generate(1,'00:11:22:33:44:55');
UUID V3

Generate a version 3, name-based using MD5 hashing, UUID, (*8)

Uuid::generate(3,'test', Uuid::NS_DNS);
UUID V4

Generate a version 4, truly random, UUID, (*9)

Uuid::generate(4);
UUID V5

Generate a version 5, name-based using SHA-1 hashing, UUID, (*10)

Uuid::generate(5,'test', Uuid::NS_DNS);

Additional Features

Import UUID
  • To import a UUID
$uuid = Uuid::import('d3d29d70-1d25-11e3-8591-034165a3a613');
Extract Time
  • Extract the time for a time-based UUID (version 1)
$uuid = Uuid::generate(1);
dd($uuid->time);
Extract Version
  • Extract the version of an UUID
$uuid = Uuid::generate(4);
dd($uuid->version);
````

###### Eloquent UUID Generation

If you want an UUID magically be generated in your Laravel models, just add this boot function to your Model.

```php
/**
 *  Setup model event hooks
 */
public static function boot()
{
    parent::boot();
    self::creating(function ($model) {
        $model->uuid = (string) Uuid::generate(4);
    });
}

This will generate a version 4 UUID when creating a new record., (*11)

Model Binding to UUID instead of Primary Key

If you want to use the UUID in URLs instead of the primary key, you can add this to your model (where 'uuid' is the column name to store the UUID), (*12)

/**
 * Get the route key for the model.
 *
 * @return string
 */
public function getRouteKeyName()
{
    return 'uuid';
}

When you inject the model on your resource controller methods you get the correct record, (*13)

public function edit(Model $model)
{
   return view('someview.edit')->with([
        'model' => $model,
    ]);
}
Validation

Just use like any other Laravel validator., (*14)

'uuid-field' => 'uuid', (*15)

Or create a validator from scratch. In the example an Uuid object in validated. You can also validate strings $uuid->string, the URN $uuid->urn or the binary value $uuid->bytes, (*16)

$uuid = Uuid::generate();
$validator = Validator::make(['uuid' => $uuid], ['uuid' => 'uuid']);
dd($validator->passes());

Credits

  • Full development credit must go to webpatser. This package was forked and modified to be compliant with MIT licensing standards for production use.

Notes

Full details on the UUID specification can be found here, (*17)

License

Laravel UUID is licensed under the MIT license for both personal and commercial products. Enjoy!, (*18)

The Versions

17/03 2018

dev-master

9999999-dev https://github.com/novay/laravel-uuid

Laravel package to generate and to validate a UUID according to the RFC 4122 standard. UUID Versions 1, 3, 4 and 5 are supported.

  Sources   Download

MIT

The Requires

  • php >=7.0.0

 

The Development Requires

by Jeremy Kenedy
by Noviyanto Rahmadi

uuid rfc4122

28/01 2018

v3.0

3.0.0.0 https://github.com/novay/laravel-uuid

Laravel package to generate and to validate a UUID according to the RFC 4122 standard. UUID Versions 1, 3, 4 and 5 are supported.

  Sources   Download

MIT

The Requires

  • php >=7.0.0

 

The Development Requires

by Jeremy Kenedy
by Noviyanto Rahmadi

uuid rfc4122

28/01 2018

v2.0

2.0.0.0 https://github.com/novay/laravel-uuid

Laravel package to generate and to validate a UUID according to the RFC 4122 standard. UUID Versions 1, 3, 4 and 5 are supported.

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

The Development Requires

by Noviyanto Rahmadi

uuid rfc4122