1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?php
- namespace App\Console\Commands;
- use Illuminate\Console\Command;
- use Illuminate\Http\Request;
- use Mockery\Exception;
- use Symfony\Component\Console\Output\OutputInterface;
- class Action extends Command
- {
-
- protected $signature = 'action:call {uri}';
-
- protected $description = 'Command description';
-
- public function __construct()
- {
- parent::__construct();
- }
-
- public function handle(Request $request)
- {
- $url = $this->argument('uri');
-
- $uri = parse_url($url, PHP_URL_PATH);
- $uri = explode('@', $uri);
-
- parse_str(parse_url($url, PHP_URL_QUERY), $param);
- $controller = $uri[0] ?? '';
- $action = $uri[1] ?? '';
- if (empty($controller) || empty($action)) {
- $this->info('The format (Controller@method) is required');
- return;
- }
- try {
- $container = app()->make("App\Http\Controllers\\" . $controller);
- } catch (Exception $e) {
- $this->info($e->getMessage());
- return;
- }
- if ($param) {
- foreach ($param as $k => $v) {
- $request->offsetSet($k, $v);
- }
- }
- $result = app()->call([$container, $action], $param);
- $this->info($result);
- }
- }
|