2020-06-26 23:32:33 +00:00
|
|
|
<?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/>.
|
|
|
|
*/
|
|
|
|
|
2020-06-26 23:32:33 +00:00
|
|
|
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;
|
2020-06-26 23:32:33 +00:00
|
|
|
|
|
|
|
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-06-26 23:32:33 +00:00
|
|
|
|
2021-07-20 09:32:43 +00:00
|
|
|
// FIXME: Needs refactoring to a simpler format, e.g. parse the user's given date directly.
|
|
|
|
|
2020-10-10 16:30:26 +00:00
|
|
|
if (is_null($user->bans)) {
|
2020-06-26 23:32:33 +00:00
|
|
|
$reason = $request->reason;
|
|
|
|
$duration = strtolower($request->durationOperator);
|
|
|
|
$durationOperand = $request->durationOperand;
|
|
|
|
|
2020-08-13 21:12:17 +00:00
|
|
|
$expiryDate = now();
|
2020-06-26 23:32:33 +00:00
|
|
|
|
2020-10-10 16:30:26 +00:00
|
|
|
if (! empty($duration)) {
|
|
|
|
switch ($duration) {
|
2020-06-26 23:32:33 +00:00
|
|
|
case 'days':
|
2020-08-13 21:12:17 +00:00
|
|
|
$expiryDate->addDays($durationOperand);
|
2020-06-26 23:32:33 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'weeks':
|
2020-08-13 21:12:17 +00:00
|
|
|
$expiryDate->addWeeks($durationOperand);
|
2020-06-26 23:32:33 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'months':
|
2020-08-13 21:12:17 +00:00
|
|
|
$expiryDate->addMonths($durationOperand);
|
2020-06-26 23:32:33 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'years':
|
2020-08-13 21:12:17 +00:00
|
|
|
$expiryDate->addYears($durationOperand);
|
2020-06-26 23:32:33 +00:00
|
|
|
break;
|
|
|
|
}
|
2020-10-10 16:30:26 +00:00
|
|
|
} else {
|
2020-08-13 21:12:17 +00:00
|
|
|
// Essentially permanent
|
2021-07-20 09:32:43 +00:00
|
|
|
$expiryDate->addYears(40);
|
2020-08-13 21:12:17 +00:00
|
|
|
}
|
2020-06-26 23:32:33 +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,
|
2020-06-26 23:32:33 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
event(new UserBannedEvent($user, $ban));
|
2021-07-20 09:32:43 +00:00
|
|
|
$request->session()->flash('success', __('Account suspended. Suspension ID #:susId', ['susId', $ban->id]));
|
2020-10-10 16:30:26 +00:00
|
|
|
} else {
|
2021-07-20 09:32:43 +00:00
|
|
|
$request->session()->flash('error', __('Account already suspended!'));
|
2020-06-26 23:32:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return redirect()->back();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function delete(Request $request, User $user)
|
|
|
|
{
|
2020-06-27 18:15:33 +00:00
|
|
|
$this->authorize('delete', $user->bans);
|
|
|
|
|
2020-10-10 16:30:26 +00:00
|
|
|
if (! is_null($user->bans)) {
|
2020-06-26 23:32:33 +00:00
|
|
|
$user->bans->delete();
|
2021-07-19 23:35:03 +00:00
|
|
|
$request->session()->flash('success', __('User unsuspended successfully!'));
|
2020-10-10 16:30:26 +00:00
|
|
|
} else {
|
2021-07-19 23:35:03 +00:00
|
|
|
$request->session()->flash('error', __('This user isn\'t suspended!'));
|
2020-06-26 23:32:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return redirect()->back();
|
|
|
|
}
|
|
|
|
}
|