-
-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added *FloatQuery for High performance api handles
- Loading branch information
Showing
4 changed files
with
165 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Bavix\Wallet\External\Api; | ||
|
||
use Bavix\Wallet\Interfaces\Wallet; | ||
use Bavix\Wallet\Services\CastServiceInterface; | ||
use Bavix\Wallet\Services\FormatterServiceInterface; | ||
|
||
final readonly class TransactionFloatQuery implements TransactionQueryInterface | ||
{ | ||
private string $amount; | ||
|
||
/** | ||
* @param self::TYPE_DEPOSIT|self::TYPE_WITHDRAW $type | ||
* @param array<mixed>|null $meta | ||
*/ | ||
private function __construct( | ||
private string $type, | ||
private Wallet $wallet, | ||
float|int|string $amount, | ||
private ?array $meta, | ||
private bool $confirmed, | ||
private ?string $uuid | ||
) { | ||
$walletModel = app(CastServiceInterface::class)->getWallet($wallet); | ||
|
||
$this->amount = app(FormatterServiceInterface::class) | ||
->intValue($amount, $walletModel->decimal_places); | ||
} | ||
|
||
/** | ||
* @param array<mixed>|null $meta | ||
*/ | ||
public static function createDeposit( | ||
Wallet $wallet, | ||
float|int|string $amount, | ||
?array $meta, | ||
bool $confirmed = true, | ||
?string $uuid = null | ||
): self { | ||
return new self(self::TYPE_DEPOSIT, $wallet, $amount, $meta, $confirmed, $uuid); | ||
} | ||
|
||
/** | ||
* @param array<mixed>|null $meta | ||
*/ | ||
public static function createWithdraw( | ||
Wallet $wallet, | ||
float|int|string $amount, | ||
?array $meta, | ||
bool $confirmed = true, | ||
?string $uuid = null | ||
): self { | ||
return new self(self::TYPE_WITHDRAW, $wallet, $amount, $meta, $confirmed, $uuid); | ||
} | ||
|
||
/** | ||
* @return self::TYPE_DEPOSIT|self::TYPE_WITHDRAW | ||
*/ | ||
public function getType(): string | ||
{ | ||
return $this->type; | ||
} | ||
|
||
public function getWallet(): Wallet | ||
{ | ||
return $this->wallet; | ||
} | ||
|
||
public function getAmount(): string | ||
{ | ||
return $this->amount; | ||
} | ||
|
||
/** | ||
* @return array<mixed>|null | ||
*/ | ||
public function getMeta(): ?array | ||
{ | ||
return $this->meta; | ||
} | ||
|
||
public function isConfirmed(): bool | ||
{ | ||
return $this->confirmed; | ||
} | ||
|
||
public function getUuid(): ?string | ||
{ | ||
return $this->uuid; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Bavix\Wallet\External\Api; | ||
|
||
use Bavix\Wallet\External\Contracts\ExtraDtoInterface; | ||
use Bavix\Wallet\Interfaces\Wallet; | ||
use Bavix\Wallet\Services\CastServiceInterface; | ||
use Bavix\Wallet\Services\FormatterServiceInterface; | ||
|
||
final readonly class TransferFloatQuery implements TransferQueryInterface | ||
{ | ||
private string $amount; | ||
|
||
/** | ||
* @param array<mixed>|ExtraDtoInterface|null $meta | ||
*/ | ||
public function __construct( | ||
private Wallet $from, | ||
private Wallet $to, | ||
float|int|string $amount, | ||
private array|ExtraDtoInterface|null $meta | ||
) { | ||
$walletModel = app(CastServiceInterface::class)->getWallet($from); | ||
|
||
$this->amount = app(FormatterServiceInterface::class) | ||
->intValue($amount, $walletModel->decimal_places); | ||
} | ||
|
||
public function getFrom(): Wallet | ||
{ | ||
return $this->from; | ||
} | ||
|
||
public function getTo(): Wallet | ||
{ | ||
return $this->to; | ||
} | ||
|
||
public function getAmount(): string | ||
{ | ||
return $this->amount; | ||
} | ||
|
||
/** | ||
* @return array<mixed>|ExtraDtoInterface|null | ||
*/ | ||
public function getMeta(): array|ExtraDtoInterface|null | ||
{ | ||
return $this->meta; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters