-
-
Notifications
You must be signed in to change notification settings - Fork 240
/
Copy pathTransferFixCommand.php
46 lines (36 loc) · 1.46 KB
/
TransferFixCommand.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
<?php
declare(strict_types=1);
namespace Bavix\Wallet\Commands;
use Bavix\Wallet\Models\Transfer;
use Bavix\Wallet\Models\Wallet;
use Bavix\Wallet\Services\CastServiceInterface;
use Illuminate\Console\Command;
final class TransferFixCommand extends Command
{
protected $signature = 'bx:transfer:fix';
protected $description = 'Brings transfers to the correct form/to.';
public function handle(Wallet $wallet, Transfer $transfer, CastServiceInterface $castService): void
{
$query = $transfer::with(['from', 'to'])
->orWhere('from_type', '<>', $wallet->getMorphClass())
->orWhere('to_type', '<>', $wallet->getMorphClass())
;
$query->each(fn (Transfer $object) => $this->fix($castService, $wallet, $object));
}
private function fix(CastServiceInterface $castService, Wallet $wallet, Transfer $transfer): void
{
if ($transfer->from_type !== $wallet->getMorphClass()) {
$fromWallet = $castService->getWallet($transfer->from);
$transfer->from_type = $fromWallet->getMorphClass();
$transfer->from_id = $fromWallet->getKey();
}
if ($transfer->to_type !== $wallet->getMorphClass()) {
$toWallet = $castService->getWallet($transfer->to);
$transfer->to_type = $toWallet->getMorphClass();
$transfer->to_id = $toWallet->getKey();
}
if ($transfer->isDirty()) {
$transfer->save();
}
}
}