feat: 商城付费购买流 + 市场契约

- MarketPackage 模型/迁移:市场商品作为可购买实体(payable),复用 Payment 订单
- MarketPurchaseService:购买创建订单、已购判断、免费/付费门槛校验
- payment.paid 监听(核心注册,仅支付插件启用时)标记商品已购
- 市场契约:条目含 name/type/price(分)/download_url;插件市场 Tab 只显示 plugin、主题市场 Tab 只显示 theme;付费商品显示「购买」按钮与「已购买」徽章,未购买无法安装
- 新增主题市场 Tab(原仅插件页有市场)
- 测试:购买/沙箱支付标记已购/重复购买/安装门槛/免费条目/支付插件禁用
This commit is contained in:
ak
2026-08-12 01:34:04 +08:00
parent 4d63c0c683
commit e06e7c4300
11 changed files with 551 additions and 7 deletions
@@ -0,0 +1,32 @@
<?php
declare(strict_types=1);
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::create('market_packages', function (Blueprint $table) {
$table->id();
$table->string('item_key', 190);
$table->string('item_type', 20); // plugin / theme
$table->string('title', 255);
$table->unsignedBigInteger('price'); // 单位:分
$table->string('status', 20)->default('pending'); // pending / paid
$table->foreignId('payment_id')->nullable()->constrained()->nullOnDelete();
$table->foreignId('user_id')->nullable()->constrained()->nullOnDelete();
$table->timestamps();
$table->unique(['item_key', 'item_type']);
});
}
public function down(): void
{
Schema::dropIfExists('market_packages');
}
};