some progress on card balance

This commit is contained in:
2025-10-25 11:19:42 +05:00
parent e19372eed1
commit a07bcd3a5b
6 changed files with 350 additions and 2 deletions

View File

@@ -0,0 +1,75 @@
<?php
namespace App\Modules\CardBalance\Repositories;
use App\Modules\Card\Models\Card;
use App\Modules\Makeable;
use Illuminate\Support\Str;
class CardBalanceRepository
{
use Makeable;
/**
* Show card balance
* @param Card $record
*/
public function showCardBalance(Card $record)
{
/** @var \App\Modules\CardBalance\Type\CardBalanceResponse */
$data = $this->fetchCardBalance(
passport_serie: user()->getOption('passport_serie'),
passport_id: user()->getOption('passport_id'),
card_masked: Str::mask($record->number, '*', 6, 6),
card_expire_date: $record->month.'/'.substr($record->year, 2),
);
if ($data->errCode != 0) {
return $data->message;
}
return view('module.card-balance::card-balance-modal', compact('data'));
}
/**
* Fetch card balance
*
* @param string|int $passport_serie
* @param string|int $passport_id
* @param string $card_masked
* @param string $card_expire_date
*/
public function fetchCardBalance($passport_serie, $passport_id, $card_masked, $card_expire_date): object
{
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => 'http://10.3.158.102:9999/api/clientcardinfo',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS => sprintf('{
"idSeria": "%s",
"idNo": "%s",
"cardMaskNumber": "%s",
"expDate": "%s"
}', $passport_serie, $passport_id, $card_masked, $card_expire_date),
CURLOPT_HTTPHEADER => [
'Authorization: Basic dGJ1c2VyOlFBWndzeDEyMw==',
'Content-Type: application/json',
],
]);
$response = curl_exec($curl);
curl_close($curl);
return Str::isJson($response)
? json_decode($response)
: emptyClass(errCode: 1, message: 'Connection issue to VP');
}
}