hyperf-chat/app/Command/TestCommand.php

89 lines
2.3 KiB
PHP
Raw Normal View History

2021-05-20 16:53:34 +08:00
<?php
declare(strict_types=1);
namespace App\Command;
2021-07-19 23:58:14 +08:00
use App\Cache\VoteStatisticsCache;
2021-07-17 00:07:24 +08:00
use App\Model\Talk\TalkRecordsVote;
2021-07-30 23:23:48 +08:00
use App\Model\UsersFriend;
2021-05-20 16:53:34 +08:00
use Hyperf\Command\Command as HyperfCommand;
use Hyperf\Command\Annotation\Command;
2021-07-17 00:07:24 +08:00
use Hyperf\DbConnection\Db;
2021-07-28 23:42:21 +08:00
use Hyperf\Utils\Arr;
2021-05-20 16:53:34 +08:00
use Psr\Container\ContainerInterface;
2021-07-25 22:57:41 +08:00
use Hyperf\Guzzle\ClientFactory;
use function _HumbugBox39a196d4601e\RingCentral\Psr7\build_query;
2021-05-20 16:53:34 +08:00
/**
* @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-07-25 22:57:41 +08:00
2021-07-30 23:23:48 +08:00
$this->updateData();
2021-07-28 23:42:21 +08:00
//$api = config('juhe_api.ip');
//$options = [];
//$client = di()->get(ClientFactory::class)->create($options);
//$params = [
// 'ip' => '47.105.180.123',
// 'key' => $api['key'],
//];
//
//$address = '';
//$response = $client->get($api['api'] . '?' . http_build_query($params));
//if ($response->getStatusCode() == 200) {
// $result = json_decode($response->getBody()->getContents(), true);
// if ($result['resultcode'] == 200) {
// unset($result['result']['Isp']);
// $address = join(' ', $result['result']);
// }
//}
//
//var_dump($address);
2021-05-20 16:53:34 +08:00
}
2021-07-30 23:23:48 +08:00
// 更新好友表数据
public function updateData()
{
$max = UsersFriend::max('id');
UsersFriend::where('id', '<=', $max)->chunk(1000, function ($rows) {
$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'),
];
}
UsersFriend::insert($arr);
});
}
2021-05-20 16:53:34 +08:00
}