feat: 商城付费购买流 + 市场契约
- MarketPackage 模型/迁移:市场商品作为可购买实体(payable),复用 Payment 订单 - MarketPurchaseService:购买创建订单、已购判断、免费/付费门槛校验 - payment.paid 监听(核心注册,仅支付插件启用时)标记商品已购 - 市场契约:条目含 name/type/price(分)/download_url;插件市场 Tab 只显示 plugin、主题市场 Tab 只显示 theme;付费商品显示「购买」按钮与「已购买」徽章,未购买无法安装 - 新增主题市场 Tab(原仅插件页有市场) - 测试:购买/沙箱支付标记已购/重复购买/安装门槛/免费条目/支付插件禁用
This commit is contained in:
@@ -29,7 +29,16 @@ class MarketplaceClient
|
||||
|
||||
$response->throw();
|
||||
|
||||
return $response->json('items', []);
|
||||
$items = $response->json('items', []);
|
||||
|
||||
// 规范化市场契约:price 分、type(plugin/theme)、name
|
||||
return array_map(function (array $item) {
|
||||
$item['price'] = (int) ($item['price'] ?? 0);
|
||||
$item['type'] = $item['type'] ?? 'plugin';
|
||||
$item['name'] = $item['name'] ?? null;
|
||||
|
||||
return $item;
|
||||
}, is_array($items) ? $items : []);
|
||||
}
|
||||
|
||||
public function download(string $url): string
|
||||
|
||||
Reference in New Issue
Block a user