Phase1 后端核心:
- 新增 fsgx_v1.sql 迁移脚本(is_queue_goods/frozen_points/available_points/no_assess)
- SystemConfigServices 返佣设置扩展(周期人数/分档比例/范围/时机)
- StoreOrderCreateServices 周期循环佣金计算
- StoreOrderTakeServices 佣金发放后同步冻结积分
- StoreProductServices/StoreProduct 保存 is_queue_goods
Phase2 后端接口:
- GET /api/hjf/brokerage/progress 佣金周期进度
- GET /api/hjf/assets/overview 资产总览
- HjfPointsServices 每日 frozen_points 0.4‰ 释放定时任务
- PUT /adminapi/hjf/member/{uid}/no_assess 不考核接口
- GET /adminapi/hjf/points/release_log 积分日志接口
Phase3 前端清理:
- hjfCustom.js 路由精简(仅保留 points/log)
- hjfQueue.js/hjfMember.js API 清理/重定向至 CRMEB 原生接口
- pages.json 公排→推荐佣金/佣金记录/佣金规则
Phase4-5 前端改造:
- queue/status.vue 推荐佣金进度页整体重写
- 商品详情/订单确认/支付结果页文案与逻辑改造
- 个人中心/资产页/引导页/规则页文案改造
- HjfQueueProgress/HjfRefundNotice/HjfAssetCard 组件改造
- 推广中心嵌入佣金进度摘要
- hjfMockData.js 全量更新(公排字段→佣金字段)
Phase6 Admin 增强:
- 用户列表新增 frozen_points/available_points 列及不考核操作按钮
- hjfPoints.js USE_MOCK=false 对接真实积分日志接口
Phase7 配置文档:
- docs/fsgx-phase7-config-checklist.md 后台配置与全链路验收清单
Made-with: Cursor
215 lines
6.3 KiB
PHP
215 lines
6.3 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Symfony package.
|
|
*
|
|
* (c) Fabien Potencier <fabien@symfony.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Symfony\Component\Cache\Adapter;
|
|
|
|
use Couchbase\Bucket;
|
|
use Couchbase\Cluster;
|
|
use Couchbase\ClusterOptions;
|
|
use Couchbase\Collection;
|
|
use Couchbase\DocumentNotFoundException;
|
|
use Couchbase\UpsertOptions;
|
|
use Symfony\Component\Cache\Exception\CacheException;
|
|
use Symfony\Component\Cache\Exception\InvalidArgumentException;
|
|
use Symfony\Component\Cache\Marshaller\DefaultMarshaller;
|
|
use Symfony\Component\Cache\Marshaller\MarshallerInterface;
|
|
|
|
/**
|
|
* @author Antonio Jose Cerezo Aranda <aj.cerezo@gmail.com>
|
|
*/
|
|
class CouchbaseCollectionAdapter extends AbstractAdapter
|
|
{
|
|
private const MAX_KEY_LENGTH = 250;
|
|
|
|
private $connection;
|
|
private $marshaller;
|
|
|
|
public function __construct(Collection $connection, string $namespace = '', int $defaultLifetime = 0, MarshallerInterface $marshaller = null)
|
|
{
|
|
if (!static::isSupported()) {
|
|
throw new CacheException('Couchbase >= 3.0.0 < 4.0.0 is required.');
|
|
}
|
|
|
|
$this->maxIdLength = static::MAX_KEY_LENGTH;
|
|
|
|
$this->connection = $connection;
|
|
|
|
parent::__construct($namespace, $defaultLifetime);
|
|
$this->enableVersioning();
|
|
$this->marshaller = $marshaller ?? new DefaultMarshaller();
|
|
}
|
|
|
|
public static function createConnection(array|string $dsn, array $options = []): Bucket|Collection
|
|
{
|
|
if (\is_string($dsn)) {
|
|
$dsn = [$dsn];
|
|
}
|
|
|
|
if (!static::isSupported()) {
|
|
throw new CacheException('Couchbase >= 3.0.0 < 4.0.0 is required.');
|
|
}
|
|
|
|
set_error_handler(function ($type, $msg, $file, $line): bool { throw new \ErrorException($msg, 0, $type, $file, $line); });
|
|
|
|
$dsnPattern = '/^(?<protocol>couchbase(?:s)?)\:\/\/(?:(?<username>[^\:]+)\:(?<password>[^\@]{6,})@)?'
|
|
.'(?<host>[^\:]+(?:\:\d+)?)(?:\/(?<bucketName>[^\/\?]+))(?:(?:\/(?<scopeName>[^\/]+))'
|
|
.'(?:\/(?<collectionName>[^\/\?]+)))?(?:\/)?(?:\?(?<options>.*))?$/i';
|
|
|
|
$newServers = [];
|
|
$protocol = 'couchbase';
|
|
try {
|
|
$username = $options['username'] ?? '';
|
|
$password = $options['password'] ?? '';
|
|
|
|
foreach ($dsn as $server) {
|
|
if (0 !== strpos($server, 'couchbase:')) {
|
|
throw new InvalidArgumentException(sprintf('Invalid Couchbase DSN: "%s" does not start with "couchbase:".', $server));
|
|
}
|
|
|
|
preg_match($dsnPattern, $server, $matches);
|
|
|
|
$username = $matches['username'] ?: $username;
|
|
$password = $matches['password'] ?: $password;
|
|
$protocol = $matches['protocol'] ?: $protocol;
|
|
|
|
if (isset($matches['options'])) {
|
|
$optionsInDsn = self::getOptions($matches['options']);
|
|
|
|
foreach ($optionsInDsn as $parameter => $value) {
|
|
$options[$parameter] = $value;
|
|
}
|
|
}
|
|
|
|
$newServers[] = $matches['host'];
|
|
}
|
|
|
|
$option = isset($matches['options']) ? '?'.$matches['options'] : '';
|
|
$connectionString = $protocol.'://'.implode(',', $newServers).$option;
|
|
|
|
$clusterOptions = new ClusterOptions();
|
|
$clusterOptions->credentials($username, $password);
|
|
|
|
$client = new Cluster($connectionString, $clusterOptions);
|
|
|
|
$bucket = $client->bucket($matches['bucketName']);
|
|
$collection = $bucket->defaultCollection();
|
|
if (!empty($matches['scopeName'])) {
|
|
$scope = $bucket->scope($matches['scopeName']);
|
|
$collection = $scope->collection($matches['collectionName']);
|
|
}
|
|
|
|
return $collection;
|
|
} finally {
|
|
restore_error_handler();
|
|
}
|
|
}
|
|
|
|
public static function isSupported(): bool
|
|
{
|
|
return \extension_loaded('couchbase') && version_compare(phpversion('couchbase'), '3.0.5', '>=') && version_compare(phpversion('couchbase'), '4.0', '<');
|
|
}
|
|
|
|
private static function getOptions(string $options): array
|
|
{
|
|
$results = [];
|
|
$optionsInArray = explode('&', $options);
|
|
|
|
foreach ($optionsInArray as $option) {
|
|
[$key, $value] = explode('=', $option);
|
|
|
|
$results[$key] = $value;
|
|
}
|
|
|
|
return $results;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function doFetch(array $ids): array
|
|
{
|
|
$results = [];
|
|
foreach ($ids as $id) {
|
|
try {
|
|
$resultCouchbase = $this->connection->get($id);
|
|
} catch (DocumentNotFoundException $exception) {
|
|
continue;
|
|
}
|
|
|
|
$content = $resultCouchbase->value ?? $resultCouchbase->content();
|
|
|
|
$results[$id] = $this->marshaller->unmarshall($content);
|
|
}
|
|
|
|
return $results;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function doHave($id): bool
|
|
{
|
|
return $this->connection->exists($id)->exists();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function doClear($namespace): bool
|
|
{
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function doDelete(array $ids): bool
|
|
{
|
|
$idsErrors = [];
|
|
foreach ($ids as $id) {
|
|
try {
|
|
$result = $this->connection->remove($id);
|
|
|
|
if (null === $result->mutationToken()) {
|
|
$idsErrors[] = $id;
|
|
}
|
|
} catch (DocumentNotFoundException $exception) {
|
|
}
|
|
}
|
|
|
|
return 0 === \count($idsErrors);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function doSave(array $values, $lifetime): array|bool
|
|
{
|
|
if (!$values = $this->marshaller->marshall($values, $failed)) {
|
|
return $failed;
|
|
}
|
|
|
|
$upsertOptions = new UpsertOptions();
|
|
$upsertOptions->expiry($lifetime);
|
|
|
|
$ko = [];
|
|
foreach ($values as $key => $value) {
|
|
try {
|
|
$this->connection->upsert($key, $value, $upsertOptions);
|
|
} catch (\Exception $exception) {
|
|
$ko[$key] = '';
|
|
}
|
|
}
|
|
|
|
return [] === $ko ? true : $ko;
|
|
}
|
|
}
|