remotedeveloper007/user-discounts 问题修复 & 功能扩展

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

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

remotedeveloper007/user-discounts

Composer 安装命令:

composer require remotedeveloper007/user-discounts

包简介

Production-ready discount management for Laravel with deterministic stacking, concurrency safety, and usage caps

README 文档

README

A production-ready Laravel package for deterministic, concurrency-safe user-level discounts with stacking support, usage caps, and comprehensive auditing.

Features

  • Deterministic Stacking: Discounts apply in a predictable order (priority → id)
  • Concurrency Safe: Database-level locking prevents race conditions
  • Usage Caps: Per-user usage limits enforced at database level
  • Percentage Cap: Configurable maximum total percentage discount
  • Full Auditing: All assignments, revocations, and applications logged
  • Idempotent: Safe to retry operations without side effects
  • Laravel 10/11/12 Compatible

Requirements

  • PHP ^8.2
  • Laravel ^10.0 | ^11.0 | ^12.0

Installation

Install via Composer:

composer require remotedeveloper007/user-discounts

Publish the configuration file:

php artisan vendor:publish --tag=user-discounts-config

Publish and run migrations:

php artisan vendor:publish --tag=user-discounts-migrations
php artisan migrate

Configuration

The config/user-discounts.php file contains:

return [
    // How discounts stack: 'priority' (uses stacking_priority field)
    'stacking_order' => 'priority',

    // Maximum total percentage discount (prevents >100% discounts)
    'max_percentage_cap' => 50,

    // Rounding mode: 'round' | 'floor' | 'ceil'
    'rounding_mode' => 'round',

    // Decimal precision for final amounts
    'precision' => 2,
];

Usage

Creating Discounts

use Remotedeveloper007\UserDiscounts\Models\Discount;

$discount = Discount::create([
    'code' => 'WELCOME10',
    'type' => 'percentage', // or 'fixed'
    'value' => 10,
    'active' => true,
    'stacking_priority' => 1, // Lower = applied first
    'max_usage_per_user' => 3, // null = unlimited
    'starts_at' => now(),
    'ends_at' => now()->addDays(30),
]);

Assigning Discounts to Users

use Remotedeveloper007\UserDiscounts\Services\DiscountService;

$service = app(DiscountService::class);
$user = auth()->user();

$service->assign($user, $discount);

Checking Eligibility

if ($service->eligibleFor($user, $discount)) {
    // User can use this discount
}

// Get detailed eligibility with reason
$result = $service->eligibleForWithReason($user, $discount);
// Returns: ['eligible' => bool, 'reason' => string|null]
// Reasons: 'expired', 'inactive', 'revoked', 'usage_cap_reached', or null if eligible

Eligibility Rules:

  • Discount must be active (active = true)
  • Within valid date range (starts_at to ends_at)
  • Not revoked for this user
  • Usage cap not exceeded (if max_usage_per_user is set)

Applying Discounts

$originalPrice = 100.00;

// Simple apply (returns final amount only)
$finalPrice = $service->apply($user, $originalPrice);
// Automatically applies ALL eligible discounts in priority order

// Detailed apply (returns structured data for UI/API)
$result = $service->applyWithDetails($user, $originalPrice);
// Returns: [
//   'original_amount' => 100.00,
//   'final_amount' => 85.00,
//   'total_savings' => 15.00,
//   'applied' => [
//     ['code' => 'WELCOME10', 'type' => 'percentage', 'value' => 10, 'saved' => 10.00],
//     ['code' => 'SAVE5', 'type' => 'fixed', 'value' => 5, 'saved' => 5.00],
//   ],
//   'skipped' => [
//     ['code' => 'EXPIRED', 'reason' => 'expired'],
//   ],
// ]

Revoking Discounts

$service->revoke($user, $discount);

How It Works

Lifecycle

  1. Create - Admin creates a discount in the system
  2. Assign - Discount is assigned to specific users
  3. Eligible - Check if user can still use the discount (active, not expired, usage cap not reached)
  4. Apply - Discount is applied to an amount, usage is incremented, audit logged
  5. Revoke - Discount assignment is revoked (soft delete)

Determinism

Same inputs always produce same outputs:

  • Discounts are sorted by stacking_priority (ASC), then id (ASC)
  • No randomness in discount selection or application
  • Reproducible across multiple requests

Idempotency

Safe to retry operations:

  • assign() - Uses firstOrCreate, won't duplicate
  • revoke() - Sets timestamp, repeated calls have same effect
  • apply() - Each call increments usage; designed for single application per transaction

Concurrency Safety

Prevents race conditions:

  • Uses database transactions
  • lockForUpdate() on both discount and user_discount rows
  • Eligibility re-checked within lock
  • Usage incremented atomically

Example: Preventing Double Application

Without locking:

Request A: Check usage (0/1) ✓ → Apply → Increment (1)
Request B: Check usage (0/1) ✓ → Apply → Increment (2) ← BUG!

With locking:

Request A: Lock → Check (0/1) ✓ → Apply → Increment (1) → Unlock
Request B: Wait → Lock → Check (1/1) ✗ → Skip → Unlock

Events

Listen to these events in your application:

use Remotedeveloper007\UserDiscounts\Events\{
    DiscountAssigned,
    DiscountRevoked,
    DiscountApplied
};

// In EventServiceProvider
protected $listen = [
    DiscountAssigned::class => [
        SendWelcomeEmail::class,
    ],
    DiscountApplied::class => [
        LogRevenueImpact::class,
    ],
];

Database Schema

discounts

  • Stores discount definitions (code, type, value, dates, etc.)

user_discounts

  • Pivot table tracking which users have which discounts
  • Stores times_used counter and revocation status

discount_audits

  • Immutable audit log of all discount operations
  • Records: assigned, revoked, applied actions with metadata

Testing

Run the test suite:

vendor/bin/phpunit

Example test validates usage cap enforcement:

$service->assign($user, $discount); // max_usage_per_user = 1
$this->assertEquals(90.00, $service->apply($user, 100.00)); // Works
$this->assertEquals(100.00, $service->apply($user, 100.00)); // Skipped (cap reached)

Production Considerations

Indexes

All foreign keys and query columns are indexed for performance.

Retry Safety

All operations are designed to be safe under retries and concurrent access.

Extension Points

  • Add custom validation logic by extending DiscountService
  • Create listeners for events to trigger side effects
  • Add custom discount types by extending the Discount model

Future Enhancements

  • Money library integration for precise currency handling
  • Idempotency keys for duplicate request detection
  • Discount facades for cleaner syntax
  • Multi-currency support

License

MIT License

Support

For issues, questions, or contributions, please open an issue on GitHub.

remotedeveloper007/user-discounts 适用场景与选型建议

remotedeveloper007/user-discounts 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 01 月 07 日, 在 PHP 生态内属于活跃度较高的组件。

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

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

围绕 remotedeveloper007/user-discounts 我们能提供哪些服务?
定制开发 / 二次开发

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

BUG 修复 & 性能优化

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

项目外包 & 长期维护

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

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

统计信息

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

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-01-07