Miguel Nogueira
5f1f92a9ce
This commit fixes some superficial instances of Broken Access Control (https://owasp.org/www-project-top-ten/OWASP_Top_Ten_2017/Top_10-2017_A5-Broken_Access_Control). There may be some more instances of this, as authorization was only done after most of the controllers were done (big mistake). Some refactoring was also performed, where Route Model Binding with DI (dependency injection) was used whenever possible, to increase testability of the codebase. Some reused code was also moved to Helper classes as to enforce DRY; There may be some lines of code that are still copy-pasted from other parts of the codebase for reuse. Non-breaking refactoring changes were made, but the app as a whole still needs full manual testing, and customised responses to HTTP 500 responses. Some errors are also not handled gracefully and this wasn't checked in this commit.
91 lines
2.2 KiB
PHP
91 lines
2.2 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use App\Ban;
|
|
use App\User;
|
|
use App\Events\UserBannedEvent;
|
|
use App\Http\Requests\BanUserRequest;
|
|
|
|
class BanController extends Controller
|
|
{
|
|
|
|
public function insert(BanUserRequest $request, User $user)
|
|
{
|
|
|
|
$this->authorize('create', Ban::class);
|
|
|
|
if (is_null($user->bans))
|
|
{
|
|
|
|
$reason = $request->reason;
|
|
$duration = strtolower($request->durationOperator);
|
|
$durationOperand = $request->durationOperand;
|
|
|
|
|
|
if (!empty($duration))
|
|
{
|
|
$expiryDate = now();
|
|
|
|
switch($duration)
|
|
{
|
|
case 'days':
|
|
$expiryDate->addDays($duration);
|
|
break;
|
|
|
|
case 'weeks':
|
|
$expiryDate->addWeeks($duration);
|
|
break;
|
|
|
|
case 'months':
|
|
$expiryDate->addMonths($duration);
|
|
break;
|
|
|
|
case 'years':
|
|
$expiryDate->addYears($duration);
|
|
break;
|
|
}
|
|
}
|
|
|
|
$ban = Ban::create([
|
|
'userID' => $user->id,
|
|
'reason' => $request->reason,
|
|
'bannedUntil' => $expiryDate->toDateTimeString() ?? null,
|
|
'userAgent' => "Unknown",
|
|
'authorUserID' => Auth::user()->id
|
|
]);
|
|
|
|
event(new UserBannedEvent($user, $ban));
|
|
$request->session()->flash('success', 'User banned successfully! Ban ID: #' . $ban->id);
|
|
|
|
}
|
|
else
|
|
{
|
|
$request->session()->flash('error', 'User already banned!');
|
|
}
|
|
|
|
return redirect()->back();
|
|
}
|
|
|
|
|
|
public function delete(Request $request, User $user)
|
|
{
|
|
|
|
$this->authorize('delete', $user->bans);
|
|
|
|
if (!is_null($user->bans))
|
|
{
|
|
$user->bans->delete();
|
|
$request->session()->flash('success', 'User unbanned successfully!');
|
|
}
|
|
else
|
|
{
|
|
$request->session()->flash('error', 'This user isn\'t banned!');
|
|
}
|
|
|
|
return redirect()->back();
|
|
}
|
|
}
|