1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Moecasts\Laravel\Wallet\Traits; |
4
|
|
|
|
5
|
|
|
use Illuminate\Database\Eloquent\ModelNotFoundException; |
6
|
|
|
use Moecasts\Laravel\Wallet\Exceptions\ProductEnded; |
7
|
|
|
use Moecasts\Laravel\Wallet\Interfaces\Product; |
8
|
|
|
use Moecasts\Laravel\Wallet\Interfaces\Refundable; |
9
|
|
|
use Moecasts\Laravel\Wallet\Models\Transfer; |
10
|
|
|
|
11
|
|
|
trait CanPay { |
12
|
7 |
|
public function pay(Product $product, string $action = Transfer::ACTION_PAID, bool $force = false): Transfer |
13
|
|
|
{ |
14
|
7 |
|
if (! $product->canBePaid($action)) { |
15
|
1 |
|
throw new ProductEnded(trans('wallet::errors.product_stock')); |
|
|
|
|
16
|
|
|
} |
17
|
|
|
|
18
|
6 |
|
if ($force) { |
19
|
1 |
|
return $this->forceTransfer( |
|
|
|
|
20
|
1 |
|
$product, |
21
|
1 |
|
$product->getProductAmount($action), |
22
|
1 |
|
$product->getProductMeta($action), |
23
|
1 |
|
$action |
24
|
|
|
); |
25
|
|
|
} |
26
|
|
|
|
27
|
5 |
|
return $this->transfer( |
|
|
|
|
28
|
5 |
|
$product, |
29
|
5 |
|
$product->getProductAmount($action), |
30
|
5 |
|
$product->getProductMeta($action), |
31
|
5 |
|
$action |
32
|
|
|
); |
33
|
|
|
} |
34
|
|
|
|
35
|
1 |
|
public function forcePay(Product $product, string $action = Transfer::ACTION_PAID): Transfer |
36
|
|
|
{ |
37
|
1 |
|
return $this->pay($product, $action, true); |
38
|
|
|
} |
39
|
|
|
|
40
|
1 |
|
public function safePay(Product $product, string $action = Transfer::ACTION_PAID, bool $force = false): ?Transfer |
41
|
|
|
{ |
42
|
|
|
try { |
43
|
1 |
|
return $this->pay($product, $action, $force); |
44
|
1 |
|
} catch (\Throwable $throwable) { |
45
|
1 |
|
return null; |
46
|
|
|
} |
47
|
|
|
} |
48
|
|
|
|
49
|
4 |
|
public function paid(Product $product, string $action = Transfer::ACTION_PAID): ?Transfer |
50
|
|
|
{ |
51
|
4 |
|
$action = [$action]; |
52
|
|
|
|
53
|
4 |
|
$query = $this->holderTransfers(); |
|
|
|
|
54
|
|
|
|
55
|
|
|
return $query |
56
|
4 |
|
->where('refund', false) |
57
|
4 |
|
->where('to_type', $product->getMorphClass()) |
|
|
|
|
58
|
4 |
|
->where('to_id', $product->getKey()) |
|
|
|
|
59
|
4 |
|
->whereIn('action', $action) |
60
|
4 |
|
->orderBy('id', 'desc') |
61
|
4 |
|
->first(); |
62
|
|
|
} |
63
|
|
|
|
64
|
2 |
|
public function refund(Refundable $product, string $action = Transfer::ACTION_PAID) |
65
|
|
|
{ |
66
|
2 |
|
$transfer = $this->paid($product, $action); |
67
|
|
|
|
68
|
2 |
|
if (! $transfer) { |
69
|
2 |
|
throw (new ModelNotFoundException()) |
70
|
2 |
|
->setModel(config('wallet.transfer.model')); |
71
|
|
|
} |
72
|
|
|
|
73
|
|
|
return \DB::transaction(function () use ($transfer) { |
74
|
1 |
|
$transfer->withdraw->update([ |
75
|
1 |
|
'confirmed' => false, |
76
|
|
|
]); |
77
|
|
|
|
78
|
1 |
|
$transfer->deposit->update([ |
79
|
1 |
|
'confirmed' => false, |
80
|
|
|
]); |
81
|
|
|
|
82
|
1 |
|
$transfer->update([ |
83
|
1 |
|
'refund' => true, |
84
|
|
|
]); |
85
|
|
|
|
86
|
1 |
|
return $transfer->fromWallet->refreshBalance() && |
87
|
1 |
|
$transfer->toWallet->refreshBalance(); |
88
|
1 |
|
}); |
89
|
|
|
} |
90
|
|
|
|
91
|
1 |
|
public function safeRefund(Product $product, string $action = Transfer::ACTION_PAID) |
92
|
|
|
{ |
93
|
|
|
try { |
94
|
1 |
|
return $this->refund($product, $action); |
95
|
1 |
|
} catch (\Throwable $throwable) { |
96
|
1 |
|
return false; |
97
|
|
|
} |
98
|
|
|
} |
99
|
|
|
} |
100
|
|
|
|