1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- namespace App\Commands;
- use App\AppService;
- use Symfony\Component\Console\Command\Command;
- use Symfony\Component\Console\Input\InputInterface;
- use Symfony\Component\Console\Output\OutputInterface;
- use YdbPlatform\Ydb\Ydb;
- class WhoAmICommand extends Command
- {
- /**
- * @var string
- */
- protected static $defaultName = 'whoami';
- /**
- * @var AppService
- */
- protected $appService;
- public function __construct()
- {
- $this->appService = new AppService;
- parent::__construct();
- }
- protected function configure()
- {
- $this->setDescription('Get the WhoAmI information.');
- }
- /**
- * @param InputInterface $input
- * @param OutputInterface $output
- * @return int
- */
- protected function execute(InputInterface $input, OutputInterface $output)
- {
- $ydb = $this->appService->initYdb();
- $result = $ydb->retry(function (Ydb $ydb) use ($output) {
- $discovery = $ydb->discovery();
- return $discovery->whoAmI();
- }, true);
- $output->writeln($result);
- return Command::SUCCESS;
- }
- }
|