bvtterfly/laravel-hashids
最新稳定版本:1.1.0
Composer 安装命令:
composer require bvtterfly/laravel-hashids
包简介
A package to generate hashids for Eloquent models
README 文档
README
🚨 THIS PACKAGE HAS BEEN ABANDONED 🚨
I no longer use Laravel and cannot justify the time needed to maintain this package. That's why I have chosen to abandon it. Feel free to fork my code and maintain your own copy.
Laravel Hashids
This package provides a trait that will generate hashids when saving any Eloquent model.
Hashids
Hashids is a small package to generate YouTube-like IDs from numbers. It converts numbers like 347 into strings like yr8.
Installation
You can install the package via composer:
composer require bvtterfly/laravel-hashids
You can publish the config file with:
php artisan vendor:publish --tag="hashids-config"
This is the contents of the published config file:
return [ /* |-------------------------------------------------------------------------- | Default Salt |-------------------------------------------------------------------------- | | This is the salt that uses by Hashids package to generate unique id. | */ 'salt' => config('app.name') ];
Usage
Your Eloquent models should have the Bvtterfly\LaravelHashids\HasHashId trait that contains an abstract getHashIdOptions method that you must implement yourself, and it should return the Bvtterfly\LaravelHashids\HashIdOptions class.
Your models' migrations should have a field to save the generated hashid to.
Here's an example of what a model would look like:
namespace App\Models; use Bvtterfly\LaravelHashids\HasHashId; use Bvtterfly\LaravelHashids\HashIdOptions; use Illuminate\Database\Eloquent\Model; class Post extends Model { use HasHashId; public function getHashIdOptions(): HashIdOptions { return HashIdOptions::create()->saveHashIdTo('hashid'); } }
By default, Package will generate hashids from models'
id.
And Its migration:
use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { public function up() { Schema::create('posts', function (Blueprint $table) { $table->increments('id'); $table->string('hashid')->nullable(); // Field name same as your `saveHashIdTo` //... $table->timestamps(); }); } }
The
hashidcolumn is generated from theidfield, Butidis an auto-increment column and doesn't have value before saving in the DB. So, Thehashidcolumn must be nullable. And The Package will generatehashidand update the model after being saved in the database.
Generate from Hex numbers
If you want to generate hashids from hex numbers like Mongo's ObjectIds, you can change the type to the hex:
public function getHashIdOptions(): HashIdOptions { return HashIdOptions::create() ->saveHashIdTo('hashid') ->setType('hex') // default = int ; }
Generate from another field
public function getHashIdOptions(): HashIdOptions { return HashIdOptions::create() ->saveHashIdTo('hashid') ->generateHashIdFrom('custom_key') ; }
Generate from field with value
By default, This package will generate hashids and update the model from the auto-incremented id column after being saved in the database. Still, if your field has value, you can change it to generate hashids while saving:
public function getHashIdOptions(): HashIdOptions { return HashIdOptions::create() ->saveHashIdTo('hashid') ->setAutoGeneratedField(false) ; }
Use the same hashids among models
The package will add the models' table to the default salt to generate a unique output id per model. If you want your Post and User models to share the same output id when id = 1:
public function getHashIdOptions(): HashIdOptions { return HashIdOptions::create() ->saveHashIdTo('hashid') ->setGenerateUniqueHashIds(false) ; }
Use padding to make your output ids longer
Without padding, encoding of 1 returns something like jR, but You can use padding to have a longer output id.
Note that output ids are only padded to fit at least a certain length. It doesn't mean that they will be exactly that length.
public function getHashIdOptions(): HashIdOptions { return HashIdOptions::create() ->saveHashIdTo('hashid') ->setMinimumHashLength(10) ; }
Using a custom alphabet
public function getHashIdOptions(): HashIdOptions { return HashIdOptions::create() ->saveHashIdTo('hashid') // use all lowercase alphabet instead of 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890' ->setAlphabet('abcdefghijklmnopqrstuvwxyz') ; }
Using Hashids in routes
To use the hashids in routes, you may specify the hashid column in the route parameter definition:
use App\Models\Post; Route::get('/posts/{post:hashid}', function (Post $post) { return $post; });
or If you would like model binding to always use the hashid column other than id when retrieving a given model class, you may override the getRouteKeyName method on the Eloquent model:
/** * Get the route key for the model. * * @return string */ public function getRouteKeyName() { return 'hashid'; }
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.
bvtterfly/laravel-hashids 适用场景与选型建议
bvtterfly/laravel-hashids 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 15.14k 次下载、GitHub Stars 达 28, 最近一次更新时间为 2022 年 04 月 26 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「Laravel-hashids」 「bvtterfly」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 bvtterfly/laravel-hashids 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 bvtterfly/laravel-hashids 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 bvtterfly/laravel-hashids 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Model State Machine
Simple Laravel wrapper around Hashids library.
Laravel circuit breaker package
An adapted bridge for using hashids in Laravel models.
Alfabank REST API integration
Laravel circuit breaker package
统计信息
- 总下载量: 15.14k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 28
- 点击次数: 17
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-04-26