82 lines
2.0 KiB
PHP
82 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use Illuminate\Console\Command;
|
|
use Illuminate\Support\Facades\Http;
|
|
use Carbon\Carbon;
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
class updateImbangDuga extends Command
|
|
{
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'update:imbangduga {--all : all zone} {--1 : update zone 1} {--2 : update zone 2} {--3 : update zone3}';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'Command description';
|
|
|
|
/**
|
|
* Create a new command instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*
|
|
* @return int
|
|
*/
|
|
public function handle()
|
|
{
|
|
if($this->option('all')){
|
|
$zone = 'all';
|
|
}else if($this->option('1')){
|
|
$zone = '1';
|
|
}else if ($this->option('2')){
|
|
$zone = '2';
|
|
}else if ($this->option('3')){
|
|
$zone = '3';
|
|
}
|
|
|
|
$monthly = Carbon::now();
|
|
$monthly = new Carbon();
|
|
|
|
$previousmonth = $monthly->subMonthsNoOverflow()->endOfMonth();
|
|
$tahun = $previousmonth->year;
|
|
$month = $previousmonth->month;
|
|
|
|
$response = Http::withOptions(['verify' => config('app.api_verify')])->get(config('api.url') . '/api/reports/updateigall',[
|
|
'month' => $month,
|
|
'year' => $tahun,
|
|
]);
|
|
|
|
if ($response->successful()) {
|
|
$data = $response->json();
|
|
Log::info('Imbang Duga update successful', [
|
|
'month' => $month,
|
|
'year' => $tahun,
|
|
'data' => $data
|
|
]);
|
|
$this->info('Imbang Duga update successful');
|
|
} else {
|
|
Log::error('API error', [
|
|
'url' => $response->effectiveUri(),
|
|
'status' => $response->status(),
|
|
'body' => $response->body()
|
|
]);
|
|
}
|
|
}
|
|
}
|