142 lines
4.6 KiB
PHP
142 lines
4.6 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Blacklist;
|
|
|
|
//Internal Library
|
|
use Illuminate\Http\Request;
|
|
use App\Http\Controllers\Controller;
|
|
use Log;
|
|
use DB;
|
|
|
|
//Library
|
|
use App\Library\Lookups\NewLookupHelper;
|
|
|
|
//Models
|
|
use App\Models\Blacklist\BlacklistUser;
|
|
use App\Models\User\User;
|
|
use App\Models\User\UserRole;
|
|
use App\Models\User\UserPermission;
|
|
|
|
class BlacklistController extends Controller
|
|
{
|
|
public function __construct() {
|
|
$this->middleware('auth');
|
|
$this->middleware('role:User');
|
|
}
|
|
|
|
public function DisplayAddToBlacklist() {
|
|
return view('blacklist.add');
|
|
}
|
|
|
|
public function DisplayRemoveFromBlacklist() {
|
|
return view('blacklist.remove');
|
|
}
|
|
|
|
public function DisplaySearch() {
|
|
return view('blacklist.search');
|
|
}
|
|
|
|
public function AddToBlacklist(Request $request) {
|
|
//Middleware needed for the function
|
|
$this->middleware('permission:alliance.recruiter');
|
|
|
|
//Validate the user input
|
|
$this->validate($request, [
|
|
'name' => 'required',
|
|
'reason' => 'required',
|
|
]);
|
|
|
|
//Create the library variable
|
|
$lookup = new NewLookupHelper;
|
|
|
|
//See if the character is already on the list
|
|
$count = BlacklistUser::where([
|
|
'name' => $request->name,
|
|
])->count();
|
|
|
|
//If the count is 0, then add the character to the blacklist
|
|
if($count === 0) {
|
|
//Get the character id from the universe end point
|
|
$charId = $lookup->CharacterNameToId($request->name);
|
|
|
|
if($charId != null) {
|
|
//Insert the character into the blacklist table
|
|
BlacklistUser::insert([
|
|
'character_id' => $charId,
|
|
'name' => $request->name,
|
|
'reason' => $request->reason,
|
|
'alts' => $request->alts,
|
|
'lister_id' => auth()->user()->getId(),
|
|
'lister_name' => auth()->user()->getName(),
|
|
]);
|
|
} else {
|
|
//Redirect back to the view
|
|
return redirect('/blacklist/display/add')->with('error', $request->name . ' could not be added.');
|
|
}
|
|
} else {
|
|
//Return the view
|
|
return view('blacklist.add')->with('error', 'Character is already on the black list.');
|
|
}
|
|
|
|
//Return the view
|
|
return redirect('/blacklist/display/add')->with('success', $request->name . ' added to the blacklist.');
|
|
}
|
|
|
|
public function RemoveFromBlacklist(Request $request) {
|
|
//Middleware needed
|
|
$this->middleware('permission:alliance.recruiter');
|
|
|
|
//Validate the input request
|
|
$this->validate($request, [
|
|
'name' => 'required',
|
|
]);
|
|
|
|
//Delete the blacklist character
|
|
BlacklistUser::where([
|
|
'name' => $request->name,
|
|
])->delete();
|
|
|
|
//Return the view
|
|
return redirect('/blacklist/display')->with('success', 'Character removed from the blacklist.');
|
|
}
|
|
|
|
public function DisplayBlacklist() {
|
|
|
|
//Get the entire blacklist
|
|
$blacklist = BlacklistUser::orderBy('name', 'asc')->paginate(50);
|
|
|
|
//Return the view with the data
|
|
return view('blacklist.list')->with('blacklist', $blacklist);
|
|
}
|
|
|
|
public function SearchInBlacklist(Request $request) {
|
|
|
|
//Validate the input from the form
|
|
$this->validate($request, [
|
|
'parameter' => 'required',
|
|
]);
|
|
|
|
$blacklist = DB::table('alliance_blacklist')->where('name', 'like', $request->parameter . "%")
|
|
->orWhere('alts', 'like', $request->parameter . "%")
|
|
->orWhere('reason', 'like', $request->parameter . "%")
|
|
->orderBy('name', 'asc')
|
|
->paginate(50);
|
|
|
|
$blacklistCount = sizeof($blacklist);
|
|
|
|
//If the count for the blacklist is greater than 0, then get the details, and send it to the view
|
|
if($blacklistCount > 0) {
|
|
|
|
//Send the data to the view
|
|
return view('blacklist.list')->with('blacklist', $blacklist)
|
|
->with('success', 'Results were found on the blacklist');
|
|
} else {
|
|
//If they aren't found, then null out the blacklist variable, and send to the view
|
|
$blacklist = null;
|
|
|
|
return view('blacklist.list')->with('blacklist', $blacklist)
|
|
->with('error', 'Results were not found on the blacklist.');
|
|
}
|
|
}
|
|
}
|