2020-08-12 00:17:32 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Payment Ninja (https://paymentninja.com).
|
2020-08-12 00:17:32 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/paymentninja/paymentninja source repository
|
|
|
|
*
|
2022-04-27 05:20:41 +02:00
|
|
|
* @copyright Copyright (c) 2022. Payment Ninja LLC (https://paymentninja.com)
|
2020-08-12 00:17:32 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-08-12 00:17:32 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Services\Payment;
|
|
|
|
|
|
|
|
use App\Models\Payment;
|
|
|
|
use App\Services\AbstractService;
|
|
|
|
use App\Utils\Traits\GeneratesCounter;
|
2022-04-07 09:40:59 +02:00
|
|
|
use Illuminate\Database\QueryException;
|
2020-08-12 00:17:32 +02:00
|
|
|
|
|
|
|
class ApplyNumber extends AbstractService
|
|
|
|
{
|
|
|
|
use GeneratesCounter;
|
|
|
|
|
|
|
|
private $payment;
|
|
|
|
|
2022-04-07 09:40:59 +02:00
|
|
|
private bool $completed = true;
|
|
|
|
|
2020-08-12 00:17:32 +02:00
|
|
|
public function __construct(Payment $payment)
|
|
|
|
{
|
|
|
|
$this->client = $payment->client;
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-08-12 00:17:32 +02:00
|
|
|
$this->payment = $payment;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function run()
|
|
|
|
{
|
|
|
|
if ($this->payment->number != '') {
|
|
|
|
return $this->payment;
|
|
|
|
}
|
|
|
|
|
2022-04-07 09:40:59 +02:00
|
|
|
$this->trySaving();
|
|
|
|
// $this->payment->number = $this->getNextPaymentNumber($this->client, $this->payment);
|
2020-08-12 00:17:32 +02:00
|
|
|
|
|
|
|
return $this->payment;
|
|
|
|
}
|
2022-04-07 09:40:59 +02:00
|
|
|
|
|
|
|
private function trySaving()
|
|
|
|
{
|
|
|
|
|
|
|
|
$x=1;
|
|
|
|
|
|
|
|
do{
|
|
|
|
|
|
|
|
try{
|
|
|
|
|
|
|
|
$this->payment->number = $this->getNextPaymentNumber($this->client, $this->payment);
|
|
|
|
$this->payment->saveQuietly();
|
|
|
|
|
|
|
|
$this->completed = false;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
catch(QueryException $e){
|
|
|
|
|
|
|
|
$x++;
|
|
|
|
|
|
|
|
if($x>10)
|
|
|
|
$this->completed = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
while($this->completed);
|
|
|
|
|
|
|
|
}
|
2020-08-12 00:17:32 +02:00
|
|
|
}
|