63 lines
1.2 KiB
PHP
63 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Console\Commands\Eve;
|
|
|
|
use Illuminate\Console\Command;
|
|
|
|
//Library
|
|
use App\Library\Moons\MoonCalc;
|
|
use Comamnds\Library\CommandHelper;
|
|
|
|
//Job
|
|
use App\Jobs\Commands\Eve\ItemPricesUpdateJob;
|
|
|
|
class ItemPricesUpdateCommand extends Command
|
|
{
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'services:ItemPriceUpdate';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'Update mineral and ore prices';
|
|
|
|
/**
|
|
* Create a new command instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function handle()
|
|
{
|
|
//Declare variables
|
|
$moonHelper = new MoonCalc;
|
|
$task = new CommandHelper('ItemPricesUpdateCommand');
|
|
|
|
//Set the task as started
|
|
$task->SetStartStatus();
|
|
|
|
//Fetch new prices from fuzzwork.co.uk for the item pricing schemes
|
|
$moonHelper->FetchNewPrices();
|
|
|
|
//Set the task as completed
|
|
$task->SetStopStatus();
|
|
|
|
return 0;
|
|
}
|
|
}
|