Files
datahub/backend/app/Command/AppMessageQueuePushShopee.php
T
2026-02-28 10:38:33 +08:00

191 lines
6.4 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Command;
use Hyperf\Collection\LazyCollection;
use Hyperf\Command\Command as HyperfCommand;
use Hyperf\Command\Annotation\Command;
use Psr\Container\ContainerInterface;
use Hyperf\DbConnection\Db;
use App\Platform\Shopee\Producer\ShopeeOrderProducer;
use App\Platform\Shopee\Producer\ShopeeProductProducer;
use App\Platform\Shopee\Producer\ShopeeRefundProducer;
use App\Platform\Shopee\Producer\ShopeeInventoryProducer;
use Hyperf\Amqp\Producer;
use App\Model\Store;
use Symfony\Component\Console\Input\InputOption;
use Exception;
#[Command]
class AppMessageQueuePushShopee extends HyperfCommand
{
public function __construct(protected ContainerInterface $container)
{
parent::__construct('app:mq-push:shopee');
}
public function configure()
{
parent::configure();
$this->setDescription('Test push message with Shopee Loop data');
$this->addOption(
'queue-type',
't',
InputOption::VALUE_REQUIRED,
'Queue type: product, order, refund, inventory'
);
$this->addOption(
'ids',
null,
InputOption::VALUE_REQUIRED,
'Comma-separated primary key IDs to fetch specific records'
);
}
/**
* 获取队列类型配置
*/
protected function getQueueTypeConfig(string $type): array
{
$configs = [
'order' => [
'table' => 'wpic_shopee_order',
'column' => 'raw',
'producer' => ShopeeOrderProducer::class,
'primary' => 'order_sn',
],
'product' => [
'table' => 'wpic_shopee_item',
'column' => 'raw',
'producer' => ShopeeProductProducer::class,
'primary' => 'item_id',
],
'refund' => [
'table' => 'wpic_shopee_return',
'column' => 'raw',
'producer' => ShopeeRefundProducer::class,
'primary' => 'return_sn',
],
'inventory' => [
'table' => 'wpic_shopee_inventory',
'column' => 'raw',
'producer' => ShopeeInventoryProducer::class,
'primary' => 'item_id',
],
];
return $configs[$type] ?? throw new Exception("Invalid queue type: {$type}");
}
public function handle(): void
{
try {
$queueType = $this->input->getOption('queue-type');
$validTypes = ['product', 'order', 'refund', 'inventory'];
if (empty($queueType) || !in_array($queueType, $validTypes)) {
$this->error(sprintf('--queue-type is required. Must be one of: %s', implode(', ', $validTypes)));
return;
}
$config = $this->getQueueTypeConfig($queueType);
$this->info(sprintf('Processing queue type: %s, table: %s', $queueType, $config['table']));
// 尝试更新 store 信息
$store = Store::where('platform_id', '=', 25)
->where('platform_store_id', '=', 1402800321 )
->first();
if(!$store){
$this->error('店铺不存在!');
return;
}
$_platform_meta = [
'partner_id' => 2006675,
'app_id' => '',
'merchant_id' => 3726273,
'name' => 'nanit.sg',
'zone' => 'SG',
];
$platform_meta = !$store->platform_meta ? $_platform_meta : array_merge($store->platform_meta, $_platform_meta);
$store->platform_meta = $platform_meta;
$store->save();
// 从 raw 数据库连接获取数据
$query = Db::connection('raw')
->table($config['table'])
->where('store_id', '=', 1402800321);
$idsOption = $this->input->getOption('ids');
if (!empty($idsOption)) {
$ids = array_map('trim', explode(',', $idsOption));
$ids = array_unique(array_filter($ids, fn($id) => $id !== ''));
$query->whereIn($config['primary'], $ids);
$this->info(sprintf('Fetching records by IDs: %s', implode(', ', $ids)));
} else {
$query->orderBy('id', 'desc')->limit(4);
}
$records = $query->get([$config['column']])->lazy();
if ($records->isEmpty()) {
$this->warn(sprintf('No records found in %s table', $config['table']));
return;
}
$this->info(sprintf('Found %d records, processing...', $records->count()));
// 获取 Producer 实例
$producer = $this->container->get(Producer::class);
$producerClass = $config['producer'];
// 每 2 条记录组成一条消息 - 实际生产环境需要增大这个值
$messageCount = 0;
$records->chunk(2)->each(function (LazyCollection $collection) use ($producer, $producerClass, $config, &$messageCount) {
$raw_data = $collection->pluck($config['column'])->map(function ($item) {
return json_decode($item, true);
})->toArray();
//@ATTENTION 生产环境需要注意, 暂时使用 Shopee Loop SG 进行测试
$messageData = [
'company_id' => 198,
'platform_id' => 25,
'store_id' => 340,
'platform_store_id' => 1402800321,
'unique_id' => time() . '_' . uniqid(),
'raw_data' => $raw_data, // 包含 2 条原始记录
];
// 创建并发送消息
$message = new $producerClass($messageData);
$producer->produce($message);
$messageCount++;
$this->line(sprintf('Sent message %d with order IDs: %s',
$messageCount,
$messageData['unique_id'],
));
});
$this->info(sprintf('Successfully sent %d messages to RabbitMQ', $messageCount));
return;
} catch (Exception $e) {
$this->error('Error pushing messages: ' . $e->getMessage());
$this->error($e->getTraceAsString());
return;
}
}
}