getBillplzBill = $getBillplzBill; $this->fetchesTransaction = $fetchesTransaction; $this->updatesTransactionStatus = $updatesTransactionStatus; $this->updateDoFromVTPortalProcessor = $updateDoFromVTPortalProcessor; $this->updateDoFromYDPortalProcessor = $updateDoFromYDPortalProcessor; $this->callbackBillplzProcessor = $callbackBillplzProcessor; } /** * Execute the console command. * * @return int */ public function handle() { ini_set('memory_limit', '-1'); $this->outputArray = []; $start = new Carbon(); $approvalStatusArray = ApprovalStatus::APPROVAL_STATUS_ID; $transactions = Transaction::whereIn('type', [TransactionType::PAYMENT, TransactionType::TOP_UP, TransactionType::GROUP_PAYMENT])->where('payment_method', PaymentMethodType::PAYMENT_GATEWAY)->whereNotIn('status', [ApprovalStatus::APPROVED, ApprovalStatus::COMPLETED])->get(); $totalTransactions = count($transactions); if ($totalTransactions) { $this->info(Carbon::now() . ' : Fix failled callback from billplz cron started.'); } $counter = 1; $totalAmount = 0; foreach ($transactions as $transaction){ $response = Http::withBasicAuth(config('billplz.api_key').':', '')->get(config('billplz.base_url').'/api/v3/bills/'.$transaction->payment_reference); if($response->successful()){ $data = $response->json(); if($data['paid']) { $status = ApprovalStatus::PENDING_VERIFICATION; if($data['state'] === 'paid') { $status = ApprovalStatus::APPROVED; } $this->info(Carbon::now() . ' : Fixing ' . $transaction->payment_reference); $this->callbackBillplzProcessor->execute($transaction, $status); } }else{ $this->info("billplz error
"); } $counter++; } $end = new Carbon(); $elapsedTime = $start->diff($end)->format('%H:%I:%S'); if ($totalTransactions) { $this->info(Carbon::now() . ' : Done Billplz Failled Callback. ElapsedTime: ' . $elapsedTime . '. Total: ' . $totalAmount); } } }