-
-
Notifications
You must be signed in to change notification settings - Fork 240
/
Copy pathTransaction.php
106 lines (90 loc) · 2.63 KB
/
Transaction.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?php
declare(strict_types=1);
namespace Bavix\Wallet\Models;
use Bavix\Wallet\Interfaces\Wallet;
use Bavix\Wallet\Internal\Service\MathServiceInterface;
use Bavix\Wallet\Models\Wallet as WalletModel;
use Bavix\Wallet\Services\CastServiceInterface;
use function config;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\MorphTo;
/**
* Class Transaction.
*
* @property string $payable_type
* @property int|string $payable_id
* @property int $wallet_id
* @property string $uuid
* @property string $type
* @property string $amount
* @property int $amountInt
* @property string $amountFloat
* @property bool $confirmed
* @property array $meta
* @property Wallet $payable
* @property WalletModel $wallet
*/
class Transaction extends Model
{
public const TYPE_DEPOSIT = 'deposit';
public const TYPE_WITHDRAW = 'withdraw';
/**
* @var string[]
*/
protected $fillable = [
'payable_type',
'payable_id',
'wallet_id',
'uuid',
'type',
'amount',
'confirmed',
'meta',
];
/**
* @var array
*/
protected $casts = [
'wallet_id' => 'int',
'confirmed' => 'bool',
'meta' => 'json',
];
public function getTable(): string
{
if ((string) $this->table === '') {
$this->table = config('wallet.transaction.table', 'transactions');
}
return parent::getTable();
}
public function payable(): MorphTo
{
return $this->morphTo();
}
public function wallet(): BelongsTo
{
return $this->belongsTo(config('wallet.wallet.model', WalletModel::class));
}
public function getAmountIntAttribute(): int
{
return (int) $this->amount;
}
public function getAmountFloatAttribute(): string
{
$math = app(MathServiceInterface::class);
$decimalPlacesValue = app(CastServiceInterface::class)
->getWallet($this->wallet)
->decimal_places;
$decimalPlaces = $math->powTen($decimalPlacesValue);
return $math->div($this->amount, $decimalPlaces);
}
public function setAmountFloatAttribute(float|int|string $amount): void
{
$math = app(MathServiceInterface::class);
$decimalPlacesValue = app(CastServiceInterface::class)
->getWallet($this->wallet)
->decimal_places;
$decimalPlaces = $math->powTen($decimalPlacesValue);
$this->amount = $math->round($math->mul($amount, $decimalPlaces));
}
}