定制 techtailor/rpg 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

techtailor/rpg

Composer 安装命令:

composer require techtailor/rpg

包简介

Random Password Generator for Laravel

README 文档

README

GitHub release GitHub issues Software License Total Downloads Twitter

This package is a simple Laravel untility that allows you to generate complex passwords using a simple Facade.

Installation

Step 1: Install Through Composer

$ composer require techtailor/rpg

Step 2: Add the Service Provider (Skip this step for Laravel 5.5 or higher)

In the 'config/app.php' file -

'providers' => [
    // ...
    TechTailor\RPG\RPGServiceProvider::class,
];

Step 3: Add the Alias (Skip this step for Laravel 5.5 or higher)

In the 'config/app.php' file -

'aliases' => [
    // ...
    'RPG' => TechTailor\RPG\Facade\RPG::class,
];

In Laravel 5.5 & higher the package will autoregister the service provider and the alias.

Usage

In order to use the included RPG Facade, import the following in your file

use TechTailor\RPG\Facade\RPG;

The RPG Facade comes with three basic methods - Generate, Preset and Decrypt

The Generate method allows you to pass custom specifications for the generator.

 RPG::Generate($character, $size, $dashes, $encrypt);

Lets go into a bit detail about each of the specifications that can be provided

$character 
//Accepts a string of letters called "luds"
//Where > l is for lowercase alphabets
        > u is for uppercase alphabets
        > d is for digits
        > s is for special characters'
//The combination of these letters will provide the character set for the generator. Ex: 'ld' will only generate string with lowercase alphabets and digits.
$size
//The total size/lenght of the string your want to generate. 
//Ex : 15 - will generate a string of total 15 characters using the character set your selected
$dashes (defaults to 0)
//Two options - 0 or 1
//Using '1' - will add multiple dashes (-) randomly within the string generated.
$encrypt (defaults to 0)
//Two options - 0 or 1
//Using '1' - will return you an encrypted version of the password. Can be decrypted using RPG::Decrypt.

Example command for generating a password string of 16 characters with dashes using the 'lud (lowercase, uppercase, digits)' character set -

return RPG::Generate('lud',16,1); //Result: 37vX-zerT-weSa-vCC3

Example command for generating an encrypted password string of 16 characters with dashes using the 'lud (lowercase, uppercase, digits)' character set -

return RPG::Generate('lud',16,1,1); 

//Result: eyJpdiI6IjdTK3ZmMGZXNXl2a2xQSU1sNVhKZEE9PSIsInZhbHVlIjoiK1NxcTdUbVF3Q2dqSGVcL0JFKzRHR3VWNm5NWUdUNDY0dEFnOFN0S2JDdVk9IiwibWFjIjoiODEwMjIwOTBiNjBiOWRhMjJlNTliNGY0NzEyNDFjNmJkODIwZmFhMjMyY2IzOThkMzRmMTcyZGZkMjk1ZmUwYiJ9

The Preset method allows you to instantly select from any of the 4 preset specifications for the generator. You can also ad the encrypt modifier to the Preset method aswell for returning an encrypted Preset String.

 RPG::Preset($preset); //Where $preset value can be 1, 2, 3 or 4.
 or
 RPG::Preset($preset,1); // For encrypting the result before returning it.

Details of each preset -

 Preset - 1
 //Character Set = 'ld' //Size = 8  //Dashes = 0 (Dashes Not allowed)
 //Sample Result: cn3hvphy
 Preset - 2
 //Character Set = 'lud' //Size = 8  //Dashes = 0 (Dashes Not allowed)
 //Sample Result: 4sCFwNr8
 Preset - 3
 //Character Set = 'luds' //Size = 12  //Dashes = 0 (Dashes Not allowed)
 //Sample Result: r&$EQx1#USbw
 Preset - 4
 //Character Set = 'luds' //Size = 16  //Dashes = 1 (Dashes Allowed)
 //Sample Result: 1Z2h-F&?C-x$Tg-KEA8
 Preset - 5
 //Character Set = 'luds' //Size = 32  //Dashes = 1 (Dashes Allowed)
 //Sample Result: 1Z2h-F&?C-x$Tg-KEA8-a2E3-E$#e-@#we-12@2

The Decrypt method allows you to decrypt any string/password encrypted by passing the encrypt modifier to the Generate or Preset method. Note : Only passwords encrypted by your laravel app can be decrypted.

 return RPG::Decrypt($encrypted);

Important Note

The passwords are encrypted using the Laravel App Key (which can be found in your .env file). If you change/modify your Laravel App Key, you will no longer be able to decrypt any previously encrypted strings.

Well that should be enough to get you up and running in no time.

Demo Site

You can check out the live demo of this package at rpg.gits.moinuddin.dev

Changelog

Please see CHANGELOG for more information what has changed recently.

TODO

List of features or additional functionality we are working on (in no particular order) -

Nothing on the TODO List.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email hello@moinuddin.info instead of using the issue tracker.

License

The MIT License (MIT). Please see License File for more information.

techtailor/rpg 适用场景与选型建议

techtailor/rpg 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 70.33k 次下载、GitHub Stars 达 5, 最近一次更新时间为 2018 年 01 月 31 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 techtailor/rpg 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 techtailor/rpg 我们能提供哪些服务?
定制开发 / 二次开发

基于 techtailor/rpg 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 70.33k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 5
  • 点击次数: 34
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 5
  • Watchers: 2
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2018-01-31