hyperf-chat/app/Command/TestCommand.php

76 lines
1.8 KiB
PHP
Raw Normal View History

2021-05-20 16:53:34 +08:00
<?php
declare(strict_types=1);
namespace App\Command;
2021-09-12 16:23:43 +08:00
use App\Cache\IpAddressCache;
2021-09-12 21:15:38 +08:00
use App\Constants\RobotConstant;
2022-01-17 21:06:27 +08:00
use App\Model\Contact\Contact;
2021-08-27 22:55:42 +08:00
use App\Repository\ExampleRepository;
2021-09-12 21:15:38 +08:00
use App\Repository\RobotRepository;
2021-09-12 16:23:43 +08:00
use App\Service\RobotService;
use App\Support\IpAddress;
2021-05-20 16:53:34 +08:00
use Hyperf\Command\Command as HyperfCommand;
use Hyperf\Command\Annotation\Command;
use Psr\Container\ContainerInterface;
/**
* @Command
*/
class TestCommand extends HyperfCommand
{
/**
* @var ContainerInterface
*/
protected $container;
public function __construct(ContainerInterface $container)
{
$this->container = $container;
parent::__construct('test:command');
}
public function configure()
{
parent::configure();
$this->setDescription('Hyperf Demo Command');
}
public function handle()
{
2021-09-12 16:23:43 +08:00
// $repository = di()->get(ExampleRepository::class);
// $repository->where_case2();
2021-08-28 16:11:38 +08:00
2021-09-12 21:15:38 +08:00
// di()->get(RobotService::class)->create([
// 'robot_name' => "登录助手",
// 'describe' => "异地登录助手",
// 'logo' => '',
// 'is_talk' => 0,
// 'type' => 1,
// ]);
2021-05-20 16:53:34 +08:00
}
2021-07-30 23:23:48 +08:00
// 更新好友表数据
public function updateData()
{
2022-01-16 10:29:16 +08:00
$max = Contact::max('id');
Contact::where('id', '<=', $max)->chunk(1000, function ($rows) {
2021-07-30 23:23:48 +08:00
$arr = [];
foreach ($rows as $row) {
$arr[] = [
'user_id' => $row->friend_id,
'friend_id' => $row->user_id,
'status' => 1,
'remark' => '',
'updated_at' => date('Y-m-d H:i:s'),
'created_at' => date('Y-m-d H:i:s'),
];
}
2022-01-16 10:29:16 +08:00
Contact::insert($arr);
2021-07-30 23:23:48 +08:00
});
}
2021-05-20 16:53:34 +08:00
}