如何在laravel上通过url调用命令调度?

问题描述 投票:-1回答:1

我使用laravel 5.6

我在kernel.php中设置我的日程表,如下所示:

<?php
namespace App\Console;
use App\Console\Commands\ImportLocation;
use App\Console\Commands\ImportItem;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
    protected $commands = [
        ImportLocation::class,
        ImportItem::class,
    ];
    protected function schedule(Schedule $schedule)
    {
        $schedule->command('inspire')->dailyAt('23:00');

    }
    protected function commands()
    {
        $this->load(__DIR__.'/Commands');
        require base_path('routes/console.php');
    }
}

所以有两个命令

我将展示我的一个命令:

namespace App\Console\Commands;
use Illuminate\Console\Command;
use App\Models\Location;
class ImportLocation extends Command
{
    protected $signature = 'import:location';
    protected $description = 'import data';
    public function __construct()
    {
        parent::__construct();
    }
    public function handle()
    {
        ...
    }
}

我想通过url运行命令。所以它不会在命令提示符下运行

我试着这样:

我在路线中添加了这个脚本:Route::get('artisan/{command}/{param}', 'CommandController@show'); ,我制作了一个像这样的控制器:

namespace App\Http\Controllers;
class CommandController extends Controller
{
    public function show($command, $param)
    {
        $artisan = \Artisan::call($command.":".$param);
        $output = \Artisan::output();
        return $output;
    }
}

我从这个网址打电话:http://myapp-local.test/artisan/import/location

有用。但它只运行一个命令

我想在内核中运行所有命令。因此,运行导入位置和导入项目

我该怎么做?

laravel laravel-5 command laravel-5.6 schedule
1个回答
0
投票

你可以做的是在你的Kernel.php中注册一个自定义方法来检索受保护的$commands数组中的所有自定义注册命令:

public function getCustomCommands()
{
    return $this->commands;
}

然后在你的控制器中你可以循环它们并通过Artisan的call()queue()方法执行它们:

$customCommands = resolve(Illuminate\Contracts\Console\Kernel::class)->getCustomCommands();

foreach($customCommands as $commandClass)
{
    $exitCode = \Artisan::call($commandClass);
    //do your stuff further
}

有关documentation's page上可以理解的命令的更多信息

© www.soinside.com 2019 - 2024. All rights reserved.