hyperf-chat/app/Command/TestCommand.php

64 lines
1.6 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-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-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
//VoteStatisticsCache::getInstance()->updateVoteCache(15);
$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
}
}