amestsantim/voucherator 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

amestsantim/voucherator

Composer 安装命令:

composer require amestsantim/voucherator

包简介

A generic PHP package that can generate all sorts of random voucher/coupon codes. Laravel compatible.

README 文档

README

Total Downloads License

The only voucher (alphanumeric code) generator you will ever need for PHP.
Voucherator has a fluent Generator class that can generate various types of random alphanumeric codes. The package also includes a Transformer class that you can use to apply some transformations to the generated vouchers. You can use it to generate passwords, pass codes, keys, vouchers, coupons, tickets, tokens etc.

Prerequisites

This package uses PHP 7's random_int() function which generates cryptographic random integers that are suitable for use where unbiased results are critical, such as when shuffling a deck of cards for a poker game.

The sources of randomness used for this function are as follows and if your machine does not provide one of these, you will not be able to use this package.

  • On Windows, » CryptGenRandom() will always be used. As of PHP 7.2.0, the » CNG-API will always be used instead.
  • On Linux, the » getrandom(2) syscall will be used if available.
  • On other platforms, /dev/urandom will be used.
  • If none of the aforementioned sources are available, then an Exception will be thrown. (caught and supressed by this package)

Installation

Via Composer

This package can be installed easily with composer - just require the amestsantim/voucherator package from the command line.

composer require amestsantim/voucherator

Alternatively, you can manually add the voucherator package to your composer.json file and then run composer install from the command line as follows:

{
    "require": {
        "amestsantim/voucherator": "~2.1"
    }
}
composer install

You can use it in your PHP code like this:

<?php
require __DIR__ . '/vendor/autoload.php';
use Amestsantim\Voucherator\VoucherGenerator;

$v = new VoucherGenerator();
echo "Your coupon code is " . $v->letters()->length(12)->lowerCase()->generate()[0];
// Your coupon code is pxEJvcvRjwNg

If you are using it in Laravel, you can instantiate an object from the AmestSantim\Voucherator\VoucherGenerator and statically access the methods from the AmestSantim\Voucherator\VoucherTransformer class, if you need to apply transformations on your generated vouchers.

Usage

$v = AmestSantim\Voucherator\VoucherGenerator();

$v->generate(10);
// ["6ae4OgTp", ...]

$v->letters()->generate(5);
// ["sVnkujCq", ...]

$v->numerals()->length(16)->generate();
// ["1734785015950957", ...]

$v->letters()->upperCase()->generate(200);
// ["JTMAZNIZDDSUGVHC", ...]

$v->numerals()->exclude('018')->generate(3);
// ["4454525224222425", ...]

$vouchers = $v->augment('#*')->generate(3);
VoucherTransformer::addPrefix($vouchers, 'ET');
// ["ET69376##4492*2736", ...]

$vouchers = $v->length(14)->generate(3);
VoucherTransformer::addSeparator(VoucherTransformer::addPrefix($voucher, 'AA'), 4, '-');
// ["AA4Z-c3pP-APDU-E4u2", ...]

$v->length(6)->numerals();
$v->generate(100)
// ["939374", ...]

Documentation

The package is organized very simply. It contains only two classes:

  • VoucherGenerator
  • VoucherTransformer

VoucherGenerator

The methods of the VoucherGenerator class can be semantically classified into two:

Mutators

These are the functions that mutate the character set (charSet) from which the vouchers/codes are generated. The default is lower case alphabets, upper case alphabets and numerals. Be mindful that the order in which you apply these function will result in different outcomes.

  • letters()
    Calling this function will set the character set to be lower (a - z) and upper (A - Z) case alphabets.

  • numerals()
    This will set the character set to be numerals (0123456789).

  • upperCase()
    This will change the characters in the character set all to upper case (A - Z). If the set happend to be upper and lower case letters before the application of the function, then the set will be consolidated (redundancies removed).

  • lowerCase()
    This will change the characters in the character set all to lower case (a - z). If the set happend to be upper and lower case letters before the application of the function, then the set will be consolidated (redundancies removed).

  • exclude(string $exclusionList)
    This function will remove the given characters ($exclusionList) from the character set. If the given characters are not in the character set then it will be ignored. Example: $v->exclude('0o1li')->generate()

  • augment(string $inclusionList)
    This function will add the given characters ($inclusionList) to the character set. If the given characters (some) are already in the character set then they will not be added again. Example: $v->augment('#_*@?')->generate()

Action and Related

These function are action functions which tell the object to actually generate the vouchers/codes based on the (possibly previously mutated) character set.

  • generate(int $count)
    This function needs to be called at the end of a fluent chain. You can not call generate() in the middle of a chain. It accepts the number of vouchers to generate and returns an array of generated vouchers (even for a single voucher).

  • length(int $voucherLength)
    This function is used to set the length (size) of your vouchers. The default value used (if you do not call this function) is 8.

  • charSet()
    This function returns the current character set as is. The return is array. It is included for testing and debugging purposes and would have no conceivable use in production.

VoucherTransformer

The methods of the VoucherTransformer class are all static and can be used without instantiating an object. They act upon the vouchers/codes after they have been generated by transforming the vouchers in superficial (presentational) ways such as re-formatting and decorating them. All the functions are static and accept and return an array of vouchers.

  • capitalizeFirstCharacter(array $vouchers)
    This function will capitalize the first character of each voucher/code. Example: $myProperCaseVouchers = VoucherTransformer::capitalizeFirstCharacter($myVouchers)

  • addSeparator(array $vouchers, int $chunkSize, character $separator)
    This function will group the characters of the vouchers in to chunks of size $chunkSize and join them with the given character ($separator)

  • addPrefix(array $vouchers, string $prefix)
    This function will prefix all generated vouchers/codes with the given string ($prefix)

Contributing

The code follows the PSR-2 coding style guide. It was also written with extensibility in mind. Please feel free to submit a pull request, if you come up with any useful improvements.

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Authors

  • Nahom Tamerat

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Acknowledgments

amestsantim/voucherator 适用场景与选型建议

amestsantim/voucherator 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 267 次下载、GitHub Stars 达 34, 最近一次更新时间为 2019 年 02 月 21 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「code」 「random」 「keygen」 「amestsantim」 「voucherator」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

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

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

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

BUG 修复 & 性能优化

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

项目外包 & 长期维护

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

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

统计信息

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

GitHub 信息

  • Stars: 34
  • Watchers: 3
  • Forks: 3
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-02-21