-
-
Save ArielMejiaDev/9bc96457f214658ba5fc11536b6818fc to your computer and use it in GitHub Desktop.
Pessimistic Locking for Transaction
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
<?php | |
function transfer($fromAccountId, $toAccountId, $amount) | |
{ | |
DB::beginTransaction(); | |
try { | |
$fromQuery = Account::whereId($fromAccountId); | |
if (! $fromQuery->exists()) { | |
throw new InvalidAccountException(); | |
} | |
$toQuery = Account::whereId($toAccountId); | |
if (! $toQuery->exists()) { | |
throw new InvalidAccountException(); | |
} | |
$fromAccount = $fromQuery->lockForUpdate()->first(); | |
if ($amount > $fromAccount->balance) { | |
throw new InsufficientBalanceException(); | |
} | |
$toAccount = $toQuery->lockForUpdate()->first(); | |
$toAccount->balance += $amount; | |
$toAccount->save(); | |
$fromAccount->balance -= $amount; | |
$fromAccount->save(); | |
$transaction = new Transaction(); | |
$transaction->from_account_id = $fromAccountId; | |
$transaction->to_account_id = $toAccountId; | |
$transaction->amount = $amount; | |
$transaction->save(); | |
DB::commit(); | |
} catch (\Exception $e) { | |
DB::rollBack(); | |
throw $e; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment