staffmanager/app/Http/Controllers/BanController.php

98 lines
3.1 KiB
PHP
Raw Permalink Normal View History

<?php
2020-10-10 16:30:26 +00:00
/*
* Copyright © 2020 Miguel Nogueira
*
* This file is part of Raspberry Staff Manager.
*
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Raspberry Staff Manager is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
*/
namespace App\Http\Controllers;
use App\Ban;
use App\Events\UserBannedEvent;
use App\Http\Requests\BanUserRequest;
2020-10-10 16:30:26 +00:00
use App\User;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
class BanController extends Controller
{
public function insert(BanUserRequest $request, User $user)
{
2020-09-07 22:33:35 +00:00
$this->authorize('create', [Ban::class, $user]);
2020-10-10 16:30:26 +00:00
if (is_null($user->bans)) {
$reason = $request->reason;
$duration = strtolower($request->durationOperator);
$durationOperand = $request->durationOperand;
2020-08-13 21:12:17 +00:00
$expiryDate = now();
2020-10-10 16:30:26 +00:00
if (! empty($duration)) {
switch ($duration) {
case 'days':
2020-08-13 21:12:17 +00:00
$expiryDate->addDays($durationOperand);
break;
case 'weeks':
2020-08-13 21:12:17 +00:00
$expiryDate->addWeeks($durationOperand);
break;
case 'months':
2020-08-13 21:12:17 +00:00
$expiryDate->addMonths($durationOperand);
break;
case 'years':
2020-08-13 21:12:17 +00:00
$expiryDate->addYears($durationOperand);
break;
}
2020-10-10 16:30:26 +00:00
} else {
2020-08-13 21:12:17 +00:00
// Essentially permanent
2020-09-07 23:05:37 +00:00
$expiryDate->addYears(5);
2020-08-13 21:12:17 +00:00
}
$ban = Ban::create([
'userID' => $user->id,
2020-08-13 21:12:17 +00:00
'reason' => $reason,
2020-09-07 22:44:14 +00:00
'bannedUntil' => $expiryDate->format('Y-m-d H:i:s'),
2020-10-10 16:30:26 +00:00
'userAgent' => 'Unknown',
'authorUserID' => Auth::user()->id,
]);
event(new UserBannedEvent($user, $ban));
2020-10-10 16:30:26 +00:00
$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);
2020-10-10 16:30:26 +00:00
if (! is_null($user->bans)) {
$user->bans->delete();
$request->session()->flash('success', 'User unbanned successfully!');
2020-10-10 16:30:26 +00:00
} else {
$request->session()->flash('error', 'This user isn\'t banned!');
}
return redirect()->back();
}
}