Push suspension logic onto Service

In preparation to the upcoming API, most logic is being moved to services. Models function as repositories.
This commit is contained in:
Miguel Nogueira 2021-07-21 19:33:52 +01:00
parent cbcc1f025a
commit c739933668
Signed by: miguel456
GPG Key ID: 2CF61B825316C6A0
2 changed files with 73 additions and 21 deletions

View File

@ -24,37 +24,34 @@ namespace App\Http\Controllers;
use App\Ban;
use App\Events\UserBannedEvent;
use App\Http\Requests\BanUserRequest;
use App\Services\AccountSuspensionService;
use App\User;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
class BanController extends Controller
{
protected $suspensionService;
public function __construct(AccountSuspensionService $suspensionService)
{
// Inject the service via DI
$this->suspensionService = $suspensionService;
}
public function insert(BanUserRequest $request, User $user)
{
$this->authorize('create', [Ban::class, $user]);
if (is_null($user->bans)) {
$duration = $request->duration;
$reason = $request->reason;
$type = $request->suspensionType; // ON: Temporary | OFF: Permanent
if ($type == "on") {
$expiryDate = now()->addDays($duration);
}
$ban = Ban::create([
'userID' => $user->id,
'reason' => $reason,
'bannedUntil' => ($type == "on") ? $expiryDate->format('Y-m-d H:i:s') : null,
'authorUserID' => Auth::user()->id,
'isPermanent' => ($type == "off") ? true : false
]);
if (!$this->suspensionService->isSuspended($user)) {
$this->suspensionService->suspend($request->reason, $request->duration, $user, $request->suspensionType);
$request->session()->flash('success', __('Account suspended.'));
} else {
$request->session()->flash('error', __('Account already suspended!'));
}
@ -65,11 +62,13 @@ class BanController extends Controller
{
$this->authorize('delete', $user->bans);
if (! is_null($user->bans)) {
$user->bans->delete();
$request->session()->flash('success', __('User unsuspended successfully!'));
if ($this->suspensionService->isSuspended($user)) {
$this->suspensionService->unsuspend($user);
$request->session()->flash('success', __('Account unsuspended successfully!'));
} else {
$request->session()->flash('error', __('This user isn\'t suspended!'));
$request->session()->flash('error', __('This account isn\'t suspended!'));
}
return redirect()->back();

View File

@ -0,0 +1,53 @@
<?php declare(strict_types=1);
namespace App\Services;
use App\Ban;
use App\User;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Log;
class AccountSuspensionService
{
public function suspend($reason, $duration, User $target, $type = "on"): Ban {
Log::debug("AccountSuspensionService: Suspending user account", [
'userID' => $target->id
]);
if ($type == "on") {
$expiryDate = now()->addDays($duration);
}
$ban = Ban::create([
'userID' => $target->id,
'reason' => $reason,
'bannedUntil' => ($type == "on") ? $expiryDate->format('Y-m-d H:i:s') : null,
'authorUserID' => Auth::user()->id,
'isPermanent' => ($type == "off") ? true : false
]);
return $ban;
}
public function unsuspend(User $user): void {
$user->bans->delete();
}
public function isSuspended(User $user): bool {
return !is_null($user->bans);
}
public function makePermanent(Ban $ban): void {
$ban->bannedUntil = null;
$ban->isPermanent = true;
$ban->save();
}
}