MyHomeCollection/app/Console/Commands/ParseLinkCommand.php

53 lines
1.0 KiB
PHP
Raw Normal View History

2020-07-23 12:26:10 +02:00
<?php
namespace App\Console\Commands;
use App\Parser;
2020-11-09 17:35:50 +01:00
use GuzzleHttp\Exception\InvalidArgumentException;
2020-07-23 12:26:10 +02:00
use Illuminate\Console\Command;
2020-11-09 17:35:50 +01:00
use function GuzzleHttp\json_encode;
2020-07-23 12:26:10 +02:00
class ParseLinkCommand extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'app:parselink {url}';
2020-07-23 12:26:10 +02:00
/**
* The console command description.
*
* @var string
*/
protected $description = 'Parse given link';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
$parser = Parser::factory($this->argument('url'));
2020-11-09 17:35:50 +01:00
try {
$this->info(json_encode($parser->parse(), true));
} catch (InvalidArgumentException $e) {
$this->error($e->getMessage());
}
2020-08-27 14:49:21 +02:00
2020-07-23 12:26:10 +02:00
return 0;
}
}