Giter Site home page Giter Site logo

wujunze / laravel-id-generate Goto Github PK

View Code? Open in Web Editor NEW
13.0 3.0 2.0 70 KB

Laravel package to generate and to validate a UUID according to the RFC 4122 standard and generate SnowFlake Id

Home Page: https://github.com/wujunze/laravel-id-generate

License: MIT License

PHP 100.00%
php laravel uuid-generator rfc-4122 snowflake-twitter snowflake

laravel-id-generate's Introduction

Laravel IdGen

Build Status codecov.io Latest Stable Version Licence Total Downloads

Laravel package to generate and to validate a UUID according to the RFC 4122 standard. Only support for version 1, 3, 4 and 5 UUID are built-in. and generate number id, generate primary key

Base on laravel-uuid

Thanks to laravel-uuid

Installation

In Laravel 5.5 laravel-uuid will install via the new package discovery feature so you only need to add the package to your composer.json file

composer require "wujunze/laravel-id-generate"

after installation you should see

Discovered Package: wujunze/laravel-id-generate

and you are ready to go

Basic Usage

To quickly generate a UUID just do

IdGen::generate()

This will generate a version 1 IdGen object with a random generated MAC address.

To echo out the generated UUID, cast it to a string

(string) IdGen::generate()

or

IdGen::generate()->string

Advanced Usage

UUID creation

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.

IdGen::generate(1,'00:11:22:33:44:55');

Generate a version 3, name-based using MD5 hashing, UUID

IdGen::generate(3,'test', IdGen::NS_DNS);

Generate a version 4, truly random, UUID

IdGen::generate(4);

Generate a version 5, name-based using SHA-1 hashing, UUID

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

id generate

Generate sample primary key

 IdGen::getSamplePk();

Generate id by type and share key

 IdGen::genIdByTypeShareKey(6,89);

Generate id by type

 IdGen::genIdByType(8);

Generate code

 IdGen::genCode(9, 9, 888);

Generate SnowFlake Id

 IdGen::snowFlakeId();

Some magic features

To import a UUID

$uuid = IdGen::import('d3d29d70-1d25-11e3-8591-034165a3a613');

Extract the time for a time-based UUID (version 1)

$uuid = IdGen::generate(1);
dd($uuid->time);

Extract the version of an UUID

$uuid = IdGen::generate(4);
dd($uuid->version);

Eloquent UUID generation

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

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

This will generate a version 4 UUID when creating a new record.

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)

/**
 * 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

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

Validation

Just use like any other Laravel validator.

'uuid-field' => 'uuid' 'uuid-field' => 'gen_id'

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

$uuid = IdGen::generate();
$genId=  IdGen::getSamplePk();
$validator = Validator::make(['uuid' => $uuid], ['uuid' => 'uuid'], ['gen_id' => $genId]);
dd($validator->passes());

Notes

Full details on the UUID specification can be found on http://tools.ietf.org/html/rfc4122.

Snowflake is a network service for generating unique ID numbers at high scale with some simple guarantees.

Inspire And Thanks

Snowflake php implement

laravel-id-generate's People

Contributors

wujunze avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 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.